messages.po 55 KB

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