messages.po 52 KB

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