messages.po 55 KB

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