messages.po 58 KB

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