messages.po 60 KB

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