messages.po 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905
  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-04-27 16:14+0000\n"
  19. "PO-Revision-Date: 2024-03-22 07:09+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 ""
  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/hash_plugin.py:10
  396. msgid "Converts strings to different hash digests."
  397. msgstr "Преобразува низове в различни хаш-извлечение."
  398. #: searx/plugins/hash_plugin.py:38
  399. msgid "hash digest"
  400. msgstr "хеш извлечение"
  401. #: searx/plugins/hostname_replace.py:12
  402. msgid "Hostname replace"
  403. msgstr "Замяна на името на хоста"
  404. #: searx/plugins/hostname_replace.py:13
  405. msgid "Rewrite result hostnames or remove results based on the hostname"
  406. msgstr ""
  407. "Пренапишете имената на хостове на резултатите или премахнете резултатите "
  408. "въз основа на името на хоста"
  409. #: searx/plugins/oa_doi_rewrite.py:12
  410. msgid "Open Access DOI rewrite"
  411. msgstr "Отворен достъп DOI пренаписване"
  412. #: searx/plugins/oa_doi_rewrite.py:13
  413. msgid ""
  414. "Avoid paywalls by redirecting to open-access versions of publications "
  415. "when available"
  416. msgstr ""
  417. "Избягвайте заплатите, като пренасочвате към версии с отворен достъп на "
  418. "публикации, когато са налични"
  419. #: searx/plugins/self_info.py:9
  420. msgid "Self Information"
  421. msgstr ""
  422. #: searx/plugins/self_info.py:10
  423. msgid ""
  424. "Displays your IP if the query is \"ip\" and your user agent if the query "
  425. "contains \"user agent\"."
  426. msgstr "Показва IP-то ви и др. инфо, ако търсенето е \"ip\" или \"user agent\"."
  427. #: searx/plugins/tor_check.py:24
  428. msgid "Tor check plugin"
  429. msgstr "Проверка на Tor приставката"
  430. #: searx/plugins/tor_check.py:27
  431. msgid ""
  432. "This plugin checks if the address of the request is a Tor exit-node, and "
  433. "informs the user if it is; like check.torproject.org, but from SearXNG."
  434. msgstr ""
  435. "Тази добавка проверява дали адресът на заявката е изходен възел на TOR и "
  436. "осведомява потребителя ако е - като check.torproject.org, но от SearXNG."
  437. #: searx/plugins/tor_check.py:61
  438. msgid ""
  439. "Could not download the list of Tor exit-nodes from: "
  440. "https://check.torproject.org/exit-addresses"
  441. msgstr ""
  442. "Не можe да се изтегли списъка с mаршрутизатори/рутери на Tor от: "
  443. "https://check.torproject.org/exit-addresses"
  444. #: searx/plugins/tor_check.py:77
  445. msgid ""
  446. "You are using Tor and it looks like you have this external IP address: "
  447. "{ip_address}"
  448. msgstr "В момента използваш Tor и твоят IP адрес е: {ip_address}"
  449. #: searx/plugins/tor_check.py:85
  450. msgid "You are not using Tor and you have this external IP address: {ip_address}"
  451. msgstr "В момента не използваш Tor и твоят IP адрес е: {ip_address}"
  452. #: searx/plugins/tracker_url_remover.py:16
  453. msgid "Tracker URL remover"
  454. msgstr "Премахвач на URL тракери"
  455. #: searx/plugins/tracker_url_remover.py:17
  456. msgid "Remove trackers arguments from the returned URL"
  457. msgstr "Премахни следящите аргументи от върнатия URL"
  458. #: searx/plugins/unit_converter.py:10
  459. msgid "Convert between units"
  460. msgstr ""
  461. #: searx/templates/simple/404.html:4
  462. msgid "Page not found"
  463. msgstr "Страницата не е намерена"
  464. #: searx/templates/simple/404.html:6
  465. #, python-format
  466. msgid "Go to %(search_page)s."
  467. msgstr "Отиди на %(search_page)s."
  468. #: searx/templates/simple/404.html:6
  469. msgid "search page"
  470. msgstr "търси страница"
  471. #: searx/templates/simple/base.html:54
  472. msgid "Donate"
  473. msgstr "Дарете"
  474. #: searx/templates/simple/base.html:58
  475. #: searx/templates/simple/preferences.html:156
  476. msgid "Preferences"
  477. msgstr "Предпочитания"
  478. #: searx/templates/simple/base.html:68
  479. msgid "Powered by"
  480. msgstr "С подкрепата на"
  481. #: searx/templates/simple/base.html:68
  482. msgid "a privacy-respecting, open metasearch engine"
  483. msgstr "отворена метатърсачка, уважаваща поверителността на потребителя"
  484. #: searx/templates/simple/base.html:69
  485. #: searx/templates/simple/result_templates/packages.html:59
  486. msgid "Source code"
  487. msgstr "Код на SearXNG"
  488. #: searx/templates/simple/base.html:70
  489. msgid "Issue tracker"
  490. msgstr "Търсачка на проблеми"
  491. #: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18
  492. msgid "Engine stats"
  493. msgstr "Статистика на търсачката"
  494. #: searx/templates/simple/base.html:73
  495. msgid "Public instances"
  496. msgstr "Публични сървъри"
  497. #: searx/templates/simple/base.html:76
  498. msgid "Privacy policy"
  499. msgstr "Политика за поверителност"
  500. #: searx/templates/simple/base.html:79
  501. msgid "Contact instance maintainer"
  502. msgstr "Контакт за връзка с поддържащия публичния сървър"
  503. #: searx/templates/simple/categories.html:26
  504. msgid "Click on the magnifier to perform search"
  505. msgstr "Кликнете лупичката, за да изпълните търсене"
  506. #: searx/templates/simple/macros.html:36
  507. msgid "Length"
  508. msgstr "Дължина"
  509. #: searx/templates/simple/macros.html:37
  510. #: searx/templates/simple/result_templates/files.html:34
  511. #: searx/templates/simple/result_templates/images.html:19
  512. #: searx/templates/simple/result_templates/paper.html:6
  513. msgid "Author"
  514. msgstr "Автор"
  515. #: searx/templates/simple/macros.html:45
  516. msgid "cached"
  517. msgstr "кеширана"
  518. #: searx/templates/simple/macros.html:45
  519. msgid "proxied"
  520. msgstr "прекарана"
  521. #: searx/templates/simple/new_issue.html:64
  522. msgid "Start submiting a new issue on GitHub"
  523. msgstr "Предявете нов проблем в GitHub"
  524. #: searx/templates/simple/new_issue.html:66
  525. msgid "Please check for existing bugs about this engine on GitHub"
  526. msgstr "Моля проверете за съществуващи бъгове на търсачката в GitHub"
  527. #: searx/templates/simple/new_issue.html:69
  528. msgid "I confirm there is no existing bug about the issue I encounter"
  529. msgstr "Потвърждавам, че няма съществуващи бъогве за проблема, който срещнах"
  530. #: searx/templates/simple/new_issue.html:71
  531. msgid "If this is a public instance, please specify the URL in the bug report"
  532. msgstr ""
  533. "Ако това е публична инстанция, моля предоставете URL адресът в отзива за "
  534. "бъга"
  535. #: searx/templates/simple/new_issue.html:72
  536. msgid "Submit a new issue on Github including the above information"
  537. msgstr ""
  538. "Изпращане на сигнал за нов проблем на Github, съдържащ горепосочената "
  539. "информация"
  540. #: searx/templates/simple/preferences.html:65
  541. msgid "No HTTPS"
  542. msgstr "Без HTTPS"
  543. #: searx/templates/simple/elements/engines_msg.html:18
  544. #: searx/templates/simple/preferences.html:69
  545. #: searx/templates/simple/preferences.html:70
  546. msgid "View error logs and submit a bug report"
  547. msgstr "Виж грешката и я докладвай"
  548. #: searx/templates/simple/preferences.html:74
  549. msgid "!bang for this engine"
  550. msgstr "!bang за тази търсачка"
  551. #: searx/templates/simple/preferences.html:80
  552. msgid "!bang for its categories"
  553. msgstr "!bang за категориите"
  554. #: searx/templates/simple/preferences.html:102
  555. #: searx/templates/simple/stats.html:64
  556. msgid "Median"
  557. msgstr "Медиaна"
  558. #: searx/templates/simple/preferences.html:103
  559. #: searx/templates/simple/stats.html:70
  560. msgid "P80"
  561. msgstr "P80"
  562. #: searx/templates/simple/preferences.html:104
  563. #: searx/templates/simple/stats.html:76
  564. msgid "P95"
  565. msgstr "P95"
  566. #: searx/templates/simple/preferences.html:136
  567. msgid "Failed checker test(s): "
  568. msgstr "Провалили се тест(ове) на проверяващия: "
  569. #: searx/templates/simple/preferences.html:138
  570. msgid "Errors:"
  571. msgstr "Грешки:"
  572. #: searx/templates/simple/preferences.html:162
  573. msgid "General"
  574. msgstr "Общи"
  575. #: searx/templates/simple/preferences.html:165
  576. msgid "Default categories"
  577. msgstr "Първоначални категории"
  578. #: searx/templates/simple/preferences.html:187
  579. msgid "User interface"
  580. msgstr "Потребителски интерфейс"
  581. #: searx/templates/simple/preferences.html:208
  582. msgid "Privacy"
  583. msgstr "Поверителност"
  584. #: searx/templates/simple/preferences.html:221
  585. msgid "Engines"
  586. msgstr "Търсачки"
  587. #: searx/templates/simple/preferences.html:223
  588. msgid "Currently used search engines"
  589. msgstr "Използвани търсачки в момента"
  590. #: searx/templates/simple/preferences.html:231
  591. msgid "Special Queries"
  592. msgstr "Специялни Запитвания"
  593. #: searx/templates/simple/preferences.html:237
  594. msgid "Cookies"
  595. msgstr "Бисквитки"
  596. #: searx/templates/simple/results.html:23
  597. msgid "Answers"
  598. msgstr "Отговори"
  599. #: searx/templates/simple/results.html:38
  600. msgid "Number of results"
  601. msgstr "Брой резултати"
  602. #: searx/templates/simple/results.html:44
  603. msgid "Info"
  604. msgstr "Инф."
  605. #: searx/templates/simple/results.html:73
  606. msgid "Try searching for:"
  607. msgstr "Пробвайте да потърсите:"
  608. #: searx/templates/simple/results.html:105
  609. msgid "Back to top"
  610. msgstr "Обратно към началото"
  611. #: searx/templates/simple/results.html:123
  612. msgid "Previous page"
  613. msgstr "Предишна страница"
  614. #: searx/templates/simple/results.html:141
  615. msgid "Next page"
  616. msgstr "Следваща страница"
  617. #: searx/templates/simple/search.html:3
  618. msgid "Display the front page"
  619. msgstr "Покажи начална страница"
  620. #: searx/templates/simple/search.html:9
  621. #: searx/templates/simple/simple_search.html:5
  622. msgid "Search for..."
  623. msgstr "Търси за..."
  624. #: searx/templates/simple/search.html:10
  625. #: searx/templates/simple/simple_search.html:6
  626. msgid "clear"
  627. msgstr "изчисти"
  628. #: searx/templates/simple/search.html:11
  629. #: searx/templates/simple/simple_search.html:7
  630. msgid "search"
  631. msgstr "търси"
  632. #: searx/templates/simple/stats.html:21
  633. msgid "There is currently no data available. "
  634. msgstr "Няма налична достъпна информация."
  635. #: searx/templates/simple/preferences/engines.html:18
  636. #: searx/templates/simple/stats.html:25
  637. msgid "Engine name"
  638. msgstr "Име на търсачка"
  639. #: searx/templates/simple/stats.html:26
  640. msgid "Scores"
  641. msgstr "Резултати"
  642. #: searx/templates/simple/stats.html:27
  643. msgid "Result count"
  644. msgstr "Брой резултати"
  645. #: searx/templates/simple/preferences/engines.html:25
  646. #: searx/templates/simple/stats.html:28
  647. msgid "Response time"
  648. msgstr "Време за отговор"
  649. #: searx/templates/simple/preferences/engines.html:29
  650. #: searx/templates/simple/stats.html:29
  651. msgid "Reliability"
  652. msgstr "Надеждност"
  653. #: searx/templates/simple/stats.html:59
  654. msgid "Total"
  655. msgstr "Общо"
  656. #: searx/templates/simple/stats.html:60
  657. msgid "HTTP"
  658. msgstr "HTTP"
  659. #: searx/templates/simple/stats.html:61
  660. msgid "Processing"
  661. msgstr "Обработка"
  662. #: searx/templates/simple/stats.html:99
  663. msgid "Warnings"
  664. msgstr "Предупреждения"
  665. #: searx/templates/simple/stats.html:99
  666. msgid "Errors and exceptions"
  667. msgstr "Грешки и изключения"
  668. #: searx/templates/simple/stats.html:105
  669. msgid "Exception"
  670. msgstr "Изключение"
  671. #: searx/templates/simple/stats.html:107
  672. msgid "Message"
  673. msgstr "Съобщение"
  674. #: searx/templates/simple/stats.html:109
  675. msgid "Percentage"
  676. msgstr "Процент"
  677. #: searx/templates/simple/stats.html:111
  678. msgid "Parameter"
  679. msgstr "Параметър"
  680. #: searx/templates/simple/result_templates/files.html:36
  681. #: searx/templates/simple/stats.html:119
  682. msgid "Filename"
  683. msgstr "Име на файла"
  684. #: searx/templates/simple/stats.html:120
  685. msgid "Function"
  686. msgstr "Функция"
  687. #: searx/templates/simple/stats.html:121
  688. msgid "Code"
  689. msgstr "Код"
  690. #: searx/templates/simple/stats.html:128
  691. msgid "Checker"
  692. msgstr "Проверител"
  693. #: searx/templates/simple/stats.html:131
  694. msgid "Failed test"
  695. msgstr "Неуспешен тест"
  696. #: searx/templates/simple/stats.html:132
  697. msgid "Comment(s)"
  698. msgstr "Коментар (и)"
  699. #: searx/templates/simple/elements/apis.html:3
  700. msgid "Download results"
  701. msgstr "Свали резултатите"
  702. #: searx/templates/simple/elements/engines_msg.html:7
  703. msgid "Messages from the search engines"
  704. msgstr "Съобщения от търсачките"
  705. #: searx/templates/simple/elements/engines_msg.html:12
  706. msgid "Error!"
  707. msgstr "Грешка!"
  708. #: searx/templates/simple/elements/engines_msg.html:13
  709. msgid "Engines cannot retrieve results"
  710. msgstr "Търсачките не можаха да намерят резултати"
  711. #: searx/templates/simple/elements/search_url.html:3
  712. msgid "Search URL"
  713. msgstr "Адрес на търсенето"
  714. #: searx/templates/simple/elements/search_url.html:4
  715. #: searx/templates/simple/preferences/cookies.html:54
  716. msgid "Copied"
  717. msgstr "копирано"
  718. #: searx/templates/simple/elements/search_url.html:4
  719. #: searx/templates/simple/preferences/cookies.html:54
  720. msgid "Copy"
  721. msgstr "Копирайте"
  722. #: searx/templates/simple/elements/suggestions.html:3
  723. msgid "Suggestions"
  724. msgstr "Предложения"
  725. #: searx/templates/simple/filters/languages.html:1
  726. #: searx/templates/simple/preferences/language.html:2
  727. msgid "Search language"
  728. msgstr "Език на търсене"
  729. #: searx/templates/simple/filters/languages.html:2
  730. #: searx/templates/simple/preferences/language.html:7
  731. msgid "Default language"
  732. msgstr "Основен език"
  733. #: searx/templates/simple/filters/languages.html:4
  734. #: searx/templates/simple/preferences/language.html:11
  735. msgid "Auto-detect"
  736. msgstr "Автоматично разпознаване"
  737. #: searx/templates/simple/filters/safesearch.html:1
  738. #: searx/templates/simple/filters/safesearch.html:2
  739. #: searx/templates/simple/filters/safesearch.html:3
  740. #: searx/templates/simple/filters/safesearch.html:4
  741. #: searx/templates/simple/preferences/engines.html:21
  742. #: searx/templates/simple/preferences/safesearch.html:2
  743. msgid "SafeSearch"
  744. msgstr "Безопасно търсене"
  745. #: searx/templates/simple/filters/safesearch.html:2
  746. #: searx/templates/simple/preferences/safesearch.html:7
  747. msgid "Strict"
  748. msgstr "Стриктно"
  749. #: searx/templates/simple/filters/safesearch.html:3
  750. #: searx/templates/simple/preferences/safesearch.html:11
  751. msgid "Moderate"
  752. msgstr "Умерено"
  753. #: searx/templates/simple/filters/safesearch.html:4
  754. #: searx/templates/simple/preferences/safesearch.html:15
  755. msgid "None"
  756. msgstr "Нищо"
  757. #: searx/templates/simple/filters/time_range.html:1
  758. #: searx/templates/simple/preferences/engines.html:22
  759. msgid "Time range"
  760. msgstr "Времева зона"
  761. #: searx/templates/simple/filters/time_range.html:3
  762. msgid "Anytime"
  763. msgstr "По всяко време"
  764. #: searx/templates/simple/filters/time_range.html:6
  765. msgid "Last day"
  766. msgstr "Последен ден"
  767. #: searx/templates/simple/filters/time_range.html:9
  768. msgid "Last week"
  769. msgstr "Миналата седмица"
  770. #: searx/templates/simple/filters/time_range.html:12
  771. msgid "Last month"
  772. msgstr "Миналия месец"
  773. #: searx/templates/simple/filters/time_range.html:15
  774. msgid "Last year"
  775. msgstr "Миналата година"
  776. #: searx/templates/simple/messages/no_cookies.html:3
  777. msgid "Information!"
  778. msgstr "Информация!"
  779. #: searx/templates/simple/messages/no_cookies.html:4
  780. msgid "currently, there are no cookies defined."
  781. msgstr "В момента няма налични бисквитки."
  782. #: searx/templates/simple/messages/no_results.html:6
  783. msgid "Sorry!"
  784. msgstr "Съжалявам!"
  785. #: searx/templates/simple/messages/no_results.html:12
  786. msgid "No results were found. You can try to:"
  787. msgstr "Няма намерени резултати. Може да опитате да:"
  788. #: searx/templates/simple/messages/no_results.html:14
  789. msgid "There are no more results. You can try to:"
  790. msgstr ""
  791. #: searx/templates/simple/messages/no_results.html:19
  792. msgid "Refresh the page."
  793. msgstr "Опресни страницата"
  794. #: searx/templates/simple/messages/no_results.html:20
  795. msgid "Search for another query or select another category (above)."
  796. msgstr "Направете друго търсене или изберете друга категория (по-отгоре)."
  797. #: searx/templates/simple/messages/no_results.html:21
  798. msgid "Change the search engine used in the preferences:"
  799. msgstr "Сменете използваната търсачка от Предпочитания:"
  800. #: searx/templates/simple/messages/no_results.html:22
  801. msgid "Switch to another instance:"
  802. msgstr "Премини на друг сървър:"
  803. #: searx/templates/simple/messages/no_results.html:24
  804. msgid "Search for another query or select another category."
  805. msgstr ""
  806. #: searx/templates/simple/messages/no_results.html:25
  807. msgid "Go back to the previous page using the previous page button."
  808. msgstr ""
  809. #: searx/templates/simple/preferences/answerers.html:4
  810. #: searx/templates/simple/preferences/engines.html:17
  811. msgid "Allow"
  812. msgstr "Позволи"
  813. #: searx/templates/simple/preferences/answerers.html:5
  814. msgid "Keywords"
  815. msgstr "Ключови думи"
  816. #: searx/templates/simple/preferences/answerers.html:6
  817. #: searx/templates/simple/result_templates/packages.html:7
  818. msgid "Name"
  819. msgstr "Име"
  820. #: searx/templates/simple/preferences/answerers.html:7
  821. msgid "Description"
  822. msgstr "Описание"
  823. #: searx/templates/simple/preferences/answerers.html:8
  824. msgid "Examples"
  825. msgstr "Примери"
  826. #: searx/templates/simple/preferences/answerers.html:13
  827. msgid "This is the list of SearXNG's instant answering modules."
  828. msgstr "Това е листа, съдържащ моментално-отговарящите модули на SearXNG."
  829. #: searx/templates/simple/preferences/answerers.html:29
  830. msgid "This is the list of plugins."
  831. msgstr "Това е листа с добавки."
  832. #: searx/templates/simple/preferences/autocomplete.html:2
  833. msgid "Autocomplete"
  834. msgstr "Автоматично допълване"
  835. #: searx/templates/simple/preferences/autocomplete.html:15
  836. msgid "Find stuff as you type"
  837. msgstr "Намери докато пишеш"
  838. #: searx/templates/simple/preferences/center_alignment.html:2
  839. msgid "Center Alignment"
  840. msgstr "Централно подреждане"
  841. #: searx/templates/simple/preferences/center_alignment.html:14
  842. msgid "Displays results in the center of the page (Oscar layout)."
  843. msgstr "Показване на резултатите в средата на страницата (Оскарово оформление)."
  844. #: searx/templates/simple/preferences/cookies.html:2
  845. msgid ""
  846. "This is the list of cookies and their values SearXNG is storing on your "
  847. "computer."
  848. msgstr ""
  849. "Това е листът с бисквитките и техните стойност които SearXNG запазва на "
  850. "компютъра ви."
  851. #: searx/templates/simple/preferences/cookies.html:3
  852. msgid "With that list, you can assess SearXNG transparency."
  853. msgstr "С този лист можете да оцените прозрачността на SearXNG."
  854. #: searx/templates/simple/preferences/cookies.html:9
  855. msgid "Cookie name"
  856. msgstr "Име на бисквитката"
  857. #: searx/templates/simple/preferences/cookies.html:10
  858. msgid "Value"
  859. msgstr "Стойност"
  860. #: searx/templates/simple/preferences/cookies.html:23
  861. msgid "Search URL of the currently saved preferences"
  862. msgstr "Потърсете URL на запазените предпочитания"
  863. #: searx/templates/simple/preferences/cookies.html:32
  864. msgid ""
  865. "Note: specifying custom settings in the search URL can reduce privacy by "
  866. "leaking data to the clicked result sites."
  867. msgstr ""
  868. "Бележка: специфичните персонализирани настройки в URL-то за търсене може "
  869. "да намалят поверителността Ви като издадат данни към кликнатите сайтове "
  870. "при търсене."
  871. #: searx/templates/simple/preferences/cookies.html:35
  872. msgid "URL to restore your preferences in another browser"
  873. msgstr "URL да възстановите предпочитанията си в друг браузър"
  874. #: searx/templates/simple/preferences/cookies.html:43
  875. msgid ""
  876. "Specifying custom settings in the preferences URL can be used to sync "
  877. "preferences across devices."
  878. msgstr ""
  879. "Специфицирането на персонализирани настройки в URL-то за предпочитания "
  880. "може да позволи синхронизация между различни устройства."
  881. #: searx/templates/simple/preferences/cookies.html:46
  882. msgid "Copy preferences hash"
  883. msgstr ""
  884. #: searx/templates/simple/preferences/cookies.html:57
  885. msgid "Insert copied preferences hash (without URL) to restore"
  886. msgstr ""
  887. #: searx/templates/simple/preferences/cookies.html:59
  888. msgid "Preferences hash"
  889. msgstr ""
  890. #: searx/templates/simple/preferences/doi_resolver.html:2
  891. msgid "Open Access DOI resolver"
  892. msgstr "Дигитален идентификатор на обекти с отворен достъп"
  893. #: searx/templates/simple/preferences/doi_resolver.html:14
  894. msgid "Select service used by DOI rewrite"
  895. msgstr ""
  896. "Изберете услуга използвана от \"Идентификатор на дигитален обект“ (DOI) "
  897. "пренаписване"
  898. #: searx/templates/simple/preferences/engines.html:9
  899. msgid ""
  900. "This tab does not exists in the user interface, but you can search in "
  901. "these engines by its !bangs."
  902. msgstr ""
  903. "Този раздел несъществува в потребителския интерфейс, но може да търсиш "
  904. "със следните търсачки по !bangs."
  905. #: searx/templates/simple/preferences/engines.html:19
  906. msgid "!bang"
  907. msgstr "!bang"
  908. #: searx/templates/simple/preferences/engines.html:20
  909. msgid "Supports selected language"
  910. msgstr "Поддържка на избраният език"
  911. #: searx/templates/simple/preferences/engines.html:23
  912. msgid "Weight"
  913. msgstr "Тегло"
  914. #: searx/templates/simple/preferences/engines.html:27
  915. msgid "Max time"
  916. msgstr "Максимално време"
  917. #: searx/templates/simple/preferences/footer.html:2
  918. msgid ""
  919. "These settings are stored in your cookies, this allows us not to store "
  920. "this data about you."
  921. msgstr ""
  922. "Тези настройки се съхраняват във вашите бисквитки. Това ни позволява да "
  923. "не съхраняваме тази информация за вас."
  924. #: searx/templates/simple/preferences/footer.html:3
  925. msgid ""
  926. "These cookies serve your sole convenience, we don't use these cookies to "
  927. "track you."
  928. msgstr ""
  929. "Тези бисквитки служат за ваше удобство. Ние не ги използваме, за да ви "
  930. "следим."
  931. #: searx/templates/simple/preferences/footer.html:6
  932. msgid "Save"
  933. msgstr "Запази"
  934. #: searx/templates/simple/preferences/footer.html:9
  935. msgid "Reset defaults"
  936. msgstr "Върни първоначалните"
  937. #: searx/templates/simple/preferences/footer.html:13
  938. msgid "Back"
  939. msgstr "Назад"
  940. #: searx/templates/simple/preferences/hotkeys.html:2
  941. msgid "Hotkeys"
  942. msgstr "Клавишни комбинации"
  943. #: searx/templates/simple/preferences/hotkeys.html:13
  944. msgid "Vim-like"
  945. msgstr "Подобно на Vim"
  946. #: searx/templates/simple/preferences/hotkeys.html:18
  947. msgid ""
  948. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  949. "key on main or result page to get help."
  950. msgstr ""
  951. "Навигирай резултати чрез клавишни комбинации (необходим е JavaScript). За"
  952. " помощ натисни клавиша \"h\" на главната страница или на страницата с "
  953. "резултатите."
  954. #: searx/templates/simple/preferences/image_proxy.html:2
  955. msgid "Image proxy"
  956. msgstr "Прокси на изображения"
  957. #: searx/templates/simple/preferences/image_proxy.html:14
  958. msgid "Proxying image results through SearXNG"
  959. msgstr "Прекарване на получените изображения през прокси на SearXNG"
  960. #: searx/templates/simple/preferences/infinite_scroll.html:2
  961. msgid "Infinite scroll"
  962. msgstr "Списък без страници"
  963. #: searx/templates/simple/preferences/infinite_scroll.html:14
  964. msgid "Automatically load next page when scrolling to bottom of current page"
  965. msgstr "Автоматично зареждане на следващата страница"
  966. #: searx/templates/simple/preferences/language.html:24
  967. msgid "What language do you prefer for search?"
  968. msgstr "Кой език предпочитате за търсене?"
  969. #: searx/templates/simple/preferences/language.html:25
  970. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  971. msgstr ""
  972. "Избери автоматично разпознаване, за да може SearXNG да разпознае езика на"
  973. " който пишеш."
  974. #: searx/templates/simple/preferences/method.html:2
  975. msgid "HTTP Method"
  976. msgstr "HTTP Метод"
  977. #: searx/templates/simple/preferences/method.html:14
  978. msgid "Change how forms are submitted"
  979. msgstr "Промени как формуларите да бъдат изпращани"
  980. #: searx/templates/simple/preferences/query_in_title.html:2
  981. msgid "Query in the page's title"
  982. msgstr "Запитване в заглавието на страницата"
  983. #: searx/templates/simple/preferences/query_in_title.html:14
  984. msgid ""
  985. "When enabled, the result page's title contains your query. Your browser "
  986. "can record this title"
  987. msgstr ""
  988. "Когато включено, резултата от заглавието на страницата съдържа вашето "
  989. "запитване. Браузърът ви може да записва това"
  990. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  991. msgid "Results on new tabs"
  992. msgstr "Резултати на нови раздели"
  993. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  994. msgid "Open result links on new browser tabs"
  995. msgstr "Отвори връзките в нов раздел"
  996. #: searx/templates/simple/preferences/safesearch.html:20
  997. msgid "Filter content"
  998. msgstr "Филтрирай съдържание"
  999. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1000. msgid "Search on category select"
  1001. msgstr "Търси при избор на категория"
  1002. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1003. msgid ""
  1004. "Perform search immediately if a category selected. Disable to select "
  1005. "multiple categories"
  1006. msgstr ""
  1007. #: searx/templates/simple/preferences/theme.html:2
  1008. msgid "Theme"
  1009. msgstr "Тема"
  1010. #: searx/templates/simple/preferences/theme.html:14
  1011. msgid "Change SearXNG layout"
  1012. msgstr "Смяна на оформлението на SearXNG"
  1013. #: searx/templates/simple/preferences/theme.html:19
  1014. msgid "Theme style"
  1015. msgstr "Тематичен стил"
  1016. #: searx/templates/simple/preferences/theme.html:31
  1017. msgid "Choose auto to follow your browser settings"
  1018. msgstr "Изберете автоматични настойки, за да следвате настройките на браузъра си"
  1019. #: searx/templates/simple/preferences/tokens.html:2
  1020. msgid "Engine tokens"
  1021. msgstr "Жетони на търсачката"
  1022. #: searx/templates/simple/preferences/tokens.html:9
  1023. msgid "Access tokens for private engines"
  1024. msgstr "Жетони за достъп до частни търсачки"
  1025. #: searx/templates/simple/preferences/ui_locale.html:2
  1026. msgid "Interface language"
  1027. msgstr "Език на интерфейса"
  1028. #: searx/templates/simple/preferences/ui_locale.html:14
  1029. msgid "Change the language of the layout"
  1030. msgstr "Промени езика на оформлението"
  1031. #: searx/templates/simple/result_templates/code.html:13
  1032. msgid "repo"
  1033. msgstr "репозитори"
  1034. #: searx/templates/simple/result_templates/default.html:6
  1035. #: searx/templates/simple/result_templates/files.html:8
  1036. #: searx/templates/simple/result_templates/files.html:11
  1037. msgid "show media"
  1038. msgstr "покажи медия"
  1039. #: searx/templates/simple/result_templates/default.html:6
  1040. #: searx/templates/simple/result_templates/files.html:8
  1041. msgid "hide media"
  1042. msgstr "скрий медия"
  1043. #: searx/templates/simple/result_templates/default.html:14
  1044. #: searx/templates/simple/result_templates/videos.html:14
  1045. msgid "This site did not provide any description."
  1046. msgstr "Този сайт не предостави никакво описание."
  1047. #: searx/templates/simple/result_templates/files.html:38
  1048. #: searx/templates/simple/result_templates/images.html:22
  1049. #: searx/templates/simple/result_templates/torrent.html:11
  1050. msgid "Filesize"
  1051. msgstr "Размер на файла"
  1052. #: searx/templates/simple/result_templates/files.html:39
  1053. #: searx/templates/simple/result_templates/torrent.html:12
  1054. msgid "Bytes"
  1055. msgstr "Байта"
  1056. #: searx/templates/simple/result_templates/files.html:40
  1057. #: searx/templates/simple/result_templates/torrent.html:13
  1058. msgid "kiB"
  1059. msgstr "килобайт"
  1060. #: searx/templates/simple/result_templates/files.html:41
  1061. #: searx/templates/simple/result_templates/torrent.html:14
  1062. msgid "MiB"
  1063. msgstr "мегабайт"
  1064. #: searx/templates/simple/result_templates/files.html:42
  1065. #: searx/templates/simple/result_templates/torrent.html:15
  1066. msgid "GiB"
  1067. msgstr "гигабайт"
  1068. #: searx/templates/simple/result_templates/files.html:43
  1069. #: searx/templates/simple/result_templates/torrent.html:16
  1070. msgid "TiB"
  1071. msgstr "терабайт"
  1072. #: searx/templates/simple/result_templates/files.html:47
  1073. msgid "Date"
  1074. msgstr "Дата"
  1075. #: searx/templates/simple/result_templates/files.html:49
  1076. #: searx/templates/simple/result_templates/paper.html:24
  1077. msgid "Type"
  1078. msgstr "Тип"
  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 "Етикети"
  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 "Дата на публикуване"
  1128. #: searx/templates/simple/result_templates/paper.html:9
  1129. msgid "Journal"
  1130. msgstr "Дневник"
  1131. #: searx/templates/simple/result_templates/paper.html:22
  1132. msgid "Editor"
  1133. msgstr "Редактор"
  1134. #: searx/templates/simple/result_templates/paper.html:23
  1135. msgid "Publisher"
  1136. msgstr "Издател"
  1137. #: searx/templates/simple/result_templates/paper.html:26
  1138. msgid "DOI"
  1139. msgstr "Дигитален идентификатор на обекти"
  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:20
  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. #~ msgid "Color"
  1191. #~ msgstr "Цвят"
  1192. #~ msgid "Blue (default)"
  1193. #~ msgstr "Синьо (първоначален)"
  1194. #~ msgid "Violet"
  1195. #~ msgstr "Виолетов"
  1196. #~ msgid "Green"
  1197. #~ msgstr "Зелено"
  1198. #~ msgid "Cyan"
  1199. #~ msgstr "зелено-синьо"
  1200. #~ msgid "Orange"
  1201. #~ msgstr "Оранжево"
  1202. #~ msgid "Red"
  1203. #~ msgstr "Червено"
  1204. #~ msgid "Category"
  1205. #~ msgstr "Категория"
  1206. #~ msgid "Block"
  1207. #~ msgstr "Забрани"
  1208. #~ msgid "original context"
  1209. #~ msgstr "оригинален контекст"
  1210. #~ msgid "Plugins"
  1211. #~ msgstr "Добавки"
  1212. #~ msgid "Answerers"
  1213. #~ msgstr "Отговори"
  1214. #~ msgid "Avg. time"
  1215. #~ msgstr "Средно време"
  1216. #~ msgid "show details"
  1217. #~ msgstr "покажи детайлите"
  1218. #~ msgid "hide details"
  1219. #~ msgstr "скрий детайлите"
  1220. #~ msgid "Load more..."
  1221. #~ msgstr "Зареди още..."
  1222. #~ msgid "Loading..."
  1223. #~ msgstr ""
  1224. #~ msgid "Change searx layout"
  1225. #~ msgstr "Промени оформлението на searx"
  1226. #~ msgid "Proxying image results through searx"
  1227. #~ msgstr ""
  1228. #~ msgid "This is the list of searx's instant answering modules."
  1229. #~ msgstr ""
  1230. #~ msgid ""
  1231. #~ "This is the list of cookies and"
  1232. #~ " their values searx is storing on "
  1233. #~ "your computer."
  1234. #~ msgstr ""
  1235. #~ "Това е списък на бисквитки с "
  1236. #~ "техните стойности, които searx съхранява "
  1237. #~ "на вашия компютър."
  1238. #~ msgid "With that list, you can assess searx transparency."
  1239. #~ msgstr ""
  1240. #~ msgid "It look like you are using searx first time."
  1241. #~ msgstr "Изглежда използвате searx за първи път."
  1242. #~ msgid "Please, try again later or find another searx instance."
  1243. #~ msgstr ""
  1244. #~ msgid "Themes"
  1245. #~ msgstr "Облик"
  1246. #~ msgid "Reliablity"
  1247. #~ msgstr ""
  1248. #~ msgid ""
  1249. #~ "When enabled, the result page's title"
  1250. #~ " contains your query. Your browser "
  1251. #~ "can record this title."
  1252. #~ msgstr ""
  1253. #~ msgid "Method"
  1254. #~ msgstr "Метод"
  1255. #~ msgid ""
  1256. #~ "This tab does not show up for "
  1257. #~ "search results but you can search "
  1258. #~ "the engines listed here via bangs."
  1259. #~ msgstr ""
  1260. #~ msgid "Advanced settings"
  1261. #~ msgstr "Допълнителни настройки"
  1262. #~ msgid "Close"
  1263. #~ msgstr "Затвори"
  1264. #~ msgid "Language"
  1265. #~ msgstr "Език"
  1266. #~ msgid "broken"
  1267. #~ msgstr "развален"
  1268. #~ msgid "supported"
  1269. #~ msgstr "поддържан"
  1270. #~ msgid "not supported"
  1271. #~ msgstr "неподдържан"
  1272. #~ msgid "about"
  1273. #~ msgstr "относно"
  1274. #~ msgid "Avg."
  1275. #~ msgstr ""
  1276. #~ msgid "User Interface"
  1277. #~ msgstr "Потребителски интерфейс"
  1278. #~ msgid "Choose style for this theme"
  1279. #~ msgstr "Избери стил за избрания облик"
  1280. #~ msgid "Style"
  1281. #~ msgstr "Стил"
  1282. #~ msgid "Show advanced settings"
  1283. #~ msgstr ""
  1284. #~ msgid "Show advanced settings panel in the home page by default"
  1285. #~ msgstr ""
  1286. #~ msgid "Allow all"
  1287. #~ msgstr ""
  1288. #~ msgid "Disable all"
  1289. #~ msgstr ""
  1290. #~ msgid "Selected language"
  1291. #~ msgstr ""
  1292. #~ msgid "Query"
  1293. #~ msgstr ""
  1294. #~ msgid "save"
  1295. #~ msgstr "запази"
  1296. #~ msgid "back"
  1297. #~ msgstr "назад"
  1298. #~ msgid "Links"
  1299. #~ msgstr "Връзки"
  1300. #~ msgid "RSS subscription"
  1301. #~ msgstr ""
  1302. #~ msgid "Search results"
  1303. #~ msgstr "Резултати от търсенето"
  1304. #~ msgid "next page"
  1305. #~ msgstr "следваща страница"
  1306. #~ msgid "previous page"
  1307. #~ msgstr "предишна страница"
  1308. #~ msgid "Start search"
  1309. #~ msgstr "Започни търсене"
  1310. #~ msgid "Clear search"
  1311. #~ msgstr ""
  1312. #~ msgid "Clear"
  1313. #~ msgstr ""
  1314. #~ msgid "stats"
  1315. #~ msgstr "статистики"
  1316. #~ msgid "Heads up!"
  1317. #~ msgstr "Внимание!"
  1318. #~ msgid "It look like you are using SearXNG first time."
  1319. #~ msgstr "Изглежда, че използвате SearXNG за първи път."
  1320. #~ msgid "Well done!"
  1321. #~ msgstr "Браво!"
  1322. #~ msgid "Settings saved successfully."
  1323. #~ msgstr "Настройките са успешно запазени."
  1324. #~ msgid "Oh snap!"
  1325. #~ msgstr "Да му се не види!"
  1326. #~ msgid "Something went wrong."
  1327. #~ msgstr "Нещо се обърка."
  1328. #~ msgid "Date"
  1329. #~ msgstr "Дата"
  1330. #~ msgid "Type"
  1331. #~ msgstr "Вид"
  1332. #~ msgid "Get image"
  1333. #~ msgstr "Вземи изображение"
  1334. #~ msgid "Center Alignment"
  1335. #~ msgstr ""
  1336. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1337. #~ msgstr ""
  1338. #~ msgid "preferences"
  1339. #~ msgstr "предпочитания"
  1340. #~ msgid "Scores per result"
  1341. #~ msgstr ""
  1342. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1343. #~ msgstr "за спазване на поверителността, хакерска метатърсачка"
  1344. #~ msgid "No abstract is available for this publication."
  1345. #~ msgstr "Няма резюме за тази публикация."
  1346. #~ msgid "Self Informations"
  1347. #~ msgstr ""
  1348. #~ msgid ""
  1349. #~ "Change how forms are submited, <a "
  1350. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1351. #~ " rel=\"external\">learn more about request "
  1352. #~ "methods</a>"
  1353. #~ msgstr ""
  1354. #~ "Променете начина, по който се изпращат"
  1355. #~ " формите, <a "
  1356. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1357. #~ " rel=\"external\">learn more about request "
  1358. #~ "methods</a>"
  1359. #~ msgid ""
  1360. #~ "This plugin checks if the address "
  1361. #~ "of the request is a TOR exit "
  1362. #~ "node, and informs the user if it"
  1363. #~ " is, like check.torproject.org but from "
  1364. #~ "searxng."
  1365. #~ msgstr ""
  1366. #~ "Тази добавка проверява дали адресът на"
  1367. #~ " заявката е изходен възел на TOR "
  1368. #~ "и осведомява потребителя ако е - "
  1369. #~ "като check.torproject.org, но от searxng."
  1370. #~ msgid ""
  1371. #~ "The TOR exit node list "
  1372. #~ "(https://check.torproject.org/exit-addresses) is "
  1373. #~ "unreachable."
  1374. #~ msgstr ""
  1375. #~ "Листа с изходните възли на TOR "
  1376. #~ "(https://check.torproject.org/exit-addresses) е "
  1377. #~ "недостижим."
  1378. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1379. #~ msgstr "Използвате TOR. Вашият IP адрес изглежда е: {ip_address}."
  1380. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1381. #~ msgstr "Не използвате TOR. Вашият IP адрес изглежда е: {ip_address}."
  1382. #~ msgid ""
  1383. #~ "The could not download the list of"
  1384. #~ " Tor exit-nodes from "
  1385. #~ "https://check.torproject.org/exit-addresses."
  1386. #~ msgstr ""
  1387. #~ msgid ""
  1388. #~ "You are using Tor. It looks like"
  1389. #~ " you have this external IP address:"
  1390. #~ " {ip_address}."
  1391. #~ msgstr ""
  1392. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1393. #~ msgstr ""
  1394. #~ msgid "Autodetect search language"
  1395. #~ msgstr ""
  1396. #~ msgid "Automatically detect the query search language and switch to it."
  1397. #~ msgstr ""
  1398. #~ msgid "others"
  1399. #~ msgstr "други"
  1400. #~ msgid ""
  1401. #~ "This tab does not show up for "
  1402. #~ "search results, but you can search "
  1403. #~ "the engines listed here via bangs."
  1404. #~ msgstr ""
  1405. #~ "Този раздел не се показва за "
  1406. #~ "резултатите от търсенето, но можете да"
  1407. #~ " прегледате търсачките, изброени тук."
  1408. #~ msgid "Shortcut"
  1409. #~ msgstr "Пряк път"
  1410. #~ msgid "!bang"
  1411. #~ msgstr ""
  1412. #~ msgid ""
  1413. #~ "This tab dues not exists in the"
  1414. #~ " user interface, but you can search"
  1415. #~ " in these engines by its !bangs."
  1416. #~ msgstr ""
  1417. #~ msgid "Engines cannot retrieve results."
  1418. #~ msgstr "Търсачките не могат да извлекат резултати."
  1419. #~ msgid "Please, try again later or find another SearXNG instance."
  1420. #~ msgstr "Моля, опитайте отново по-късно или намерете друг сървър SearXNG."
  1421. #~ msgid ""
  1422. #~ "Redirect to open-access versions of "
  1423. #~ "publications when available (plugin required)"
  1424. #~ msgstr ""
  1425. #~ "Пренасочване към версий на публикации с"
  1426. #~ " отворен достъп, когато са достъпни "
  1427. #~ "(Изисква допълнение)"
  1428. #~ msgid "Bang"
  1429. #~ msgstr ""
  1430. #~ msgid ""
  1431. #~ "Change how forms are submitted, <a "
  1432. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1433. #~ " rel=\"external\">learn more about request "
  1434. #~ "methods</a>"
  1435. #~ msgstr ""
  1436. #~ "Промяна на начина на подаване на "
  1437. #~ "формуляри, <a "
  1438. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1439. #~ " rel=\"external\">научете повече за методите "
  1440. #~ "на заявка</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. #~ "Навигирайте резултатите от търсенето с "
  1466. #~ "Vim-подобни горещи клавиши (изисква се "
  1467. #~ "JavaScript). Натиснете клавиша \"h\" на "
  1468. #~ "главната или резултатната страница, за "
  1469. #~ "да получите помощ."
  1470. #~ msgid ""
  1471. #~ "we didn't find any results. Please "
  1472. #~ "use another query or search in "
  1473. #~ "more categories."
  1474. #~ msgstr ""
  1475. #~ "не намерихме резултати. Моля пробвайте "
  1476. #~ "други ключови думи или търсете в "
  1477. #~ "повече категории."