messages.po 58 KB

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