gimp/po-windows-installer/uk.po

401 lines
18 KiB
Plaintext
Raw Normal View History

2018-05-12 15:15:47 +08:00
# Ukrainian translation for gimp.
# Copyright (C) 2018 gimp's COPYRIGHT HOLDER
# This file is distributed under the same license as the gimp package.
#
# lxlalexlxl <pilipchukap@rambler.ru>, 2018.
2024-01-16 04:24:04 +08:00
# Yuri Chornoivan <yurchor@ukr.net>, 2018, 2020, 2021, 2022, 2024.
2018-05-12 15:15:47 +08:00
msgid ""
msgstr ""
"Project-Id-Version: gimp master\n"
2018-07-03 14:59:42 +08:00
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\n"
2024-01-16 04:24:04 +08:00
"POT-Creation-Date: 2024-01-15 18:22+0000\n"
"PO-Revision-Date: 2024-01-15 22:16+0200\n"
2018-05-12 15:15:47 +08:00
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Ukrainian <kde-i18n-uk@kde.org>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
2022-06-26 03:52:58 +08:00
"Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n"
"%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
2024-01-16 04:24:04 +08:00
"X-Generator: Lokalize 23.04.1\n"
2018-05-12 15:15:47 +08:00
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:7
2018-05-12 15:15:47 +08:00
msgid "License Agreement"
msgstr "Ліцензійна угода"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:10
2018-05-12 15:15:47 +08:00
msgid "Setup built by Jernej Simonèiè, jernej-gimp@ena.si"
msgstr "Збірку підготував Jernej Simonèiè, jernej-gimp@ena.si"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:13
#: build/windows/installer/lang/setup.isl.xml.in:16
2024-01-16 04:24:04 +08:00
#| msgid ""
#| "This version of GIMP requires Windows 7, or a newer version of Windows."
msgid ""
"This version of GIMP requires Windows 10, or a newer version of Windows."
msgstr "Ця версія GIMP вимагає Windows 10 або новішої версії Windows."
2018-05-12 15:15:47 +08:00
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:23
2018-05-12 15:15:47 +08:00
msgid "Development version"
msgstr "Розроблювана версія"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:28
2018-05-12 15:15:47 +08:00
msgid ""
"This is a development version of GIMP where some features may not be "
"finished, or it may be unstable.%nThis version of GIMP is not intended for "
"day-to-day work as it may be unstable, and you could lose your work.%nIf you "
"encounter any problems, first verify that they haven't already been fixed in "
2020-03-29 01:29:50 +08:00
"GIT before you contact the developers or report it in GIMP gitlab:%n_https://"
"gitlab.gnome.org/GNOME/gimp/issues%n%nDo you wish to continue with "
"installation anyway?"
2018-05-12 15:15:47 +08:00
msgstr ""
"Це розроблювана версія GIMP, в якій окремі можливості можуть бути не "
"завершеними, або вона може бути нестабільною .%nЦя версія GIMP не призначена "
"для щоденного використання, оскільки через нестабільність можлива втрата "
"напрацювань.%nЯкщо ви зіткнетеся з проблемами, перш за все перевірте, чи їх "
2021-05-11 02:14:46 +08:00
"не виправлено в GIT, а вже потім зверніться до розробників за допомогою "
"gitlab:%n_https://gitlab.gnome.org/GNOME/gimp/issues%n%nБажаєте продовжити "
"встановлення?"
2018-05-12 15:15:47 +08:00
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:31
#: build/windows/installer/lang/setup.isl.xml.in:54
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
msgid "&Continue"
msgstr "&Продовжити"
2018-05-12 15:15:47 +08:00
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:34
2018-05-12 15:15:47 +08:00
msgid "Exit"
msgstr "Вийти"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:44
2018-05-12 15:15:47 +08:00
msgid ""
"This version of GIMP requires a processor that supports SSE instructions."
msgstr "Ця версія GIMP потребує процесора, який підтримує команди SSE."
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:48
2018-05-12 15:15:47 +08:00
msgid "Display settings problem"
msgstr "Показати проблеми налаштувань"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:51
2018-05-12 15:15:47 +08:00
msgid ""
"Setup has detected that your Windows is not running in 32 bits-per-pixel "
"display mode. This has been known to cause stability problems with GIMP, so "
"it's recommended to change the display colour depth to 32BPP before "
"continuing."
msgstr ""
"Під час встановлення виявлено, що Windows працює не в режимі екрана 32 біти "
"на піксель. Це може спричинити нестабільну роботу GIMP, тому, перш ніж "
"продовжити, бажано змінити глибину кольору екрана на 32 БНП."
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:57
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
msgid "E&xit"
msgstr "Ви&йти"
2018-05-12 15:15:47 +08:00
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:61
2018-05-12 15:15:47 +08:00
msgid ""
"GIMP is now ready to be installed. Click the Install now button to install "
"using the default settings, or click the Customize button if you'd like to "
"have more control over what gets installed."
msgstr ""
"Все готово для того, щоб встановити GIMP. Зараз клацніть кнопку Встановити "
"для встановлення з типовими параметрами, або клацніть кнопку Налаштувати, "
"щоб керувати тим, що буде встановлено."
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:64
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
msgid "&Install"
msgstr "&Встановити"
2018-05-12 15:15:47 +08:00
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:67
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
msgid "&Customize"
msgstr "&Налаштувати"
2018-05-12 15:15:47 +08:00
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:72
2018-05-12 15:15:47 +08:00
msgid "Compact installation"
msgstr "Компактне встановлення"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:76
2018-05-12 15:15:47 +08:00
msgid "Custom installation"
msgstr "Особливе встановлення"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:80
2018-05-12 15:15:47 +08:00
msgid "Full installation"
msgstr "Повне встановлення"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:85
2018-05-12 15:15:47 +08:00
msgid "Description"
msgstr "Опис"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:89
2018-05-12 15:15:47 +08:00
msgid "GIMP"
msgstr "GIMP"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:93
2018-05-12 15:15:47 +08:00
msgid "GIMP and all default plug-ins"
msgstr "GIMP і всі типові доповнення"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:97
2018-05-12 15:15:47 +08:00
msgid "Run-time libraries"
msgstr "Бібліотеки часу виконання"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:101
2022-07-08 00:43:41 +08:00
msgid "Run-time libraries used by GIMP, including GTK Run-time Environment"
2018-05-12 15:15:47 +08:00
msgstr ""
"Бібліотеки часу виконання, що використовуються GIMP, включно з середовищем "
2022-07-08 00:43:41 +08:00
"виконання GTK"
2018-05-12 15:15:47 +08:00
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:105
2018-07-03 14:59:42 +08:00
msgid "Debug symbols"
msgstr "Дані для зневаджування"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:109
2018-07-03 14:59:42 +08:00
msgid "Include information to help with debugging GIMP"
msgstr "Включити інформацію, яка допоможе виправляти помилки в GIMP"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:113
2022-07-08 00:43:41 +08:00
msgid "MS-Windows engine for GTK"
msgstr "Рушій MS-Windows для GTK"
2018-05-12 15:15:47 +08:00
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:117
2018-05-12 15:15:47 +08:00
msgid "Native Windows look for GIMP"
msgstr "Windows-вигляд для GIMP"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:121
2018-05-12 15:15:47 +08:00
msgid "Support for old plug-ins"
msgstr "Підтримка старих доповнень"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:125
2018-05-12 15:15:47 +08:00
msgid "Install libraries needed by old third-party plug-ins"
msgstr ""
"Встановити бібліотеки, потрібні для старих доповнень від сторонніх "
"розробників"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:129
#: build/windows/installer/lang/setup.isl.xml.in:133
2018-05-12 15:15:47 +08:00
msgid "Translations"
msgstr "Переклади"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:137
2018-05-12 15:15:47 +08:00
msgid "Python scripting"
msgstr "Сценарії на Python"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:141
2018-05-12 15:15:47 +08:00
msgid "Allows you to use GIMP plugins written in Python scripting language."
msgstr "Дозволяє використовувати в GIMP додатки, написані мовою Python."
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:145
2021-05-11 02:14:46 +08:00
msgid "Lua scripting"
msgstr "Сценарії на Lua"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:149
2021-05-11 02:14:46 +08:00
msgid "Allows you to use GIMP plugins written in Lua scripting language."
msgstr "Надає змогу використовувати у GIMP додатки, написані мовою Lua."
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:153
2018-05-12 15:15:47 +08:00
msgid "MyPaint brushes"
msgstr "Пензлі MyPaint"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:157
2018-05-12 15:15:47 +08:00
msgid "Install the default set of MyPaint brushes"
msgstr "Встановити стандартний набір пензлів MyPaint"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:161
2018-05-12 15:15:47 +08:00
msgid "PostScript support"
msgstr "Підтримка PostScript"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:165
2018-05-12 15:15:47 +08:00
msgid "Allow GIMP to load PostScript files"
msgstr "Дозволяє GIMP завантажувати файли PostScript"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:169
2018-05-12 15:15:47 +08:00
msgid "Support for 32-bit plug-ins"
msgstr "Підтримка 32-бітових доповнень"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:173
2018-05-12 15:15:47 +08:00
msgid ""
"Include files necessary for using 32-bit plug-ins.%nRequired for Python "
"support."
msgstr ""
"Включити файли, потрібні для використання 32-бітових доповнень.%nПотребує "
"підтримки Python."
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:178
2018-05-12 15:15:47 +08:00
msgid "Additional icons:"
msgstr "Додаткові піктограми:"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:182
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
msgid "Create a &desktop icon"
msgstr "Створити &значок на стільниці"
2018-05-12 15:15:47 +08:00
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:186
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
msgid "Create a &Quick Launch icon"
msgstr "Створити &значок на панелі швидкого запуску"
2018-05-12 15:15:47 +08:00
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:190
2018-05-12 15:15:47 +08:00
msgid "Remove previous GIMP version"
msgstr "Вилучити попередню версію GIMP"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:195
2018-05-12 15:15:47 +08:00
msgid ""
"There was a problem updating GIMP's environment in %1. If you get any errors "
"loading the plug-ins, try uninstalling and re-installing GIMP."
msgstr ""
"Під час оновлення середовища GIMP в %1 трапилась помилка. Якщо трапляються "
"помилки під час запуску доповнень, спробуйте вилучити і перевстановити GIMP."
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:199
2018-05-12 15:15:47 +08:00
msgid "Error extracting temporary data."
msgstr "Помилка видобування тимчасових даних."
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:203
2018-05-12 15:15:47 +08:00
msgid "Error updating Python interpreter info."
msgstr "Помилка оновлення даних про інтерпретатор Python."
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:207
2018-05-12 15:15:47 +08:00
msgid "Error updating MyPaint brushes info."
msgstr "Помилка оновлення даних про пензлі MyPaint."
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:211
2018-05-12 15:15:47 +08:00
msgid "There was an error updating %1."
msgstr "Сталася помилка під час оновлення %1."
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:215
2018-05-12 15:15:47 +08:00
msgid "There was an error updating GIMP's configuration file %1."
msgstr "Виникла помилка під час оновлення файлу конфігурації GIMP %1."
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:220
2018-05-12 15:15:47 +08:00
msgid "Edit with GIMP"
msgstr "Змінити в GIMP"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:225
2018-05-12 15:15:47 +08:00
msgid "Select file associations"
msgstr "Виберіть призначення файлів"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:229
2018-05-12 15:15:47 +08:00
msgid "Extensions:"
msgstr "Розширення:"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:233
2018-05-12 15:15:47 +08:00
msgid "Select the file types you wish to associate with GIMP"
msgstr "Виберіть типи файлів, які будуть пов'язані з GIMP"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:237
2018-05-12 15:15:47 +08:00
msgid ""
"This will make selected files open in GIMP when you double-click them in "
"Explorer."
msgstr ""
"Завдяки цьому файли відкриватимуться в GIMP, якщо на них двічі клацнути в "
"Провіднику."
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:241
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
msgid "Select &All"
msgstr "&Вибрати всі"
2018-05-12 15:15:47 +08:00
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:245
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
msgid "Unselect &All"
msgstr "&Зняти вибір з усіх"
2018-05-12 15:15:47 +08:00
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:249
po-windows-installer: fixing broken po files for Windows installers. This is purely fixing by meson rebuilds and some regexp fixes. I didn't touch any semantic. Basically the "&amp;" XML entity should not have made their way to the po files. I fixed our script in the previous commit, and now I just rebuild the po files and clean the entity programmatically so that our Windows installers for GIMP 2.99.12 release have valid text. Here is what I did: (1) I regenerated the pot and po files: $ meson compile gimp30-windows-installer-pot $ meson compile gimp30-windows-installer-update-po (2) I opened all the po files in vim and regexp through them. Get back the proper Report-Msgid-Bugs-To: :bufdo! %s$"Report-Msgid-Bugs-To: \\n"$"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\\n"$ge|update No translations were fuzzy in any po files before this change. I remove all the fuzzy flags, but only if the msgid contains an ampersand, hence leaving appropriate fuzzy strings in (the ones where the source string changed since the last translation): :bufdo! %s/#, fuzzy\n\([^&]*\)&/\1\&/ge|update Then I replaced &amp; in msgstr (msgid was fixed through the automatic regeneration thanks to previous commit, but not the translations) with: :bufdo! %s/&amp;/\&/ge|update (3) Finally I did a manual `git diff` review to verify all is good. In particular, I had to fix a bunch of "E&xit". The string is probably too short so gettext heuristic failed to consider it likely the same as "E&amp;xit".
2022-08-23 02:56:16 +08:00
msgid "Select &Unused"
msgstr "Вибрати &невикористані"
2018-05-12 15:15:47 +08:00
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:254
2018-05-12 15:15:47 +08:00
msgid "File types to associate with GIMP:"
msgstr "Типи файлів, які будуть пов'язані з GIMP:"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:258
2018-05-12 15:15:47 +08:00
msgid "Removing previous version of GIMP:"
msgstr "Видалення попередньої версії GIMP:"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:262
2018-05-12 15:15:47 +08:00
msgid ""
"GIMP %1 cannot be installed over your currently installed GIMP version, and "
"the automatic uninstall of old version has failed.%n%nPlease remove the "
"previous version of GIMP yourself before installing this version in %2, or "
"choose a Custom install, and select a different installation folder.%n%nThe "
"Setup will now exit."
msgstr ""
"GIMP %1 неможливо встановити поверх поточної встановленої версії GIMP, а "
"видалити стару версію автоматично не вдалося.%n%nВидаліть попередню версію "
"GIMP та додатки перед встановленням цієї версії в %2, або виберіть Особливе "
"встановлення і вкажіть іншу теку для встановлення.%n%nЗараз програма "
"встановлення завершить роботу."
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:266
2018-05-12 15:15:47 +08:00
msgid ""
"GIMP %1 cannot be installed over your currently installed GIMP version, and "
2024-01-16 04:24:04 +08:00
"Setup couldn't determine how to remove the old version automatically."
"%n%nPlease remove the previous version of GIMP and any add-ons yourself "
"before installing this version in %2, or choose a Custom install, and select "
"a different installation folder.%n%nThe Setup will now exit."
2018-05-12 15:15:47 +08:00
msgstr ""
"GIMP %1 неможливо встановити поверх поточної встановленої версії GIMP, а "
"програма встановлення не може визначити, як автоматично видалити стару "
"версію.%n%nВидаліть попередню версію GIMP та додатки перед встановленням "
"цієї версії в %2, або виберіть Особливе встановлення і вкажіть іншу теку для "
"встановлення.%n%nЗараз програма встановлення завершить роботу."
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:270
2018-05-12 15:15:47 +08:00
msgid ""
"Previous GIMP version was removed successfully, but Windows has to be "
"restarted before the Setup can continue.%n%nAfter restarting your computer, "
"Setup will continue next time an administrator logs in."
msgstr ""
"Попередню версію GIMP вилучено успішно, проте перед продовженням "
"встановлення слід перезавантажити Windows.%n%nПісля перезавантаження "
"програма встановлення продовжить роботу при першому вході з "
"адміністративними правами."
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:275
2018-05-12 15:15:47 +08:00
msgid "There was an error restarting the Setup. (%1)"
msgstr "Під час перезапуску встановлення трапилась помилка. (%1)"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:279
2018-07-03 14:59:42 +08:00
msgid "Cleaning up old files..."
msgstr "Вилучаємо застарілі файли…"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:284
2018-05-12 15:15:47 +08:00
msgid "Remember: GIMP is Free Software.%n%nPlease visit"
msgstr "Пам'ятайте: GIMP - вільна програма.%n%nВідвідайте"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:288
2018-05-12 15:15:47 +08:00
msgid "for free updates."
msgstr ", щоб отримати вільні оновлення."
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:292
2018-05-12 15:15:47 +08:00
msgid "Setting up file associations..."
msgstr "Налаштування типів файлів..."
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:295
2018-05-12 15:15:47 +08:00
msgid "Setting up environment for GIMP Python extension..."
msgstr "Налаштування середовища для Python-розширень GIMP..."
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:298
2018-05-12 15:15:47 +08:00
msgid "Setting up MyPaint brushes..."
msgstr "Налаштування пензлів MyPaint..."
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:301
2018-05-12 15:15:47 +08:00
msgid "Setting up GIMP environment..."
msgstr "Налаштування середовища GIMP..."
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:304
2018-05-12 15:15:47 +08:00
msgid "Setting up GIMP configuration for 32-bit plug-in support..."
msgstr "Встановлення конфігурації GIMP для підтримки 32-бітових доповнень..."
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:309
2018-05-12 15:15:47 +08:00
msgid "Launch GIMP"
msgstr "Запустити GIMP"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:314
2018-05-12 15:15:47 +08:00
msgid "Removing add-on"
msgstr "Вилучення додатка"
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:318
2018-05-12 15:15:47 +08:00
msgid "Internal error (%1)."
msgstr "Внутрішня помилка (%1)."
2022-06-26 03:52:58 +08:00
#: build/windows/installer/lang/setup.isl.xml.in:323
2018-05-12 15:15:47 +08:00
msgid ""
"GIMP does not appear to be installed in the selected directory. Continue "
"anyway?"
msgstr "Схоже, GIMP не встановлено у вибраній теці. Все одно продовжити?"