messages.po 58 KB

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