messages.po 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358
  1. # Serbian translations for .
  2. # Copyright (C) 2020 ORGANIZATION
  3. # This file is distributed under the same license as the project.
  4. #
  5. # Translators:
  6. # Issa1552 <fairfull.playing@gmail.com>, 2020
  7. # Marc Abonce Seguin, 2019
  8. # jugi1, 2017
  9. # Markus Heiser <markus.heiser@darmarit.de>, 2022.
  10. # SecularSteve <fairfull.playing@gmail.com>, 2022, 2023.
  11. # return42 <markus.heiser@darmarit.de>, 2023.
  12. # return42 <return42@users.noreply.translate.codeberg.org>, 2024, 2025.
  13. # crnobog <crnobog@users.noreply.translate.codeberg.org>, 2024, 2025.
  14. # Anonymous <anonymous@users.noreply.translate.codeberg.org>, 2025.
  15. # SecularSteve <secularsteve@users.noreply.translate.codeberg.org>, 2025.
  16. # ivantodorov <ivantodorov@users.noreply.translate.codeberg.org>, 2025.
  17. # return42 <return42@noreply.codeberg.org>, 2025.
  18. # SecularSteve <secularsteve@noreply.codeberg.org>, 2025.
  19. msgid ""
  20. msgstr ""
  21. "Project-Id-Version: searx\n"
  22. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  23. "POT-Creation-Date: 2025-07-03 14:46+0000\n"
  24. "PO-Revision-Date: 2025-06-24 13:04+0000\n"
  25. "Last-Translator: SecularSteve <secularsteve@noreply.codeberg.org>\n"
  26. "Language: sr\n"
  27. "Language-Team: Serbian "
  28. "<https://translate.codeberg.org/projects/searxng/searxng/sr/>\n"
  29. "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
  30. "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
  31. "MIME-Version: 1.0\n"
  32. "Content-Type: text/plain; charset=utf-8\n"
  33. "Content-Transfer-Encoding: 8bit\n"
  34. "Generated-By: Babel 2.17.0\n"
  35. #. CONSTANT_NAMES['NO_SUBGROUPING']
  36. #: searx/searxng.msg
  37. msgid "without further subgrouping"
  38. msgstr "без даљег подгруписања"
  39. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  40. #: searx/searxng.msg
  41. msgid "other"
  42. msgstr "други"
  43. #. CATEGORY_NAMES['FILES']
  44. #: searx/searxng.msg
  45. msgid "files"
  46. msgstr "датотеке"
  47. #. CATEGORY_NAMES['GENERAL']
  48. #: searx/searxng.msg
  49. msgid "general"
  50. msgstr "уопштено"
  51. #. CATEGORY_NAMES['MUSIC']
  52. #: searx/searxng.msg
  53. msgid "music"
  54. msgstr "музика"
  55. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  56. #: searx/searxng.msg
  57. msgid "social media"
  58. msgstr "друштвене мреже"
  59. #. CATEGORY_NAMES['IMAGES']
  60. #: searx/searxng.msg
  61. msgid "images"
  62. msgstr "слике"
  63. #. CATEGORY_NAMES['VIDEOS']
  64. #: searx/searxng.msg
  65. msgid "videos"
  66. msgstr "видео снимци"
  67. #. CATEGORY_NAMES['RADIO']
  68. #: searx/engines/radio_browser.py:151 searx/searxng.msg
  69. msgid "radio"
  70. msgstr "радио"
  71. #. CATEGORY_NAMES['TV']
  72. #: searx/searxng.msg
  73. msgid "tv"
  74. msgstr "телевизија"
  75. #. CATEGORY_NAMES['IT']
  76. #: searx/searxng.msg
  77. msgid "it"
  78. msgstr "ит"
  79. #. CATEGORY_NAMES['NEWS']
  80. #: searx/searxng.msg
  81. msgid "news"
  82. msgstr "новости"
  83. #. CATEGORY_NAMES['MAP']
  84. #: searx/searxng.msg
  85. msgid "map"
  86. msgstr "мапа"
  87. #. CATEGORY_NAMES['ONIONS']
  88. #: searx/searxng.msg
  89. msgid "onions"
  90. msgstr "лук"
  91. #. CATEGORY_NAMES['SCIENCE']
  92. #: searx/searxng.msg
  93. msgid "science"
  94. msgstr "наука"
  95. #. CATEGORY_GROUPS['APPS']
  96. #: searx/searxng.msg
  97. msgid "apps"
  98. msgstr "апликације"
  99. #. CATEGORY_GROUPS['DICTIONARIES']
  100. #: searx/searxng.msg
  101. msgid "dictionaries"
  102. msgstr "речници"
  103. #. CATEGORY_GROUPS['LYRICS']
  104. #: searx/searxng.msg
  105. msgid "lyrics"
  106. msgstr "текст песме"
  107. #. CATEGORY_GROUPS['PACKAGES']
  108. #: searx/searxng.msg
  109. msgid "packages"
  110. msgstr "пакети"
  111. #. CATEGORY_GROUPS['Q_A']
  112. #: searx/searxng.msg
  113. msgid "q&a"
  114. msgstr "q&a"
  115. #. CATEGORY_GROUPS['REPOS']
  116. #: searx/searxng.msg
  117. msgid "repos"
  118. msgstr "репозиторијуми"
  119. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  120. #: searx/searxng.msg
  121. msgid "software wikis"
  122. msgstr "софтверске енциклопедије"
  123. #. CATEGORY_GROUPS['WEB']
  124. #: searx/searxng.msg
  125. msgid "web"
  126. msgstr "мрежа"
  127. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  128. #: searx/searxng.msg
  129. msgid "scientific publications"
  130. msgstr "Научне објаве"
  131. #. STYLE_NAMES['AUTO']
  132. #: searx/searxng.msg
  133. msgid "auto"
  134. msgstr "аутоматски"
  135. #. STYLE_NAMES['LIGHT']
  136. #: searx/searxng.msg
  137. msgid "light"
  138. msgstr "светло"
  139. #. STYLE_NAMES['DARK']
  140. #: searx/searxng.msg
  141. msgid "dark"
  142. msgstr "мрачно"
  143. #. STYLE_NAMES['BLACK']
  144. #: searx/searxng.msg
  145. msgid "black"
  146. msgstr "црно"
  147. #. BRAND_CUSTOM_LINKS['UPTIME']
  148. #: searx/searxng.msg
  149. msgid "Uptime"
  150. msgstr "Време рада"
  151. #. BRAND_CUSTOM_LINKS['ABOUT']
  152. #: searx/searxng.msg searx/templates/simple/base.html:49
  153. msgid "About"
  154. msgstr "О нама"
  155. #. WEATHER_TERMS['AVERAGE TEMP.']
  156. #: searx/searxng.msg
  157. msgid "Average temp."
  158. msgstr "Просечна температура"
  159. #. WEATHER_TERMS['CLOUD COVER']
  160. #: searx/searxng.msg
  161. msgid "Cloud cover"
  162. msgstr "Облачност"
  163. #. WEATHER_TERMS['CONDITION']
  164. #: searx/engines/duckduckgo_weather.py:45 searx/searxng.msg
  165. msgid "Condition"
  166. msgstr "Стање"
  167. #. WEATHER_TERMS['CURRENT CONDITION']
  168. #: searx/engines/duckduckgo_weather.py:118 searx/searxng.msg
  169. msgid "Current condition"
  170. msgstr "Тренутно стање"
  171. #. WEATHER_TERMS['EVENING']
  172. #: searx/searxng.msg
  173. msgid "Evening"
  174. msgstr "Вече"
  175. #. WEATHER_TERMS['FEELS LIKE']
  176. #: searx/engines/duckduckgo_weather.py:53 searx/searxng.msg
  177. msgid "Feels like"
  178. msgstr "Осећај"
  179. #. WEATHER_TERMS['HUMIDITY']
  180. #: searx/engines/duckduckgo_weather.py:64 searx/searxng.msg
  181. #: searx/templates/simple/answer/weather.html:29
  182. msgid "Humidity"
  183. msgstr "Влажност"
  184. #. WEATHER_TERMS['MAX TEMP.']
  185. #: searx/engines/duckduckgo_weather.py:77 searx/searxng.msg
  186. msgid "Max temp."
  187. msgstr "Највиша темп."
  188. #. WEATHER_TERMS['MIN TEMP.']
  189. #: searx/engines/duckduckgo_weather.py:73 searx/searxng.msg
  190. msgid "Min temp."
  191. msgstr "Најмања темп."
  192. #. WEATHER_TERMS['MORNING']
  193. #: searx/searxng.msg
  194. msgid "Morning"
  195. msgstr "Јутро"
  196. #. WEATHER_TERMS['NIGHT']
  197. #: searx/searxng.msg
  198. msgid "Night"
  199. msgstr "Ноћ"
  200. #. WEATHER_TERMS['NOON']
  201. #: searx/searxng.msg
  202. msgid "Noon"
  203. msgstr "Подне"
  204. #. WEATHER_TERMS['PRESSURE']
  205. #: searx/searxng.msg searx/templates/simple/answer/weather.html:25
  206. msgid "Pressure"
  207. msgstr "Притисак"
  208. #. WEATHER_TERMS['SUNRISE']
  209. #: searx/engines/duckduckgo_weather.py:81 searx/searxng.msg
  210. msgid "Sunrise"
  211. msgstr "Излазак Сунца"
  212. #. WEATHER_TERMS['SUNSET']
  213. #: searx/engines/duckduckgo_weather.py:82 searx/searxng.msg
  214. msgid "Sunset"
  215. msgstr "Залазак Сунца"
  216. #. WEATHER_TERMS['TEMPERATURE']
  217. #: searx/engines/duckduckgo_weather.py:48 searx/searxng.msg
  218. #: searx/templates/simple/answer/weather.html:17
  219. msgid "Temperature"
  220. msgstr "Температура"
  221. #. WEATHER_TERMS['UV INDEX']
  222. #: searx/engines/duckduckgo_weather.py:80 searx/searxng.msg
  223. msgid "UV index"
  224. msgstr "UV индекс"
  225. #. WEATHER_TERMS['VISIBILITY']
  226. #: searx/engines/duckduckgo_weather.py:62 searx/searxng.msg
  227. msgid "Visibility"
  228. msgstr "Видљивост"
  229. #. WEATHER_TERMS['WIND']
  230. #: searx/engines/duckduckgo_weather.py:58 searx/searxng.msg
  231. #: searx/templates/simple/answer/weather.html:23
  232. msgid "Wind"
  233. msgstr "Ветар"
  234. #. WEATHER_CONDITIONS
  235. #: searx/searxng.msg
  236. msgid "Clear sky"
  237. msgstr "Ведро небо"
  238. #. WEATHER_CONDITIONS
  239. #: searx/searxng.msg
  240. msgid "Partly cloudy"
  241. msgstr "Делимично облачно"
  242. #. WEATHER_CONDITIONS
  243. #: searx/searxng.msg
  244. msgid "Cloudy"
  245. msgstr "Облачно"
  246. #. WEATHER_CONDITIONS
  247. #: searx/searxng.msg
  248. msgid "Fair"
  249. msgstr "Поштено"
  250. #. WEATHER_CONDITIONS
  251. #: searx/searxng.msg
  252. msgid "Fog"
  253. msgstr "Магла"
  254. #. WEATHER_CONDITIONS
  255. #: searx/searxng.msg
  256. msgid "Light rain and thunder"
  257. msgstr "Слаба киша и грмљавина"
  258. #. WEATHER_CONDITIONS
  259. #: searx/searxng.msg
  260. msgid "Light rain showers and thunder"
  261. msgstr "Слаби кишни пљускови и грмљавина"
  262. #. WEATHER_CONDITIONS
  263. #: searx/searxng.msg
  264. msgid "Light rain showers"
  265. msgstr "Слаби кишни пљускови"
  266. #. WEATHER_CONDITIONS
  267. #: searx/searxng.msg
  268. msgid "Light rain"
  269. msgstr "Слаба киша"
  270. #. WEATHER_CONDITIONS
  271. #: searx/searxng.msg
  272. msgid "Rain and thunder"
  273. msgstr "Киша и грмљавина"
  274. #. WEATHER_CONDITIONS
  275. #: searx/searxng.msg
  276. msgid "Rain showers and thunder"
  277. msgstr "Пљускови кише и грмљавина"
  278. #. WEATHER_CONDITIONS
  279. #: searx/searxng.msg
  280. msgid "Rain showers"
  281. msgstr "Пљускови кише"
  282. #. WEATHER_CONDITIONS
  283. #: searx/searxng.msg
  284. msgid "Rain"
  285. msgstr "Киша"
  286. #. WEATHER_CONDITIONS
  287. #: searx/searxng.msg
  288. msgid "Heavy rain and thunder"
  289. msgstr "Јака киша и грмљавина"
  290. #. WEATHER_CONDITIONS
  291. #: searx/searxng.msg
  292. msgid "Heavy rain showers and thunder"
  293. msgstr "Јаки пљускови и грмљавина"
  294. #. WEATHER_CONDITIONS
  295. #: searx/searxng.msg
  296. msgid "Heavy rain showers"
  297. msgstr "Јаки пљускови"
  298. #. WEATHER_CONDITIONS
  299. #: searx/searxng.msg
  300. msgid "Heavy rain"
  301. msgstr "Јака киша"
  302. #. WEATHER_CONDITIONS
  303. #: searx/searxng.msg
  304. msgid "Light sleet and thunder"
  305. msgstr "Слаба суснежица и грмљавина"
  306. #. WEATHER_CONDITIONS
  307. #: searx/searxng.msg
  308. msgid "Light sleet showers and thunder"
  309. msgstr "Слаби суснежични пљускови и грмљавина"
  310. #. WEATHER_CONDITIONS
  311. #: searx/searxng.msg
  312. msgid "Light sleet showers"
  313. msgstr "Слаби суснежични пљускови"
  314. #. WEATHER_CONDITIONS
  315. #: searx/searxng.msg
  316. msgid "Light sleet"
  317. msgstr "Слаба суснежица"
  318. #. WEATHER_CONDITIONS
  319. #: searx/searxng.msg
  320. msgid "Sleet and thunder"
  321. msgstr "Суснежица и грмљавина"
  322. #. WEATHER_CONDITIONS
  323. #: searx/searxng.msg
  324. msgid "Sleet showers and thunder"
  325. msgstr "Пљускови суснежице и грмљавина"
  326. #. WEATHER_CONDITIONS
  327. #: searx/searxng.msg
  328. msgid "Sleet showers"
  329. msgstr "Пљускови суснежице"
  330. #. WEATHER_CONDITIONS
  331. #: searx/searxng.msg
  332. msgid "Sleet"
  333. msgstr "Суснежица"
  334. #. WEATHER_CONDITIONS
  335. #: searx/searxng.msg
  336. msgid "Heavy sleet and thunder"
  337. msgstr "Јака суснежица и грмљавина"
  338. #. WEATHER_CONDITIONS
  339. #: searx/searxng.msg
  340. msgid "Heavy sleet showers and thunder"
  341. msgstr "Јаки суснежични пљускови и грмљавина"
  342. #. WEATHER_CONDITIONS
  343. #: searx/searxng.msg
  344. msgid "Heavy sleet showers"
  345. msgstr "Јаки суснежични пљускови"
  346. #. WEATHER_CONDITIONS
  347. #: searx/searxng.msg
  348. msgid "Heavy sleet"
  349. msgstr "Јака суснежица"
  350. #. WEATHER_CONDITIONS
  351. #: searx/searxng.msg
  352. msgid "Light snow and thunder"
  353. msgstr "Слаб снег и грмљавина"
  354. #. WEATHER_CONDITIONS
  355. #: searx/searxng.msg
  356. msgid "Light snow showers and thunder"
  357. msgstr "Слаби снежни пљускови и грмљавина"
  358. #. WEATHER_CONDITIONS
  359. #: searx/searxng.msg
  360. msgid "Light snow showers"
  361. msgstr "Слаби снежни пљускови"
  362. #. WEATHER_CONDITIONS
  363. #: searx/searxng.msg
  364. msgid "Light snow"
  365. msgstr "Слаб снег"
  366. #. WEATHER_CONDITIONS
  367. #: searx/searxng.msg
  368. msgid "Snow and thunder"
  369. msgstr "Снег и грмљавина"
  370. #. WEATHER_CONDITIONS
  371. #: searx/searxng.msg
  372. msgid "Snow showers and thunder"
  373. msgstr "Снежни пљускови и грмљавина"
  374. #. WEATHER_CONDITIONS
  375. #: searx/searxng.msg
  376. msgid "Snow showers"
  377. msgstr "Снежни пљускови"
  378. #. WEATHER_CONDITIONS
  379. #: searx/searxng.msg
  380. msgid "Snow"
  381. msgstr "Снег"
  382. #. WEATHER_CONDITIONS
  383. #: searx/searxng.msg
  384. msgid "Heavy snow and thunder"
  385. msgstr "Јак снег и грмљавина"
  386. #. WEATHER_CONDITIONS
  387. #: searx/searxng.msg
  388. msgid "Heavy snow showers and thunder"
  389. msgstr "Јаки снежни пљускови и грмљавина"
  390. #. WEATHER_CONDITIONS
  391. #: searx/searxng.msg
  392. msgid "Heavy snow showers"
  393. msgstr "Јаки снежни пљускови"
  394. #. WEATHER_CONDITIONS
  395. #: searx/searxng.msg
  396. msgid "Heavy snow"
  397. msgstr "Јак снег"
  398. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  399. #: searx/engines/lemmy.py:85 searx/searxng.msg
  400. msgid "subscribers"
  401. msgstr "претплатници"
  402. #. SOCIAL_MEDIA_TERMS['POSTS']
  403. #: searx/engines/lemmy.py:86 searx/searxng.msg
  404. msgid "posts"
  405. msgstr "пост"
  406. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  407. #: searx/engines/lemmy.py:87 searx/searxng.msg
  408. msgid "active users"
  409. msgstr "активни корисници"
  410. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  411. #: searx/engines/discourse.py:157 searx/engines/hackernews.py:82
  412. #: searx/engines/lemmy.py:130 searx/searxng.msg
  413. msgid "comments"
  414. msgstr "коментари"
  415. #. SOCIAL_MEDIA_TERMS['USER']
  416. #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
  417. msgid "user"
  418. msgstr "корисник"
  419. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  420. #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
  421. msgid "community"
  422. msgstr "заједница"
  423. #. SOCIAL_MEDIA_TERMS['POINTS']
  424. #: searx/engines/hackernews.py:82 searx/searxng.msg
  425. msgid "points"
  426. msgstr "поени"
  427. #. SOCIAL_MEDIA_TERMS['TITLE']
  428. #: searx/searxng.msg
  429. msgid "title"
  430. msgstr "наслов"
  431. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  432. #: searx/engines/hackernews.py:85 searx/searxng.msg
  433. msgid "author"
  434. msgstr "аутор"
  435. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  436. #: searx/engines/discourse.py:149 searx/searxng.msg
  437. msgid "open"
  438. msgstr "отворено"
  439. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  440. #: searx/engines/discourse.py:149 searx/searxng.msg
  441. msgid "closed"
  442. msgstr "затворено"
  443. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  444. #: searx/engines/discourse.py:160 searx/searxng.msg
  445. msgid "answered"
  446. msgstr "одговорено"
  447. #: searx/webapp.py:292
  448. msgid "No item found"
  449. msgstr "Ставка није пронађена"
  450. #: searx/engines/qwant.py:291
  451. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:294
  452. msgid "Source"
  453. msgstr "Извор"
  454. #: searx/webapp.py:296
  455. msgid "Error loading the next page"
  456. msgstr "Грешка приликом учитавања следеће странице"
  457. #: searx/webapp.py:447 searx/webapp.py:845
  458. msgid "Invalid settings, please edit your preferences"
  459. msgstr "Неважеће поставке, молимо уредите свој избор"
  460. #: searx/webapp.py:463
  461. msgid "Invalid settings"
  462. msgstr "Неважећа подешавања"
  463. #: searx/webapp.py:540 searx/webapp.py:630
  464. msgid "search error"
  465. msgstr "грешка у претрази"
  466. #: searx/webutils.py:35
  467. msgid "timeout"
  468. msgstr "тајмаут"
  469. #: searx/webutils.py:36
  470. msgid "parsing error"
  471. msgstr "грешка при парсирању"
  472. #: searx/webutils.py:37
  473. msgid "HTTP protocol error"
  474. msgstr "грешка у HTTP протоколу"
  475. #: searx/webutils.py:38
  476. msgid "network error"
  477. msgstr "грешка на мрежи"
  478. #: searx/webutils.py:39
  479. msgid "SSL error: certificate validation has failed"
  480. msgstr "SSL грешка: валидација сертификата није успела"
  481. #: searx/webutils.py:41
  482. msgid "unexpected crash"
  483. msgstr "неочекиван престанак рада"
  484. #: searx/webutils.py:48
  485. msgid "HTTP error"
  486. msgstr "HTTP грешка"
  487. #: searx/webutils.py:49
  488. msgid "HTTP connection error"
  489. msgstr "проблем при HTTPS конекцији"
  490. #: searx/webutils.py:55
  491. msgid "proxy error"
  492. msgstr "прокси грешка"
  493. #: searx/webutils.py:56
  494. msgid "CAPTCHA"
  495. msgstr "CAPTCHA"
  496. #: searx/webutils.py:57
  497. msgid "too many requests"
  498. msgstr "превише захтева"
  499. #: searx/webutils.py:58
  500. msgid "access denied"
  501. msgstr "није дозвољен приступ"
  502. #: searx/webutils.py:59
  503. msgid "server API error"
  504. msgstr "серверска API грешка"
  505. #: searx/webutils.py:78
  506. msgid "Suspended"
  507. msgstr "Суспендован"
  508. #: searx/webutils.py:313
  509. #, python-brace-format
  510. msgid "{minutes} minute(s) ago"
  511. msgstr "пре {minutes} минут(у,е,а)"
  512. #: searx/webutils.py:314
  513. #, python-brace-format
  514. msgid "{hours} hour(s), {minutes} minute(s) ago"
  515. msgstr "пре {hours} час(a) и {minutes} минут(у,е,а)"
  516. #: searx/answerers/random.py:69
  517. msgid "Generate different random values"
  518. msgstr "Генеришите различите случајне вредности"
  519. #: searx/answerers/statistics.py:36
  520. #, python-brace-format
  521. msgid "Compute {func} of the arguments"
  522. msgstr "Израчунај {func} за дате аргументе"
  523. #: searx/engines/openstreetmap.py:158
  524. msgid "Show route in map .."
  525. msgstr "Прикажи руту на мапи .."
  526. #: searx/engines/pdbe.py:96
  527. #, python-brace-format
  528. msgid "{title} (OBSOLETE)"
  529. msgstr "{title} (ЗАСТАРЕЛО)"
  530. #: searx/engines/pdbe.py:103
  531. msgid "This entry has been superseded by"
  532. msgstr "Овај унос је заменио"
  533. #: searx/engines/qwant.py:293
  534. msgid "Channel"
  535. msgstr "Канал"
  536. #: searx/engines/radio_browser.py:153
  537. msgid "bitrate"
  538. msgstr "битрата"
  539. #: searx/engines/radio_browser.py:154
  540. msgid "votes"
  541. msgstr "гласови"
  542. #: searx/engines/radio_browser.py:155
  543. msgid "clicks"
  544. msgstr "кликови"
  545. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  546. #: searx/engines/zlibrary.py:137
  547. msgid "Language"
  548. msgstr "Језик"
  549. #: searx/engines/semantic_scholar.py:101
  550. #, python-brace-format
  551. msgid ""
  552. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  553. "{lastCitationVelocityYear}"
  554. msgstr ""
  555. "{numCitations} цитата од {firstCitationVelocityYear} до "
  556. "{lastCitationVelocityYear} године"
  557. #: searx/engines/tineye.py:48
  558. msgid ""
  559. "Could not read that image url. This may be due to an unsupported file "
  560. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  561. " WebP."
  562. msgstr ""
  563. "Није могуће прочитати УРЛ те слике. Ово може бити због неподржаног "
  564. "формата датотеке. ТинЕие подржава само слике које су ЈПЕГ, ПНГ, ГИФ, БМП,"
  565. " ТИФФ или ВебП формата."
  566. #: searx/engines/tineye.py:54
  567. msgid ""
  568. "The image is too simple to find matches. TinEye requires a basic level of"
  569. " visual detail to successfully identify matches."
  570. msgstr ""
  571. "Слика је превише једноставна за проналажење подударања. ТинЕие захтева "
  572. "основни ниво визуелних детаља да би успешно идентификовао подударања."
  573. #: searx/engines/tineye.py:59
  574. msgid "The image could not be downloaded."
  575. msgstr "Није могуће преузети слику."
  576. #: searx/engines/zlibrary.py:138
  577. msgid "Book rating"
  578. msgstr "Оцена књиге"
  579. #: searx/engines/zlibrary.py:139
  580. msgid "File quality"
  581. msgstr "Квалитет датотеке"
  582. #: searx/plugins/ahmia_filter.py:32
  583. msgid "Ahmia blacklist"
  584. msgstr "Ахмијска црна листа"
  585. #: searx/plugins/ahmia_filter.py:33
  586. msgid "Filter out onion results that appear in Ahmia's blacklist."
  587. msgstr ""
  588. "Филтрирај резултате претраге за портове који се појављују на Ахмијиној "
  589. "црној листи."
  590. #: searx/plugins/calculator.py:38
  591. msgid "Basic Calculator"
  592. msgstr "Основни Калкулатор"
  593. #: searx/plugins/calculator.py:39
  594. msgid "Calculate mathematical expressions via the search bar"
  595. msgstr "Израчунај математичке изразе кроз поље за претрагу"
  596. #: searx/plugins/hash_plugin.py:34
  597. msgid "Hash plugin"
  598. msgstr "Хеш плагин"
  599. #: searx/plugins/hash_plugin.py:36
  600. msgid ""
  601. "Converts strings to different hash digests. Available functions: md5, "
  602. "sha1, sha224, sha256, sha384, sha512."
  603. msgstr ""
  604. "Претвара стрингове у различите хеш сажетке. Доступне функције: md5, sha1,"
  605. " sha224, sha256, sha384, sha512."
  606. #: searx/plugins/hash_plugin.py:64
  607. msgid "hash digest"
  608. msgstr "Излаз хеш функције"
  609. #: searx/plugins/hostnames.py:123
  610. msgid "Hostnames plugin"
  611. msgstr "Хостнејмс плагин"
  612. #: searx/plugins/hostnames.py:124
  613. msgid "Rewrite hostnames and remove or prioritize results based on the hostname"
  614. msgstr ""
  615. "Пребришите имена домаћина и уклоните или дајте приоритет резултатима на "
  616. "основу имена домаћина"
  617. #: searx/plugins/oa_doi_rewrite.py:55
  618. msgid "Open Access DOI rewrite"
  619. msgstr "Отворени приступ DOI преписа"
  620. #: searx/plugins/oa_doi_rewrite.py:56
  621. msgid ""
  622. "Avoid paywalls by redirecting to open-access versions of publications "
  623. "when available"
  624. msgstr "Избегните плаћање у случају да је доступна бесплатна публикација"
  625. #: searx/plugins/self_info.py:37
  626. msgid "Self Information"
  627. msgstr "Licna Informacija"
  628. #: searx/plugins/self_info.py:39
  629. msgid ""
  630. "Displays your IP if the query is \"ip\" and your user agent if the query "
  631. "is \"user-agent\"."
  632. msgstr ""
  633. "Приказује Вашу IP адресу ако је упит \"ip\" и Вашег корисничког агента "
  634. "ако је упит \"user-agent\"."
  635. #: searx/plugins/self_info.py:52
  636. msgid "Your IP is: "
  637. msgstr "Ваш IP је: "
  638. #: searx/plugins/self_info.py:55
  639. msgid "Your user-agent is: "
  640. msgstr "Ваш кориснички агент је: "
  641. #: searx/plugins/tor_check.py:42
  642. msgid "Tor check plugin"
  643. msgstr "Додатак за проверу Тор-а"
  644. #: searx/plugins/tor_check.py:44
  645. msgid ""
  646. "This plugin checks if the address of the request is a Tor exit-node, and "
  647. "informs the user if it is; like check.torproject.org, but from SearXNG."
  648. msgstr ""
  649. "Овај додатак проверава да ли је адреса захтева излазни чвор ТОР-а и "
  650. "обавештава корисника ако јесте, као check.torproject.org али са SearXNG."
  651. #: searx/plugins/tor_check.py:65
  652. msgid "Could not download the list of Tor exit-nodes from"
  653. msgstr "Није могуће преузети листу торових излазних нодова од"
  654. #: searx/plugins/tor_check.py:72
  655. msgid "You are using Tor and it looks like you have the external IP address"
  656. msgstr "Користите Тор и могуће је да имате екстерну IP адресу"
  657. #: searx/plugins/tor_check.py:76
  658. msgid "You are not using Tor and you have the external IP address"
  659. msgstr "Ne kористите Тор и имате екстерну IP адресу"
  660. #: searx/plugins/tracker_url_remover.py:35
  661. msgid "Tracker URL remover"
  662. msgstr "Уклони трекер URL адресе"
  663. #: searx/plugins/tracker_url_remover.py:36
  664. msgid "Remove trackers arguments from the returned URL"
  665. msgstr "Уклања аргументе трекера од повратне URL адресе"
  666. #: searx/plugins/unit_converter.py:49
  667. msgid "Unit converter plugin"
  668. msgstr "Додатак за конверзију јединица"
  669. #: searx/plugins/unit_converter.py:50
  670. msgid "Convert between units"
  671. msgstr "Конвертуј јединице"
  672. #: searx/result_types/answer.py:224
  673. #, python-brace-format
  674. msgid "{location}: {temperature}, {condition}"
  675. msgstr "{location}: {temperature}, {condition}"
  676. #: searx/templates/simple/404.html:4
  677. msgid "Page not found"
  678. msgstr "Страница није пронађена"
  679. #: searx/templates/simple/404.html:6
  680. #, python-format
  681. msgid "Go to %(search_page)s."
  682. msgstr "Иди на %(search_page)s."
  683. #: searx/templates/simple/404.html:6
  684. msgid "search page"
  685. msgstr "Претражи страницу"
  686. #: searx/templates/simple/base.html:53
  687. msgid "Donate"
  688. msgstr "Донирај"
  689. #: searx/templates/simple/base.html:57
  690. #: searx/templates/simple/preferences.html:156
  691. msgid "Preferences"
  692. msgstr "Подешавања"
  693. #: searx/templates/simple/base.html:67
  694. msgid "Powered by"
  695. msgstr "Покреће"
  696. #: searx/templates/simple/base.html:67
  697. msgid "a privacy-respecting, open metasearch engine"
  698. msgstr "Javni meta pretrazivac koji postuje privatnost"
  699. #: searx/templates/simple/base.html:68
  700. #: searx/templates/simple/result_templates/packages.html:59
  701. msgid "Source code"
  702. msgstr "Изворни код"
  703. #: searx/templates/simple/base.html:69
  704. msgid "Issue tracker"
  705. msgstr "Трагач проблема"
  706. #: searx/templates/simple/base.html:70 searx/templates/simple/stats.html:18
  707. msgid "Engine stats"
  708. msgstr "Статистика"
  709. #: searx/templates/simple/base.html:72
  710. msgid "Public instances"
  711. msgstr "Јавне инстанце"
  712. #: searx/templates/simple/base.html:75
  713. msgid "Privacy policy"
  714. msgstr "Политика приватности"
  715. #: searx/templates/simple/base.html:78
  716. msgid "Contact instance maintainer"
  717. msgstr "Контактирај домара инстанце"
  718. #: searx/templates/simple/categories.html:30
  719. msgid "Click on the magnifier to perform search"
  720. msgstr "Кликни на лупу за претрагу"
  721. #: searx/templates/simple/macros.html:40
  722. msgid "Length"
  723. msgstr "Дужина"
  724. #: searx/templates/simple/macros.html:41
  725. msgid "Views"
  726. msgstr "Прегледи"
  727. #: searx/templates/simple/macros.html:42
  728. #: searx/templates/simple/result_templates/files.html:34
  729. #: searx/templates/simple/result_templates/images.html:19
  730. #: searx/templates/simple/result_templates/paper.html:6
  731. msgid "Author"
  732. msgstr "Аутор"
  733. #: searx/templates/simple/macros.html:50
  734. msgid "cached"
  735. msgstr "кеширано"
  736. #: searx/templates/simple/new_issue.html:64
  737. msgid "Start submitting a new issue on GitHub"
  738. msgstr "Почните да шаљете ново издање на ГитХуб-у"
  739. #: searx/templates/simple/new_issue.html:66
  740. msgid "Please check for existing bugs about this engine on GitHub"
  741. msgstr "Проверите да ли постоје грешке у вези са овим енџином на ГитХуб-у"
  742. #: searx/templates/simple/new_issue.html:69
  743. msgid "I confirm there is no existing bug about the issue I encounter"
  744. msgstr "Потврђујем да не постоји грешка у вези са проблемом на који наилазим"
  745. #: searx/templates/simple/new_issue.html:71
  746. msgid "If this is a public instance, please specify the URL in the bug report"
  747. msgstr "Ако је ово јавна инстанца, наведите УРЛ у извештају о грешци"
  748. #: searx/templates/simple/new_issue.html:72
  749. msgid "Submit a new issue on Github including the above information"
  750. msgstr "Пријавите нову грешку на Гитхабу укључујући следеће инфоржације"
  751. #: searx/templates/simple/preferences.html:65
  752. msgid "No HTTPS"
  753. msgstr "Нема HTTPS"
  754. #: searx/templates/simple/elements/engines_msg.html:14
  755. #: searx/templates/simple/preferences.html:69
  756. #: searx/templates/simple/preferences.html:70
  757. msgid "View error logs and submit a bug report"
  758. msgstr "Погледајте информације о грешки и пријавите"
  759. #: searx/templates/simple/preferences.html:74
  760. msgid "!bang for this engine"
  761. msgstr "!bang за овај мотор"
  762. #: searx/templates/simple/preferences.html:80
  763. msgid "!bang for its categories"
  764. msgstr "!bang за своје категорије"
  765. #: searx/templates/simple/preferences.html:102
  766. #: searx/templates/simple/stats.html:64
  767. msgid "Median"
  768. msgstr "Медијана"
  769. #: searx/templates/simple/preferences.html:103
  770. #: searx/templates/simple/stats.html:70
  771. msgid "P80"
  772. msgstr "П80"
  773. #: searx/templates/simple/preferences.html:104
  774. #: searx/templates/simple/stats.html:76
  775. msgid "P95"
  776. msgstr "П95"
  777. #: searx/templates/simple/preferences.html:136
  778. msgid "Failed checker test(s): "
  779. msgstr "Неуспели тест(ови) провере: "
  780. #: searx/templates/simple/preferences.html:138
  781. msgid "Errors:"
  782. msgstr "Грешке:"
  783. #: searx/templates/simple/preferences.html:163
  784. msgid "General"
  785. msgstr "Уопштено"
  786. #: searx/templates/simple/preferences.html:166
  787. msgid "Default categories"
  788. msgstr "Подразумеване категорије"
  789. #: searx/templates/simple/preferences.html:194
  790. msgid "User interface"
  791. msgstr "Кориснички интерфејс"
  792. #: searx/templates/simple/preferences.html:217
  793. msgid "Privacy"
  794. msgstr "Приватност"
  795. #: searx/templates/simple/preferences.html:232
  796. msgid "Engines"
  797. msgstr "Претраживачи"
  798. #: searx/templates/simple/preferences.html:234
  799. msgid "Currently used search engines"
  800. msgstr "Тренутно коришћени претраживачи"
  801. #: searx/templates/simple/preferences.html:243
  802. msgid "Special Queries"
  803. msgstr "Посебни упити"
  804. #: searx/templates/simple/preferences.html:251
  805. msgid "Cookies"
  806. msgstr "Колачићи"
  807. #: searx/templates/simple/results.html:30
  808. msgid "Number of results"
  809. msgstr "Број резултата"
  810. #: searx/templates/simple/results.html:36
  811. msgid "Info"
  812. msgstr "Информације"
  813. #: searx/templates/simple/results.html:77
  814. msgid "Back to top"
  815. msgstr "Назад на врх"
  816. #: searx/templates/simple/results.html:95
  817. msgid "Previous page"
  818. msgstr "Претходна страница"
  819. #: searx/templates/simple/results.html:113
  820. msgid "Next page"
  821. msgstr "Следећа страница"
  822. #: searx/templates/simple/search.html:3
  823. msgid "Display the front page"
  824. msgstr "Прикажи насловну страну"
  825. #: searx/templates/simple/search.html:9
  826. #: searx/templates/simple/simple_search.html:5
  827. msgid "Search for..."
  828. msgstr "Тражи ..."
  829. #: searx/templates/simple/search.html:10
  830. #: searx/templates/simple/simple_search.html:6
  831. msgid "clear"
  832. msgstr "очисти"
  833. #: searx/templates/simple/search.html:11
  834. #: searx/templates/simple/simple_search.html:7
  835. msgid "search"
  836. msgstr "Претрага"
  837. #: searx/templates/simple/stats.html:21
  838. msgid "There is currently no data available. "
  839. msgstr "Тренутно нема доступних података."
  840. #: searx/templates/simple/preferences/engines.html:24
  841. #: searx/templates/simple/stats.html:25
  842. msgid "Engine name"
  843. msgstr "Име претраживача"
  844. #: searx/templates/simple/stats.html:26
  845. msgid "Scores"
  846. msgstr "Резултати"
  847. #: searx/templates/simple/stats.html:27
  848. msgid "Result count"
  849. msgstr "Број резултата"
  850. #: searx/templates/simple/elements/engines_msg.html:7
  851. #: searx/templates/simple/preferences/engines.html:31
  852. #: searx/templates/simple/stats.html:28
  853. msgid "Response time"
  854. msgstr "Време одзива"
  855. #: searx/templates/simple/preferences/engines.html:35
  856. #: searx/templates/simple/stats.html:29
  857. msgid "Reliability"
  858. msgstr "Поузданост"
  859. #: searx/templates/simple/stats.html:59
  860. msgid "Total"
  861. msgstr "Укупно"
  862. #: searx/templates/simple/stats.html:60
  863. msgid "HTTP"
  864. msgstr "ХТТП"
  865. #: searx/templates/simple/stats.html:61
  866. msgid "Processing"
  867. msgstr "Обрада"
  868. #: searx/templates/simple/stats.html:99
  869. msgid "Warnings"
  870. msgstr "Упозорења"
  871. #: searx/templates/simple/stats.html:99
  872. msgid "Errors and exceptions"
  873. msgstr "Грешке и изузеци"
  874. #: searx/templates/simple/stats.html:105
  875. msgid "Exception"
  876. msgstr "Изузетак"
  877. #: searx/templates/simple/stats.html:107
  878. msgid "Message"
  879. msgstr "Порука"
  880. #: searx/templates/simple/stats.html:109
  881. msgid "Percentage"
  882. msgstr "Проценат"
  883. #: searx/templates/simple/stats.html:111
  884. msgid "Parameter"
  885. msgstr "Параметар"
  886. #: searx/templates/simple/result_templates/files.html:36
  887. #: searx/templates/simple/stats.html:119
  888. msgid "Filename"
  889. msgstr "Назив документа"
  890. #: searx/templates/simple/stats.html:120
  891. msgid "Function"
  892. msgstr "Функција"
  893. #: searx/templates/simple/stats.html:121
  894. msgid "Code"
  895. msgstr "Код"
  896. #: searx/templates/simple/stats.html:128
  897. msgid "Checker"
  898. msgstr "Проверник"
  899. #: searx/templates/simple/stats.html:131
  900. msgid "Failed test"
  901. msgstr "Неуспели тест"
  902. #: searx/templates/simple/stats.html:132
  903. msgid "Comment(s)"
  904. msgstr "Коментар(и)"
  905. #: searx/templates/simple/answer/translations.html:12
  906. #: searx/templates/simple/preferences/answerers.html:8
  907. msgid "Examples"
  908. msgstr "Примери"
  909. #: searx/templates/simple/answer/translations.html:21
  910. msgid "Definitions"
  911. msgstr "Дефиниције"
  912. #: searx/templates/simple/answer/translations.html:30
  913. msgid "Synonyms"
  914. msgstr "Синоними"
  915. #: searx/templates/simple/answer/weather.html:19
  916. msgid "Feels Like"
  917. msgstr "Осети се као"
  918. #: searx/templates/simple/elements/answers.html:2
  919. msgid "Answers"
  920. msgstr "Одговори"
  921. #: searx/templates/simple/elements/apis.html:3
  922. msgid "Download results"
  923. msgstr "Резултати преузимања"
  924. #: searx/templates/simple/elements/corrections.html:2
  925. msgid "Try searching for:"
  926. msgstr "Покушај да нађеш:"
  927. #: searx/templates/simple/elements/engines_msg.html:4
  928. msgid "Messages from the search engines"
  929. msgstr "Поруке из претраживача"
  930. #: searx/templates/simple/elements/engines_msg.html:7
  931. msgid "seconds"
  932. msgstr "s"
  933. #: searx/templates/simple/elements/search_url.html:3
  934. msgid "Search URL"
  935. msgstr "Тражи URL адресу"
  936. #: searx/templates/simple/elements/search_url.html:4
  937. #: searx/templates/simple/preferences/cookies.html:54
  938. msgid "Copied"
  939. msgstr "Копирано"
  940. #: searx/templates/simple/elements/search_url.html:4
  941. #: searx/templates/simple/preferences/cookies.html:54
  942. msgid "Copy"
  943. msgstr "Копирај"
  944. #: searx/templates/simple/elements/suggestions.html:3
  945. msgid "Suggestions"
  946. msgstr "Предлози"
  947. #: searx/templates/simple/filters/languages.html:1
  948. #: searx/templates/simple/preferences/language.html:2
  949. msgid "Search language"
  950. msgstr "Језик претраге"
  951. #: searx/templates/simple/filters/languages.html:4
  952. #: searx/templates/simple/preferences/language.html:7
  953. msgid "Default language"
  954. msgstr "Подразумевани језик"
  955. #: searx/templates/simple/filters/languages.html:8
  956. #: searx/templates/simple/preferences/language.html:11
  957. msgid "Auto-detect"
  958. msgstr "Аутоматски откриј"
  959. #: searx/templates/simple/filters/safesearch.html:1
  960. #: searx/templates/simple/filters/safesearch.html:2
  961. #: searx/templates/simple/filters/safesearch.html:3
  962. #: searx/templates/simple/filters/safesearch.html:4
  963. #: searx/templates/simple/preferences/engines.html:27
  964. #: searx/templates/simple/preferences/safesearch.html:2
  965. msgid "SafeSearch"
  966. msgstr "Безбедна Претрага"
  967. #: searx/templates/simple/filters/safesearch.html:2
  968. #: searx/templates/simple/preferences/safesearch.html:7
  969. msgid "Strict"
  970. msgstr "Стриктно"
  971. #: searx/templates/simple/filters/safesearch.html:3
  972. #: searx/templates/simple/preferences/safesearch.html:11
  973. msgid "Moderate"
  974. msgstr "Умерено"
  975. #: searx/templates/simple/filters/safesearch.html:4
  976. #: searx/templates/simple/preferences/safesearch.html:15
  977. msgid "None"
  978. msgstr "Ништа"
  979. #: searx/templates/simple/filters/time_range.html:1
  980. #: searx/templates/simple/preferences/engines.html:28
  981. msgid "Time range"
  982. msgstr "Временски опсег"
  983. #: searx/templates/simple/filters/time_range.html:3
  984. msgid "Anytime"
  985. msgstr "Било када"
  986. #: searx/templates/simple/filters/time_range.html:6
  987. msgid "Last day"
  988. msgstr "Последњи дан"
  989. #: searx/templates/simple/filters/time_range.html:9
  990. msgid "Last week"
  991. msgstr "Последња недеља"
  992. #: searx/templates/simple/filters/time_range.html:12
  993. msgid "Last month"
  994. msgstr "Последњи месец"
  995. #: searx/templates/simple/filters/time_range.html:15
  996. msgid "Last year"
  997. msgstr "Последња година"
  998. #: searx/templates/simple/messages/no_cookies.html:3
  999. msgid "Information!"
  1000. msgstr "Информације!"
  1001. #: searx/templates/simple/messages/no_cookies.html:4
  1002. msgid "currently, there are no cookies defined."
  1003. msgstr "тренутно, нема дефинисаних колачића."
  1004. #: searx/templates/simple/messages/no_results.html:6
  1005. msgid "Sorry!"
  1006. msgstr "Опростите!"
  1007. #: searx/templates/simple/messages/no_results.html:12
  1008. msgid "No results were found. You can try to:"
  1009. msgstr "Нису пронађени резултати. Можете покушати да:"
  1010. #: searx/templates/simple/messages/no_results.html:14
  1011. msgid "There are no more results. You can try to:"
  1012. msgstr "Нема више резултата. Можете покушати да:"
  1013. #: searx/templates/simple/messages/no_results.html:19
  1014. msgid "Refresh the page."
  1015. msgstr "Освежите страницу."
  1016. #: searx/templates/simple/messages/no_results.html:20
  1017. msgid "Search for another query or select another category (above)."
  1018. msgstr "Потражите други упит или да изаберете другу категорију (изнад)."
  1019. #: searx/templates/simple/messages/no_results.html:21
  1020. msgid "Change the search engine used in the preferences:"
  1021. msgstr "Промените претраживач који се користи у подешавањима:"
  1022. #: searx/templates/simple/messages/no_results.html:22
  1023. msgid "Switch to another instance:"
  1024. msgstr "Пребаците се на другу инстанцу:"
  1025. #: searx/templates/simple/messages/no_results.html:24
  1026. msgid "Search for another query or select another category."
  1027. msgstr "Потражите други упит или изаберите другу категорију."
  1028. #: searx/templates/simple/messages/no_results.html:25
  1029. msgid "Go back to the previous page using the previous page button."
  1030. msgstr "Вратите се на претходну страницу помоћу дугмета за претходну страницу."
  1031. #: searx/templates/simple/preferences/answerers.html:4
  1032. #: searx/templates/simple/preferences/engines.html:23
  1033. msgid "Allow"
  1034. msgstr "Допусти"
  1035. #: searx/templates/simple/preferences/answerers.html:5
  1036. msgid "Keywords (first word in query)"
  1037. msgstr "Кључне речи (прва реч у упиту)"
  1038. #: searx/templates/simple/preferences/answerers.html:6
  1039. #: searx/templates/simple/result_templates/packages.html:7
  1040. msgid "Name"
  1041. msgstr "Име"
  1042. #: searx/templates/simple/preferences/answerers.html:7
  1043. msgid "Description"
  1044. msgstr "Опис"
  1045. #: searx/templates/simple/preferences/answerers.html:13
  1046. msgid "This is the list of SearXNG's instant answering modules."
  1047. msgstr "Ово је листа СеарКСНГ-ових модула за тренутно јављање."
  1048. #: searx/templates/simple/preferences/answerers.html:29
  1049. msgid "This is the list of plugins."
  1050. msgstr "Ово је листа додатака."
  1051. #: searx/templates/simple/preferences/autocomplete.html:2
  1052. msgid "Autocomplete"
  1053. msgstr "Ауто попуњавање"
  1054. #: searx/templates/simple/preferences/autocomplete.html:15
  1055. msgid "Show possible queries as you type"
  1056. msgstr "Прикажите могуће упите док куцате"
  1057. #: searx/templates/simple/preferences/center_alignment.html:2
  1058. msgid "Center Alignment"
  1059. msgstr "Поравнање по средини"
  1060. #: searx/templates/simple/preferences/center_alignment.html:14
  1061. msgid "Display results in the center of the page (Oscar layout)."
  1062. msgstr "Прикажите резултате у средини странице (Оскар распоред)."
  1063. #: searx/templates/simple/preferences/cookies.html:2
  1064. msgid ""
  1065. "This is the list of cookies and their values SearXNG is storing on your "
  1066. "computer."
  1067. msgstr ""
  1068. "Ово је листа колачића и њихових вредности које СеарКСНГ чува на вашем "
  1069. "рачунару."
  1070. #: searx/templates/simple/preferences/cookies.html:3
  1071. msgid "With this list, you can assess the transparency of SearXNG."
  1072. msgstr "Помоћу ове листе можете проценити прозирност SearXNG-а."
  1073. #: searx/templates/simple/preferences/cookies.html:9
  1074. msgid "Cookie name"
  1075. msgstr "Име колачића"
  1076. #: searx/templates/simple/preferences/cookies.html:10
  1077. msgid "Value"
  1078. msgstr "Вредност"
  1079. #: searx/templates/simple/preferences/cookies.html:23
  1080. msgid "Search URL of the currently saved preferences"
  1081. msgstr "Pretražite URL адресу тренутно сачуваних поставки"
  1082. #: searx/templates/simple/preferences/cookies.html:32
  1083. msgid ""
  1084. "Note: specifying custom settings in the search URL can reduce privacy by "
  1085. "leaking data to the clicked result sites."
  1086. msgstr ""
  1087. "Напомена: навођење прилагођених поставки у URL претрази може смањити "
  1088. "приватност цурењем података кликнутих страница."
  1089. #: searx/templates/simple/preferences/cookies.html:35
  1090. msgid "URL to restore your preferences in another browser"
  1091. msgstr "УРЛ да бисте вратили своја подешавања у другом претраживачу"
  1092. #: searx/templates/simple/preferences/cookies.html:43
  1093. msgid ""
  1094. "A URL containing your preferences. This URL can be used to restore your "
  1095. "settings on a different device."
  1096. msgstr ""
  1097. "URL адреса која садржи ваша подешавања. Ова URL адреса се може користити "
  1098. "да вратите ваша подешавања на другом уређају."
  1099. #: searx/templates/simple/preferences/cookies.html:46
  1100. msgid "Copy preferences hash"
  1101. msgstr "Копирај хеш преференци"
  1102. #: searx/templates/simple/preferences/cookies.html:57
  1103. msgid "Insert copied preferences hash (without URL) to restore"
  1104. msgstr "Унесите копирани хеш преференци (без УРЛ-а) за повратак"
  1105. #: searx/templates/simple/preferences/cookies.html:59
  1106. msgid "Preferences hash"
  1107. msgstr "Хеш преференци"
  1108. #: searx/templates/simple/preferences/doi_resolver.html:1
  1109. msgid "Digital Object Identifier (DOI)"
  1110. msgstr "Дигитални Идентификатор Објеката (DOI)"
  1111. #: searx/templates/simple/preferences/doi_resolver.html:6
  1112. msgid "Open Access DOI resolver"
  1113. msgstr "Отворени приступ DOI решења"
  1114. #: searx/templates/simple/preferences/doi_resolver.html:18
  1115. msgid "Select service used by DOI rewrite"
  1116. msgstr "Изаберите услугу коју користи ДОИ изновопис"
  1117. #: searx/templates/simple/preferences/engines.html:9
  1118. msgid ""
  1119. "This tab does not exist in the user interface, but you can search with "
  1120. "these engines via !bangs."
  1121. msgstr ""
  1122. "Ова картица не постоји у корисничком интерфејсу, али можете претраживати "
  1123. "помоћу ових претраживача преко !bangs."
  1124. #: searx/templates/simple/preferences/engines.html:15
  1125. msgid "Enable all"
  1126. msgstr "Омогући све"
  1127. #: searx/templates/simple/preferences/engines.html:16
  1128. msgid "Disable all"
  1129. msgstr "Онемогући све"
  1130. #: searx/templates/simple/preferences/engines.html:25
  1131. msgid "!bang"
  1132. msgstr "!bang"
  1133. #: searx/templates/simple/preferences/engines.html:26
  1134. msgid "Supports selected language"
  1135. msgstr "Подржава изабрани језик"
  1136. #: searx/templates/simple/preferences/engines.html:29
  1137. msgid "Weight"
  1138. msgstr "Тежина"
  1139. #: searx/templates/simple/preferences/engines.html:33
  1140. msgid "Max time"
  1141. msgstr "Макс. време"
  1142. #: searx/templates/simple/preferences/favicon.html:2
  1143. msgid "Favicon Resolver"
  1144. msgstr "Резолвер иконица сајтова"
  1145. #: searx/templates/simple/preferences/favicon.html:15
  1146. msgid "Display favicons near search results"
  1147. msgstr "Прикажи иконице поред резултата претраге"
  1148. #: searx/templates/simple/preferences/footer.html:2
  1149. msgid ""
  1150. "These settings are stored in your cookies. This allows us not to store "
  1151. "this data about you."
  1152. msgstr ""
  1153. "Ова подешавања се похрањују у вашим колачићима. Ово нам омогућава да не "
  1154. "чувамо ове податке о вама."
  1155. #: searx/templates/simple/preferences/footer.html:3
  1156. msgid "These cookies serve your sole convenience; we don't use them to track you."
  1157. msgstr ""
  1158. "Ови колачићи служе искључиво вашој удобности; не користимо их да бисмо "
  1159. "вас шпијунирали."
  1160. #: searx/templates/simple/preferences/footer.html:6
  1161. msgid "Save"
  1162. msgstr "Сачувати"
  1163. #: searx/templates/simple/preferences/footer.html:9
  1164. msgid "Reset defaults"
  1165. msgstr "Врати на подразумевано"
  1166. #: searx/templates/simple/preferences/footer.html:13
  1167. msgid "Back"
  1168. msgstr "Назад"
  1169. #: searx/templates/simple/preferences/hotkeys.html:2
  1170. msgid "Hotkeys"
  1171. msgstr "Пречаци"
  1172. #: searx/templates/simple/preferences/hotkeys.html:13
  1173. msgid "Vim-like"
  1174. msgstr "Слично Вим-у"
  1175. #: searx/templates/simple/preferences/hotkeys.html:18
  1176. msgid ""
  1177. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  1178. "key on main or result page to get help."
  1179. msgstr ""
  1180. "Крећите се кроз резултате претраге помоћу пречаћних тастера (потребан је "
  1181. "JavaScript). Притисните тастер \"х\" на главној страници или страници са "
  1182. "резултатима да бисте добили помоћ."
  1183. #: searx/templates/simple/preferences/image_proxy.html:2
  1184. msgid "Image proxy"
  1185. msgstr "Прокси слика"
  1186. #: searx/templates/simple/preferences/image_proxy.html:14
  1187. msgid "Proxy image results through SearXNG"
  1188. msgstr "Проксирајте резултате слика преко SearXNG-а"
  1189. #: searx/templates/simple/preferences/infinite_scroll.html:2
  1190. msgid "Infinite scroll"
  1191. msgstr "Бесконачно померање"
  1192. #: searx/templates/simple/preferences/infinite_scroll.html:14
  1193. msgid ""
  1194. "Automatically load the next page when scrolling to the bottom of the "
  1195. "current page"
  1196. msgstr ""
  1197. "Аутоматски учитајте следећу страницу приликом померања до дна тренутне "
  1198. "странице"
  1199. #: searx/templates/simple/preferences/language.html:24
  1200. msgid "What language do you prefer for search?"
  1201. msgstr "Који језик преферирате за претрагу?"
  1202. #: searx/templates/simple/preferences/language.html:25
  1203. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1204. msgstr ""
  1205. "Одаберите Ауто-детецт да бисте дозволили SearXNG да открије језик вашег "
  1206. "упита."
  1207. #: searx/templates/simple/preferences/method.html:2
  1208. msgid "HTTP Method"
  1209. msgstr "ХТТП метода"
  1210. #: searx/templates/simple/preferences/method.html:14
  1211. msgid "Change how forms are submitted"
  1212. msgstr "Промените начин слања образаца"
  1213. #: searx/templates/simple/preferences/query_in_title.html:2
  1214. msgid "Query in the page's title"
  1215. msgstr "Упит у наслову странице"
  1216. #: searx/templates/simple/preferences/query_in_title.html:14
  1217. msgid ""
  1218. "When enabled, the result page's title contains your query. Your browser "
  1219. "can record this title"
  1220. msgstr ""
  1221. "Када је омогућено, наслов странице са резултатима садржи ваш упит. Ваш "
  1222. "претраживач може да сними овај наслов"
  1223. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1224. msgid "Results in new tabs"
  1225. msgstr "Резултати у новим картицама"
  1226. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1227. msgid "Open result links in new browser tabs"
  1228. msgstr "Отвори повезнице резултата у новим картицама прегледача"
  1229. #: searx/templates/simple/preferences/safesearch.html:20
  1230. msgid "Filter content"
  1231. msgstr "Филтрирајте садржај"
  1232. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1233. msgid "Search on category select"
  1234. msgstr "Тражите категорију избора"
  1235. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1236. msgid ""
  1237. "Perform a search immediately if a category is selected. Disable to select"
  1238. " multiple categories"
  1239. msgstr ""
  1240. "Одмах извршите претрагу ако је изабрана категорија. Онемогућите да бисте "
  1241. "изабрали више категорија"
  1242. #: searx/templates/simple/preferences/theme.html:2
  1243. msgid "Theme"
  1244. msgstr "Тема"
  1245. #: searx/templates/simple/preferences/theme.html:14
  1246. msgid "Change the layout of SearXNG"
  1247. msgstr "Промените распоред SearXNG-а"
  1248. #: searx/templates/simple/preferences/theme.html:19
  1249. msgid "Theme style"
  1250. msgstr "Изглед теме"
  1251. #: searx/templates/simple/preferences/theme.html:31
  1252. msgid "Choose auto to follow your browser settings"
  1253. msgstr "Изаберите аутоматски да бисте пратили подешавања вашег претраживача"
  1254. #: searx/templates/simple/preferences/tokens.html:2
  1255. msgid "Engine tokens"
  1256. msgstr "Енџин жетони"
  1257. #: searx/templates/simple/preferences/tokens.html:9
  1258. msgid "Access tokens for private engines"
  1259. msgstr "Приступите жетонима за приватне енџине"
  1260. #: searx/templates/simple/preferences/ui_locale.html:2
  1261. msgid "Interface language"
  1262. msgstr "Језик интерфејса"
  1263. #: searx/templates/simple/preferences/ui_locale.html:14
  1264. msgid "Change the language of the layout"
  1265. msgstr "Промените језик сајта"
  1266. #: searx/templates/simple/preferences/urlformatting.html:2
  1267. msgid "URL formatting"
  1268. msgstr "URL форматирање"
  1269. #: searx/templates/simple/preferences/urlformatting.html:8
  1270. msgid "Pretty"
  1271. msgstr "Лепо"
  1272. #: searx/templates/simple/preferences/urlformatting.html:13
  1273. msgid "Full"
  1274. msgstr "Целокупно"
  1275. #: searx/templates/simple/preferences/urlformatting.html:18
  1276. msgid "Host"
  1277. msgstr "Изворно"
  1278. #: searx/templates/simple/preferences/urlformatting.html:23
  1279. msgid "Change result URL formatting"
  1280. msgstr "Измени формат приказивања URL резултата"
  1281. #: searx/templates/simple/result_templates/code.html:13
  1282. msgid "repo"
  1283. msgstr "репозиторијуми"
  1284. #: searx/templates/simple/result_templates/default.html:6
  1285. #: searx/templates/simple/result_templates/files.html:8
  1286. #: searx/templates/simple/result_templates/files.html:11
  1287. msgid "show media"
  1288. msgstr "покажи медије"
  1289. #: searx/templates/simple/result_templates/default.html:6
  1290. #: searx/templates/simple/result_templates/files.html:8
  1291. msgid "hide media"
  1292. msgstr "сакриј медије"
  1293. #: searx/templates/simple/result_templates/default.html:14
  1294. #: searx/templates/simple/result_templates/videos.html:14
  1295. msgid "This site did not provide any description."
  1296. msgstr "Овај сајт није дао никакав опис."
  1297. #: searx/templates/simple/result_templates/files.html:38
  1298. #: searx/templates/simple/result_templates/images.html:22
  1299. #: searx/templates/simple/result_templates/torrent.html:18
  1300. msgid "Filesize"
  1301. msgstr "величина фајла"
  1302. #: searx/templates/simple/result_templates/files.html:40
  1303. msgid "Date"
  1304. msgstr "Датум"
  1305. #: searx/templates/simple/result_templates/files.html:42
  1306. #: searx/templates/simple/result_templates/paper.html:24
  1307. msgid "Type"
  1308. msgstr "Tip"
  1309. #: searx/templates/simple/result_templates/images.html:20
  1310. msgid "Resolution"
  1311. msgstr "Резолуција"
  1312. #: searx/templates/simple/result_templates/images.html:21
  1313. msgid "Format"
  1314. msgstr "Формат"
  1315. #: searx/templates/simple/result_templates/images.html:24
  1316. msgid "Engine"
  1317. msgstr "Енџин"
  1318. #: searx/templates/simple/result_templates/images.html:25
  1319. msgid "View source"
  1320. msgstr "Види извор"
  1321. #: searx/templates/simple/result_templates/map.html:12
  1322. msgid "address"
  1323. msgstr "адреса"
  1324. #: searx/templates/simple/result_templates/map.html:43
  1325. msgid "show map"
  1326. msgstr "покажи мапу"
  1327. #: searx/templates/simple/result_templates/map.html:43
  1328. msgid "hide map"
  1329. msgstr "сакриј мапу"
  1330. #: searx/templates/simple/result_templates/packages.html:12
  1331. msgid "Version"
  1332. msgstr "Верзија"
  1333. #: searx/templates/simple/result_templates/packages.html:18
  1334. msgid "Maintainer"
  1335. msgstr "Одржавалац"
  1336. #: searx/templates/simple/result_templates/packages.html:24
  1337. msgid "Updated at"
  1338. msgstr "Обновљен у"
  1339. #: searx/templates/simple/result_templates/packages.html:30
  1340. #: searx/templates/simple/result_templates/paper.html:25
  1341. msgid "Tags"
  1342. msgstr "Tagovi"
  1343. #: searx/templates/simple/result_templates/packages.html:36
  1344. msgid "Popularity"
  1345. msgstr "Популарност"
  1346. #: searx/templates/simple/result_templates/packages.html:42
  1347. msgid "License"
  1348. msgstr "Лиценца"
  1349. #: searx/templates/simple/result_templates/packages.html:52
  1350. msgid "Project"
  1351. msgstr "Пројекат"
  1352. #: searx/templates/simple/result_templates/packages.html:55
  1353. msgid "Project homepage"
  1354. msgstr "Главна страница пројекта"
  1355. #: searx/templates/simple/result_templates/paper.html:5
  1356. msgid "Published date"
  1357. msgstr "Датум објављивања"
  1358. #: searx/templates/simple/result_templates/paper.html:9
  1359. msgid "Journal"
  1360. msgstr "Дневник"
  1361. #: searx/templates/simple/result_templates/paper.html:22
  1362. msgid "Editor"
  1363. msgstr "Едитор"
  1364. #: searx/templates/simple/result_templates/paper.html:23
  1365. msgid "Publisher"
  1366. msgstr "Издавач"
  1367. #: searx/templates/simple/result_templates/paper.html:26
  1368. msgid "DOI"
  1369. msgstr "ДОИ"
  1370. #: searx/templates/simple/result_templates/paper.html:27
  1371. msgid "ISSN"
  1372. msgstr "ИССН"
  1373. #: searx/templates/simple/result_templates/paper.html:28
  1374. msgid "ISBN"
  1375. msgstr "ИСБН"
  1376. #: searx/templates/simple/result_templates/paper.html:33
  1377. msgid "PDF"
  1378. msgstr "PDF"
  1379. #: searx/templates/simple/result_templates/paper.html:34
  1380. msgid "HTML"
  1381. msgstr "HTML"
  1382. #: searx/templates/simple/result_templates/torrent.html:7
  1383. msgid "magnet link"
  1384. msgstr "магнет линк"
  1385. #: searx/templates/simple/result_templates/torrent.html:8
  1386. msgid "torrent file"
  1387. msgstr "торент фајл"
  1388. #: searx/templates/simple/result_templates/torrent.html:13
  1389. msgid "Seeder"
  1390. msgstr "Хранилац"
  1391. #: searx/templates/simple/result_templates/torrent.html:14
  1392. msgid "Leecher"
  1393. msgstr "Личер"
  1394. #: searx/templates/simple/result_templates/torrent.html:19
  1395. msgid "Number of Files"
  1396. msgstr "Број фајлова"
  1397. #: searx/templates/simple/result_templates/videos.html:6
  1398. msgid "show video"
  1399. msgstr "покажи видео"
  1400. #: searx/templates/simple/result_templates/videos.html:6
  1401. msgid "hide video"
  1402. msgstr "сакриј видео"
  1403. #~ msgid "Engine time (sec)"
  1404. #~ msgstr "Време претраге (сек)"
  1405. #~ msgid "Page loads (sec)"
  1406. #~ msgstr "Учитавање странице (сек)"
  1407. #~ msgid "Errors"
  1408. #~ msgstr "Грешке"
  1409. #~ msgid "CAPTCHA required"
  1410. #~ msgstr "Потребна је ЦАПТЦХА"
  1411. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1412. #~ msgstr "Препишите HTTP линкове у HTTPS ако је могуће"
  1413. #~ msgid ""
  1414. #~ "Results are opened in the same "
  1415. #~ "window by default. This plugin "
  1416. #~ "overwrites the default behaviour to open"
  1417. #~ " links on new tabs/windows. (JavaScript "
  1418. #~ "required)"
  1419. #~ msgstr ""
  1420. #~ "Резултати се отварају у истом прозору."
  1421. #~ " Овај додатак преписује подразумевано "
  1422. #~ "понашање како би отворио везе на "
  1423. #~ "новим картицама / прозорима. (Потребан "
  1424. #~ "је JavaScript )"
  1425. #~ msgid "Color"
  1426. #~ msgstr "Боја"
  1427. #~ msgid "Blue (default)"
  1428. #~ msgstr "Плава (подразумевано)"
  1429. #~ msgid "Violet"
  1430. #~ msgstr "Љубичаста"
  1431. #~ msgid "Green"
  1432. #~ msgstr "Зелена"
  1433. #~ msgid "Cyan"
  1434. #~ msgstr "Цијан"
  1435. #~ msgid "Orange"
  1436. #~ msgstr "Наранџаста"
  1437. #~ msgid "Red"
  1438. #~ msgstr "Црвена"
  1439. #~ msgid "Category"
  1440. #~ msgstr "Категорија"
  1441. #~ msgid "Block"
  1442. #~ msgstr "Блокирај"
  1443. #~ msgid "original context"
  1444. #~ msgstr "оригинални садржај"
  1445. #~ msgid "Plugins"
  1446. #~ msgstr "Додаци"
  1447. #~ msgid "Answerers"
  1448. #~ msgstr "Одговори"
  1449. #~ msgid "Avg. time"
  1450. #~ msgstr "Просечно време"
  1451. #~ msgid "show details"
  1452. #~ msgstr "покажи детаље"
  1453. #~ msgid "hide details"
  1454. #~ msgstr "сакриј детаље"
  1455. #~ msgid "Load more..."
  1456. #~ msgstr "Учитај више..."
  1457. #~ msgid "Loading..."
  1458. #~ msgstr "Учитавање..."
  1459. #~ msgid "Change searx layout"
  1460. #~ msgstr "Промените изглед searx сајта"
  1461. #~ msgid "Proxying image results through searx"
  1462. #~ msgstr "Прокси слике преко searx-а"
  1463. #~ msgid "This is the list of searx's instant answering modules."
  1464. #~ msgstr "Ово је листа searx инстант одговора."
  1465. #~ msgid ""
  1466. #~ "This is the list of cookies and"
  1467. #~ " their values searx is storing on "
  1468. #~ "your computer."
  1469. #~ msgstr "Ово је листа колачића и њихова вредност се снима на вашем рачунару."
  1470. #~ msgid "With that list, you can assess searx transparency."
  1471. #~ msgstr "Са овом листом можете бити searx транспаренти"
  1472. #~ msgid "It look like you are using searx first time."
  1473. #~ msgstr "Изгледа да први пут користите searx."
  1474. #~ msgid "Please, try again later or find another searx instance."
  1475. #~ msgstr "Молимо, покушајте поново касније."
  1476. #~ msgid "Themes"
  1477. #~ msgstr "Теме"
  1478. #~ msgid "Reliablity"
  1479. #~ msgstr ""
  1480. #~ msgid ""
  1481. #~ "When enabled, the result page's title"
  1482. #~ " contains your query. Your browser "
  1483. #~ "can record this title."
  1484. #~ msgstr ""
  1485. #~ msgid "Method"
  1486. #~ msgstr "Метода"
  1487. #~ msgid ""
  1488. #~ "This tab does not show up for "
  1489. #~ "search results but you can search "
  1490. #~ "the engines listed here via bangs."
  1491. #~ msgstr ""
  1492. #~ msgid "Advanced settings"
  1493. #~ msgstr "Напредне поставке"
  1494. #~ msgid "Close"
  1495. #~ msgstr "Затвори"
  1496. #~ msgid "Language"
  1497. #~ msgstr "Језик"
  1498. #~ msgid "broken"
  1499. #~ msgstr ""
  1500. #~ msgid "supported"
  1501. #~ msgstr "подржано"
  1502. #~ msgid "not supported"
  1503. #~ msgstr "неподржано"
  1504. #~ msgid "about"
  1505. #~ msgstr "О сајту"
  1506. #~ msgid "Avg."
  1507. #~ msgstr ""
  1508. #~ msgid "User Interface"
  1509. #~ msgstr ""
  1510. #~ msgid "Choose style for this theme"
  1511. #~ msgstr "Изаберите стил за ову тему"
  1512. #~ msgid "Style"
  1513. #~ msgstr "Стил"
  1514. #~ msgid "Show advanced settings"
  1515. #~ msgstr ""
  1516. #~ msgid "Show advanced settings panel in the home page by default"
  1517. #~ msgstr ""
  1518. #~ msgid "Allow all"
  1519. #~ msgstr "Дозволи све"
  1520. #~ msgid "Disable all"
  1521. #~ msgstr "Онемогући све"
  1522. #~ msgid "Selected language"
  1523. #~ msgstr "Изабрани језик"
  1524. #~ msgid "Query"
  1525. #~ msgstr ""
  1526. #~ msgid "save"
  1527. #~ msgstr "сними"
  1528. #~ msgid "back"
  1529. #~ msgstr "назад"
  1530. #~ msgid "Links"
  1531. #~ msgstr "Линкови"
  1532. #~ msgid "RSS subscription"
  1533. #~ msgstr "РСС претплата"
  1534. #~ msgid "Search results"
  1535. #~ msgstr "Резултати претраге"
  1536. #~ msgid "next page"
  1537. #~ msgstr "наредна страница"
  1538. #~ msgid "previous page"
  1539. #~ msgstr "претходна страница"
  1540. #~ msgid "Start search"
  1541. #~ msgstr "Почни претрагу"
  1542. #~ msgid "Clear search"
  1543. #~ msgstr "Очистите претражилац"
  1544. #~ msgid "Clear"
  1545. #~ msgstr "Очистите"
  1546. #~ msgid "stats"
  1547. #~ msgstr "статистика"
  1548. #~ msgid "Heads up!"
  1549. #~ msgstr "Главу горе!"
  1550. #~ msgid "It look like you are using SearXNG first time."
  1551. #~ msgstr ""
  1552. #~ msgid "Well done!"
  1553. #~ msgstr "Одлично!"
  1554. #~ msgid "Settings saved successfully."
  1555. #~ msgstr "Подешавања успешно сачувана."
  1556. #~ msgid "Oh snap!"
  1557. #~ msgstr "Упс!"
  1558. #~ msgid "Something went wrong."
  1559. #~ msgstr "Нешто је пошло наопако."
  1560. #~ msgid "Date"
  1561. #~ msgstr ""
  1562. #~ msgid "Type"
  1563. #~ msgstr ""
  1564. #~ msgid "Get image"
  1565. #~ msgstr "Узми слику"
  1566. #~ msgid "Center Alignment"
  1567. #~ msgstr ""
  1568. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1569. #~ msgstr "Приказује резултате на центру странице (Оскар распоред)."
  1570. #~ msgid "preferences"
  1571. #~ msgstr "ПОДЕШАВАЊА"
  1572. #~ msgid "Scores per result"
  1573. #~ msgstr "Остварени резултати"
  1574. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1575. #~ msgstr "мета-претраживач који поштује приватност"
  1576. #~ msgid "No abstract is available for this publication."
  1577. #~ msgstr "Абстракт није доступан за ову публикацију."
  1578. #~ msgid "Self Informations"
  1579. #~ msgstr "Информације о себи"
  1580. #~ msgid ""
  1581. #~ "Change how forms are submited, <a "
  1582. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1583. #~ " rel=\"external\">learn more about request "
  1584. #~ "methods</a>"
  1585. #~ msgstr ""
  1586. #~ "Промените начин слања форме, <a "
  1587. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1588. #~ " rel=\"external\">сазнајте више о методама "
  1589. #~ "захтева</a>"
  1590. #~ msgid ""
  1591. #~ "This plugin checks if the address "
  1592. #~ "of the request is a TOR exit "
  1593. #~ "node, and informs the user if it"
  1594. #~ " is, like check.torproject.org but from "
  1595. #~ "searxng."
  1596. #~ msgstr ""
  1597. #~ "Овај додатак проверава да ли је "
  1598. #~ "адреса захтева излазни чвор ТОР-а и "
  1599. #~ "обавештава корисника ако јесте, као "
  1600. #~ "check.torproject.org али са searxng."
  1601. #~ msgid ""
  1602. #~ "The TOR exit node list "
  1603. #~ "(https://check.torproject.org/exit-addresses) is "
  1604. #~ "unreachable."
  1605. #~ msgstr ""
  1606. #~ "Листа излазних чворова ТОР-а "
  1607. #~ "(https://check.torproject.org/exit-addresses) је "
  1608. #~ "недоступна."
  1609. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1610. #~ msgstr "Користите ТОР. Ваша ИП адреса је: {ip_address}."
  1611. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1612. #~ msgstr "Не користите ТОР. Ваша ИП адреса је: {ip_address}."
  1613. #~ msgid ""
  1614. #~ "The could not download the list of"
  1615. #~ " Tor exit-nodes from "
  1616. #~ "https://check.torproject.org/exit-addresses."
  1617. #~ msgstr ""
  1618. #~ msgid ""
  1619. #~ "You are using Tor. It looks like"
  1620. #~ " you have this external IP address:"
  1621. #~ " {ip_address}."
  1622. #~ msgstr ""
  1623. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1624. #~ msgstr ""
  1625. #~ msgid "Autodetect search language"
  1626. #~ msgstr ""
  1627. #~ msgid "Automatically detect the query search language and switch to it."
  1628. #~ msgstr ""
  1629. #~ msgid "others"
  1630. #~ msgstr "остали"
  1631. #~ msgid ""
  1632. #~ "This tab does not show up for "
  1633. #~ "search results, but you can search "
  1634. #~ "the engines listed here via bangs."
  1635. #~ msgstr ""
  1636. #~ "Ова картица није приказана за резултате"
  1637. #~ " претраге, али можете претраживати енџине"
  1638. #~ " наведене овде преко шишких."
  1639. #~ msgid "Shortcut"
  1640. #~ msgstr "Пречица"
  1641. #~ msgid "!bang"
  1642. #~ msgstr ""
  1643. #~ msgid ""
  1644. #~ "This tab dues not exists in the"
  1645. #~ " user interface, but you can search"
  1646. #~ " in these engines by its !bangs."
  1647. #~ msgstr ""
  1648. #~ msgid "Engines cannot retrieve results."
  1649. #~ msgstr "Нема резултата."
  1650. #~ msgid "Please, try again later or find another SearXNG instance."
  1651. #~ msgstr "Молимо, покушајте касније или пронађите другу СеарКСНГ инстанцу."
  1652. #~ msgid ""
  1653. #~ "Redirect to open-access versions of "
  1654. #~ "publications when available (plugin required)"
  1655. #~ msgstr ""
  1656. #~ "Преусмери на верзије публикација отвореног "
  1657. #~ "приступа кад је доступно (потребан је"
  1658. #~ " плагин)"
  1659. #~ msgid "Bang"
  1660. #~ msgstr ""
  1661. #~ msgid ""
  1662. #~ "Change how forms are submitted, <a "
  1663. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1664. #~ " rel=\"external\">learn more about request "
  1665. #~ "methods</a>"
  1666. #~ msgstr ""
  1667. #~ "Promeni nacin slanja formi, <a "
  1668. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1669. #~ " rel=\"external\">saznaj vise o request "
  1670. #~ "metodama</a>"
  1671. #~ msgid "On"
  1672. #~ msgstr "Укључено"
  1673. #~ msgid "Off"
  1674. #~ msgstr "Искључено"
  1675. #~ msgid "Enabled"
  1676. #~ msgstr "Омогућено"
  1677. #~ msgid "Disabled"
  1678. #~ msgstr "Онемогућено"
  1679. #~ msgid ""
  1680. #~ "Perform search immediately if a category"
  1681. #~ " selected. Disable to select multiple "
  1682. #~ "categories. (JavaScript required)"
  1683. #~ msgstr ""
  1684. #~ "Одмах извршите претрагу ако је изабрана"
  1685. #~ " категорија. Онемогућите да би изабрали "
  1686. #~ "више категорија. (Потребан је JavaScript)"
  1687. #~ msgid "Vim-like hotkeys"
  1688. #~ msgstr "Vim стил пречице"
  1689. #~ msgid ""
  1690. #~ "Navigate search results with Vim-like"
  1691. #~ " hotkeys (JavaScript required). Press \"h\""
  1692. #~ " key on main or result page to"
  1693. #~ " get help."
  1694. #~ msgstr ""
  1695. #~ "Померите резултате претраге помоћу Vim-пречица"
  1696. #~ " (потребан је JavaScript ). Притисните "
  1697. #~ "тастер \"h\" на главној или резултатној"
  1698. #~ " страници да бисте добили помоћ."
  1699. #~ msgid ""
  1700. #~ "we didn't find any results. Please "
  1701. #~ "use another query or search in "
  1702. #~ "more categories."
  1703. #~ msgstr ""
  1704. #~ "нема никавих резултата претраге. Молимо "
  1705. #~ "покишајте другу претрагу или категорију."
  1706. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1707. #~ msgstr ""
  1708. #~ "Поново упишите име хостинга или "
  1709. #~ "избришите резултате базиране на имену "
  1710. #~ "хостинга"
  1711. #~ msgid "Bytes"
  1712. #~ msgstr "Бајта"
  1713. #~ msgid "kiB"
  1714. #~ msgstr "kiB"
  1715. #~ msgid "MiB"
  1716. #~ msgstr "MiB"
  1717. #~ msgid "GiB"
  1718. #~ msgstr "GiB"
  1719. #~ msgid "TiB"
  1720. #~ msgstr "TiB"
  1721. #~ msgid "Hostname replace"
  1722. #~ msgstr "Замени име хостинга"
  1723. #~ msgid "Error!"
  1724. #~ msgstr "Грешка!"
  1725. #~ msgid "Engines cannot retrieve results"
  1726. #~ msgstr "Не може повратити резултате"
  1727. #~ msgid "Start submiting a new issue on GitHub"
  1728. #~ msgstr "Почните да шаљете ново издање на ГитХуб-у"
  1729. #~ msgid "dummy"
  1730. #~ msgstr ""
  1731. #~ msgid "Random value generator"
  1732. #~ msgstr "Генератор случајних вредности"
  1733. #~ msgid "Statistics functions"
  1734. #~ msgstr "Статистичке функције"
  1735. #~ msgid "Compute {functions} of the arguments"
  1736. #~ msgstr "Израчунајте {functions} аргумената"
  1737. #~ msgid "Get directions"
  1738. #~ msgstr "Упутства за правац"
  1739. #~ msgid ""
  1740. #~ "Displays your IP if the query is"
  1741. #~ " \"ip\" and your user agent if "
  1742. #~ "the query contains \"user agent\"."
  1743. #~ msgstr ""
  1744. #~ "Прикажите своју IP адресу ако је "
  1745. #~ "упит \"ip\" и ако кориснички агент "
  1746. #~ "садржи \"user agent\"."
  1747. #~ msgid ""
  1748. #~ "Could not download the list of Tor"
  1749. #~ " exit-nodes from: https://check.torproject.org"
  1750. #~ "/exit-addresses"
  1751. #~ msgstr ""
  1752. #~ "Није могуће преузети листу Тор излазних"
  1753. #~ " чворова са: https://check.torproject.org/exit-"
  1754. #~ "addresses"
  1755. #~ msgid ""
  1756. #~ "You are using Tor and it looks "
  1757. #~ "like you have this external IP "
  1758. #~ "address: {ip_address}"
  1759. #~ msgstr ""
  1760. #~ "Koristis Tor i izgleda da je ovo"
  1761. #~ " tvoja externlana IP addresa : "
  1762. #~ "{ip_address}"
  1763. #~ msgid ""
  1764. #~ "You are not using Tor and you "
  1765. #~ "have this external IP address: "
  1766. #~ "{ip_address}"
  1767. #~ msgstr "Не користите Тор и имате ову спољну ИП адресу: {ip_address}"
  1768. #~ msgid "Keywords"
  1769. #~ msgstr "Кључне речи"
  1770. #~ msgid "/"
  1771. #~ msgstr ""
  1772. #~ msgid ""
  1773. #~ "Specifying custom settings in the "
  1774. #~ "preferences URL can be used to "
  1775. #~ "sync preferences across devices."
  1776. #~ msgstr ""
  1777. #~ "Одређивање прилагођених подешавања у УРЛ-у "
  1778. #~ "може да се користи за синхронизацију "
  1779. #~ "подешавања на свим уређајима."
  1780. #~ msgid "proxied"
  1781. #~ msgstr "прокси"
  1782. #~ msgid ""
  1783. #~ "This tab does not exists in the"
  1784. #~ " user interface, but you can search"
  1785. #~ " in these engines by its !bangs."
  1786. #~ msgstr ""
  1787. #~ "Ова картица не постоји у корисничком "
  1788. #~ "интерфејсу, али можете претраживати у "
  1789. #~ "овим машинама по његовим !bangs-има."
  1790. #~ msgid "Results on new tabs"
  1791. #~ msgstr "Резултати на картицама"
  1792. #~ msgid "Open result links on new browser tabs"
  1793. #~ msgstr "Отворите линкове са резултатима на новим картицама претраживача"
  1794. #~ msgid "Find stuff as you type"
  1795. #~ msgstr "Пронађите док куцате"
  1796. #~ msgid "Converts strings to different hash digests."
  1797. #~ msgstr "Претвара стринг у другачије хешеве."
  1798. #~ msgid ""
  1799. #~ "Rewrite hostnames, remove results or "
  1800. #~ "prioritize them based on the hostname"
  1801. #~ msgstr "Преуреди домене, уклони или промени приоритет резултата према домену"
  1802. #~ msgid "With that list, you can assess SearXNG transparency."
  1803. #~ msgstr "Са том листом можете проценити транспарентност СеарКСНГ-а."
  1804. #~ msgid ""
  1805. #~ "These settings are stored in your "
  1806. #~ "cookies, this allows us not to "
  1807. #~ "store this data about you."
  1808. #~ msgstr ""
  1809. #~ "Ова подешавања се чувају у вашим "
  1810. #~ "колачићима, што нам омогућава да не "
  1811. #~ "сачувамо ове податке о вама."
  1812. #~ msgid ""
  1813. #~ "These cookies serve your sole "
  1814. #~ "convenience, we don't use these cookies"
  1815. #~ " to track you."
  1816. #~ msgstr ""
  1817. #~ "Ови колачићи служе Вашој погодности, ми"
  1818. #~ " не користимо ове колачиће да вас "
  1819. #~ "пратимо."
  1820. #~ msgid "Proxying image results through SearXNG"
  1821. #~ msgstr "Прокси резултат слике преко СеарКСНГ"
  1822. #~ msgid "Automatically load next page when scrolling to bottom of current page"
  1823. #~ msgstr ""
  1824. #~ "Аутоматско учитавање следеће странице приликом"
  1825. #~ " померања на дно текуће странице"
  1826. #~ msgid ""
  1827. #~ "Perform search immediately if a category"
  1828. #~ " selected. Disable to select multiple "
  1829. #~ "categories"
  1830. #~ msgstr ""
  1831. #~ "Извршите претрагу одмах ако је одабрана"
  1832. #~ " категорија. Онемогућите да бисте изабрали"
  1833. #~ " више категорија"
  1834. #~ msgid "Change SearXNG layout"
  1835. #~ msgstr "Промените изглед СеарКСНГ-а"