messages.po 55 KB

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