messages.po 57 KB

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