messages.po 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109
  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. # return42 <return42@noreply.codeberg.org>, 2025.
  31. msgid ""
  32. msgstr ""
  33. "Project-Id-Version: searx\n"
  34. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  35. "POT-Creation-Date: 2025-03-29 09:21+0000\n"
  36. "PO-Revision-Date: 2025-03-31 18:08+0000\n"
  37. "Last-Translator: return42 <return42@noreply.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.10.2\n"
  48. "Generated-By: Babel 2.17.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:291
  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. #, python-brace-format
  369. msgid "{minutes} minute(s) ago"
  370. msgstr "{minutes} минут(-у) назад"
  371. #: searx/webutils.py:315
  372. #, python-brace-format
  373. msgid "{hours} hour(s), {minutes} minute(s) ago"
  374. msgstr "{hours} час(ов), {minutes} минут(а) назад"
  375. #: searx/answerers/random.py:69
  376. msgid "Generate different random values"
  377. msgstr "Генерирует разные случайные значения"
  378. #: searx/answerers/statistics.py:36
  379. #, python-brace-format
  380. msgid "Compute {func} of the arguments"
  381. msgstr "Вычислить {func} от аргументов"
  382. #: searx/engines/openstreetmap.py:158
  383. msgid "Show route in map .."
  384. msgstr "Показать маршрут в карте .."
  385. #: searx/engines/pdbe.py:96
  386. #, python-brace-format
  387. msgid "{title} (OBSOLETE)"
  388. msgstr "{title} (УСТАРЕЛО)"
  389. #: searx/engines/pdbe.py:103
  390. msgid "This entry has been superseded by"
  391. msgstr "Эта запись была заменена на"
  392. #: searx/engines/qwant.py:293
  393. msgid "Channel"
  394. msgstr "Канал"
  395. #: searx/engines/radio_browser.py:105
  396. msgid "bitrate"
  397. msgstr "битрейт"
  398. #: searx/engines/radio_browser.py:106
  399. msgid "votes"
  400. msgstr "голоса"
  401. #: searx/engines/radio_browser.py:107
  402. msgid "clicks"
  403. msgstr "нажатия"
  404. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  405. #: searx/engines/zlibrary.py:137
  406. msgid "Language"
  407. msgstr "Язык"
  408. #: searx/engines/semantic_scholar.py:79
  409. #, python-brace-format
  410. msgid ""
  411. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  412. "{lastCitationVelocityYear}"
  413. msgstr ""
  414. "{numCitations} цитирований с {firstCitationVelocityYear} года по "
  415. "{lastCitationVelocityYear}"
  416. #: searx/engines/tineye.py:48
  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:54
  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:59
  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/ahmia_filter.py:32
  442. msgid "Ahmia blacklist"
  443. msgstr "Чёрный список Ahmia"
  444. #: searx/plugins/ahmia_filter.py:33
  445. msgid "Filter out onion results that appear in Ahmia's blacklist."
  446. msgstr "Отфильтровать найденные onion-ссылки, входящие в чёрный список Ahmia."
  447. #: searx/plugins/calculator.py:38
  448. msgid "Basic Calculator"
  449. msgstr "Простой калькулятор"
  450. #: searx/plugins/calculator.py:39
  451. msgid "Calculate mathematical expressions via the search bar"
  452. msgstr "Считать математические выражения в строке поиска"
  453. #: searx/plugins/hash_plugin.py:34
  454. msgid "Hash plugin"
  455. msgstr "Хеш плагин"
  456. #: searx/plugins/hash_plugin.py:35
  457. msgid "Converts strings to different hash digests."
  458. msgstr "Рассчитывает контрольные суммы от строки."
  459. #: searx/plugins/hash_plugin.py:62
  460. msgid "hash digest"
  461. msgstr "контрольная сумма"
  462. #: searx/plugins/hostnames.py:123
  463. msgid "Hostnames plugin"
  464. msgstr "Плагин имён хостов"
  465. #: searx/plugins/hostnames.py:124
  466. msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
  467. msgstr ""
  468. "Переписывать имена хостов, удалять и приоритизировать результаты в "
  469. "зависимости от имён хостов"
  470. #: searx/plugins/oa_doi_rewrite.py:55
  471. msgid "Open Access DOI rewrite"
  472. msgstr "Искать Open Access DOI"
  473. #: searx/plugins/oa_doi_rewrite.py:56
  474. msgid ""
  475. "Avoid paywalls by redirecting to open-access versions of publications "
  476. "when available"
  477. msgstr ""
  478. "Пробовать избегать платного доступа путём перенаправления на открытые "
  479. "версии публикаций"
  480. #: searx/plugins/self_info.py:37
  481. msgid "Self Information"
  482. msgstr "Информация о себе"
  483. #: searx/plugins/self_info.py:39
  484. msgid ""
  485. "Displays your IP if the query is \"ip\" and your user agent if the query "
  486. "is \"user-agent\"."
  487. msgstr ""
  488. "Отображает ваш IP, если запрос \"ip\", и ваш user agent, если запрос "
  489. "\"user-agent\"."
  490. #: searx/plugins/self_info.py:52
  491. msgid "Your IP is: "
  492. msgstr "Ваш IP-адрес: "
  493. #: searx/plugins/self_info.py:55
  494. msgid "Your user-agent is: "
  495. msgstr "Информация о вашем браузере: "
  496. #: searx/plugins/tor_check.py:42
  497. msgid "Tor check plugin"
  498. msgstr "Плагин проверки Tor'a"
  499. #: searx/plugins/tor_check.py:44
  500. msgid ""
  501. "This plugin checks if the address of the request is a Tor exit-node, and "
  502. "informs the user if it is; like check.torproject.org, but from SearXNG."
  503. msgstr ""
  504. "Этот плагин проверяет, принадлежит ли адрес запроса выходному узлу Tor и "
  505. "информирует пользователя если это так; как check.torproject.org, но от "
  506. "SearXNG."
  507. #: searx/plugins/tor_check.py:65
  508. msgid "Could not download the list of Tor exit-nodes from"
  509. msgstr "Не удалось загрузить список выходных узлов Tor из"
  510. #: searx/plugins/tor_check.py:72
  511. msgid "You are using Tor and it looks like you have the external IP address"
  512. msgstr "Вы используете Tor и кажется что у вас есть внешний айпи адрес"
  513. #: searx/plugins/tor_check.py:76
  514. msgid "You are not using Tor and you have the external IP address"
  515. msgstr "Вы не используете Tor и у вас внешний IP-адрес"
  516. #: searx/plugins/tracker_url_remover.py:37
  517. msgid "Tracker URL remover"
  518. msgstr "Убрать отслеживание URL"
  519. #: searx/plugins/tracker_url_remover.py:38
  520. msgid "Remove trackers arguments from the returned URL"
  521. msgstr "Удаление параметров для отслеживания пользователя из URL-адреса"
  522. #: searx/plugins/unit_converter.py:49
  523. msgid "Unit converter plugin"
  524. msgstr "Плагин - конвертер единиц измерения"
  525. #: searx/plugins/unit_converter.py:50
  526. msgid "Convert between units"
  527. msgstr "Преобразовать единицы измерения"
  528. #: searx/templates/simple/404.html:4
  529. msgid "Page not found"
  530. msgstr "Страница не найдена"
  531. #: searx/templates/simple/404.html:6
  532. #, python-format
  533. msgid "Go to %(search_page)s."
  534. msgstr "Перейти к %(search_page)s."
  535. #: searx/templates/simple/404.html:6
  536. msgid "search page"
  537. msgstr "страница поиска"
  538. #: searx/templates/simple/base.html:53
  539. msgid "Donate"
  540. msgstr "Пожертвовать"
  541. #: searx/templates/simple/base.html:57
  542. #: searx/templates/simple/preferences.html:156
  543. msgid "Preferences"
  544. msgstr "Настройки"
  545. #: searx/templates/simple/base.html:67
  546. msgid "Powered by"
  547. msgstr "Работает на"
  548. #: searx/templates/simple/base.html:67
  549. msgid "a privacy-respecting, open metasearch engine"
  550. msgstr "открытая метапоисковая система, соблюдающая конфиденциальность"
  551. #: searx/templates/simple/base.html:68
  552. #: searx/templates/simple/result_templates/packages.html:59
  553. msgid "Source code"
  554. msgstr "Исходный код"
  555. #: searx/templates/simple/base.html:69
  556. msgid "Issue tracker"
  557. msgstr "Сообщить о проблеме"
  558. #: searx/templates/simple/base.html:70 searx/templates/simple/stats.html:18
  559. msgid "Engine stats"
  560. msgstr "Статистика по поисковым системам"
  561. #: searx/templates/simple/base.html:72
  562. msgid "Public instances"
  563. msgstr "Публичные зеркала"
  564. #: searx/templates/simple/base.html:75
  565. msgid "Privacy policy"
  566. msgstr "Политика конфиденциальности"
  567. #: searx/templates/simple/base.html:78
  568. msgid "Contact instance maintainer"
  569. msgstr "Сопровождающий текущего зеркала"
  570. #: searx/templates/simple/categories.html:30
  571. msgid "Click on the magnifier to perform search"
  572. msgstr "Нажмите на лупу, чтобы выполнить поиск"
  573. #: searx/templates/simple/macros.html:40
  574. msgid "Length"
  575. msgstr "Длительность"
  576. #: searx/templates/simple/macros.html:41
  577. msgid "Views"
  578. msgstr "Просмотры"
  579. #: searx/templates/simple/macros.html:42
  580. #: searx/templates/simple/result_templates/files.html:34
  581. #: searx/templates/simple/result_templates/images.html:19
  582. #: searx/templates/simple/result_templates/paper.html:6
  583. msgid "Author"
  584. msgstr "Автор"
  585. #: searx/templates/simple/macros.html:50
  586. msgid "cached"
  587. msgstr "веб-архив"
  588. #: searx/templates/simple/macros.html:50
  589. msgid "proxied"
  590. msgstr "через прокси"
  591. #: searx/templates/simple/new_issue.html:64
  592. msgid "Start submitting a new issue on GitHub"
  593. msgstr "Создайте задачу на GitHub"
  594. #: searx/templates/simple/new_issue.html:66
  595. msgid "Please check for existing bugs about this engine on GitHub"
  596. msgstr "Пожалуйста проверьте ныне существующие ошибки этого движка на GitHub"
  597. #: searx/templates/simple/new_issue.html:69
  598. msgid "I confirm there is no existing bug about the issue I encounter"
  599. msgstr ""
  600. "Я подтверждаю, что не существует ошибки, связанной со встретившейся мне "
  601. "проблемой"
  602. #: searx/templates/simple/new_issue.html:71
  603. msgid "If this is a public instance, please specify the URL in the bug report"
  604. msgstr "Если это публичное зеркало, пожалуйста, укажите ссылку в баг-репорте"
  605. #: searx/templates/simple/new_issue.html:72
  606. msgid "Submit a new issue on Github including the above information"
  607. msgstr ""
  608. "Отправить новое сообщение о проблеме на Github, включая вышеуказанную "
  609. "информацию"
  610. #: searx/templates/simple/preferences.html:65
  611. msgid "No HTTPS"
  612. msgstr "Без HTTPS"
  613. #: searx/templates/simple/elements/engines_msg.html:14
  614. #: searx/templates/simple/preferences.html:69
  615. #: searx/templates/simple/preferences.html:70
  616. msgid "View error logs and submit a bug report"
  617. msgstr "Просмотр журнала ошибок и отправка отчета об ошибках"
  618. #: searx/templates/simple/preferences.html:74
  619. msgid "!bang for this engine"
  620. msgstr "!bang для этого движка"
  621. #: searx/templates/simple/preferences.html:80
  622. msgid "!bang for its categories"
  623. msgstr "!bang для его категорий"
  624. #: searx/templates/simple/preferences.html:102
  625. #: searx/templates/simple/stats.html:64
  626. msgid "Median"
  627. msgstr "Медиана"
  628. #: searx/templates/simple/preferences.html:103
  629. #: searx/templates/simple/stats.html:70
  630. msgid "P80"
  631. msgstr "P80"
  632. #: searx/templates/simple/preferences.html:104
  633. #: searx/templates/simple/stats.html:76
  634. msgid "P95"
  635. msgstr "P95"
  636. #: searx/templates/simple/preferences.html:136
  637. msgid "Failed checker test(s): "
  638. msgstr "Проваленные проверки: "
  639. #: searx/templates/simple/preferences.html:138
  640. msgid "Errors:"
  641. msgstr "Ошибки:"
  642. #: searx/templates/simple/preferences.html:163
  643. msgid "General"
  644. msgstr "Общие"
  645. #: searx/templates/simple/preferences.html:166
  646. msgid "Default categories"
  647. msgstr "Категории по умолчанию"
  648. #: searx/templates/simple/preferences.html:194
  649. msgid "User interface"
  650. msgstr "Внешний вид"
  651. #: searx/templates/simple/preferences.html:217
  652. msgid "Privacy"
  653. msgstr "Конфиденциальность"
  654. #: searx/templates/simple/preferences.html:232
  655. msgid "Engines"
  656. msgstr "Поисковые системы"
  657. #: searx/templates/simple/preferences.html:234
  658. msgid "Currently used search engines"
  659. msgstr "Используемые поисковые системы"
  660. #: searx/templates/simple/preferences.html:243
  661. msgid "Special Queries"
  662. msgstr "Особые запросы"
  663. #: searx/templates/simple/preferences.html:251
  664. msgid "Cookies"
  665. msgstr "Cookies"
  666. #: searx/templates/simple/results.html:30
  667. msgid "Number of results"
  668. msgstr "Количество результатов"
  669. #: searx/templates/simple/results.html:36
  670. msgid "Info"
  671. msgstr "Информация"
  672. #: searx/templates/simple/results.html:77
  673. msgid "Back to top"
  674. msgstr "Наверх"
  675. #: searx/templates/simple/results.html:95
  676. msgid "Previous page"
  677. msgstr "Предыдущая страница"
  678. #: searx/templates/simple/results.html:113
  679. msgid "Next page"
  680. msgstr "Следующая страница"
  681. #: searx/templates/simple/search.html:3
  682. msgid "Display the front page"
  683. msgstr "Показать главную страницу"
  684. #: searx/templates/simple/search.html:9
  685. #: searx/templates/simple/simple_search.html:5
  686. msgid "Search for..."
  687. msgstr "Искать..."
  688. #: searx/templates/simple/search.html:10
  689. #: searx/templates/simple/simple_search.html:6
  690. msgid "clear"
  691. msgstr "очистить"
  692. #: searx/templates/simple/search.html:11
  693. #: searx/templates/simple/simple_search.html:7
  694. msgid "search"
  695. msgstr "поиск"
  696. #: searx/templates/simple/stats.html:21
  697. msgid "There is currently no data available. "
  698. msgstr "На данный момент данные недоступны. "
  699. #: searx/templates/simple/preferences/engines.html:24
  700. #: searx/templates/simple/stats.html:25
  701. msgid "Engine name"
  702. msgstr "Поисковая система"
  703. #: searx/templates/simple/stats.html:26
  704. msgid "Scores"
  705. msgstr "Попаданий"
  706. #: searx/templates/simple/stats.html:27
  707. msgid "Result count"
  708. msgstr "Число результатов"
  709. #: searx/templates/simple/elements/engines_msg.html:7
  710. #: searx/templates/simple/preferences/engines.html:31
  711. #: searx/templates/simple/stats.html:28
  712. msgid "Response time"
  713. msgstr "Время отклика"
  714. #: searx/templates/simple/preferences/engines.html:35
  715. #: searx/templates/simple/stats.html:29
  716. msgid "Reliability"
  717. msgstr "Надёжность"
  718. #: searx/templates/simple/stats.html:59
  719. msgid "Total"
  720. msgstr "Всего"
  721. #: searx/templates/simple/stats.html:60
  722. msgid "HTTP"
  723. msgstr "HTTP"
  724. #: searx/templates/simple/stats.html:61
  725. msgid "Processing"
  726. msgstr "Обработка"
  727. #: searx/templates/simple/stats.html:99
  728. msgid "Warnings"
  729. msgstr "Предупреждения"
  730. #: searx/templates/simple/stats.html:99
  731. msgid "Errors and exceptions"
  732. msgstr "Ошибки и исключения"
  733. #: searx/templates/simple/stats.html:105
  734. msgid "Exception"
  735. msgstr "Исключение"
  736. #: searx/templates/simple/stats.html:107
  737. msgid "Message"
  738. msgstr "Сообщение"
  739. #: searx/templates/simple/stats.html:109
  740. msgid "Percentage"
  741. msgstr "Процент"
  742. #: searx/templates/simple/stats.html:111
  743. msgid "Parameter"
  744. msgstr "Параметр"
  745. #: searx/templates/simple/result_templates/files.html:36
  746. #: searx/templates/simple/stats.html:119
  747. msgid "Filename"
  748. msgstr "Имя файла"
  749. #: searx/templates/simple/stats.html:120
  750. msgid "Function"
  751. msgstr "Функция"
  752. #: searx/templates/simple/stats.html:121
  753. msgid "Code"
  754. msgstr "Код"
  755. #: searx/templates/simple/stats.html:128
  756. msgid "Checker"
  757. msgstr "Проверщик"
  758. #: searx/templates/simple/stats.html:131
  759. msgid "Failed test"
  760. msgstr "Неудачный тест"
  761. #: searx/templates/simple/stats.html:132
  762. msgid "Comment(s)"
  763. msgstr "Комментарии"
  764. #: searx/templates/simple/answer/translations.html:12
  765. #: searx/templates/simple/preferences/answerers.html:8
  766. msgid "Examples"
  767. msgstr "Пример"
  768. #: searx/templates/simple/answer/translations.html:21
  769. msgid "Definitions"
  770. msgstr "Определения"
  771. #: searx/templates/simple/answer/translations.html:30
  772. msgid "Synonyms"
  773. msgstr "Синонимы"
  774. #: searx/templates/simple/elements/answers.html:2
  775. msgid "Answers"
  776. msgstr "Ответы"
  777. #: searx/templates/simple/elements/apis.html:3
  778. msgid "Download results"
  779. msgstr "Скачать результаты"
  780. #: searx/templates/simple/elements/corrections.html:2
  781. msgid "Try searching for:"
  782. msgstr "Попробуйте поискать:"
  783. #: searx/templates/simple/elements/engines_msg.html:4
  784. msgid "Messages from the search engines"
  785. msgstr "Сообщения от поисковых систем"
  786. #: searx/templates/simple/elements/engines_msg.html:7
  787. msgid "seconds"
  788. msgstr "сек."
  789. #: searx/templates/simple/elements/search_url.html:3
  790. msgid "Search URL"
  791. msgstr "Ссылка поиска"
  792. #: searx/templates/simple/elements/search_url.html:4
  793. #: searx/templates/simple/preferences/cookies.html:54
  794. msgid "Copied"
  795. msgstr "Скопировано"
  796. #: searx/templates/simple/elements/search_url.html:4
  797. #: searx/templates/simple/preferences/cookies.html:54
  798. msgid "Copy"
  799. msgstr "Копировать"
  800. #: searx/templates/simple/elements/suggestions.html:3
  801. msgid "Suggestions"
  802. msgstr "Предложения"
  803. #: searx/templates/simple/filters/languages.html:1
  804. #: searx/templates/simple/preferences/language.html:2
  805. msgid "Search language"
  806. msgstr "Язык поиска"
  807. #: searx/templates/simple/filters/languages.html:4
  808. #: searx/templates/simple/preferences/language.html:7
  809. msgid "Default language"
  810. msgstr "Язык по умолчанию"
  811. #: searx/templates/simple/filters/languages.html:8
  812. #: searx/templates/simple/preferences/language.html:11
  813. msgid "Auto-detect"
  814. msgstr "Авто-определение"
  815. #: searx/templates/simple/filters/safesearch.html:1
  816. #: searx/templates/simple/filters/safesearch.html:2
  817. #: searx/templates/simple/filters/safesearch.html:3
  818. #: searx/templates/simple/filters/safesearch.html:4
  819. #: searx/templates/simple/preferences/engines.html:27
  820. #: searx/templates/simple/preferences/safesearch.html:2
  821. msgid "SafeSearch"
  822. msgstr "Безопасный поиск"
  823. #: searx/templates/simple/filters/safesearch.html:2
  824. #: searx/templates/simple/preferences/safesearch.html:7
  825. msgid "Strict"
  826. msgstr "Строгий"
  827. #: searx/templates/simple/filters/safesearch.html:3
  828. #: searx/templates/simple/preferences/safesearch.html:11
  829. msgid "Moderate"
  830. msgstr "Умеренный"
  831. #: searx/templates/simple/filters/safesearch.html:4
  832. #: searx/templates/simple/preferences/safesearch.html:15
  833. msgid "None"
  834. msgstr "Отключен"
  835. #: searx/templates/simple/filters/time_range.html:1
  836. #: searx/templates/simple/preferences/engines.html:28
  837. msgid "Time range"
  838. msgstr "Временной диапазон"
  839. #: searx/templates/simple/filters/time_range.html:3
  840. msgid "Anytime"
  841. msgstr "Когда угодно"
  842. #: searx/templates/simple/filters/time_range.html:6
  843. msgid "Last day"
  844. msgstr "Последние сутки"
  845. #: searx/templates/simple/filters/time_range.html:9
  846. msgid "Last week"
  847. msgstr "Последняя неделя"
  848. #: searx/templates/simple/filters/time_range.html:12
  849. msgid "Last month"
  850. msgstr "Последний месяц"
  851. #: searx/templates/simple/filters/time_range.html:15
  852. msgid "Last year"
  853. msgstr "Последний год"
  854. #: searx/templates/simple/messages/no_cookies.html:3
  855. msgid "Information!"
  856. msgstr "Информация!"
  857. #: searx/templates/simple/messages/no_cookies.html:4
  858. msgid "currently, there are no cookies defined."
  859. msgstr "в данный момент cookie-файлы не определены."
  860. #: searx/templates/simple/messages/no_results.html:6
  861. msgid "Sorry!"
  862. msgstr "Извините!"
  863. #: searx/templates/simple/messages/no_results.html:12
  864. msgid "No results were found. You can try to:"
  865. msgstr "Не было найдено никаких результатов. Вы можете попробовать:"
  866. #: searx/templates/simple/messages/no_results.html:14
  867. msgid "There are no more results. You can try to:"
  868. msgstr "Больше никаких результатов нет. Вы можете попробовать:"
  869. #: searx/templates/simple/messages/no_results.html:19
  870. msgid "Refresh the page."
  871. msgstr "Обновите страницу."
  872. #: searx/templates/simple/messages/no_results.html:20
  873. msgid "Search for another query or select another category (above)."
  874. msgstr "Выполните поиск с другим запросом или выберите другую категорию (выше)."
  875. #: searx/templates/simple/messages/no_results.html:21
  876. msgid "Change the search engine used in the preferences:"
  877. msgstr "Измените поисковую систему, указанную в настройках:"
  878. #: searx/templates/simple/messages/no_results.html:22
  879. msgid "Switch to another instance:"
  880. msgstr "Поменяйте инстанцию на другую:"
  881. #: searx/templates/simple/messages/no_results.html:24
  882. msgid "Search for another query or select another category."
  883. msgstr "Найдите другой запрос или выберите другую категорию."
  884. #: searx/templates/simple/messages/no_results.html:25
  885. msgid "Go back to the previous page using the previous page button."
  886. msgstr "Вернитесь на предыдущую страницу с помощью кнопки предыдущей страницы."
  887. #: searx/templates/simple/preferences/answerers.html:4
  888. #: searx/templates/simple/preferences/engines.html:23
  889. msgid "Allow"
  890. msgstr "Использовать"
  891. #: searx/templates/simple/preferences/answerers.html:5
  892. msgid "Keywords (first word in query)"
  893. msgstr "Ключевые слова (первое слово в запросе)"
  894. #: searx/templates/simple/preferences/answerers.html:6
  895. #: searx/templates/simple/result_templates/packages.html:7
  896. msgid "Name"
  897. msgstr "Название"
  898. #: searx/templates/simple/preferences/answerers.html:7
  899. msgid "Description"
  900. msgstr "Описание"
  901. #: searx/templates/simple/preferences/answerers.html:13
  902. msgid "This is the list of SearXNG's instant answering modules."
  903. msgstr "Модули SearXNG с мгновенным ответом."
  904. #: searx/templates/simple/preferences/answerers.html:29
  905. msgid "This is the list of plugins."
  906. msgstr "Список плагинов."
  907. #: searx/templates/simple/preferences/autocomplete.html:2
  908. msgid "Autocomplete"
  909. msgstr "Автодополнение"
  910. #: searx/templates/simple/preferences/autocomplete.html:15
  911. msgid "Find stuff as you type"
  912. msgstr "Показывать предложения по мере ввода запроса"
  913. #: searx/templates/simple/preferences/center_alignment.html:2
  914. msgid "Center Alignment"
  915. msgstr "Выравнивание по центру"
  916. #: searx/templates/simple/preferences/center_alignment.html:14
  917. msgid "Displays results in the center of the page (Oscar layout)."
  918. msgstr "Отображать результаты по центру страницы (макет Oscar)."
  919. #: searx/templates/simple/preferences/cookies.html:2
  920. msgid ""
  921. "This is the list of cookies and their values SearXNG is storing on your "
  922. "computer."
  923. msgstr "Список cookies и их значений, которые SearXNG хранит в вашем браузере."
  924. #: searx/templates/simple/preferences/cookies.html:3
  925. msgid "With that list, you can assess SearXNG transparency."
  926. msgstr "SearXNG ничего от вас не скрывает."
  927. #: searx/templates/simple/preferences/cookies.html:9
  928. msgid "Cookie name"
  929. msgstr "Cookie"
  930. #: searx/templates/simple/preferences/cookies.html:10
  931. msgid "Value"
  932. msgstr "Значение"
  933. #: searx/templates/simple/preferences/cookies.html:23
  934. msgid "Search URL of the currently saved preferences"
  935. msgstr "URL с сохраненными настройками"
  936. #: searx/templates/simple/preferences/cookies.html:32
  937. msgid ""
  938. "Note: specifying custom settings in the search URL can reduce privacy by "
  939. "leaking data to the clicked result sites."
  940. msgstr ""
  941. "Внимание: использование URL с параметрами может привести к утечке данных "
  942. "на сайты, открытые из результатов поиска."
  943. #: searx/templates/simple/preferences/cookies.html:35
  944. msgid "URL to restore your preferences in another browser"
  945. msgstr "URL-адрес для восстановления ваших настроек в другом браузере"
  946. #: searx/templates/simple/preferences/cookies.html:43
  947. msgid ""
  948. "A URL containing your preferences. This URL can be used to restore your "
  949. "settings on a different device."
  950. msgstr ""
  951. "URL-адрес, хранящий ваши настройки. Этот URL-адрес можно использовать для "
  952. "восстановления настроек с другого устройства."
  953. #: searx/templates/simple/preferences/cookies.html:46
  954. msgid "Copy preferences hash"
  955. msgstr "Скопировать хэш настроек"
  956. #: searx/templates/simple/preferences/cookies.html:57
  957. msgid "Insert copied preferences hash (without URL) to restore"
  958. msgstr "Вставить скопированный хэш настроек (без URL-адреса) для их восстановления"
  959. #: searx/templates/simple/preferences/cookies.html:59
  960. msgid "Preferences hash"
  961. msgstr "Хэш настроек"
  962. #: searx/templates/simple/preferences/doi_resolver.html:1
  963. msgid "Digital Object Identifier (DOI)"
  964. msgstr "Цифровой идентификатор объекта (DOI)"
  965. #: searx/templates/simple/preferences/doi_resolver.html:6
  966. msgid "Open Access DOI resolver"
  967. msgstr "Источник Open Access DOI"
  968. #: searx/templates/simple/preferences/doi_resolver.html:18
  969. msgid "Select service used by DOI rewrite"
  970. msgstr ""
  971. "Выберите службу, используемую переписыванием «Цифрового идентификатора "
  972. "объекта»"
  973. #: searx/templates/simple/preferences/engines.html:9
  974. msgid ""
  975. "This tab does not exists in the user interface, but you can search in "
  976. "these engines by its !bangs."
  977. msgstr ""
  978. "Эта вкладка не существует в пользовательском интерфейсе, но вы можете "
  979. "искать в этих системах по ее !bangs."
  980. #: searx/templates/simple/preferences/engines.html:15
  981. msgid "Enable all"
  982. msgstr "Включить всё"
  983. #: searx/templates/simple/preferences/engines.html:16
  984. msgid "Disable all"
  985. msgstr "Отключить всё"
  986. #: searx/templates/simple/preferences/engines.html:25
  987. msgid "!bang"
  988. msgstr "!bang"
  989. #: searx/templates/simple/preferences/engines.html:26
  990. msgid "Supports selected language"
  991. msgstr "Поддерживает выбранный язык"
  992. #: searx/templates/simple/preferences/engines.html:29
  993. msgid "Weight"
  994. msgstr "Вес"
  995. #: searx/templates/simple/preferences/engines.html:33
  996. msgid "Max time"
  997. msgstr "Максимальное время"
  998. #: searx/templates/simple/preferences/favicon.html:2
  999. msgid "Favicon Resolver"
  1000. msgstr "Получение значков сайтов"
  1001. #: searx/templates/simple/preferences/favicon.html:15
  1002. msgid "Display favicons near search results"
  1003. msgstr "Показывать значки сайтов около результатов поиска"
  1004. #: searx/templates/simple/preferences/footer.html:2
  1005. msgid ""
  1006. "These settings are stored in your cookies, this allows us not to store "
  1007. "this data about you."
  1008. msgstr ""
  1009. "Все настройки сохраняются в cookie вашего браузера. Это позволяет нам не "
  1010. "хранить о вас никаких данных на серверах."
  1011. #: searx/templates/simple/preferences/footer.html:3
  1012. msgid ""
  1013. "These cookies serve your sole convenience, we don't use these cookies to "
  1014. "track you."
  1015. msgstr ""
  1016. "Cookie нужны исключительно для вашего удобства, мы не используем cookie "
  1017. "для слежки."
  1018. #: searx/templates/simple/preferences/footer.html:6
  1019. msgid "Save"
  1020. msgstr "Сохранить"
  1021. #: searx/templates/simple/preferences/footer.html:9
  1022. msgid "Reset defaults"
  1023. msgstr "Восстановить настройки по умолчанию"
  1024. #: searx/templates/simple/preferences/footer.html:13
  1025. msgid "Back"
  1026. msgstr "Назад"
  1027. #: searx/templates/simple/preferences/hotkeys.html:2
  1028. msgid "Hotkeys"
  1029. msgstr "Горячие клавиши"
  1030. #: searx/templates/simple/preferences/hotkeys.html:13
  1031. msgid "Vim-like"
  1032. msgstr "Наподобие Vim"
  1033. #: searx/templates/simple/preferences/hotkeys.html:18
  1034. msgid ""
  1035. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  1036. "key on main or result page to get help."
  1037. msgstr ""
  1038. "Перемещаться по результатам поиска при помощи горячих клавиш (необходим "
  1039. "JavaScript). Нажмите клавишу \"h\" на главной странице или странице "
  1040. "результатов поиска для получения помощи."
  1041. #: searx/templates/simple/preferences/image_proxy.html:2
  1042. msgid "Image proxy"
  1043. msgstr "Прокси для картинок"
  1044. #: searx/templates/simple/preferences/image_proxy.html:14
  1045. msgid "Proxying image results through SearXNG"
  1046. msgstr "Проксировать изображения в результатах методами SearXNG"
  1047. #: searx/templates/simple/preferences/infinite_scroll.html:2
  1048. msgid "Infinite scroll"
  1049. msgstr "Бесконечная прокрутка"
  1050. #: searx/templates/simple/preferences/infinite_scroll.html:14
  1051. msgid "Automatically load next page when scrolling to bottom of current page"
  1052. msgstr "Автоматически загружать следующую страницу при прокрутке до конца страницы"
  1053. #: searx/templates/simple/preferences/language.html:24
  1054. msgid "What language do you prefer for search?"
  1055. msgstr "Какой язык предпочтителен для поиска?"
  1056. #: searx/templates/simple/preferences/language.html:25
  1057. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1058. msgstr ""
  1059. "Выберите Авто-определение, чтобы SearXNG сам определял язык вашего "
  1060. "запроса."
  1061. #: searx/templates/simple/preferences/method.html:2
  1062. msgid "HTTP Method"
  1063. msgstr "Метод запросов"
  1064. #: searx/templates/simple/preferences/method.html:14
  1065. msgid "Change how forms are submitted"
  1066. msgstr "Изменить содержание форм"
  1067. #: searx/templates/simple/preferences/query_in_title.html:2
  1068. msgid "Query in the page's title"
  1069. msgstr "Поисковый запрос в заголовке страницы"
  1070. #: searx/templates/simple/preferences/query_in_title.html:14
  1071. msgid ""
  1072. "When enabled, the result page's title contains your query. Your browser "
  1073. "can record this title"
  1074. msgstr ""
  1075. "Добавить поисковый запрос в заголовок страницы с результатами. Браузер "
  1076. "может сохранять этот заголовок"
  1077. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1078. msgid "Results on new tabs"
  1079. msgstr "Результаты в новых вкладках"
  1080. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1081. msgid "Open result links on new browser tabs"
  1082. msgstr "Открывать результаты поиска в новых вкладках"
  1083. #: searx/templates/simple/preferences/safesearch.html:20
  1084. msgid "Filter content"
  1085. msgstr "Отбирает только пристойные результаты"
  1086. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1087. msgid "Search on category select"
  1088. msgstr "Поиск по выбранной категории"
  1089. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1090. msgid ""
  1091. "Perform search immediately if a category selected. Disable to select "
  1092. "multiple categories"
  1093. msgstr ""
  1094. "Выполняйте мгновенный поиск при выборе категории. Выключите для выбора "
  1095. "нескольких категорий сразу"
  1096. #: searx/templates/simple/preferences/theme.html:2
  1097. msgid "Theme"
  1098. msgstr "Тема"
  1099. #: searx/templates/simple/preferences/theme.html:14
  1100. msgid "Change SearXNG layout"
  1101. msgstr "Изменить расположение элементов SearXNG"
  1102. #: searx/templates/simple/preferences/theme.html:19
  1103. msgid "Theme style"
  1104. msgstr "Стиль темы"
  1105. #: searx/templates/simple/preferences/theme.html:31
  1106. msgid "Choose auto to follow your browser settings"
  1107. msgstr "Выберите \"автоматически\" для использования настроек вашего браузера"
  1108. #: searx/templates/simple/preferences/tokens.html:2
  1109. msgid "Engine tokens"
  1110. msgstr "Токены движка"
  1111. #: searx/templates/simple/preferences/tokens.html:9
  1112. msgid "Access tokens for private engines"
  1113. msgstr "Доступные токены для частных движков"
  1114. #: searx/templates/simple/preferences/ui_locale.html:2
  1115. msgid "Interface language"
  1116. msgstr "Язык интерфейса"
  1117. #: searx/templates/simple/preferences/ui_locale.html:14
  1118. msgid "Change the language of the layout"
  1119. msgstr "Изменить язык интерфейса"
  1120. #: searx/templates/simple/preferences/urlformatting.html:2
  1121. msgid "URL formatting"
  1122. msgstr "Отображение URL"
  1123. #: searx/templates/simple/preferences/urlformatting.html:8
  1124. msgid "Pretty"
  1125. msgstr "Красивое"
  1126. #: searx/templates/simple/preferences/urlformatting.html:13
  1127. msgid "Full"
  1128. msgstr "Полное"
  1129. #: searx/templates/simple/preferences/urlformatting.html:18
  1130. msgid "Host"
  1131. msgstr "Имя хоста"
  1132. #: searx/templates/simple/preferences/urlformatting.html:23
  1133. msgid "Change result URL formatting"
  1134. msgstr "Формат отражения URL в результатах"
  1135. #: searx/templates/simple/result_templates/code.html:13
  1136. msgid "repo"
  1137. msgstr "Репозиторий"
  1138. #: searx/templates/simple/result_templates/default.html:6
  1139. #: searx/templates/simple/result_templates/files.html:8
  1140. #: searx/templates/simple/result_templates/files.html:11
  1141. msgid "show media"
  1142. msgstr "показать медиа"
  1143. #: searx/templates/simple/result_templates/default.html:6
  1144. #: searx/templates/simple/result_templates/files.html:8
  1145. msgid "hide media"
  1146. msgstr "скрыть медиа"
  1147. #: searx/templates/simple/result_templates/default.html:14
  1148. #: searx/templates/simple/result_templates/videos.html:14
  1149. msgid "This site did not provide any description."
  1150. msgstr "Этот сайт не предоставил описания."
  1151. #: searx/templates/simple/result_templates/files.html:38
  1152. #: searx/templates/simple/result_templates/images.html:22
  1153. #: searx/templates/simple/result_templates/torrent.html:18
  1154. msgid "Filesize"
  1155. msgstr "Размер файла"
  1156. #: searx/templates/simple/result_templates/files.html:40
  1157. msgid "Date"
  1158. msgstr "Дата"
  1159. #: searx/templates/simple/result_templates/files.html:42
  1160. #: searx/templates/simple/result_templates/paper.html:24
  1161. msgid "Type"
  1162. msgstr "Тип"
  1163. #: searx/templates/simple/result_templates/images.html:20
  1164. msgid "Resolution"
  1165. msgstr "Разрешение"
  1166. #: searx/templates/simple/result_templates/images.html:21
  1167. msgid "Format"
  1168. msgstr "Формат"
  1169. #: searx/templates/simple/result_templates/images.html:24
  1170. msgid "Engine"
  1171. msgstr "Движок"
  1172. #: searx/templates/simple/result_templates/images.html:25
  1173. msgid "View source"
  1174. msgstr "Перейти к источнику"
  1175. #: searx/templates/simple/result_templates/map.html:12
  1176. msgid "address"
  1177. msgstr "адрес"
  1178. #: searx/templates/simple/result_templates/map.html:43
  1179. msgid "show map"
  1180. msgstr "показать карту"
  1181. #: searx/templates/simple/result_templates/map.html:43
  1182. msgid "hide map"
  1183. msgstr "скрыть карту"
  1184. #: searx/templates/simple/result_templates/packages.html:12
  1185. msgid "Version"
  1186. msgstr "Версия"
  1187. #: searx/templates/simple/result_templates/packages.html:18
  1188. msgid "Maintainer"
  1189. msgstr "Сопровождающий"
  1190. #: searx/templates/simple/result_templates/packages.html:24
  1191. msgid "Updated at"
  1192. msgstr "Обновлено"
  1193. #: searx/templates/simple/result_templates/packages.html:30
  1194. #: searx/templates/simple/result_templates/paper.html:25
  1195. msgid "Tags"
  1196. msgstr "Теги"
  1197. #: searx/templates/simple/result_templates/packages.html:36
  1198. msgid "Popularity"
  1199. msgstr "Популярность"
  1200. #: searx/templates/simple/result_templates/packages.html:42
  1201. msgid "License"
  1202. msgstr "Лицензия"
  1203. #: searx/templates/simple/result_templates/packages.html:52
  1204. msgid "Project"
  1205. msgstr "Проект"
  1206. #: searx/templates/simple/result_templates/packages.html:55
  1207. msgid "Project homepage"
  1208. msgstr "Страница проекта"
  1209. #: searx/templates/simple/result_templates/paper.html:5
  1210. msgid "Published date"
  1211. msgstr "Дата публикации"
  1212. #: searx/templates/simple/result_templates/paper.html:9
  1213. msgid "Journal"
  1214. msgstr "Журнал"
  1215. #: searx/templates/simple/result_templates/paper.html:22
  1216. msgid "Editor"
  1217. msgstr "Редактор"
  1218. #: searx/templates/simple/result_templates/paper.html:23
  1219. msgid "Publisher"
  1220. msgstr "Издатель"
  1221. #: searx/templates/simple/result_templates/paper.html:26
  1222. msgid "DOI"
  1223. msgstr "DOI"
  1224. #: searx/templates/simple/result_templates/paper.html:27
  1225. msgid "ISSN"
  1226. msgstr "ISSN"
  1227. #: searx/templates/simple/result_templates/paper.html:28
  1228. msgid "ISBN"
  1229. msgstr "ISBN"
  1230. #: searx/templates/simple/result_templates/paper.html:33
  1231. msgid "PDF"
  1232. msgstr "PDF"
  1233. #: searx/templates/simple/result_templates/paper.html:34
  1234. msgid "HTML"
  1235. msgstr "HTML"
  1236. #: searx/templates/simple/result_templates/torrent.html:7
  1237. msgid "magnet link"
  1238. msgstr "magnet-ссылка"
  1239. #: searx/templates/simple/result_templates/torrent.html:8
  1240. msgid "torrent file"
  1241. msgstr "торрент-файл"
  1242. #: searx/templates/simple/result_templates/torrent.html:13
  1243. msgid "Seeder"
  1244. msgstr "Сиды"
  1245. #: searx/templates/simple/result_templates/torrent.html:14
  1246. msgid "Leecher"
  1247. msgstr "Личи"
  1248. #: searx/templates/simple/result_templates/torrent.html:19
  1249. msgid "Number of Files"
  1250. msgstr "Количество файлов"
  1251. #: searx/templates/simple/result_templates/videos.html:6
  1252. msgid "show video"
  1253. msgstr "показать видео"
  1254. #: searx/templates/simple/result_templates/videos.html:6
  1255. msgid "hide video"
  1256. msgstr "скрыть видео"
  1257. #~ msgid "Engine time (sec)"
  1258. #~ msgstr "Время поиска (сек)"
  1259. #~ msgid "Page loads (sec)"
  1260. #~ msgstr "Загрузка страниц (сек)"
  1261. #~ msgid "Errors"
  1262. #~ msgstr "Ошибки"
  1263. #~ msgid "CAPTCHA required"
  1264. #~ msgstr "Требуется капча"
  1265. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1266. #~ msgstr "Заменять в ссылках HTTP на HTTPS если это возможно"
  1267. #~ msgid ""
  1268. #~ "Results are opened in the same "
  1269. #~ "window by default. This plugin "
  1270. #~ "overwrites the default behaviour to open"
  1271. #~ " links on new tabs/windows. (JavaScript "
  1272. #~ "required)"
  1273. #~ msgstr ""
  1274. #~ "По умолчанию результаты открываются в "
  1275. #~ "том же окне. Этот плагин переопределяет"
  1276. #~ " поведение по умолчанию для открытия "
  1277. #~ "ссылок в новых вкладках/окнах. (Требуется "
  1278. #~ "JavaScript)"
  1279. #~ msgid "Color"
  1280. #~ msgstr "Цвет"
  1281. #~ msgid "Blue (default)"
  1282. #~ msgstr "Синий (по умолчанию)"
  1283. #~ msgid "Violet"
  1284. #~ msgstr "Фиолетовый"
  1285. #~ msgid "Green"
  1286. #~ msgstr "Зеленый"
  1287. #~ msgid "Cyan"
  1288. #~ msgstr "Бирюзовый"
  1289. #~ msgid "Orange"
  1290. #~ msgstr "Оранжевый"
  1291. #~ msgid "Red"
  1292. #~ msgstr "Красный"
  1293. #~ msgid "Category"
  1294. #~ msgstr "Категория"
  1295. #~ msgid "Block"
  1296. #~ msgstr "Блокировать"
  1297. #~ msgid "original context"
  1298. #~ msgstr "исходный контекст"
  1299. #~ msgid "Plugins"
  1300. #~ msgstr "Плагины"
  1301. #~ msgid "Answerers"
  1302. #~ msgstr "Ответчики"
  1303. #~ msgid "Avg. time"
  1304. #~ msgstr "Среднее время"
  1305. #~ msgid "show details"
  1306. #~ msgstr "показать подробности"
  1307. #~ msgid "hide details"
  1308. #~ msgstr "скрыть подробности"
  1309. #~ msgid "Load more..."
  1310. #~ msgstr "Загрузить еще…"
  1311. #~ msgid "Loading..."
  1312. #~ msgstr "Загрузка..."
  1313. #~ msgid "Change searx layout"
  1314. #~ msgstr "Изменить вид сайта"
  1315. #~ msgid "Proxying image results through searx"
  1316. #~ msgstr "Проксировать найденные изображения с помощью searx"
  1317. #~ msgid "This is the list of searx's instant answering modules."
  1318. #~ msgstr "Это список модулей мгновенного ответа searx."
  1319. #~ msgid ""
  1320. #~ "This is the list of cookies and"
  1321. #~ " their values searx is storing on "
  1322. #~ "your computer."
  1323. #~ msgstr ""
  1324. #~ "Это список cookie-файлов и их значения,"
  1325. #~ " которые searx хранит на Вашем "
  1326. #~ "компьютере."
  1327. #~ msgid "With that list, you can assess searx transparency."
  1328. #~ msgstr "С помощью этого списка можно изменить прозрачность searx."
  1329. #~ msgid "It look like you are using searx first time."
  1330. #~ msgstr "Похоже, вы используете searx впервые."
  1331. #~ msgid "Please, try again later or find another searx instance."
  1332. #~ msgstr "Пожалуйста, попробуйте позже или воспользуйтесь другим сервером searx."
  1333. #~ msgid "Themes"
  1334. #~ msgstr "Темы"
  1335. #~ msgid "Reliablity"
  1336. #~ msgstr "Надежность"
  1337. #~ msgid ""
  1338. #~ "When enabled, the result page's title"
  1339. #~ " contains your query. Your browser "
  1340. #~ "can record this title."
  1341. #~ msgstr ""
  1342. #~ msgid "Method"
  1343. #~ msgstr "Cпособ"
  1344. #~ msgid ""
  1345. #~ "This tab does not show up for "
  1346. #~ "search results but you can search "
  1347. #~ "the engines listed here via bangs."
  1348. #~ msgstr ""
  1349. #~ "На этой вкладке отсутсвуют результаты, "
  1350. #~ "но вы можете использовать поисковики "
  1351. #~ "перечисленные ниже."
  1352. #~ msgid "Advanced settings"
  1353. #~ msgstr "Дополнительные настройки"
  1354. #~ msgid "Close"
  1355. #~ msgstr "Закрыть"
  1356. #~ msgid "Language"
  1357. #~ msgstr "Язык"
  1358. #~ msgid "broken"
  1359. #~ msgstr "сломанный"
  1360. #~ msgid "supported"
  1361. #~ msgstr "поддерживается"
  1362. #~ msgid "not supported"
  1363. #~ msgstr "не поддерживается"
  1364. #~ msgid "about"
  1365. #~ msgstr "О сайте"
  1366. #~ msgid "Avg."
  1367. #~ msgstr "примерно"
  1368. #~ msgid "User Interface"
  1369. #~ msgstr "Внешний вид"
  1370. #~ msgid "Choose style for this theme"
  1371. #~ msgstr "Цветовое решение для выбранной темы"
  1372. #~ msgid "Style"
  1373. #~ msgstr "Стиль"
  1374. #~ msgid "Show advanced settings"
  1375. #~ msgstr "Дополнительные настройки"
  1376. #~ msgid "Show advanced settings panel in the home page by default"
  1377. #~ msgstr "Развернуть дополнительные настройки на главной странице"
  1378. #~ msgid "Allow all"
  1379. #~ msgstr "Выбрать все"
  1380. #~ msgid "Disable all"
  1381. #~ msgstr "Выключить все"
  1382. #~ msgid "Selected language"
  1383. #~ msgstr "Выбранный язык"
  1384. #~ msgid "Query"
  1385. #~ msgstr "Запрос"
  1386. #~ msgid "save"
  1387. #~ msgstr "Сохранить"
  1388. #~ msgid "back"
  1389. #~ msgstr "Назад"
  1390. #~ msgid "Links"
  1391. #~ msgstr "Ссылки"
  1392. #~ msgid "RSS subscription"
  1393. #~ msgstr "RSS-подписка"
  1394. #~ msgid "Search results"
  1395. #~ msgstr "Результаты поиска"
  1396. #~ msgid "next page"
  1397. #~ msgstr "следующая страница"
  1398. #~ msgid "previous page"
  1399. #~ msgstr "предыдущая страница"
  1400. #~ msgid "Start search"
  1401. #~ msgstr "Начать поиск"
  1402. #~ msgid "Clear search"
  1403. #~ msgstr "Очистить запрос"
  1404. #~ msgid "Clear"
  1405. #~ msgstr "Очистить"
  1406. #~ msgid "stats"
  1407. #~ msgstr "статистика"
  1408. #~ msgid "Heads up!"
  1409. #~ msgstr "Вот чёрт!"
  1410. #~ msgid "It look like you are using SearXNG first time."
  1411. #~ msgstr "Похоже, вы используете SearXNG впервые."
  1412. #~ msgid "Well done!"
  1413. #~ msgstr "Отлично!"
  1414. #~ msgid "Settings saved successfully."
  1415. #~ msgstr "Настройки успешно сохранены."
  1416. #~ msgid "Oh snap!"
  1417. #~ msgstr "Вот черт!"
  1418. #~ msgid "Something went wrong."
  1419. #~ msgstr "Что-то пошло не так."
  1420. #~ msgid "Date"
  1421. #~ msgstr "Дата"
  1422. #~ msgid "Type"
  1423. #~ msgstr "Тип"
  1424. #~ msgid "Get image"
  1425. #~ msgstr "Скачать картинку"
  1426. #~ msgid "Center Alignment"
  1427. #~ msgstr ""
  1428. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1429. #~ msgstr ""
  1430. #~ msgid "preferences"
  1431. #~ msgstr "Настройки"
  1432. #~ msgid "Scores per result"
  1433. #~ msgstr "Попаданий за результат"
  1434. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1435. #~ msgstr "открытая метапоисковая система, уважающая приватность"
  1436. #~ msgid "No abstract is available for this publication."
  1437. #~ msgstr "Нет доступного примечания для этой публикации."
  1438. #~ msgid "Self Informations"
  1439. #~ msgstr "Информация"
  1440. #~ msgid ""
  1441. #~ "Change how forms are submited, <a "
  1442. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1443. #~ " rel=\"external\">learn more about request "
  1444. #~ "methods</a>"
  1445. #~ msgstr ""
  1446. #~ "Способ отправки запросов. <a "
  1447. #~ "href=\"http://ru.wikipedia.org/wiki/HTTP#Методы\" "
  1448. #~ "rel=\"external\">Подробнее о методах HTTP</a>"
  1449. #~ msgid ""
  1450. #~ "This plugin checks if the address "
  1451. #~ "of the request is a TOR exit "
  1452. #~ "node, and informs the user if it"
  1453. #~ " is, like check.torproject.org but from "
  1454. #~ "searxng."
  1455. #~ msgstr ""
  1456. #~ "Этот плагин проверяет, не является ли"
  1457. #~ " запрошенный адрес выходным узлом Tor'a,"
  1458. #~ " и информирует пользователя, если это "
  1459. #~ "так, как check.torproject.org, но от "
  1460. #~ "searxng."
  1461. #~ msgid ""
  1462. #~ "The TOR exit node list "
  1463. #~ "(https://check.torproject.org/exit-addresses) is "
  1464. #~ "unreachable."
  1465. #~ msgstr ""
  1466. #~ "Список выходных узлов Tor'a "
  1467. #~ "(https://check.torproject.org/exit-addresses) недоступен."
  1468. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1469. #~ msgstr "Вы используете Tor. Ваш IP адрес может быть: {ip_address}."
  1470. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1471. #~ msgstr "Вы не используете Tor. Ваш IP адрес может быть: {ip_address}."
  1472. #~ msgid ""
  1473. #~ "The could not download the list of"
  1474. #~ " Tor exit-nodes from "
  1475. #~ "https://check.torproject.org/exit-addresses."
  1476. #~ msgstr ""
  1477. #~ msgid ""
  1478. #~ "You are using Tor. It looks like"
  1479. #~ " you have this external IP address:"
  1480. #~ " {ip_address}."
  1481. #~ msgstr ""
  1482. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1483. #~ msgstr ""
  1484. #~ msgid "Autodetect search language"
  1485. #~ msgstr "Автоматически определять язык поиска"
  1486. #~ msgid "Automatically detect the query search language and switch to it."
  1487. #~ msgstr "Автоматически определять язык поиска запроса и переключаться на него."
  1488. #~ msgid "others"
  1489. #~ msgstr "Другие"
  1490. #~ msgid ""
  1491. #~ "This tab does not show up for "
  1492. #~ "search results, but you can search "
  1493. #~ "the engines listed here via bangs."
  1494. #~ msgstr ""
  1495. #~ "Результаты из этого раздела не "
  1496. #~ "отображаются в общих, но вы можете "
  1497. #~ "использовать эти поисковые движки через "
  1498. #~ "восклицательный знак."
  1499. #~ msgid "Shortcut"
  1500. #~ msgstr "Сокращение"
  1501. #~ msgid "!bang"
  1502. #~ msgstr ""
  1503. #~ msgid ""
  1504. #~ "This tab dues not exists in the"
  1505. #~ " user interface, but you can search"
  1506. #~ " in these engines by its !bangs."
  1507. #~ msgstr ""
  1508. #~ "Эта вкладка не существует в "
  1509. #~ "пользовательском интерфейсе, но вы можете "
  1510. #~ "искать в этих системах по ее "
  1511. #~ "!bangs."
  1512. #~ msgid "Engines cannot retrieve results."
  1513. #~ msgstr "Поисковые системы не могут получить результат."
  1514. #~ msgid "Please, try again later or find another SearXNG instance."
  1515. #~ msgstr ""
  1516. #~ "Пожалуйста, попробуйте ещё раз позднее, "
  1517. #~ "либо перейдите на другое зеркало "
  1518. #~ "SearXNG."
  1519. #~ msgid ""
  1520. #~ "Redirect to open-access versions of "
  1521. #~ "publications when available (plugin required)"
  1522. #~ msgstr ""
  1523. #~ "Перенаправлять на открытые версии публикаций"
  1524. #~ " при их наличии (требуется плагин)"
  1525. #~ msgid "Bang"
  1526. #~ msgstr "!bang"
  1527. #~ msgid ""
  1528. #~ "Change how forms are submitted, <a "
  1529. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1530. #~ " rel=\"external\">learn more about request "
  1531. #~ "methods</a>"
  1532. #~ msgstr ""
  1533. #~ "Способ отправки запросов. <a "
  1534. #~ "href=\"http://ru.wikipedia.org/wiki/HTTP#Методы\" "
  1535. #~ "rel=\"external\">Подробнее о методах HTTP</a>"
  1536. #~ msgid "On"
  1537. #~ msgstr "Включено"
  1538. #~ msgid "Off"
  1539. #~ msgstr "Выключено"
  1540. #~ msgid "Enabled"
  1541. #~ msgstr "Включено"
  1542. #~ msgid "Disabled"
  1543. #~ msgstr "Выключено"
  1544. #~ msgid ""
  1545. #~ "Perform search immediately if a category"
  1546. #~ " selected. Disable to select multiple "
  1547. #~ "categories. (JavaScript required)"
  1548. #~ msgstr ""
  1549. #~ "Выполнять поиск немедленно, если выбрана "
  1550. #~ "категория. Отключите для выбора нескольких "
  1551. #~ "категорий. (требуется JavaScript)"
  1552. #~ msgid "Vim-like hotkeys"
  1553. #~ msgstr "Горячие клавиши в стиле Vim"
  1554. #~ msgid ""
  1555. #~ "Navigate search results with Vim-like"
  1556. #~ " hotkeys (JavaScript required). Press \"h\""
  1557. #~ " key on main or result page to"
  1558. #~ " get help."
  1559. #~ msgstr ""
  1560. #~ "Навигация по результатам поиска с "
  1561. #~ "помощью горячих клавиш в стиле Vim "
  1562. #~ "(требуется JavaScript). Чтобы получить "
  1563. #~ "справку, нажмите клавишу \"h\" на "
  1564. #~ "главной странице или на страницах "
  1565. #~ "результатов."
  1566. #~ msgid ""
  1567. #~ "we didn't find any results. Please "
  1568. #~ "use another query or search in "
  1569. #~ "more categories."
  1570. #~ msgstr ""
  1571. #~ "мы не нашли никаких результатов. "
  1572. #~ "Попробуйте изменить запрос или поищите в"
  1573. #~ " других категориях."
  1574. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1575. #~ msgstr "Заменить имя хоста или удалить результаты на основе имени хоста"
  1576. #~ msgid "Bytes"
  1577. #~ msgstr "Байт"
  1578. #~ msgid "kiB"
  1579. #~ msgstr "КиБ"
  1580. #~ msgid "MiB"
  1581. #~ msgstr "МиБ"
  1582. #~ msgid "GiB"
  1583. #~ msgstr "ГиБ"
  1584. #~ msgid "TiB"
  1585. #~ msgstr "ТиБ"
  1586. #~ msgid "Hostname replace"
  1587. #~ msgstr "Замена имени сайта"
  1588. #~ msgid "Error!"
  1589. #~ msgstr "Ошибка!"
  1590. #~ msgid "Engines cannot retrieve results"
  1591. #~ msgstr "Поисковые системы не могут получить результат"
  1592. #~ msgid "Start submiting a new issue on GitHub"
  1593. #~ msgstr "Откройте issue на GitHub"
  1594. #~ msgid "dummy"
  1595. #~ msgstr ""
  1596. #~ msgid "Random value generator"
  1597. #~ msgstr "Генератор случайных значений"
  1598. #~ msgid "Statistics functions"
  1599. #~ msgstr "Статистические функции"
  1600. #~ msgid "Compute {functions} of the arguments"
  1601. #~ msgstr "Применяет функции {functions} к аргументам"
  1602. #~ msgid "Get directions"
  1603. #~ msgstr "Запрашивать маршруты"
  1604. #~ msgid ""
  1605. #~ "Displays your IP if the query is"
  1606. #~ " \"ip\" and your user agent if "
  1607. #~ "the query contains \"user agent\"."
  1608. #~ msgstr ""
  1609. #~ "Показывать ваш IP-адрес по запросу "
  1610. #~ "\"ip\" и информацию о браузере по "
  1611. #~ "запросу \"user agent\"."
  1612. #~ msgid ""
  1613. #~ "Could not download the list of Tor"
  1614. #~ " exit-nodes from: https://check.torproject.org"
  1615. #~ "/exit-addresses"
  1616. #~ msgstr ""
  1617. #~ "Не удалось загрузить список выходных "
  1618. #~ "узлов Tor с адреса "
  1619. #~ "https://check.torproject.org/exit-addresses"
  1620. #~ msgid ""
  1621. #~ "You are using Tor and it looks "
  1622. #~ "like you have this external IP "
  1623. #~ "address: {ip_address}"
  1624. #~ msgstr "Вы не используете Tor. Ваш публичный IP-адрес: {ip_address}"
  1625. #~ msgid ""
  1626. #~ "You are not using Tor and you "
  1627. #~ "have this external IP address: "
  1628. #~ "{ip_address}"
  1629. #~ msgstr ""
  1630. #~ "Вы не используете Tor, и у вас "
  1631. #~ "следующий публичный IP-адрес: {ip_address}"
  1632. #~ msgid "Keywords"
  1633. #~ msgstr "Ключевые слова"
  1634. #~ msgid "/"
  1635. #~ msgstr ""
  1636. #~ msgid ""
  1637. #~ "Specifying custom settings in the "
  1638. #~ "preferences URL can be used to "
  1639. #~ "sync preferences across devices."
  1640. #~ msgstr ""
  1641. #~ "URL-адреса с пользовательскими настройками "
  1642. #~ "можно использовать для синхронизации настроек"
  1643. #~ " между устройствами."