messages.po 58 KB

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