messages.po 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367
  1. # Croatian translations for .
  2. # Copyright (C) 2020 ORGANIZATION
  3. # This file is distributed under the same license as the project.
  4. #
  5. # Translators:
  6. # df3fdd29c9d33426452a2db187d128e3, 2017
  7. # Issa1552 <fairfull.playing@gmail.com>, 2020
  8. # Matija Kromar <matija.kromar@gmail.com>, 2022.
  9. # Markus Heiser <markus.heiser@darmarit.de>, 2022.
  10. # SecularSteve <fairfull.playing@gmail.com>, 2022, 2023.
  11. # prljav <marin.ruskica@gmail.com>, 2022.
  12. # ptomljanovic <phill2605@gmail.com>, 2022.
  13. # return42 <markus.heiser@darmarit.de>, 2023.
  14. # return42 <return42@users.noreply.translate.codeberg.org>, 2024, 2025.
  15. # Uzakmo <Uzakmo@users.noreply.translate.codeberg.org>, 2024.
  16. # ganoci <ganoci@users.noreply.translate.codeberg.org>, 2024, 2025.
  17. # madnomad <madnomad@users.noreply.translate.codeberg.org>, 2024, 2025.
  18. # Anonymous <anonymous@users.noreply.translate.codeberg.org>, 2025.
  19. # Uzakmo <uzakmo@users.noreply.translate.codeberg.org>, 2025.
  20. # SecularSteve <secularsteve@users.noreply.translate.codeberg.org>, 2025.
  21. # return42 <return42@noreply.codeberg.org>, 2025.
  22. # SecularSteve <secularsteve@noreply.codeberg.org>, 2025.
  23. msgid ""
  24. msgstr ""
  25. "Project-Id-Version: searx\n"
  26. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  27. "POT-Creation-Date: 2025-07-03 14:46+0000\n"
  28. "PO-Revision-Date: 2025-06-24 13:04+0000\n"
  29. "Last-Translator: SecularSteve <secularsteve@noreply.codeberg.org>\n"
  30. "Language: hr\n"
  31. "Language-Team: Croatian "
  32. "<https://translate.codeberg.org/projects/searxng/searxng/hr/>\n"
  33. "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
  34. "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
  35. "MIME-Version: 1.0\n"
  36. "Content-Type: text/plain; charset=utf-8\n"
  37. "Content-Transfer-Encoding: 8bit\n"
  38. "Generated-By: Babel 2.17.0\n"
  39. #. CONSTANT_NAMES['NO_SUBGROUPING']
  40. #: searx/searxng.msg
  41. msgid "without further subgrouping"
  42. msgstr "bez daljnjeg podgrupiranja"
  43. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  44. #: searx/searxng.msg
  45. msgid "other"
  46. msgstr "drugo"
  47. #. CATEGORY_NAMES['FILES']
  48. #: searx/searxng.msg
  49. msgid "files"
  50. msgstr "datoteke"
  51. #. CATEGORY_NAMES['GENERAL']
  52. #: searx/searxng.msg
  53. msgid "general"
  54. msgstr "općenito"
  55. #. CATEGORY_NAMES['MUSIC']
  56. #: searx/searxng.msg
  57. msgid "music"
  58. msgstr "glazba"
  59. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  60. #: searx/searxng.msg
  61. msgid "social media"
  62. msgstr "društvene mreže"
  63. #. CATEGORY_NAMES['IMAGES']
  64. #: searx/searxng.msg
  65. msgid "images"
  66. msgstr "slike"
  67. #. CATEGORY_NAMES['VIDEOS']
  68. #: searx/searxng.msg
  69. msgid "videos"
  70. msgstr "video zapisi"
  71. #. CATEGORY_NAMES['RADIO']
  72. #: searx/engines/radio_browser.py:151 searx/searxng.msg
  73. msgid "radio"
  74. msgstr "radio"
  75. #. CATEGORY_NAMES['TV']
  76. #: searx/searxng.msg
  77. msgid "tv"
  78. msgstr "tv"
  79. #. CATEGORY_NAMES['IT']
  80. #: searx/searxng.msg
  81. msgid "it"
  82. msgstr "IT"
  83. #. CATEGORY_NAMES['NEWS']
  84. #: searx/searxng.msg
  85. msgid "news"
  86. msgstr "vijesti"
  87. #. CATEGORY_NAMES['MAP']
  88. #: searx/searxng.msg
  89. msgid "map"
  90. msgstr "karta"
  91. #. CATEGORY_NAMES['ONIONS']
  92. #: searx/searxng.msg
  93. msgid "onions"
  94. msgstr "luk"
  95. #. CATEGORY_NAMES['SCIENCE']
  96. #: searx/searxng.msg
  97. msgid "science"
  98. msgstr "znanost"
  99. #. CATEGORY_GROUPS['APPS']
  100. #: searx/searxng.msg
  101. msgid "apps"
  102. msgstr "aplikacije"
  103. #. CATEGORY_GROUPS['DICTIONARIES']
  104. #: searx/searxng.msg
  105. msgid "dictionaries"
  106. msgstr "rječnici"
  107. #. CATEGORY_GROUPS['LYRICS']
  108. #: searx/searxng.msg
  109. msgid "lyrics"
  110. msgstr "tekstovi"
  111. #. CATEGORY_GROUPS['PACKAGES']
  112. #: searx/searxng.msg
  113. msgid "packages"
  114. msgstr "paketi"
  115. #. CATEGORY_GROUPS['Q_A']
  116. #: searx/searxng.msg
  117. msgid "q&a"
  118. msgstr "pitanja i odgovori"
  119. #. CATEGORY_GROUPS['REPOS']
  120. #: searx/searxng.msg
  121. msgid "repos"
  122. msgstr "repozitoriji"
  123. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  124. #: searx/searxng.msg
  125. msgid "software wikis"
  126. msgstr "programski wikiji"
  127. #. CATEGORY_GROUPS['WEB']
  128. #: searx/searxng.msg
  129. msgid "web"
  130. msgstr "mreža"
  131. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  132. #: searx/searxng.msg
  133. msgid "scientific publications"
  134. msgstr "znanstvene publikacije"
  135. #. STYLE_NAMES['AUTO']
  136. #: searx/searxng.msg
  137. msgid "auto"
  138. msgstr "automatski"
  139. #. STYLE_NAMES['LIGHT']
  140. #: searx/searxng.msg
  141. msgid "light"
  142. msgstr "svijetlo"
  143. #. STYLE_NAMES['DARK']
  144. #: searx/searxng.msg
  145. msgid "dark"
  146. msgstr "tamno"
  147. #. STYLE_NAMES['BLACK']
  148. #: searx/searxng.msg
  149. msgid "black"
  150. msgstr "crno"
  151. #. BRAND_CUSTOM_LINKS['UPTIME']
  152. #: searx/searxng.msg
  153. msgid "Uptime"
  154. msgstr "Vrijeme rada"
  155. #. BRAND_CUSTOM_LINKS['ABOUT']
  156. #: searx/searxng.msg searx/templates/simple/base.html:49
  157. msgid "About"
  158. msgstr "O nama"
  159. #. WEATHER_TERMS['AVERAGE TEMP.']
  160. #: searx/searxng.msg
  161. msgid "Average temp."
  162. msgstr "prosječna temperatura."
  163. #. WEATHER_TERMS['CLOUD COVER']
  164. #: searx/searxng.msg
  165. msgid "Cloud cover"
  166. msgstr "naoblaka"
  167. #. WEATHER_TERMS['CONDITION']
  168. #: searx/engines/duckduckgo_weather.py:45 searx/searxng.msg
  169. msgid "Condition"
  170. msgstr "Cremenski uvjeti"
  171. #. WEATHER_TERMS['CURRENT CONDITION']
  172. #: searx/engines/duckduckgo_weather.py:118 searx/searxng.msg
  173. msgid "Current condition"
  174. msgstr "Trenutni vremenski uvjeti"
  175. #. WEATHER_TERMS['EVENING']
  176. #: searx/searxng.msg
  177. msgid "Evening"
  178. msgstr "Večer"
  179. #. WEATHER_TERMS['FEELS LIKE']
  180. #: searx/engines/duckduckgo_weather.py:53 searx/searxng.msg
  181. msgid "Feels like"
  182. msgstr "izgleda kao"
  183. #. WEATHER_TERMS['HUMIDITY']
  184. #: searx/engines/duckduckgo_weather.py:64 searx/searxng.msg
  185. #: searx/templates/simple/answer/weather.html:29
  186. msgid "Humidity"
  187. msgstr "vlažnost"
  188. #. WEATHER_TERMS['MAX TEMP.']
  189. #: searx/engines/duckduckgo_weather.py:77 searx/searxng.msg
  190. msgid "Max temp."
  191. msgstr "maks. temp."
  192. #. WEATHER_TERMS['MIN TEMP.']
  193. #: searx/engines/duckduckgo_weather.py:73 searx/searxng.msg
  194. msgid "Min temp."
  195. msgstr "Min. temp."
  196. #. WEATHER_TERMS['MORNING']
  197. #: searx/searxng.msg
  198. msgid "Morning"
  199. msgstr "Jutro"
  200. #. WEATHER_TERMS['NIGHT']
  201. #: searx/searxng.msg
  202. msgid "Night"
  203. msgstr "Noć"
  204. #. WEATHER_TERMS['NOON']
  205. #: searx/searxng.msg
  206. msgid "Noon"
  207. msgstr "Podne"
  208. #. WEATHER_TERMS['PRESSURE']
  209. #: searx/searxng.msg searx/templates/simple/answer/weather.html:25
  210. msgid "Pressure"
  211. msgstr "Pritisak"
  212. #. WEATHER_TERMS['SUNRISE']
  213. #: searx/engines/duckduckgo_weather.py:81 searx/searxng.msg
  214. msgid "Sunrise"
  215. msgstr "izlazak sunca"
  216. #. WEATHER_TERMS['SUNSET']
  217. #: searx/engines/duckduckgo_weather.py:82 searx/searxng.msg
  218. msgid "Sunset"
  219. msgstr "zalazak"
  220. #. WEATHER_TERMS['TEMPERATURE']
  221. #: searx/engines/duckduckgo_weather.py:48 searx/searxng.msg
  222. #: searx/templates/simple/answer/weather.html:17
  223. msgid "Temperature"
  224. msgstr "temperatura"
  225. #. WEATHER_TERMS['UV INDEX']
  226. #: searx/engines/duckduckgo_weather.py:80 searx/searxng.msg
  227. msgid "UV index"
  228. msgstr "UV index"
  229. #. WEATHER_TERMS['VISIBILITY']
  230. #: searx/engines/duckduckgo_weather.py:62 searx/searxng.msg
  231. msgid "Visibility"
  232. msgstr "vidljivost"
  233. #. WEATHER_TERMS['WIND']
  234. #: searx/engines/duckduckgo_weather.py:58 searx/searxng.msg
  235. #: searx/templates/simple/answer/weather.html:23
  236. msgid "Wind"
  237. msgstr "vjetar"
  238. #. WEATHER_CONDITIONS
  239. #: searx/searxng.msg
  240. msgid "Clear sky"
  241. msgstr "Vedro nebo"
  242. #. WEATHER_CONDITIONS
  243. #: searx/searxng.msg
  244. msgid "Partly cloudy"
  245. msgstr "Djelomično oblačno"
  246. #. WEATHER_CONDITIONS
  247. #: searx/searxng.msg
  248. msgid "Cloudy"
  249. msgstr "Oblačno"
  250. #. WEATHER_CONDITIONS
  251. #: searx/searxng.msg
  252. msgid "Fair"
  253. msgstr "Pošteno"
  254. #. WEATHER_CONDITIONS
  255. #: searx/searxng.msg
  256. msgid "Fog"
  257. msgstr "Magla"
  258. #. WEATHER_CONDITIONS
  259. #: searx/searxng.msg
  260. msgid "Light rain and thunder"
  261. msgstr "Slaba kiša i grmljavina"
  262. #. WEATHER_CONDITIONS
  263. #: searx/searxng.msg
  264. msgid "Light rain showers and thunder"
  265. msgstr "Slabi kišni pljuskovi i grmljavina"
  266. #. WEATHER_CONDITIONS
  267. #: searx/searxng.msg
  268. msgid "Light rain showers"
  269. msgstr "Slabi kišni pljuskovi"
  270. #. WEATHER_CONDITIONS
  271. #: searx/searxng.msg
  272. msgid "Light rain"
  273. msgstr "Slaba kiša"
  274. #. WEATHER_CONDITIONS
  275. #: searx/searxng.msg
  276. msgid "Rain and thunder"
  277. msgstr "Kiša i grmljavina"
  278. #. WEATHER_CONDITIONS
  279. #: searx/searxng.msg
  280. msgid "Rain showers and thunder"
  281. msgstr "Pljuskovi i grmljavina"
  282. #. WEATHER_CONDITIONS
  283. #: searx/searxng.msg
  284. msgid "Rain showers"
  285. msgstr "Pljuskovi kiše"
  286. #. WEATHER_CONDITIONS
  287. #: searx/searxng.msg
  288. msgid "Rain"
  289. msgstr "Kiša"
  290. #. WEATHER_CONDITIONS
  291. #: searx/searxng.msg
  292. msgid "Heavy rain and thunder"
  293. msgstr "Jaka kiša i grmljavina"
  294. #. WEATHER_CONDITIONS
  295. #: searx/searxng.msg
  296. msgid "Heavy rain showers and thunder"
  297. msgstr "Jaki pljuskovi i grmljavina"
  298. #. WEATHER_CONDITIONS
  299. #: searx/searxng.msg
  300. msgid "Heavy rain showers"
  301. msgstr "Jaki pljuskovi"
  302. #. WEATHER_CONDITIONS
  303. #: searx/searxng.msg
  304. msgid "Heavy rain"
  305. msgstr "Jaka kiša"
  306. #. WEATHER_CONDITIONS
  307. #: searx/searxng.msg
  308. msgid "Light sleet and thunder"
  309. msgstr "Slaba susnježica i grmljavina"
  310. #. WEATHER_CONDITIONS
  311. #: searx/searxng.msg
  312. msgid "Light sleet showers and thunder"
  313. msgstr "Slabi susnježični pljuskovi i grmljavina"
  314. #. WEATHER_CONDITIONS
  315. #: searx/searxng.msg
  316. msgid "Light sleet showers"
  317. msgstr "Slabi susnježični pljuskovi"
  318. #. WEATHER_CONDITIONS
  319. #: searx/searxng.msg
  320. msgid "Light sleet"
  321. msgstr "Slaba susnježica"
  322. #. WEATHER_CONDITIONS
  323. #: searx/searxng.msg
  324. msgid "Sleet and thunder"
  325. msgstr "Susnježica i grmljavina"
  326. #. WEATHER_CONDITIONS
  327. #: searx/searxng.msg
  328. msgid "Sleet showers and thunder"
  329. msgstr "Pljuskovi susnježice i grmljavina"
  330. #. WEATHER_CONDITIONS
  331. #: searx/searxng.msg
  332. msgid "Sleet showers"
  333. msgstr "Pljuskovi susnježice"
  334. #. WEATHER_CONDITIONS
  335. #: searx/searxng.msg
  336. msgid "Sleet"
  337. msgstr "Susnježica"
  338. #. WEATHER_CONDITIONS
  339. #: searx/searxng.msg
  340. msgid "Heavy sleet and thunder"
  341. msgstr "Jaka susnježica i grmljavina"
  342. #. WEATHER_CONDITIONS
  343. #: searx/searxng.msg
  344. msgid "Heavy sleet showers and thunder"
  345. msgstr "Jaki pljuskovi susnježice i grmljavina"
  346. #. WEATHER_CONDITIONS
  347. #: searx/searxng.msg
  348. msgid "Heavy sleet showers"
  349. msgstr "Jaki pljuskovi susnježice"
  350. #. WEATHER_CONDITIONS
  351. #: searx/searxng.msg
  352. msgid "Heavy sleet"
  353. msgstr "Jaka susnježica"
  354. #. WEATHER_CONDITIONS
  355. #: searx/searxng.msg
  356. msgid "Light snow and thunder"
  357. msgstr "Slab snijeg i grmljavina"
  358. #. WEATHER_CONDITIONS
  359. #: searx/searxng.msg
  360. msgid "Light snow showers and thunder"
  361. msgstr "Slabi snježni pljuskovi i grmljavina"
  362. #. WEATHER_CONDITIONS
  363. #: searx/searxng.msg
  364. msgid "Light snow showers"
  365. msgstr "Slabi snježni pljuskovi"
  366. #. WEATHER_CONDITIONS
  367. #: searx/searxng.msg
  368. msgid "Light snow"
  369. msgstr "Slab snijeg"
  370. #. WEATHER_CONDITIONS
  371. #: searx/searxng.msg
  372. msgid "Snow and thunder"
  373. msgstr "Snijeg i grmljavina"
  374. #. WEATHER_CONDITIONS
  375. #: searx/searxng.msg
  376. msgid "Snow showers and thunder"
  377. msgstr "Snježni pljuskovi i grmljavina"
  378. #. WEATHER_CONDITIONS
  379. #: searx/searxng.msg
  380. msgid "Snow showers"
  381. msgstr "Snježni pljuskovi"
  382. #. WEATHER_CONDITIONS
  383. #: searx/searxng.msg
  384. msgid "Snow"
  385. msgstr "Snijeg"
  386. #. WEATHER_CONDITIONS
  387. #: searx/searxng.msg
  388. msgid "Heavy snow and thunder"
  389. msgstr "Jak snijeg i grmljavina"
  390. #. WEATHER_CONDITIONS
  391. #: searx/searxng.msg
  392. msgid "Heavy snow showers and thunder"
  393. msgstr "Jaki snježni pljuskovi i grmljavina"
  394. #. WEATHER_CONDITIONS
  395. #: searx/searxng.msg
  396. msgid "Heavy snow showers"
  397. msgstr "Jaki snježni pljuskovi"
  398. #. WEATHER_CONDITIONS
  399. #: searx/searxng.msg
  400. msgid "Heavy snow"
  401. msgstr "Jak snijeg"
  402. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  403. #: searx/engines/lemmy.py:85 searx/searxng.msg
  404. msgid "subscribers"
  405. msgstr "pretplatnici"
  406. #. SOCIAL_MEDIA_TERMS['POSTS']
  407. #: searx/engines/lemmy.py:86 searx/searxng.msg
  408. msgid "posts"
  409. msgstr "objave"
  410. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  411. #: searx/engines/lemmy.py:87 searx/searxng.msg
  412. msgid "active users"
  413. msgstr "aktivni korisnici"
  414. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  415. #: searx/engines/discourse.py:157 searx/engines/hackernews.py:82
  416. #: searx/engines/lemmy.py:130 searx/searxng.msg
  417. msgid "comments"
  418. msgstr "komentari"
  419. #. SOCIAL_MEDIA_TERMS['USER']
  420. #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
  421. msgid "user"
  422. msgstr "korisnik"
  423. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  424. #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
  425. msgid "community"
  426. msgstr "zajednica"
  427. #. SOCIAL_MEDIA_TERMS['POINTS']
  428. #: searx/engines/hackernews.py:82 searx/searxng.msg
  429. msgid "points"
  430. msgstr "bodovi"
  431. #. SOCIAL_MEDIA_TERMS['TITLE']
  432. #: searx/searxng.msg
  433. msgid "title"
  434. msgstr "naslov"
  435. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  436. #: searx/engines/hackernews.py:85 searx/searxng.msg
  437. msgid "author"
  438. msgstr "autor"
  439. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  440. #: searx/engines/discourse.py:149 searx/searxng.msg
  441. msgid "open"
  442. msgstr "otvoren"
  443. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  444. #: searx/engines/discourse.py:149 searx/searxng.msg
  445. msgid "closed"
  446. msgstr "zatvoren"
  447. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  448. #: searx/engines/discourse.py:160 searx/searxng.msg
  449. msgid "answered"
  450. msgstr "odgovoren"
  451. #: searx/webapp.py:292
  452. msgid "No item found"
  453. msgstr "Nije pronađena nijedna stavka"
  454. #: searx/engines/qwant.py:291
  455. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:294
  456. msgid "Source"
  457. msgstr "Izvor"
  458. #: searx/webapp.py:296
  459. msgid "Error loading the next page"
  460. msgstr "Greška u učitavnju sljedeće stranice"
  461. #: searx/webapp.py:447 searx/webapp.py:845
  462. msgid "Invalid settings, please edit your preferences"
  463. msgstr "Nevažeće postavke, molimo uredite svoje postavke"
  464. #: searx/webapp.py:463
  465. msgid "Invalid settings"
  466. msgstr "Nevažeće postavke"
  467. #: searx/webapp.py:540 searx/webapp.py:630
  468. msgid "search error"
  469. msgstr "greška u pretraživanju"
  470. #: searx/webutils.py:35
  471. msgid "timeout"
  472. msgstr "pauza"
  473. #: searx/webutils.py:36
  474. msgid "parsing error"
  475. msgstr "pogreška pri raščlanjivanju"
  476. #: searx/webutils.py:37
  477. msgid "HTTP protocol error"
  478. msgstr "greška HTTP protokola"
  479. #: searx/webutils.py:38
  480. msgid "network error"
  481. msgstr "greška u mreži"
  482. #: searx/webutils.py:39
  483. msgid "SSL error: certificate validation has failed"
  484. msgstr "SSL pogreška: provjera valjanosti certifikata nije uspjela"
  485. #: searx/webutils.py:41
  486. msgid "unexpected crash"
  487. msgstr "neočekivani prekid"
  488. #: searx/webutils.py:48
  489. msgid "HTTP error"
  490. msgstr "HTTP greška"
  491. #: searx/webutils.py:49
  492. msgid "HTTP connection error"
  493. msgstr "greška HTTP veze"
  494. #: searx/webutils.py:55
  495. msgid "proxy error"
  496. msgstr "proxy greška"
  497. #: searx/webutils.py:56
  498. msgid "CAPTCHA"
  499. msgstr "CAPTCHA"
  500. #: searx/webutils.py:57
  501. msgid "too many requests"
  502. msgstr "previše upita"
  503. #: searx/webutils.py:58
  504. msgid "access denied"
  505. msgstr "pristup odbijen"
  506. #: searx/webutils.py:59
  507. msgid "server API error"
  508. msgstr "server API greška"
  509. #: searx/webutils.py:78
  510. msgid "Suspended"
  511. msgstr "Suspendirano"
  512. #: searx/webutils.py:313
  513. #, python-brace-format
  514. msgid "{minutes} minute(s) ago"
  515. msgstr "prije {minutes} minut(u,e,a)"
  516. #: searx/webutils.py:314
  517. #, python-brace-format
  518. msgid "{hours} hour(s), {minutes} minute(s) ago"
  519. msgstr "prije {hours} sat(i,a) i {minutes} minut(u,e,a)"
  520. #: searx/answerers/random.py:69
  521. msgid "Generate different random values"
  522. msgstr "Generirajte različite nasumične vrijednosti"
  523. #: searx/answerers/statistics.py:36
  524. #, python-brace-format
  525. msgid "Compute {func} of the arguments"
  526. msgstr "Izračunajte {func} argumenata"
  527. #: searx/engines/openstreetmap.py:158
  528. msgid "Show route in map .."
  529. msgstr "Pokaži rutu na karti .."
  530. #: searx/engines/pdbe.py:96
  531. #, python-brace-format
  532. msgid "{title} (OBSOLETE)"
  533. msgstr "{title} (ZASTARJELO)"
  534. #: searx/engines/pdbe.py:103
  535. msgid "This entry has been superseded by"
  536. msgstr "Ovaj je unos zamijenio"
  537. #: searx/engines/qwant.py:293
  538. msgid "Channel"
  539. msgstr "Kanal"
  540. #: searx/engines/radio_browser.py:153
  541. msgid "bitrate"
  542. msgstr "bitrata"
  543. #: searx/engines/radio_browser.py:154
  544. msgid "votes"
  545. msgstr "glasovi"
  546. #: searx/engines/radio_browser.py:155
  547. msgid "clicks"
  548. msgstr "klikovi"
  549. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  550. #: searx/engines/zlibrary.py:137
  551. msgid "Language"
  552. msgstr "Jezik"
  553. #: searx/engines/semantic_scholar.py:101
  554. #, python-brace-format
  555. msgid ""
  556. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  557. "{lastCitationVelocityYear}"
  558. msgstr ""
  559. "{numCitations} citati iz godine {firstCitationVelocityYear} do "
  560. "{lastCitationVelocityYear}"
  561. #: searx/engines/tineye.py:48
  562. msgid ""
  563. "Could not read that image url. This may be due to an unsupported file "
  564. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  565. " WebP."
  566. msgstr ""
  567. "Nije moguće učitati sliku sa URL-a. Moguće da je u pitanju neispravan "
  568. "format dokumenta. TinEye samo podržava slike JPEG, PNG, GIF, BMP, TIFF i "
  569. "WebP formata."
  570. #: searx/engines/tineye.py:54
  571. msgid ""
  572. "The image is too simple to find matches. TinEye requires a basic level of"
  573. " visual detail to successfully identify matches."
  574. msgstr ""
  575. "Slika je previše jednostavna da bi se pronašla sličnost. TinEye zahtjeva "
  576. "osnovnu razinu detalja za pronalaženje sličnosti."
  577. #: searx/engines/tineye.py:59
  578. msgid "The image could not be downloaded."
  579. msgstr "Sliku nije moguće preuzeti."
  580. #: searx/engines/zlibrary.py:138
  581. msgid "Book rating"
  582. msgstr "Ocjena knjige"
  583. #: searx/engines/zlibrary.py:139
  584. msgid "File quality"
  585. msgstr "Kvaliteta datoteke"
  586. #: searx/plugins/ahmia_filter.py:32
  587. msgid "Ahmia blacklist"
  588. msgstr "Ahmijska crna lista"
  589. #: searx/plugins/ahmia_filter.py:33
  590. msgid "Filter out onion results that appear in Ahmia's blacklist."
  591. msgstr ""
  592. "Filtriraj rezultate pretraživanja luka koji se pojavljuju na Ahmijinoj "
  593. "crnoj listi."
  594. #: searx/plugins/calculator.py:38
  595. msgid "Basic Calculator"
  596. msgstr "Osnovni Kalkulator"
  597. #: searx/plugins/calculator.py:39
  598. msgid "Calculate mathematical expressions via the search bar"
  599. msgstr "Izračunaj matematički izraz putem tražilice"
  600. #: searx/plugins/hash_plugin.py:34
  601. msgid "Hash plugin"
  602. msgstr "Heš dodatak"
  603. #: searx/plugins/hash_plugin.py:36
  604. msgid ""
  605. "Converts strings to different hash digests. Available functions: md5, "
  606. "sha1, sha224, sha256, sha384, sha512."
  607. msgstr ""
  608. "Pretvara nizove znakova u različite sažetke heša. Dostupne funkcije: md5,"
  609. " sha1, sha224, sha256, sha384, sha512."
  610. #: searx/plugins/hash_plugin.py:64
  611. msgid "hash digest"
  612. msgstr "Izlaz hash funkcije"
  613. #: searx/plugins/hostnames.py:123
  614. msgid "Hostnames plugin"
  615. msgstr "Dodatak (plugin) za Hostnames"
  616. #: searx/plugins/hostnames.py:124
  617. msgid "Rewrite hostnames and remove or prioritize results based on the hostname"
  618. msgstr ""
  619. "Prepišite imena domaćina i uklonite ili odredite prioritete rezultata na "
  620. "temelju imena domaćina"
  621. #: searx/plugins/oa_doi_rewrite.py:55
  622. msgid "Open Access DOI rewrite"
  623. msgstr "Otvoreni pristup DOI prijepisa"
  624. #: searx/plugins/oa_doi_rewrite.py:56
  625. msgid ""
  626. "Avoid paywalls by redirecting to open-access versions of publications "
  627. "when available"
  628. msgstr "Izbjegnite plaćanje u slučaju dostupnosti besplatne objave"
  629. #: searx/plugins/self_info.py:37
  630. msgid "Self Information"
  631. msgstr "Informacije o sebi"
  632. #: searx/plugins/self_info.py:39
  633. msgid ""
  634. "Displays your IP if the query is \"ip\" and your user agent if the query "
  635. "is \"user-agent\"."
  636. msgstr ""
  637. "Prikazuje vaš IP ako je upit \"ip\" i vaš korisnički agent ako je upit "
  638. "\"user-agent\"."
  639. #: searx/plugins/self_info.py:52
  640. msgid "Your IP is: "
  641. msgstr "Vaš IP je: "
  642. #: searx/plugins/self_info.py:55
  643. msgid "Your user-agent is: "
  644. msgstr "Vaš user-agent je: "
  645. #: searx/plugins/tor_check.py:42
  646. msgid "Tor check plugin"
  647. msgstr "Tor plugin za provjeru"
  648. #: searx/plugins/tor_check.py:44
  649. msgid ""
  650. "This plugin checks if the address of the request is a Tor exit-node, and "
  651. "informs the user if it is; like check.torproject.org, but from SearXNG."
  652. msgstr ""
  653. "Ovaj plugin provjerava da li je adresa zahtjeva TOR izlazna adresa, i "
  654. "šalje obavijest korisniku, kao check.torproject.org ali od strane "
  655. "SearXNG."
  656. #: searx/plugins/tor_check.py:65
  657. msgid "Could not download the list of Tor exit-nodes from"
  658. msgstr "Nije moguće preuzeti popis Tor izlaznih čvorova iz"
  659. #: searx/plugins/tor_check.py:72
  660. msgid "You are using Tor and it looks like you have the external IP address"
  661. msgstr "Vi koristite Tor i izgleda da imate vanjsku IP adresu"
  662. #: searx/plugins/tor_check.py:76
  663. msgid "You are not using Tor and you have the external IP address"
  664. msgstr "Ne koristite Tor i imate vanjsku IP adresu"
  665. #: searx/plugins/tracker_url_remover.py:35
  666. msgid "Tracker URL remover"
  667. msgstr "Ukloni praćenje URL-ova"
  668. #: searx/plugins/tracker_url_remover.py:36
  669. msgid "Remove trackers arguments from the returned URL"
  670. msgstr "Ukloni elemente za označavanje rezultata vraćenih s URL-a"
  671. #: searx/plugins/unit_converter.py:49
  672. msgid "Unit converter plugin"
  673. msgstr "Dodatak za pretvaranje jedinica"
  674. #: searx/plugins/unit_converter.py:50
  675. msgid "Convert between units"
  676. msgstr "Konvertiraj između jedinica"
  677. #: searx/result_types/answer.py:224
  678. #, python-brace-format
  679. msgid "{location}: {temperature}, {condition}"
  680. msgstr "{location}: {temperature}, {condition}"
  681. #: searx/templates/simple/404.html:4
  682. msgid "Page not found"
  683. msgstr "Stranica nije pronađena"
  684. #: searx/templates/simple/404.html:6
  685. #, python-format
  686. msgid "Go to %(search_page)s."
  687. msgstr "Idi na %(search_page)s."
  688. #: searx/templates/simple/404.html:6
  689. msgid "search page"
  690. msgstr "pretraži stranicu"
  691. #: searx/templates/simple/base.html:53
  692. msgid "Donate"
  693. msgstr "Donirajte"
  694. #: searx/templates/simple/base.html:57
  695. #: searx/templates/simple/preferences.html:156
  696. msgid "Preferences"
  697. msgstr "Postavke"
  698. #: searx/templates/simple/base.html:67
  699. msgid "Powered by"
  700. msgstr "Pokreće"
  701. #: searx/templates/simple/base.html:67
  702. msgid "a privacy-respecting, open metasearch engine"
  703. msgstr "otvoreni metapretraživač koji poštuje privatnost"
  704. #: searx/templates/simple/base.html:68
  705. #: searx/templates/simple/result_templates/packages.html:59
  706. msgid "Source code"
  707. msgstr "Izvorni kod"
  708. #: searx/templates/simple/base.html:69
  709. msgid "Issue tracker"
  710. msgstr "Tragač problema"
  711. #: searx/templates/simple/base.html:70 searx/templates/simple/stats.html:18
  712. msgid "Engine stats"
  713. msgstr "Podaci o tražilici"
  714. #: searx/templates/simple/base.html:72
  715. msgid "Public instances"
  716. msgstr "Javne instance"
  717. #: searx/templates/simple/base.html:75
  718. msgid "Privacy policy"
  719. msgstr "Politika privatnosti"
  720. #: searx/templates/simple/base.html:78
  721. msgid "Contact instance maintainer"
  722. msgstr "Kontaktirajte održavatelja instance"
  723. #: searx/templates/simple/categories.html:30
  724. msgid "Click on the magnifier to perform search"
  725. msgstr "Kliknite na povećalo za izvođenje pretraživanja"
  726. #: searx/templates/simple/macros.html:40
  727. msgid "Length"
  728. msgstr "Dužina"
  729. #: searx/templates/simple/macros.html:41
  730. msgid "Views"
  731. msgstr "Pogledi"
  732. #: searx/templates/simple/macros.html:42
  733. #: searx/templates/simple/result_templates/files.html:34
  734. #: searx/templates/simple/result_templates/images.html:19
  735. #: searx/templates/simple/result_templates/paper.html:6
  736. msgid "Author"
  737. msgstr "Autor"
  738. #: searx/templates/simple/macros.html:50
  739. msgid "cached"
  740. msgstr "spremljeno"
  741. #: searx/templates/simple/new_issue.html:64
  742. msgid "Start submitting a new issue on GitHub"
  743. msgstr "Počnite izlagati novi slučaj na GitHub"
  744. #: searx/templates/simple/new_issue.html:66
  745. msgid "Please check for existing bugs about this engine on GitHub"
  746. msgstr "Provjerite postoje li greške u vezi s ovim motorom na GitHub-u"
  747. #: searx/templates/simple/new_issue.html:69
  748. msgid "I confirm there is no existing bug about the issue I encounter"
  749. msgstr "Potvrđujem da ne postoji greška u vezi s problemom na koji sam naišao"
  750. #: searx/templates/simple/new_issue.html:71
  751. msgid "If this is a public instance, please specify the URL in the bug report"
  752. msgstr "Ako je ovo javna instanca, navedite URL u izvješću o pogrešci"
  753. #: searx/templates/simple/new_issue.html:72
  754. msgid "Submit a new issue on Github including the above information"
  755. msgstr "Postavi novi problem na Github uključujući podatke poviše"
  756. #: searx/templates/simple/preferences.html:65
  757. msgid "No HTTPS"
  758. msgstr "Nema HTTPS"
  759. #: searx/templates/simple/elements/engines_msg.html:14
  760. #: searx/templates/simple/preferences.html:69
  761. #: searx/templates/simple/preferences.html:70
  762. msgid "View error logs and submit a bug report"
  763. msgstr "Pogledajte zapisnike grešaka i pošaljite izvješće o greškama"
  764. #: searx/templates/simple/preferences.html:74
  765. msgid "!bang for this engine"
  766. msgstr "!bang za ovaj motor"
  767. #: searx/templates/simple/preferences.html:80
  768. msgid "!bang for its categories"
  769. msgstr "!bang za svoje kategorije"
  770. #: searx/templates/simple/preferences.html:102
  771. #: searx/templates/simple/stats.html:64
  772. msgid "Median"
  773. msgstr "Medijan"
  774. #: searx/templates/simple/preferences.html:103
  775. #: searx/templates/simple/stats.html:70
  776. msgid "P80"
  777. msgstr "P80"
  778. #: searx/templates/simple/preferences.html:104
  779. #: searx/templates/simple/stats.html:76
  780. msgid "P95"
  781. msgstr "P95"
  782. #: searx/templates/simple/preferences.html:136
  783. msgid "Failed checker test(s): "
  784. msgstr "Neuspjeli test(ovi) za provjeru: "
  785. #: searx/templates/simple/preferences.html:138
  786. msgid "Errors:"
  787. msgstr "Greške:"
  788. #: searx/templates/simple/preferences.html:163
  789. msgid "General"
  790. msgstr "Općenito"
  791. #: searx/templates/simple/preferences.html:166
  792. msgid "Default categories"
  793. msgstr "Zadane kategorije"
  794. #: searx/templates/simple/preferences.html:194
  795. msgid "User interface"
  796. msgstr "Korisničko sučelje"
  797. #: searx/templates/simple/preferences.html:217
  798. msgid "Privacy"
  799. msgstr "Privatnost"
  800. #: searx/templates/simple/preferences.html:232
  801. msgid "Engines"
  802. msgstr "Tražilice"
  803. #: searx/templates/simple/preferences.html:234
  804. msgid "Currently used search engines"
  805. msgstr "Trenutno korištene tražilice"
  806. #: searx/templates/simple/preferences.html:243
  807. msgid "Special Queries"
  808. msgstr "Posebni upiti"
  809. #: searx/templates/simple/preferences.html:251
  810. msgid "Cookies"
  811. msgstr "Kolačići"
  812. #: searx/templates/simple/results.html:30
  813. msgid "Number of results"
  814. msgstr "Broj rezultata"
  815. #: searx/templates/simple/results.html:36
  816. msgid "Info"
  817. msgstr "Informacije"
  818. #: searx/templates/simple/results.html:77
  819. msgid "Back to top"
  820. msgstr "Natrag na vrh"
  821. #: searx/templates/simple/results.html:95
  822. msgid "Previous page"
  823. msgstr "Prethodna stranica"
  824. #: searx/templates/simple/results.html:113
  825. msgid "Next page"
  826. msgstr "Sljedeća stranica"
  827. #: searx/templates/simple/search.html:3
  828. msgid "Display the front page"
  829. msgstr "Prikaži naslovnu stranicu"
  830. #: searx/templates/simple/search.html:9
  831. #: searx/templates/simple/simple_search.html:5
  832. msgid "Search for..."
  833. msgstr "Traži..."
  834. #: searx/templates/simple/search.html:10
  835. #: searx/templates/simple/simple_search.html:6
  836. msgid "clear"
  837. msgstr "očisti"
  838. #: searx/templates/simple/search.html:11
  839. #: searx/templates/simple/simple_search.html:7
  840. msgid "search"
  841. msgstr "traži"
  842. #: searx/templates/simple/stats.html:21
  843. msgid "There is currently no data available. "
  844. msgstr "Trenutačno nema dostupnih podataka."
  845. #: searx/templates/simple/preferences/engines.html:24
  846. #: searx/templates/simple/stats.html:25
  847. msgid "Engine name"
  848. msgstr "Naziv tražilice"
  849. #: searx/templates/simple/stats.html:26
  850. msgid "Scores"
  851. msgstr "Pogodci"
  852. #: searx/templates/simple/stats.html:27
  853. msgid "Result count"
  854. msgstr "Broj rezultata"
  855. #: searx/templates/simple/elements/engines_msg.html:7
  856. #: searx/templates/simple/preferences/engines.html:31
  857. #: searx/templates/simple/stats.html:28
  858. msgid "Response time"
  859. msgstr "Vrijeme odziva"
  860. #: searx/templates/simple/preferences/engines.html:35
  861. #: searx/templates/simple/stats.html:29
  862. msgid "Reliability"
  863. msgstr "Pouzdanost"
  864. #: searx/templates/simple/stats.html:59
  865. msgid "Total"
  866. msgstr "Ukupno"
  867. #: searx/templates/simple/stats.html:60
  868. msgid "HTTP"
  869. msgstr "HTTP"
  870. #: searx/templates/simple/stats.html:61
  871. msgid "Processing"
  872. msgstr "Obrada"
  873. #: searx/templates/simple/stats.html:99
  874. msgid "Warnings"
  875. msgstr "Upozorenja"
  876. #: searx/templates/simple/stats.html:99
  877. msgid "Errors and exceptions"
  878. msgstr "Pogreške i iznimke"
  879. #: searx/templates/simple/stats.html:105
  880. msgid "Exception"
  881. msgstr "Iznimka"
  882. #: searx/templates/simple/stats.html:107
  883. msgid "Message"
  884. msgstr "Poruka"
  885. #: searx/templates/simple/stats.html:109
  886. msgid "Percentage"
  887. msgstr "Postotak"
  888. #: searx/templates/simple/stats.html:111
  889. msgid "Parameter"
  890. msgstr "Parametar"
  891. #: searx/templates/simple/result_templates/files.html:36
  892. #: searx/templates/simple/stats.html:119
  893. msgid "Filename"
  894. msgstr "Naziv datoteke"
  895. #: searx/templates/simple/stats.html:120
  896. msgid "Function"
  897. msgstr "Funkcija"
  898. #: searx/templates/simple/stats.html:121
  899. msgid "Code"
  900. msgstr "Koda"
  901. #: searx/templates/simple/stats.html:128
  902. msgid "Checker"
  903. msgstr "Provjernik"
  904. #: searx/templates/simple/stats.html:131
  905. msgid "Failed test"
  906. msgstr "Neuspjeli test"
  907. #: searx/templates/simple/stats.html:132
  908. msgid "Comment(s)"
  909. msgstr "Komentar(i)"
  910. #: searx/templates/simple/answer/translations.html:12
  911. #: searx/templates/simple/preferences/answerers.html:8
  912. msgid "Examples"
  913. msgstr "Primjeri"
  914. #: searx/templates/simple/answer/translations.html:21
  915. msgid "Definitions"
  916. msgstr "Definicije"
  917. #: searx/templates/simple/answer/translations.html:30
  918. msgid "Synonyms"
  919. msgstr "Sinonimi"
  920. #: searx/templates/simple/answer/weather.html:19
  921. msgid "Feels Like"
  922. msgstr "Osjeća se kao"
  923. #: searx/templates/simple/elements/answers.html:2
  924. msgid "Answers"
  925. msgstr "Odgovori"
  926. #: searx/templates/simple/elements/apis.html:3
  927. msgid "Download results"
  928. msgstr "Preuzmi rezultate"
  929. #: searx/templates/simple/elements/corrections.html:2
  930. msgid "Try searching for:"
  931. msgstr "Pokušajte tražiti sljedeće:"
  932. #: searx/templates/simple/elements/engines_msg.html:4
  933. msgid "Messages from the search engines"
  934. msgstr "Poruke s tražilica"
  935. #: searx/templates/simple/elements/engines_msg.html:7
  936. msgid "seconds"
  937. msgstr "sekunde"
  938. #: searx/templates/simple/elements/search_url.html:3
  939. msgid "Search URL"
  940. msgstr "Pretraži URL"
  941. #: searx/templates/simple/elements/search_url.html:4
  942. #: searx/templates/simple/preferences/cookies.html:54
  943. msgid "Copied"
  944. msgstr "Kopirano"
  945. #: searx/templates/simple/elements/search_url.html:4
  946. #: searx/templates/simple/preferences/cookies.html:54
  947. msgid "Copy"
  948. msgstr "Kopiraj"
  949. #: searx/templates/simple/elements/suggestions.html:3
  950. msgid "Suggestions"
  951. msgstr "Prijedlozi"
  952. #: searx/templates/simple/filters/languages.html:1
  953. #: searx/templates/simple/preferences/language.html:2
  954. msgid "Search language"
  955. msgstr "Jezik pretraživanja"
  956. #: searx/templates/simple/filters/languages.html:4
  957. #: searx/templates/simple/preferences/language.html:7
  958. msgid "Default language"
  959. msgstr "Zadani jezik"
  960. #: searx/templates/simple/filters/languages.html:8
  961. #: searx/templates/simple/preferences/language.html:11
  962. msgid "Auto-detect"
  963. msgstr "Automatski otkrij"
  964. #: searx/templates/simple/filters/safesearch.html:1
  965. #: searx/templates/simple/filters/safesearch.html:2
  966. #: searx/templates/simple/filters/safesearch.html:3
  967. #: searx/templates/simple/filters/safesearch.html:4
  968. #: searx/templates/simple/preferences/engines.html:27
  969. #: searx/templates/simple/preferences/safesearch.html:2
  970. msgid "SafeSearch"
  971. msgstr "Sigurno pretraživanje"
  972. #: searx/templates/simple/filters/safesearch.html:2
  973. #: searx/templates/simple/preferences/safesearch.html:7
  974. msgid "Strict"
  975. msgstr "Strogo"
  976. #: searx/templates/simple/filters/safesearch.html:3
  977. #: searx/templates/simple/preferences/safesearch.html:11
  978. msgid "Moderate"
  979. msgstr "Umjereno"
  980. #: searx/templates/simple/filters/safesearch.html:4
  981. #: searx/templates/simple/preferences/safesearch.html:15
  982. msgid "None"
  983. msgstr "Ništa"
  984. #: searx/templates/simple/filters/time_range.html:1
  985. #: searx/templates/simple/preferences/engines.html:28
  986. msgid "Time range"
  987. msgstr "Vremenski raspon"
  988. #: searx/templates/simple/filters/time_range.html:3
  989. msgid "Anytime"
  990. msgstr "Bilokad"
  991. #: searx/templates/simple/filters/time_range.html:6
  992. msgid "Last day"
  993. msgstr "Posljednji dan"
  994. #: searx/templates/simple/filters/time_range.html:9
  995. msgid "Last week"
  996. msgstr "Prošli tjedan"
  997. #: searx/templates/simple/filters/time_range.html:12
  998. msgid "Last month"
  999. msgstr "Prošli mjesec"
  1000. #: searx/templates/simple/filters/time_range.html:15
  1001. msgid "Last year"
  1002. msgstr "Prošle godine"
  1003. #: searx/templates/simple/messages/no_cookies.html:3
  1004. msgid "Information!"
  1005. msgstr "Informacija!"
  1006. #: searx/templates/simple/messages/no_cookies.html:4
  1007. msgid "currently, there are no cookies defined."
  1008. msgstr "trenutačno nema definiranih kolačića."
  1009. #: searx/templates/simple/messages/no_results.html:6
  1010. msgid "Sorry!"
  1011. msgstr "Ispričavamo se!"
  1012. #: searx/templates/simple/messages/no_results.html:12
  1013. msgid "No results were found. You can try to:"
  1014. msgstr "Nema rezultata. Možete pokušati:"
  1015. #: searx/templates/simple/messages/no_results.html:14
  1016. msgid "There are no more results. You can try to:"
  1017. msgstr "Nema više rezultata. Možete pokušati:"
  1018. #: searx/templates/simple/messages/no_results.html:19
  1019. msgid "Refresh the page."
  1020. msgstr "Osvježiti stranicu."
  1021. #: searx/templates/simple/messages/no_results.html:20
  1022. msgid "Search for another query or select another category (above)."
  1023. msgstr "Potražiti druge upite ili da odaberete drugu kategoriju (iznad)."
  1024. #: searx/templates/simple/messages/no_results.html:21
  1025. msgid "Change the search engine used in the preferences:"
  1026. msgstr "Promijenite tražilicu korištenu u postavkama:"
  1027. #: searx/templates/simple/messages/no_results.html:22
  1028. msgid "Switch to another instance:"
  1029. msgstr "Prijeđi na drugu instancu:"
  1030. #: searx/templates/simple/messages/no_results.html:24
  1031. msgid "Search for another query or select another category."
  1032. msgstr "Potražite drugi upit ili odaberite drugu kategoriju."
  1033. #: searx/templates/simple/messages/no_results.html:25
  1034. msgid "Go back to the previous page using the previous page button."
  1035. msgstr "Vratite se na prethodnu stranicu pomoću gumba prethodne stranice."
  1036. #: searx/templates/simple/preferences/answerers.html:4
  1037. #: searx/templates/simple/preferences/engines.html:23
  1038. msgid "Allow"
  1039. msgstr "Dozvoli"
  1040. #: searx/templates/simple/preferences/answerers.html:5
  1041. msgid "Keywords (first word in query)"
  1042. msgstr "Ključne riječi (prva riječ u upitu)"
  1043. #: searx/templates/simple/preferences/answerers.html:6
  1044. #: searx/templates/simple/result_templates/packages.html:7
  1045. msgid "Name"
  1046. msgstr "Naziv"
  1047. #: searx/templates/simple/preferences/answerers.html:7
  1048. msgid "Description"
  1049. msgstr "Opis"
  1050. #: searx/templates/simple/preferences/answerers.html:13
  1051. msgid "This is the list of SearXNG's instant answering modules."
  1052. msgstr "Ovo je popis SearXNG-ovih modula za trenutno javljanje."
  1053. #: searx/templates/simple/preferences/answerers.html:29
  1054. msgid "This is the list of plugins."
  1055. msgstr "Ovo je popis dodataka."
  1056. #: searx/templates/simple/preferences/autocomplete.html:2
  1057. msgid "Autocomplete"
  1058. msgstr "Automatsko dovršavanje"
  1059. #: searx/templates/simple/preferences/autocomplete.html:15
  1060. msgid "Show possible queries as you type"
  1061. msgstr "Prikažite moguće upite dok tipkate"
  1062. #: searx/templates/simple/preferences/center_alignment.html:2
  1063. msgid "Center Alignment"
  1064. msgstr "Središnje poravnanje"
  1065. #: searx/templates/simple/preferences/center_alignment.html:14
  1066. msgid "Display results in the center of the page (Oscar layout)."
  1067. msgstr "Prikažite rezultate u sredini stranice (Oskar izgled)."
  1068. #: searx/templates/simple/preferences/cookies.html:2
  1069. msgid ""
  1070. "This is the list of cookies and their values SearXNG is storing on your "
  1071. "computer."
  1072. msgstr ""
  1073. "Ovo je popis kolačića i njihovih vrijednosti koje SearXNG pohranjuje na "
  1074. "vašem kompjuteru."
  1075. #: searx/templates/simple/preferences/cookies.html:3
  1076. msgid "With this list, you can assess the transparency of SearXNG."
  1077. msgstr "Pomoću ovog popisa možete procijeniti prozirnost SearXNG-a."
  1078. #: searx/templates/simple/preferences/cookies.html:9
  1079. msgid "Cookie name"
  1080. msgstr "Naziv kolačića"
  1081. #: searx/templates/simple/preferences/cookies.html:10
  1082. msgid "Value"
  1083. msgstr "Vrijednost"
  1084. #: searx/templates/simple/preferences/cookies.html:23
  1085. msgid "Search URL of the currently saved preferences"
  1086. msgstr "Pretraži URL adresu trenutno spremljenih postavki"
  1087. #: searx/templates/simple/preferences/cookies.html:32
  1088. msgid ""
  1089. "Note: specifying custom settings in the search URL can reduce privacy by "
  1090. "leaking data to the clicked result sites."
  1091. msgstr ""
  1092. "Napomena: određivanje prilagođenih postavki u URL-u za pretraživanje može"
  1093. " smanjiti privatnost zbog propuštanja podataka na kliknute web lokacije "
  1094. "rezultata."
  1095. #: searx/templates/simple/preferences/cookies.html:35
  1096. msgid "URL to restore your preferences in another browser"
  1097. msgstr "URL da biste vratili vaše postavke u drugom pregledniku"
  1098. #: searx/templates/simple/preferences/cookies.html:43
  1099. msgid ""
  1100. "A URL containing your preferences. This URL can be used to restore your "
  1101. "settings on a different device."
  1102. msgstr ""
  1103. "URL koji sadrži vaše postavke. Ovaj URL može se koristiti da vam vrati "
  1104. "postavke na drugom uređaju."
  1105. #: searx/templates/simple/preferences/cookies.html:46
  1106. msgid "Copy preferences hash"
  1107. msgstr "Kopirajte preferencu hash-a"
  1108. #: searx/templates/simple/preferences/cookies.html:57
  1109. msgid "Insert copied preferences hash (without URL) to restore"
  1110. msgstr "Umetnite kopiranu preferencu hash-a (bez URL-a) za rješenje"
  1111. #: searx/templates/simple/preferences/cookies.html:59
  1112. msgid "Preferences hash"
  1113. msgstr "Preference hash-a"
  1114. #: searx/templates/simple/preferences/doi_resolver.html:1
  1115. msgid "Digital Object Identifier (DOI)"
  1116. msgstr "Digitalno-objektatski indentifikator (DOI)"
  1117. #: searx/templates/simple/preferences/doi_resolver.html:6
  1118. msgid "Open Access DOI resolver"
  1119. msgstr "Otvoreni pristup DOI rješenja"
  1120. #: searx/templates/simple/preferences/doi_resolver.html:18
  1121. msgid "Select service used by DOI rewrite"
  1122. msgstr "Odaberite uslugu koju koristi DOI iznovopis"
  1123. #: searx/templates/simple/preferences/engines.html:9
  1124. msgid ""
  1125. "This tab does not exist in the user interface, but you can search with "
  1126. "these engines via !bangs."
  1127. msgstr ""
  1128. "Ova kartica ne postoji u korisničkom sučelju, ali možete pretraživati s "
  1129. "ovim tražilicama putem !bangs."
  1130. #: searx/templates/simple/preferences/engines.html:15
  1131. msgid "Enable all"
  1132. msgstr "Omogući sve"
  1133. #: searx/templates/simple/preferences/engines.html:16
  1134. msgid "Disable all"
  1135. msgstr "Onemogući sve"
  1136. #: searx/templates/simple/preferences/engines.html:25
  1137. msgid "!bang"
  1138. msgstr "!bang"
  1139. #: searx/templates/simple/preferences/engines.html:26
  1140. msgid "Supports selected language"
  1141. msgstr "Podržava odabrani jezik"
  1142. #: searx/templates/simple/preferences/engines.html:29
  1143. msgid "Weight"
  1144. msgstr "Težina"
  1145. #: searx/templates/simple/preferences/engines.html:33
  1146. msgid "Max time"
  1147. msgstr "Maksimalno vrijeme"
  1148. #: searx/templates/simple/preferences/favicon.html:2
  1149. msgid "Favicon Resolver"
  1150. msgstr "Razrješivač favikona"
  1151. #: searx/templates/simple/preferences/favicon.html:15
  1152. msgid "Display favicons near search results"
  1153. msgstr "Prikažite favikone pored rezultata pretraživanja"
  1154. #: searx/templates/simple/preferences/footer.html:2
  1155. msgid ""
  1156. "These settings are stored in your cookies. This allows us not to store "
  1157. "this data about you."
  1158. msgstr ""
  1159. "Ove postavke pohranjuju se u vašim kolačićima. To nam omogućuje da ne "
  1160. "pohranjujemo ove podatke o vama."
  1161. #: searx/templates/simple/preferences/footer.html:3
  1162. msgid "These cookies serve your sole convenience; we don't use them to track you."
  1163. msgstr ""
  1164. "Ovi kolačići služe isključivo vašoj udobnosti; ne koristimo ih da vas "
  1165. "špijuniramo."
  1166. #: searx/templates/simple/preferences/footer.html:6
  1167. msgid "Save"
  1168. msgstr "Sačuvati"
  1169. #: searx/templates/simple/preferences/footer.html:9
  1170. msgid "Reset defaults"
  1171. msgstr "Vraćanje zadanih postavki"
  1172. #: searx/templates/simple/preferences/footer.html:13
  1173. msgid "Back"
  1174. msgstr "Natrag"
  1175. #: searx/templates/simple/preferences/hotkeys.html:2
  1176. msgid "Hotkeys"
  1177. msgstr "Prečaci"
  1178. #: searx/templates/simple/preferences/hotkeys.html:13
  1179. msgid "Vim-like"
  1180. msgstr "Slično Vimu"
  1181. #: searx/templates/simple/preferences/hotkeys.html:18
  1182. msgid ""
  1183. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  1184. "key on main or result page to get help."
  1185. msgstr ""
  1186. "Krećite se rezultatima pretraživanja pomoću prečaca (potreban je "
  1187. "JavaScript). Pritisnite tipku \"h\" na glavnoj stranici ili stranici s "
  1188. "rezultatima za pomoć."
  1189. #: searx/templates/simple/preferences/image_proxy.html:2
  1190. msgid "Image proxy"
  1191. msgstr "Proxy slike"
  1192. #: searx/templates/simple/preferences/image_proxy.html:14
  1193. msgid "Proxy image results through SearXNG"
  1194. msgstr "Proksirajte rezultate slika putem SearXNG-a"
  1195. #: searx/templates/simple/preferences/infinite_scroll.html:2
  1196. msgid "Infinite scroll"
  1197. msgstr "Beskonačno pomicanje"
  1198. #: searx/templates/simple/preferences/infinite_scroll.html:14
  1199. msgid ""
  1200. "Automatically load the next page when scrolling to the bottom of the "
  1201. "current page"
  1202. msgstr ""
  1203. "Automatski učitajte sljedeću stranicu prilikom pomicanja na dno "
  1204. "trenutačne stranice"
  1205. #: searx/templates/simple/preferences/language.html:24
  1206. msgid "What language do you prefer for search?"
  1207. msgstr "Koji jezik želite za pretraživanje?"
  1208. #: searx/templates/simple/preferences/language.html:25
  1209. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1210. msgstr "Odaberite Automatsko otkrivanje kako bi SearXNG otkrio jezik vašeg upita."
  1211. #: searx/templates/simple/preferences/method.html:2
  1212. msgid "HTTP Method"
  1213. msgstr "HTTP metoda"
  1214. #: searx/templates/simple/preferences/method.html:14
  1215. msgid "Change how forms are submitted"
  1216. msgstr "Promijenite način slanja obrazaca"
  1217. #: searx/templates/simple/preferences/query_in_title.html:2
  1218. msgid "Query in the page's title"
  1219. msgstr "Upit u naslovu stranice"
  1220. #: searx/templates/simple/preferences/query_in_title.html:14
  1221. msgid ""
  1222. "When enabled, the result page's title contains your query. Your browser "
  1223. "can record this title"
  1224. msgstr ""
  1225. "Kada je omogućeno, naslov stranice s rezultatima sadrži vaš upit. Vaš "
  1226. "preglednik može zabilježiti ovaj naslov"
  1227. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1228. msgid "Results in new tabs"
  1229. msgstr "Rezultati u novim karticama"
  1230. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1231. msgid "Open result links in new browser tabs"
  1232. msgstr "Otvori poveznice rezultata u novim karticama preglednika"
  1233. #: searx/templates/simple/preferences/safesearch.html:20
  1234. msgid "Filter content"
  1235. msgstr "Filtriranje sadržaja"
  1236. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1237. msgid "Search on category select"
  1238. msgstr "Traži u odabranoj kategoriji"
  1239. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1240. msgid ""
  1241. "Perform a search immediately if a category is selected. Disable to select"
  1242. " multiple categories"
  1243. msgstr ""
  1244. "Odmah izvrši pretragu ako je odabrana kategorija. Onemogući za odabir "
  1245. "više kategorija"
  1246. #: searx/templates/simple/preferences/theme.html:2
  1247. msgid "Theme"
  1248. msgstr "Tema"
  1249. #: searx/templates/simple/preferences/theme.html:14
  1250. msgid "Change the layout of SearXNG"
  1251. msgstr "Promijenite izgled SearXNG-a"
  1252. #: searx/templates/simple/preferences/theme.html:19
  1253. msgid "Theme style"
  1254. msgstr "Izgled teme"
  1255. #: searx/templates/simple/preferences/theme.html:31
  1256. msgid "Choose auto to follow your browser settings"
  1257. msgstr "Odaberite automatski kako biste pratili postavke vašeg preglednika"
  1258. #: searx/templates/simple/preferences/tokens.html:2
  1259. msgid "Engine tokens"
  1260. msgstr "Motorni žetoni"
  1261. #: searx/templates/simple/preferences/tokens.html:9
  1262. msgid "Access tokens for private engines"
  1263. msgstr "Pristupite žetone za privatne motore"
  1264. #: searx/templates/simple/preferences/ui_locale.html:2
  1265. msgid "Interface language"
  1266. msgstr "Jezik sučelja"
  1267. #: searx/templates/simple/preferences/ui_locale.html:14
  1268. msgid "Change the language of the layout"
  1269. msgstr "Promijenite jezik prikaza"
  1270. #: searx/templates/simple/preferences/urlformatting.html:2
  1271. msgid "URL formatting"
  1272. msgstr "URL formatiranje"
  1273. #: searx/templates/simple/preferences/urlformatting.html:8
  1274. msgid "Pretty"
  1275. msgstr "Lijepo"
  1276. #: searx/templates/simple/preferences/urlformatting.html:13
  1277. msgid "Full"
  1278. msgstr "Cijelo"
  1279. #: searx/templates/simple/preferences/urlformatting.html:18
  1280. msgid "Host"
  1281. msgstr "Izvorno"
  1282. #: searx/templates/simple/preferences/urlformatting.html:23
  1283. msgid "Change result URL formatting"
  1284. msgstr "Promjenite oblikovanje URL-a rezultata"
  1285. #: searx/templates/simple/result_templates/code.html:13
  1286. msgid "repo"
  1287. msgstr "repozitoriji"
  1288. #: searx/templates/simple/result_templates/default.html:6
  1289. #: searx/templates/simple/result_templates/files.html:8
  1290. #: searx/templates/simple/result_templates/files.html:11
  1291. msgid "show media"
  1292. msgstr "prikaži medije"
  1293. #: searx/templates/simple/result_templates/default.html:6
  1294. #: searx/templates/simple/result_templates/files.html:8
  1295. msgid "hide media"
  1296. msgstr "sakrij medije"
  1297. #: searx/templates/simple/result_templates/default.html:14
  1298. #: searx/templates/simple/result_templates/videos.html:14
  1299. msgid "This site did not provide any description."
  1300. msgstr "Ova stranica nije dala nikakav opis."
  1301. #: searx/templates/simple/result_templates/files.html:38
  1302. #: searx/templates/simple/result_templates/images.html:22
  1303. #: searx/templates/simple/result_templates/torrent.html:18
  1304. msgid "Filesize"
  1305. msgstr "Veličina datoteke"
  1306. #: searx/templates/simple/result_templates/files.html:40
  1307. msgid "Date"
  1308. msgstr "Datum"
  1309. #: searx/templates/simple/result_templates/files.html:42
  1310. #: searx/templates/simple/result_templates/paper.html:24
  1311. msgid "Type"
  1312. msgstr "Tip"
  1313. #: searx/templates/simple/result_templates/images.html:20
  1314. msgid "Resolution"
  1315. msgstr "Razlučivost"
  1316. #: searx/templates/simple/result_templates/images.html:21
  1317. msgid "Format"
  1318. msgstr "Format"
  1319. #: searx/templates/simple/result_templates/images.html:24
  1320. msgid "Engine"
  1321. msgstr "Motor"
  1322. #: searx/templates/simple/result_templates/images.html:25
  1323. msgid "View source"
  1324. msgstr "Prikaži izvor"
  1325. #: searx/templates/simple/result_templates/map.html:12
  1326. msgid "address"
  1327. msgstr "adresa"
  1328. #: searx/templates/simple/result_templates/map.html:43
  1329. msgid "show map"
  1330. msgstr "prikaži kartu"
  1331. #: searx/templates/simple/result_templates/map.html:43
  1332. msgid "hide map"
  1333. msgstr "sakrij kartu"
  1334. #: searx/templates/simple/result_templates/packages.html:12
  1335. msgid "Version"
  1336. msgstr "Verzija"
  1337. #: searx/templates/simple/result_templates/packages.html:18
  1338. msgid "Maintainer"
  1339. msgstr "Održavatelj"
  1340. #: searx/templates/simple/result_templates/packages.html:24
  1341. msgid "Updated at"
  1342. msgstr "Ažurirano u"
  1343. #: searx/templates/simple/result_templates/packages.html:30
  1344. #: searx/templates/simple/result_templates/paper.html:25
  1345. msgid "Tags"
  1346. msgstr "Oznake"
  1347. #: searx/templates/simple/result_templates/packages.html:36
  1348. msgid "Popularity"
  1349. msgstr "Popularnost"
  1350. #: searx/templates/simple/result_templates/packages.html:42
  1351. msgid "License"
  1352. msgstr "Licenca"
  1353. #: searx/templates/simple/result_templates/packages.html:52
  1354. msgid "Project"
  1355. msgstr "Projekt"
  1356. #: searx/templates/simple/result_templates/packages.html:55
  1357. msgid "Project homepage"
  1358. msgstr "Projekt početna stranica"
  1359. #: searx/templates/simple/result_templates/paper.html:5
  1360. msgid "Published date"
  1361. msgstr "Datum objave"
  1362. #: searx/templates/simple/result_templates/paper.html:9
  1363. msgid "Journal"
  1364. msgstr "Časopis"
  1365. #: searx/templates/simple/result_templates/paper.html:22
  1366. msgid "Editor"
  1367. msgstr "Urednik"
  1368. #: searx/templates/simple/result_templates/paper.html:23
  1369. msgid "Publisher"
  1370. msgstr "Izdavač"
  1371. #: searx/templates/simple/result_templates/paper.html:26
  1372. msgid "DOI"
  1373. msgstr "DOI"
  1374. #: searx/templates/simple/result_templates/paper.html:27
  1375. msgid "ISSN"
  1376. msgstr "ISSN"
  1377. #: searx/templates/simple/result_templates/paper.html:28
  1378. msgid "ISBN"
  1379. msgstr "ISBN"
  1380. #: searx/templates/simple/result_templates/paper.html:33
  1381. msgid "PDF"
  1382. msgstr "PDF"
  1383. #: searx/templates/simple/result_templates/paper.html:34
  1384. msgid "HTML"
  1385. msgstr "HTML"
  1386. #: searx/templates/simple/result_templates/torrent.html:7
  1387. msgid "magnet link"
  1388. msgstr "magnet link"
  1389. #: searx/templates/simple/result_templates/torrent.html:8
  1390. msgid "torrent file"
  1391. msgstr "torrent datoteka"
  1392. #: searx/templates/simple/result_templates/torrent.html:13
  1393. msgid "Seeder"
  1394. msgstr "Hranilac"
  1395. #: searx/templates/simple/result_templates/torrent.html:14
  1396. msgid "Leecher"
  1397. msgstr "Leecher"
  1398. #: searx/templates/simple/result_templates/torrent.html:19
  1399. msgid "Number of Files"
  1400. msgstr "Broj datoteka"
  1401. #: searx/templates/simple/result_templates/videos.html:6
  1402. msgid "show video"
  1403. msgstr "prikaži video"
  1404. #: searx/templates/simple/result_templates/videos.html:6
  1405. msgid "hide video"
  1406. msgstr "sakrij video"
  1407. #~ msgid "Engine time (sec)"
  1408. #~ msgstr "Vrijeme pretraživanja (sek)"
  1409. #~ msgid "Page loads (sec)"
  1410. #~ msgstr "Učitavanje stranice (sek)"
  1411. #~ msgid "Errors"
  1412. #~ msgstr "Greške"
  1413. #~ msgid "CAPTCHA required"
  1414. #~ msgstr "Treba CAPTCHU ispuniti"
  1415. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1416. #~ msgstr "Zamijeni HTTP veze sa HTTPS ukoliko je moguće"
  1417. #~ msgid ""
  1418. #~ "Results are opened in the same "
  1419. #~ "window by default. This plugin "
  1420. #~ "overwrites the default behaviour to open"
  1421. #~ " links on new tabs/windows. (JavaScript "
  1422. #~ "required)"
  1423. #~ msgstr ""
  1424. #~ "Po zadanom, rezultati se otvaraju u "
  1425. #~ "istom prozoru. Ovaj dodatak poništava "
  1426. #~ "zadano ponašanje za otvaranje veza na"
  1427. #~ " novim karticama/prozorima. (Potreban je "
  1428. #~ "JavaScript)"
  1429. #~ msgid "Color"
  1430. #~ msgstr "Boja"
  1431. #~ msgid "Blue (default)"
  1432. #~ msgstr "Plava (zadano)"
  1433. #~ msgid "Violet"
  1434. #~ msgstr "Ljubičasta"
  1435. #~ msgid "Green"
  1436. #~ msgstr "Zelena"
  1437. #~ msgid "Cyan"
  1438. #~ msgstr "Cijan"
  1439. #~ msgid "Orange"
  1440. #~ msgstr "Narančasta"
  1441. #~ msgid "Red"
  1442. #~ msgstr "Crvena"
  1443. #~ msgid "Category"
  1444. #~ msgstr "Kategorija"
  1445. #~ msgid "Block"
  1446. #~ msgstr "Blokiraj"
  1447. #~ msgid "original context"
  1448. #~ msgstr "izvorni sadržaj"
  1449. #~ msgid "Plugins"
  1450. #~ msgstr "Dodaci"
  1451. #~ msgid "Answerers"
  1452. #~ msgstr "Davatelji odgovora"
  1453. #~ msgid "Avg. time"
  1454. #~ msgstr "Prosječno vrijeme"
  1455. #~ msgid "show details"
  1456. #~ msgstr "prikaži detalje"
  1457. #~ msgid "hide details"
  1458. #~ msgstr "sakrij detalje"
  1459. #~ msgid "Load more..."
  1460. #~ msgstr "Učitaj više..."
  1461. #~ msgid "Loading..."
  1462. #~ msgstr "Učitavanje..."
  1463. #~ msgid "Change searx layout"
  1464. #~ msgstr "Promijenite izgled searxa"
  1465. #~ msgid "Proxying image results through searx"
  1466. #~ msgstr "Koristite proxy za slike dobivene pretraživanjem searxa"
  1467. #~ msgid "This is the list of searx's instant answering modules."
  1468. #~ msgstr "Ovo je popis searx modula za odgovore"
  1469. #~ msgid ""
  1470. #~ "This is the list of cookies and"
  1471. #~ " their values searx is storing on "
  1472. #~ "your computer."
  1473. #~ msgstr ""
  1474. #~ "Ovo je popis kolačića i njihovih "
  1475. #~ "vrijednosti koje pohranjuju na Vašem "
  1476. #~ "računalu."
  1477. #~ msgid "With that list, you can assess searx transparency."
  1478. #~ msgstr "S tim popisom možete procijeniti transparentnost pretraživanja."
  1479. #~ msgid "It look like you are using searx first time."
  1480. #~ msgstr "Izgleda kao da prvi puta koristite searx."
  1481. #~ msgid "Please, try again later or find another searx instance."
  1482. #~ msgstr "Pokušajte ponovo kasnije ili potražite drugu searx instancu."
  1483. #~ msgid "Themes"
  1484. #~ msgstr "Teme"
  1485. #~ msgid "Reliablity"
  1486. #~ msgstr ""
  1487. #~ msgid ""
  1488. #~ "When enabled, the result page's title"
  1489. #~ " contains your query. Your browser "
  1490. #~ "can record this title."
  1491. #~ msgstr ""
  1492. #~ msgid "Method"
  1493. #~ msgstr "Metoda"
  1494. #~ msgid ""
  1495. #~ "This tab does not show up for "
  1496. #~ "search results but you can search "
  1497. #~ "the engines listed here via bangs."
  1498. #~ msgstr ""
  1499. #~ msgid "Advanced settings"
  1500. #~ msgstr "Napredne postavke"
  1501. #~ msgid "Close"
  1502. #~ msgstr "Zatvori"
  1503. #~ msgid "Language"
  1504. #~ msgstr "Jezik"
  1505. #~ msgid "broken"
  1506. #~ msgstr ""
  1507. #~ msgid "supported"
  1508. #~ msgstr "podržano"
  1509. #~ msgid "not supported"
  1510. #~ msgstr "nije podržano"
  1511. #~ msgid "about"
  1512. #~ msgstr "o nama"
  1513. #~ msgid "Avg."
  1514. #~ msgstr ""
  1515. #~ msgid "User Interface"
  1516. #~ msgstr ""
  1517. #~ msgid "Choose style for this theme"
  1518. #~ msgstr "Odaberite stil za ovu temu"
  1519. #~ msgid "Style"
  1520. #~ msgstr "Stil"
  1521. #~ msgid "Show advanced settings"
  1522. #~ msgstr ""
  1523. #~ msgid "Show advanced settings panel in the home page by default"
  1524. #~ msgstr ""
  1525. #~ msgid "Allow all"
  1526. #~ msgstr "Dozvoli sve"
  1527. #~ msgid "Disable all"
  1528. #~ msgstr "Isključi sve"
  1529. #~ msgid "Selected language"
  1530. #~ msgstr "Odabrani jezik"
  1531. #~ msgid "Query"
  1532. #~ msgstr ""
  1533. #~ msgid "save"
  1534. #~ msgstr "spremi"
  1535. #~ msgid "back"
  1536. #~ msgstr "natrag"
  1537. #~ msgid "Links"
  1538. #~ msgstr "Poveznice"
  1539. #~ msgid "RSS subscription"
  1540. #~ msgstr "RSS pretplata"
  1541. #~ msgid "Search results"
  1542. #~ msgstr "Rezultati pretraživanja"
  1543. #~ msgid "next page"
  1544. #~ msgstr "Sljedeća stranica"
  1545. #~ msgid "previous page"
  1546. #~ msgstr "Prethodna stranica"
  1547. #~ msgid "Start search"
  1548. #~ msgstr "Pokreni pretraživanje"
  1549. #~ msgid "Clear search"
  1550. #~ msgstr "Očistite pretražnik"
  1551. #~ msgid "Clear"
  1552. #~ msgstr "Očisti"
  1553. #~ msgid "stats"
  1554. #~ msgstr "statistika"
  1555. #~ msgid "Heads up!"
  1556. #~ msgstr "Glavu gore!"
  1557. #~ msgid "It look like you are using SearXNG first time."
  1558. #~ msgstr ""
  1559. #~ msgid "Well done!"
  1560. #~ msgstr "Odlično!"
  1561. #~ msgid "Settings saved successfully."
  1562. #~ msgstr "Postavke uspješno spremljene."
  1563. #~ msgid "Oh snap!"
  1564. #~ msgstr "Ups!"
  1565. #~ msgid "Something went wrong."
  1566. #~ msgstr "Nešto je pošlo po zlu."
  1567. #~ msgid "Date"
  1568. #~ msgstr ""
  1569. #~ msgid "Type"
  1570. #~ msgstr ""
  1571. #~ msgid "Get image"
  1572. #~ msgstr "Dohvati sliku"
  1573. #~ msgid "Center Alignment"
  1574. #~ msgstr ""
  1575. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1576. #~ msgstr "Prikazuje rezultate u sredini stranice (Oscar raspored)."
  1577. #~ msgid "preferences"
  1578. #~ msgstr "postavke"
  1579. #~ msgid "Scores per result"
  1580. #~ msgstr "Pogodci po rezultatu"
  1581. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1582. #~ msgstr "meta-tražilica koja poštuje privatnost"
  1583. #~ msgid "No abstract is available for this publication."
  1584. #~ msgstr "Nijedan sažetak nije dostupan za ovu objavu."
  1585. #~ msgid "Self Informations"
  1586. #~ msgstr "Podatci o sebi"
  1587. #~ msgid ""
  1588. #~ "Change how forms are submited, <a "
  1589. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1590. #~ " rel=\"external\">learn more about request "
  1591. #~ "methods</a>"
  1592. #~ msgstr ""
  1593. #~ "Promijenite način slanja obrasca, <a "
  1594. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1595. #~ " rel=\"external\">saznajte više o metodama "
  1596. #~ "zahtjeva</a>"
  1597. #~ msgid ""
  1598. #~ "This plugin checks if the address "
  1599. #~ "of the request is a TOR exit "
  1600. #~ "node, and informs the user if it"
  1601. #~ " is, like check.torproject.org but from "
  1602. #~ "searxng."
  1603. #~ msgstr ""
  1604. #~ "Ovaj plugin provjerava da li je "
  1605. #~ "adresa zahtjeva TOR izlazna adresa, i"
  1606. #~ " šalje obavijest korisniku, kao "
  1607. #~ "check.torproject.org ali od strane searxng."
  1608. #~ msgid ""
  1609. #~ "The TOR exit node list "
  1610. #~ "(https://check.torproject.org/exit-addresses) is "
  1611. #~ "unreachable."
  1612. #~ msgstr ""
  1613. #~ "TOR lista izlaznih adresa "
  1614. #~ "(https://check.torproject.org/exit-addresses) je "
  1615. #~ "nedostupna."
  1616. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1617. #~ msgstr "Vi koristite TOR. Vaša IP adresa se čini da je: {ip_address}."
  1618. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1619. #~ msgstr "Vi koristite TOR. Izgleda da je vaša IP adresa: {ip_address}."
  1620. #~ msgid ""
  1621. #~ "The could not download the list of"
  1622. #~ " Tor exit-nodes from "
  1623. #~ "https://check.torproject.org/exit-addresses."
  1624. #~ msgstr ""
  1625. #~ msgid ""
  1626. #~ "You are using Tor. It looks like"
  1627. #~ " you have this external IP address:"
  1628. #~ " {ip_address}."
  1629. #~ msgstr ""
  1630. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1631. #~ msgstr ""
  1632. #~ msgid "Autodetect search language"
  1633. #~ msgstr ""
  1634. #~ msgid "Automatically detect the query search language and switch to it."
  1635. #~ msgstr ""
  1636. #~ msgid "others"
  1637. #~ msgstr "drugi"
  1638. #~ msgid ""
  1639. #~ "This tab does not show up for "
  1640. #~ "search results, but you can search "
  1641. #~ "the engines listed here via bangs."
  1642. #~ msgstr ""
  1643. #~ "Ova kartica nije prikazana za rezultate"
  1644. #~ " pretrage, ali možete pretraživati motore"
  1645. #~ " navedene ovdje putem šiških."
  1646. #~ msgid "Shortcut"
  1647. #~ msgstr "Prečac"
  1648. #~ msgid "!bang"
  1649. #~ msgstr ""
  1650. #~ msgid ""
  1651. #~ "This tab dues not exists in the"
  1652. #~ " user interface, but you can search"
  1653. #~ " in these engines by its !bangs."
  1654. #~ msgstr ""
  1655. #~ msgid "Engines cannot retrieve results."
  1656. #~ msgstr "Tražilice ne mogu dohvatiti rezultate."
  1657. #~ msgid "Please, try again later or find another SearXNG instance."
  1658. #~ msgstr ""
  1659. #~ "Molimo vas da pokušate ponovo kasnije"
  1660. #~ " ili da pronađete drugu SearXNG "
  1661. #~ "instancu."
  1662. #~ msgid ""
  1663. #~ "Redirect to open-access versions of "
  1664. #~ "publications when available (plugin required)"
  1665. #~ msgstr ""
  1666. #~ "Preusmjeri na verzije izdanja otvorenog "
  1667. #~ "pristupa kada je isto dostupno (potreban"
  1668. #~ " je dodatak)"
  1669. #~ msgid "Bang"
  1670. #~ msgstr ""
  1671. #~ msgid ""
  1672. #~ "Change how forms are submitted, <a "
  1673. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1674. #~ " rel=\"external\">learn more about request "
  1675. #~ "methods</a>"
  1676. #~ msgstr ""
  1677. #~ "Promijenite način slanja obrazaca, <a "
  1678. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1679. #~ " rel=\"external\">saznajte više o metodama "
  1680. #~ "zahtjeva</a>"
  1681. #~ msgid "On"
  1682. #~ msgstr "Uključeno"
  1683. #~ msgid "Off"
  1684. #~ msgstr "Isključeno"
  1685. #~ msgid "Enabled"
  1686. #~ msgstr "Omogućeno"
  1687. #~ msgid "Disabled"
  1688. #~ msgstr "Onemogućeno"
  1689. #~ msgid ""
  1690. #~ "Perform search immediately if a category"
  1691. #~ " selected. Disable to select multiple "
  1692. #~ "categories. (JavaScript required)"
  1693. #~ msgstr ""
  1694. #~ "Izvrši pretraživanje odmah ako je "
  1695. #~ "odabrana kategorija. Onemogući odabir više "
  1696. #~ "kategorija. (Potreban je JavaScript)"
  1697. #~ msgid "Vim-like hotkeys"
  1698. #~ msgstr "Vim tipkovni prečaci"
  1699. #~ msgid ""
  1700. #~ "Navigate search results with Vim-like"
  1701. #~ " hotkeys (JavaScript required). Press \"h\""
  1702. #~ " key on main or result page to"
  1703. #~ " get help."
  1704. #~ msgstr ""
  1705. #~ "Kretanje rezultatima pretraživanja pomoću "
  1706. #~ "tipkovnih prečaca sličnih Vim-u (potreban "
  1707. #~ "je JavaScript). Pritisnite tipku \"h\" "
  1708. #~ "na glavnoj stranici ili stranici s "
  1709. #~ "rezultatima kako biste dobili pomoć."
  1710. #~ msgid ""
  1711. #~ "we didn't find any results. Please "
  1712. #~ "use another query or search in "
  1713. #~ "more categories."
  1714. #~ msgstr ""
  1715. #~ "nema rezultata pretraživanja. Unesite novi "
  1716. #~ "upit ili pretražite u više kategorija."
  1717. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1718. #~ msgstr ""
  1719. #~ "Ispravite (prepišite) rezultat hostnameova ili"
  1720. #~ " maknite rezultate bazirane na hostname"
  1721. #~ msgid "Bytes"
  1722. #~ msgstr "Bajti"
  1723. #~ msgid "kiB"
  1724. #~ msgstr "kiB"
  1725. #~ msgid "MiB"
  1726. #~ msgstr "MiB"
  1727. #~ msgid "GiB"
  1728. #~ msgstr "GiB"
  1729. #~ msgid "TiB"
  1730. #~ msgstr "TiB"
  1731. #~ msgid "Hostname replace"
  1732. #~ msgstr "Zamjena lokalnog imena"
  1733. #~ msgid "Error!"
  1734. #~ msgstr "Greška!"
  1735. #~ msgid "Engines cannot retrieve results"
  1736. #~ msgstr "Tražilice ne mogu dohvatiti rezultate"
  1737. #~ msgid "Start submiting a new issue on GitHub"
  1738. #~ msgstr "Počnite izlagati novi slučaj na GitHub"
  1739. #~ msgid "dummy"
  1740. #~ msgstr ""
  1741. #~ msgid "Random value generator"
  1742. #~ msgstr "Nasumični generator vrijednosti"
  1743. #~ msgid "Statistics functions"
  1744. #~ msgstr "Statistične funkcije"
  1745. #~ msgid "Compute {functions} of the arguments"
  1746. #~ msgstr "Izračunajte {functions} argumenata"
  1747. #~ msgid "Get directions"
  1748. #~ msgstr "Dobij upute"
  1749. #~ msgid ""
  1750. #~ "Displays your IP if the query is"
  1751. #~ " \"ip\" and your user agent if "
  1752. #~ "the query contains \"user agent\"."
  1753. #~ msgstr ""
  1754. #~ "Prikazuje vašu IP adresu ako je "
  1755. #~ "upit \"ip\" i vaš korisnički agent "
  1756. #~ "ako upit sadrži \"user agent\"."
  1757. #~ msgid ""
  1758. #~ "Could not download the list of Tor"
  1759. #~ " exit-nodes from: https://check.torproject.org"
  1760. #~ "/exit-addresses"
  1761. #~ msgstr ""
  1762. #~ "Nije moguće preuzeti popis Tor izlaznih"
  1763. #~ " čvorova s: https://check.torproject.org/exit-"
  1764. #~ "addresses"
  1765. #~ msgid ""
  1766. #~ "You are using Tor and it looks "
  1767. #~ "like you have this external IP "
  1768. #~ "address: {ip_address}"
  1769. #~ msgstr "Vi koristite Tor i izgleda da imate ovu vanjsku IP adresu: {ip_address}"
  1770. #~ msgid ""
  1771. #~ "You are not using Tor and you "
  1772. #~ "have this external IP address: "
  1773. #~ "{ip_address}"
  1774. #~ msgstr "Vi ne koristite Tor i imate ovu vanjsku IP adresu: {ip_address}"
  1775. #~ msgid "Keywords"
  1776. #~ msgstr "Ključne riječi"
  1777. #~ msgid "/"
  1778. #~ msgstr ""
  1779. #~ msgid ""
  1780. #~ "Specifying custom settings in the "
  1781. #~ "preferences URL can be used to "
  1782. #~ "sync preferences across devices."
  1783. #~ msgstr ""
  1784. #~ "Navođenje prilagođenih postavki u URL-u "
  1785. #~ "može se koristiti za sinkronizaciju "
  1786. #~ "postavki na svim uređajima."
  1787. #~ msgid "proxied"
  1788. #~ msgstr "preko proxyja"
  1789. #~ msgid ""
  1790. #~ "This tab does not exists in the"
  1791. #~ " user interface, but you can search"
  1792. #~ " in these engines by its !bangs."
  1793. #~ msgstr ""
  1794. #~ "Ova kartica ne postoji u korisničkom "
  1795. #~ "sučelju, ali u ovim tražilicama možete"
  1796. #~ " pretraživati po !bangs-ima."
  1797. #~ msgid "Results on new tabs"
  1798. #~ msgstr "Rezultati u novim karticama"
  1799. #~ msgid "Open result links on new browser tabs"
  1800. #~ msgstr "Otvorite veze rezultata na novim karticama preglednika"
  1801. #~ msgid "Find stuff as you type"
  1802. #~ msgstr "Pronađite stvari prilikom upisivanja"
  1803. #~ msgid "Converts strings to different hash digests."
  1804. #~ msgstr "Pretvara niz u drukčije hash mješavine."
  1805. #~ msgid ""
  1806. #~ "Rewrite hostnames, remove results or "
  1807. #~ "prioritize them based on the hostname"
  1808. #~ msgstr ""
  1809. #~ "Prepiši hostanmes, ukloni rezultate ili "
  1810. #~ "ih prioritiziraj na temelju hostname-a"
  1811. #~ msgid "With that list, you can assess SearXNG transparency."
  1812. #~ msgstr "S tim popisom možete procijeniti prozirnost SearXNG-a."
  1813. #~ msgid ""
  1814. #~ "These settings are stored in your "
  1815. #~ "cookies, this allows us not to "
  1816. #~ "store this data about you."
  1817. #~ msgstr ""
  1818. #~ "Ove postavke su pohranjene u Vašim "
  1819. #~ "kolačićima, što omogućuje da ne spremamo"
  1820. #~ " podatke o Vama."
  1821. #~ msgid ""
  1822. #~ "These cookies serve your sole "
  1823. #~ "convenience, we don't use these cookies"
  1824. #~ " to track you."
  1825. #~ msgstr ""
  1826. #~ "Ovi kolačići služe Vašoj pogodnosti, ne"
  1827. #~ " upotrebljavamo te kolačiće da bi Vas"
  1828. #~ " pratili."
  1829. #~ msgid "Proxying image results through SearXNG"
  1830. #~ msgstr "Proxy slikovni rezultati putem SearXNG-a"
  1831. #~ msgid "Automatically load next page when scrolling to bottom of current page"
  1832. #~ msgstr ""
  1833. #~ "Automatski učitajte sljedeću stranicu kada "
  1834. #~ "se pomaknete do dna trenutne stranice"
  1835. #~ msgid ""
  1836. #~ "Perform search immediately if a category"
  1837. #~ " selected. Disable to select multiple "
  1838. #~ "categories"
  1839. #~ msgstr ""
  1840. #~ "Izvršite pretragu odmah ako je odabrana"
  1841. #~ " kategorija. Onemogući odabir više "
  1842. #~ "kategorija"
  1843. #~ msgid "Change SearXNG layout"
  1844. #~ msgstr "Promijenite izgled SearXNG-a"