messages.po 63 KB

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