messages.po 55 KB

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