messages.po 58 KB

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