messages.po 61 KB

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