Update to 9.4 beta

al changed/al/anaconda-34.25.4.7-1.el9.inferit
Alexey Lyubimov 6 months ago
parent d150d0eb53
commit 817c406fa0

@ -1 +1 @@
bad3a78526536052137a0a1316476538fef0b299 SOURCES/anaconda-34.25.3.8.tar.bz2
3ae88f13a4c332141559f2430ef8e9c53cf59ce9 SOURCES/anaconda-34.25.4.7.tar.bz2

2
.gitignore vendored

@ -1 +1 @@
SOURCES/anaconda-34.25.3.8.tar.bz2
SOURCES/anaconda-34.25.4.7.tar.bz2

@ -1,7 +1,7 @@
From 2bb2cb74d40b692cd694e43e7e94883beef6d7d3 Mon Sep 17 00:00:00 2001
From: Sergey Cherevko <s.cherevko@msvsphere-os.ru>
Date: Wed, 4 Oct 2023 17:34:35 +0300
Subject: [PATCH 05/13] Set default timezone to Europe/Moscow
From e1fe8a2791c36bb1ff106576986bf75c4705757a Mon Sep 17 00:00:00 2001
From: Alexey Lyubimov <a.lyubimov@softline.com>
Date: Tue, 2 Apr 2024 00:02:27 +0300
Subject: [PATCH] Set default timezone to Europe/Moscow
---
pyanaconda/modules/timezone/installation.py | 4 ++--
@ -10,11 +10,11 @@ Subject: [PATCH 05/13] Set default timezone to Europe/Moscow
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/pyanaconda/modules/timezone/installation.py b/pyanaconda/modules/timezone/installation.py
index d6dfd7b..984646d 100644
index fcd04d1..88ac7b5 100644
--- a/pyanaconda/modules/timezone/installation.py
+++ b/pyanaconda/modules/timezone/installation.py
@@ -63,8 +63,8 @@ class ConfigureTimezoneTask(Task):
if not is_valid_timezone(self._timezone):
@@ -67,8 +67,8 @@ class ConfigureTimezoneTask(Task):
else:
# this should never happen, but for pity's sake
log.warning("Timezone %s set in kickstart is not valid, "
- "falling back to default (America/New_York).", self._timezone)
@ -38,10 +38,10 @@ index ac5318c..42e0cfe 100644
self.geolocation_result_changed = Signal()
diff --git a/pyanaconda/ui/gui/spokes/datetime_spoke.py b/pyanaconda/ui/gui/spokes/datetime_spoke.py
index c99f451..bd6839d 100644
index 117dfe3..f35bab1 100644
--- a/pyanaconda/ui/gui/spokes/datetime_spoke.py
+++ b/pyanaconda/ui/gui/spokes/datetime_spoke.py
@@ -69,7 +69,7 @@ SERVER_WORKING = 3
@@ -70,7 +70,7 @@ SERVER_WORKING = 3
SERVER_USE = 4
SERVER_OBJECT = 5
@ -51,5 +51,5 @@ index c99f451..bd6839d 100644
SPLIT_NUMBER_SUFFIX_RE = re.compile(r'([^0-9]*)([-+])([0-9]+)')
--
2.41.0
2.44.0

@ -1,35 +1,35 @@
From c4ce2dc3afb422937a85a4a2e888b1a3a282672b Mon Sep 17 00:00:00 2001
From: Sergey Cherevko <s.cherevko@msvsphere-os.ru>
Date: Tue, 24 Oct 2023 12:41:45 +0300
Subject: [PATCH 11/11] Add MSVSphere identification support
From ac748f0754c8689d5261e00ecfcba9778388a028 Mon Sep 17 00:00:00 2001
From: Alexey Lyubimov <a.lyubimov@softline.com>
Date: Wed, 3 Apr 2024 13:42:06 +0300
Subject: [PATCH] Add MSVSphere identification support
---
data/liveinst/gnome/fedora-welcome.desktop | 4 +-
data/liveinst/gnome/fedora-welcome.js | 2 +-
po/ru.po | 190 +++++++++++++++---
po/ru.po | 187 +++++++++++++++---
pyanaconda/product.py | 36 +++-
.../ui/gui/spokes/installation_progress.py | 8 +-
pyanaconda/ui/gui/spokes/lib/accordion.py | 2 +-
.../ui/gui/spokes/lib/storage_dialogs.py | 4 +-
pyanaconda/ui/gui/spokes/welcome.py | 21 +-
pyanaconda/vnc.py | 42 +++-
9 files changed, 260 insertions(+), 49 deletions(-)
9 files changed, 258 insertions(+), 48 deletions(-)
diff --git a/data/liveinst/gnome/fedora-welcome.desktop b/data/liveinst/gnome/fedora-welcome.desktop
index 90f5678..abbbff3 100644
index 90f5678..8ca72a7 100644
--- a/data/liveinst/gnome/fedora-welcome.desktop
+++ b/data/liveinst/gnome/fedora-welcome.desktop
@@ -1,6 +1,6 @@
[Desktop Entry]
-Name=Welcome to MSVSphere
-Name[ru]=Добро пожаловать в МСВСфера
+Name=Welcome to MSVSphere ARM 9.3
+Name[ru]=Добро пожаловать в МСВСфера АРМ 9.3
+Name=Welcome to MSVSphere ARM 9.4
+Name[ru]=Добро пожаловать в МСВСфера АРМ 9.4
Exec=/usr/share/anaconda/gnome/fedora-welcome
Terminal=false
Type=Application
diff --git a/data/liveinst/gnome/fedora-welcome.js b/data/liveinst/gnome/fedora-welcome.js
index 4c0a66a..120d718 100755
index 4c0a66a..0a494c8 100755
--- a/data/liveinst/gnome/fedora-welcome.js
+++ b/data/liveinst/gnome/fedora-welcome.js
@@ -62,7 +62,7 @@ const WelcomeWindow = new Lang.Class({
@ -37,81 +37,188 @@ index 4c0a66a..120d718 100755
default_height: 550,
skip_taskbar_hint: true,
- title: _("Welcome to MSVSphere"),
+ title: _("Welcome to MSVSphere ARM 9.3"),
+ title: _("Welcome to MSVSphere ARM 9.4"),
window_position: Gtk.WindowPosition.CENTER });
this.window.connect('key-press-event', Lang.bind(this,
function(w, event) {
diff --git a/po/ru.po b/po/ru.po
index 8340e9e..7eed72b 100644
index 1edb03d..78125d5 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -461,13 +461,13 @@ msgstr ""
@@ -288,12 +288,72 @@ msgstr "Сервера NTP:"
msgid "not configured"
msgstr "не настроено"
#: pyanaconda/core/constants.py:157
+#: pyanaconda/vnc.py:81
+#, python-format
+msgid "MSVSphere %(productVersion)s Server installation"
+msgstr "Установка МСВСфера %(productVersion)s Сервер"
+
+#: pyanaconda/vnc.py:83
+#, python-format
+msgid "MSVSphere %(productVersion)s ARM installation"
+msgstr "Установка МСВСфера %(productVersion)s АРМ"
+
+#: pyanaconda/vnc.py:85
+#, python-format
+msgid "MSVSphere %(productVersion)s Cinnamon installation"
+msgstr "Установка МСВСфера %(productVersion)s Cinnamon"
+
+#: pyanaconda/vnc.py:87
+#, python-format
+msgid "MSVSphere %(productVersion)s KDE installation"
+msgstr "Установка МСВСфера %(productVersion)s KDE"
+
+#: pyanaconda/vnc.py:89
+#, python-format
+msgid "MSVSphere %(productVersion)s XFCE installation"
+msgstr "Установка МСВСфера %(productVersion)s XFCE"
+
+#: pyanaconda/vnc.py:91
+#, python-format
+msgid "MSVSphere %(productVersion)s OS installation"
+msgstr "Установка МСВСфера %(productVersion)s ОС"
+
#: pyanaconda/vnc.py:79
#, python-format
msgid "%(productName)s %(productVersion)s installation"
msgstr "Установка %(productName)s %(productVersion)s"
-#: pyanaconda/vnc.py:148
+#: pyanaconda/vnc.py:165
+#, python-format
+msgid "MSVSphere %(productVersion)s Server installation on host %(name)s"
+msgstr "Установка МСВСфера %(productVersion)s Сервер на %(name)s"
+
+#: pyanaconda/vnc.py:168
+#, python-format
+msgid "MSVSphere %(productVersion)s ARM installation on host %(name)s"
+msgstr "Установка МСВСфера %(productVersion)s АРМ на %(name)s"
+
+#: pyanaconda/vnc.py:171
+#, python-format
+msgid "MSVSphere %(productVersion)s Cinnamon installation on host %(name)s"
+msgstr "Установка МСВСфера %(productVersion)s Cinnamon на %(name)s"
+
+#: pyanaconda/vnc.py:174
+#, python-format
+msgid "MSVSphere %(productVersion)s KDE installation on host %(name)s"
+msgstr "Установка МСВСфера %(productVersion)s KDE на %(name)s"
+
+#: pyanaconda/vnc.py:177
+#, python-format
+msgid "MSVSphere %(productVersion)s XFCE installation on host %(name)s"
+msgstr "Установка МСВСфера %(productVersion)s XFCE на %(name)s"
+
+#: pyanaconda/vnc.py:180
+#, python-format
+msgid "MSVSphere %(productVersion)s OS installation on host %(name)s"
+msgstr "Установка МСВСфера %(productVersion)s ОС на %(name)s"
+
+#: pyanaconda/vnc.py:183
#, python-format
msgid "%(productName)s %(productVersion)s installation on host %(name)s"
msgstr "Установка %(productName)s %(productVersion)s на %(name)s"
@@ -748,17 +808,16 @@ msgstr ""
"Проверьте раздел удаленных функциональных возможностей в примечаниях к "
"выпуску."
-#: pyanaconda/core/constants.py:157
+#: pyanaconda/core/constants.py:163
msgid ""
-"This hardware (or a combination thereof) is not supported by Red Hat. For "
-"more information on supported hardware, please refer to http://www.redhat."
-"com/hardware."
+"This hardware (or a combination thereof) is not supported by MSVSphere. "
+"For more information on supported hardware, please refer to "
+"https://msvsphere-os.ru."
+"This hardware (or a combination thereof) is not supported by MSVSphere. For more information "
+"on supported hardware, please refer to https://msvsphere-os.ru."
msgstr ""
-"Это аппаратное обеспечение (или их комбинация) не поддерживается Red Hat. "
-"Для получения дополнительной информации о поддерживаемом оборудовании см. "
+"Это аппаратное обеспечение (или их комбинация) не поддерживается МСВСфера. "
"Для получения дополнительной информации о поддерживаемом оборудовании см. "
-"http://www.redhat.com/hardware."
+"Это аппаратное обеспечение (или их комбинация) не поддерживается "
+"МСВСфера ОС. Для получения дополнительной информации о поддерживаемом "
+"оборудовании см. https://msvsphere-os.ru."
+"https://msvsphere-os.ru."
#: pyanaconda/core/constants.py:163
-#: pyanaconda/core/constants.py:163
+#: pyanaconda/core/constants.py:169
msgid ""
@@ -932,6 +932,36 @@ msgstr "Заполните отмеченные секции, прежде че
msgid "What language would you like to use during the installation process?"
msgstr "Какой язык вы хотите использовать в процессе установки?"
"No disks detected. Please shut down the computer, connect at least one "
"disk, and restart to complete installation."
@@ -1507,7 +1566,7 @@ msgstr "Не удалось добавить устройство."
#: pyanaconda/modules/storage/partitioning/interactive/utils.py:213
#, python-brace-format
msgid "New {name} {version} Installation"
-msgstr "Новая установка {name} {version}"
+msgstr "Новая установка МСВСфера {version} ОС"
#: pyanaconda/modules/storage/partitioning/interactive/utils.py:275
msgid "Cannot set label on file system."
@@ -1937,7 +1996,7 @@ msgid ""
"recommended for a normal %(productName)s install."
msgstr ""
"Размер раздела %(mount)s меньше %(size)s, что меньше рекомендованного "
-"размера для обычной установки %(productName)s."
+"размера для обычной установки МСВСфера ОС."
+#: pyanaconda/ui/gui/spokes/welcome.py:278
#: pyanaconda/modules/storage/checker/utils.py:131
#, python-format
@@ -3282,6 +3341,36 @@ msgstr "Форматирование устройств DASD"
msgid "Probing storage"
msgstr "Проверка устройств хранения"
+#: pyanaconda/product.py:90
+#, python-format
+msgid "WELCOME TO MSVSphere %(version)s Server"
+msgstr "ДОБРО ПОЖАЛОВАТЬ В МСВСфера %(version)s Сервер"
+msgid "MSVSphere %(productVersion)s Server INSTALLATION"
+msgstr "УСТАНОВКА МСВСфера %(productVersion)s Сервер"
+
+#: pyanaconda/ui/gui/spokes/welcome.py:280
+#: pyanaconda/product.py:92
+#, python-format
+msgid "WELCOME TO MSVSphere %(version)s ARM"
+msgstr "ДОБРО ПОЖАЛОВАТЬ В МСВСфера %(version)s АРМ"
+msgid "MSVSphere %(productVersion)s ARM INSTALLATION"
+msgstr "УСТАНОВКА МСВСфера %(productVersion)s АРМ"
+
+#: pyanaconda/ui/gui/spokes/welcome.py:282
+#: pyanaconda/product.py:94
+#, python-format
+msgid "WELCOME TO MSVSphere %(version)s Cinnamon"
+msgstr "ДОБРО ПОЖАЛОВАТЬ В МСВСфера %(version)s Cinnamon"
+msgid "MSVSphere %(productVersion)s Cinnamon INSTALLATION"
+msgstr "УСТАНОВКА МСВСфера %(productVersion)s Cinnamon"
+
+#: pyanaconda/ui/gui/spokes/welcome.py:284
+#: pyanaconda/product.py:96
+#, python-format
+msgid "WELCOME TO MSVSphere %(version)s KDE"
+msgstr "ДОБРО ПОЖАЛОВАТЬ В МСВСфера %(version)s KDE"
+msgid "MSVSphere %(productVersion)s KDE INSTALLATION"
+msgstr "УСТАНОВКА МСВСфера %(productVersion)s KDE"
+
+#: pyanaconda/ui/gui/spokes/welcome.py:286
+#: pyanaconda/product.py:98
+#, python-format
+msgid "WELCOME TO MSVSphere %(version)s XFCE"
+msgstr "ДОБРО ПОЖАЛОВАТЬ В МСВСфера %(version)s XFCE"
+msgid "MSVSphere %(productVersion)s XFCE INSTALLATION"
+msgstr "УСТАНОВКА МСВСфера %(productVersion)s XFCE"
+
+#: pyanaconda/ui/gui/spokes/welcome.py:288
+#: pyanaconda/product.py:100
+#, python-format
+msgid "WELCOME TO MSVSphere %(version)s OS"
+msgstr "ДОБРО ПОЖАЛОВАТЬ В МСВСфера %(version)s ОС"
+msgid "MSVSphere %(productVersion)s OS INSTALLATION"
+msgstr "УСТАНОВКА МСВСфера %(productVersion)s ОС"
+
#: pyanaconda/ui/gui/spokes/welcome.py:209
#, python-format
msgid "WELCOME TO %(name)s %(version)s."
@@ -1834,7 +1864,7 @@ msgid ""
"you'll be able to view their details here."
#: pyanaconda/ui/lib/space.py:103
msgid ""
"Not enough space in file systems for the current software selection. An "
@@ -3455,7 +3544,7 @@ msgid ""
"You haven't created any mount points for your %(product)s %(version)s "
"installation yet. You can:"
msgstr ""
"Здесь будет показана информация о созданных точках монтирования для "
-"установки %(name)s %(version)s."
+"установки МСВСфера %(version)s OC."
-"Вы еще не создали точки монтирования для установки %(product)s %(version)s. "
+"Вы еще не создали точки монтирования для установки МСВСфера %(version)s OC. "
"Вы можете:"
#: pyanaconda/ui/gui/spokes/custom_storage.py:615
#: pyanaconda/ui/gui/spokes/advstorage/nvdimm.glade:178
@@ -1931,7 +1961,7 @@ msgid ""
#: pyanaconda/ui/gui/spokes/lib/accordion.py:479
@@ -3487,6 +3576,10 @@ msgstr ""
"_Автоматически созданные точки монтирования могут быть зашифрованы по "
"умолчанию:"
+#: pyanaconda/ui/gui/spokes/lib/accordion.py:547
+msgid "Encrypt my data."
+msgstr "Зашифровать данные."
+
#: pyanaconda/ui/gui/spokes/lib/storage_dialogs.py:69
msgid "Please wait... software metadata still loading."
msgstr "Подождите… Всё ещё загружаются метаданные ПО."
@@ -3498,7 +3591,7 @@ msgid ""
"of available space, including <b>%(software)s</b> for software and "
"<b>%(swap)s</b> for swap space."
msgstr ""
@ -120,7 +227,7 @@ index 8340e9e..7eed72b 100644
"<b>%(software)s</b> для программ и <b>%(swap)s</b> для подкачки."
#: pyanaconda/ui/gui/spokes/lib/storage_dialogs.py:81
@@ -1942,7 +1972,7 @@ msgid ""
@@ -3509,7 +3602,7 @@ msgid ""
"<b>%(software)s</b> for software and <b>%(swap)s</b> for swap space."
msgstr ""
"Для <a href=\"\" title=\"%(tooltip)s\">программного обеспечения "
@ -129,7 +236,7 @@ index 8340e9e..7eed72b 100644
"<b>%(software)s</b> для программ и <b>%(swap)s</b> для подкачки."
#: pyanaconda/ui/gui/spokes/lib/storage_dialogs.py:132
@@ -1953,11 +1983,11 @@ msgstr "%s На выбранных дисках доступно:"
@@ -3520,11 +3613,11 @@ msgstr "%s На выбранных дисках доступно:"
#: pyanaconda/ui/gui/spokes/lib/storage_dialogs.py:142
#, python-format
msgid ""
@ -143,7 +250,7 @@ index 8340e9e..7eed72b 100644
"существующие разделы с помощью помощника или самостоятельно выбрать размеры "
"разделов в окне настройки разделов."
@@ -1967,7 +1997,7 @@ msgid ""
@@ -3534,7 +3627,7 @@ msgid ""
" You don't have enough space available to install <b>%(product)s</b>, even "
"if you used all of the free space available on the selected disks."
msgstr ""
@ -152,7 +259,7 @@ index 8340e9e..7eed72b 100644
"использовать все свободное место на выбранных дисках."
#: pyanaconda/ui/gui/spokes/lib/storage_dialogs.py:178
@@ -1978,10 +2008,10 @@ msgid ""
@@ -3545,10 +3638,10 @@ msgid ""
"could add more disks for additional space, modify your software selection to "
"install a smaller version of <b>%(productName)s</b>, or quit the installer."
msgstr ""
@ -164,28 +271,54 @@ index 8340e9e..7eed72b 100644
+"обеспечения, чтобы установить меньший вариант <b>МСВСфера ОС</b>, или "
"покинуть программу установки."
#: pyanaconda/ui/gui/spokes/lib/network_secret_agent.py:180
@@ -2041,7 +2071,7 @@ msgid ""
"You haven't created any mount points for your %(product)s %(version)s "
"installation yet. You can:"
#: pyanaconda/ui/gui/spokes/lib/subscription.py:66
@@ -4096,7 +4189,7 @@ msgid ""
"you'll be able to view their details here."
msgstr ""
-"Вы еще не создали точки монтирования для установки %(product)s %(version)s. "
+"Вы еще не создали точки монтирования для установки МСВСфера %(version)s OC. "
"Вы можете:"
"Здесь будет показана информация о созданных точках монтирования для "
-"установки %(name)s %(version)s."
+"установки МСВСфера %(version)s OC."
#: pyanaconda/ui/gui/spokes/lib/accordion.py:479
@@ -2073,6 +2103,10 @@ msgstr ""
"_Автоматически созданные точки монтирования могут быть зашифрованы по "
"умолчанию:"
#: pyanaconda/ui/gui/spokes/custom_storage.py:615
#: pyanaconda/ui/gui/spokes/advstorage/nvdimm.glade:178
@@ -4431,6 +4524,36 @@ msgstr "Рабочий сервер NTP не настроен"
msgid "What language would you like to use during the installation process?"
msgstr "Какой язык вы хотите использовать в процессе установки?"
+#: pyanaconda/ui/gui/spokes/lib/accordion.py:547
+msgid "Encrypt my data."
+msgstr "Зашифровать данные."
+#: pyanaconda/ui/gui/spokes/welcome.py:213
+#, python-format
+msgid "WELCOME TO MSVSphere %(version)s Server"
+msgstr "ДОБРО ПОЖАЛОВАТЬ В МСВСфера %(version)s Сервер"
+
#: pyanaconda/ui/gui/spokes/lib/subscription.py:66
msgid "Other ({})"
msgstr "Другой ({})"
@@ -2370,8 +2404,8 @@ msgid ""
+#: pyanaconda/ui/gui/spokes/welcome.py:215
+#, python-format
+msgid "WELCOME TO MSVSphere %(version)s ARM"
+msgstr "ДОБРО ПОЖАЛОВАТЬ В МСВСфера %(version)s АРМ"
+
+#: pyanaconda/ui/gui/spokes/welcome.py:217
+#, python-format
+msgid "WELCOME TO MSVSphere %(version)s Cinnamon"
+msgstr "ДОБРО ПОЖАЛОВАТЬ В МСВСфера %(version)s Cinnamon"
+
+#: pyanaconda/ui/gui/spokes/welcome.py:219
+#, python-format
+msgid "WELCOME TO MSVSphere %(version)s KDE"
+msgstr "ДОБРО ПОЖАЛОВАТЬ В МСВСфера %(version)s KDE"
+
+#: pyanaconda/ui/gui/spokes/welcome.py:221
+#, python-format
+msgid "WELCOME TO MSVSphere %(version)s XFCE"
+msgstr "ДОБРО ПОЖАЛОВАТЬ В МСВСфера %(version)s XFCE"
+
+#: pyanaconda/ui/gui/spokes/welcome.py:223
+#, python-format
+msgid "WELCOME TO MSVSphere %(version)s OS"
+msgstr "ДОБРО ПОЖАЛОВАТЬ В МСВСфера %(version)s ОС"
+
#: pyanaconda/ui/gui/spokes/welcome.py:209
#, python-format
msgid "WELCOME TO %(name)s %(version)s."
@@ -4482,8 +4605,8 @@ msgid ""
"%s is now successfully installed and ready for you to use!\n"
"Go ahead and reboot your system to start using it!"
msgstr ""
@ -196,7 +329,7 @@ index 8340e9e..7eed72b 100644
#: pyanaconda/ui/gui/spokes/installation_progress.py:163
#, python-format
@@ -2379,8 +2413,8 @@ msgid ""
@@ -4491,8 +4614,8 @@ msgid ""
"%s is now successfully installed and ready for you to use!\n"
"Go ahead and quit the application to start using it!"
msgstr ""
@ -205,148 +338,16 @@ index 8340e9e..7eed72b 100644
+"МСВСфера ОС установлена и готова к работе.\n"
+"Необходимо выйти из приложения чтобы приступить к использованию."
#: pyanaconda/ui/gui/__init__.py:365 widgets/src/BaseWindow.c:151
msgid "Help!"
@@ -3183,7 +3217,37 @@ msgstr "Форматирование устройств DASD"
msgid "Probing storage"
msgstr "Проверка устройств хранения"
-#: pyanaconda/product.py:69
+#: pyanaconda/product.py:83
+#, python-format
+msgid "MSVSphere %(productVersion)s Server INSTALLATION"
+msgstr "УСТАНОВКА МСВСфера %(productVersion)s Сервер"
+
+#: pyanaconda/product.py:85
+#, python-format
+msgid "MSVSphere %(productVersion)s ARM INSTALLATION"
+msgstr "УСТАНОВКА МСВСфера %(productVersion)s АРМ"
+
+#: pyanaconda/product.py:87
+#, python-format
+msgid "MSVSphere %(productVersion)s Cinnamon INSTALLATION"
+msgstr "УСТАНОВКА МСВСфера %(productVersion)s Cinnamon"
+
+#: pyanaconda/product.py:89
+#, python-format
+msgid "MSVSphere %(productVersion)s KDE INSTALLATION"
+msgstr "УСТАНОВКА МСВСфера %(productVersion)s KDE"
+
+#: pyanaconda/product.py:91
+#, python-format
+msgid "MSVSphere %(productVersion)s XFCE INSTALLATION"
+msgstr "УСТАНОВКА МСВСфера %(productVersion)s XFCE"
+
+#: pyanaconda/product.py:93
+#, python-format
+msgid "MSVSphere %(productVersion)s OS INSTALLATION"
+msgstr "УСТАНОВКА МСВСфера %(productVersion)s ОС"
+
+#: pyanaconda/product.py:95
#, python-format
msgid "%(productName)s %(productVersion)s INSTALLATION"
msgstr "УСТАНОВКА %(productName)s %(productVersion)s"
@@ -3422,7 +3486,7 @@ msgid ""
"recommended for a normal %(productName)s install."
msgstr ""
"Размер раздела %(mount)s меньше %(size)s, что меньше рекомендованного "
-"размера для обычной установки %(productName)s."
+"размера для обычной установки МСВСфера ОС."
#: pyanaconda/modules/storage/checker/utils.py:131
#, python-format
@@ -3839,7 +3903,7 @@ msgstr "Не удалось сменить устройство."
#: pyanaconda/modules/storage/partitioning/interactive/utils.py:213
#, python-brace-format
msgid "New {name} {version} Installation"
-msgstr "Новая установка {name} {version}"
+msgstr "Новая установка МСВСфера {version} ОС"
#: pyanaconda/modules/storage/partitioning/interactive/utils.py:275
msgid "Cannot set label on file system."
@@ -4452,12 +4516,72 @@ msgstr "Для установки необходимо выбрать хотя
msgid "Invalid time source."
msgstr "Неверный источник времени."
-#: pyanaconda/vnc.py:79
+#: pyanaconda/vnc.py:81
+#, python-format
+msgid "MSVSphere %(productVersion)s Server installation"
+msgstr "Установка МСВСфера %(productVersion)s Сервер"
+
+#: pyanaconda/vnc.py:83
+#, python-format
+msgid "MSVSphere %(productVersion)s ARM installation"
+msgstr "Установка МСВСфера %(productVersion)s АРМ"
+
+#: pyanaconda/vnc.py:85
+#, python-format
+msgid "MSVSphere %(productVersion)s Cinnamon installation"
+msgstr "Установка МСВСфера %(productVersion)s Cinnamon"
+
+#: pyanaconda/vnc.py:87
+#, python-format
+msgid "MSVSphere %(productVersion)s KDE installation"
+msgstr "Установка МСВСфера %(productVersion)s KDE"
+
+#: pyanaconda/vnc.py:89
+#, python-format
+msgid "MSVSphere %(productVersion)s XFCE installation"
+msgstr "Установка МСВСфера %(productVersion)s XFCE"
+
+#: pyanaconda/vnc.py:91
+#, python-format
+msgid "MSVSphere %(productVersion)s OS installation"
+msgstr "Установка МСВСфера %(productVersion)s ОС"
+
+#: pyanaconda/vnc.py:93
#, python-format
msgid "%(productName)s %(productVersion)s installation"
msgstr "Установка %(productName)s %(productVersion)s"
-#: pyanaconda/vnc.py:148
+#: pyanaconda/vnc.py:159
+#, python-format
+msgid "MSVSphere %(productVersion)s Server installation on host %(name)s"
+msgstr "Установка МСВСфера %(productVersion)s Сервер на %(name)s"
+
+#: pyanaconda/vnc.py:162
+#, python-format
+msgid "MSVSphere %(productVersion)s ARM installation on host %(name)s"
+msgstr "Установка МСВСфера %(productVersion)s АРМ на %(name)s"
+
+#: pyanaconda/vnc.py:162
+#, python-format
+msgid "MSVSphere %(productVersion)s Cinnamon installation on host %(name)s"
+msgstr "Установка МСВСфера %(productVersion)s Cinnamon на %(name)s"
+
+#: pyanaconda/vnc.py:162
+#, python-format
+msgid "MSVSphere %(productVersion)s KDE installation on host %(name)s"
+msgstr "Установка МСВСфера %(productVersion)s KDE на %(name)s"
+
+#: pyanaconda/vnc.py:162
+#, python-format
+msgid "MSVSphere %(productVersion)s XFCE installation on host %(name)s"
+msgstr "Установка МСВСфера %(productVersion)s XFCE на %(name)s"
+
+#: pyanaconda/vnc.py:165
+#, python-format
+msgid "MSVSphere %(productVersion)s OS installation on host %(name)s"
+msgstr "Установка МСВСфера %(productVersion)s ОС на %(name)s"
+
+#: pyanaconda/vnc.py:168
#, python-format
msgid "%(productName)s %(productVersion)s installation on host %(name)s"
msgstr "Установка %(productName)s %(productVersion)s на %(name)s"
@@ -7619,22 +7743,22 @@ msgstr "Настройка Liveinst"
#: pyanaconda/ui/gui/spokes/installation_source.py:73
msgid "Setting up installation source..."
@@ -7614,22 +7737,22 @@ msgstr "Настройка Liveinst"
#: data/liveinst/gnome/fedora-welcome.desktop:3
#: data/liveinst/gnome/fedora-welcome.js:65
-msgid "Welcome to Fedora"
-msgstr "Добро пожаловать в Fedora"
+msgid "Welcome to MSVSphere ARM 9.3"
+msgstr "Добро пожаловать в МСВСфера АРМ 9.3"
+msgid "Welcome to MSVSphere ARM 9.4"
+msgstr "Добро пожаловать в МСВСфера АРМ 9.4"
#: data/liveinst/gnome/fedora-welcome.js:94
-msgid "Try Fedora"
@ -580,5 +581,5 @@ index 5fadcde..c349de8 100644
'productVersion': product.productVersion,
'name': host}
--
2.41.0
2.44.0

File diff suppressed because it is too large Load Diff

@ -1,35 +1,44 @@
From 0bec91079152ba03d58fe8657154bd45875acdfa Mon Sep 17 00:00:00 2001
From: tigro <arkadiy.sheyn@softline.com>
Date: Fri, 3 Nov 2023 16:24:15 +0300
Subject: [PATCH 14/14] Make branding free Russian translation
From 187b7462d8ef7f2997f0f3f3e75ac01a5a54c471 Mon Sep 17 00:00:00 2001
From: Alexey Lyubimov <a.lyubimov@softline.com>
Date: Wed, 3 Apr 2024 21:49:53 +0300
Subject: [PATCH] Make branding free Russian translation
---
po/ru.po | 34 +++++++++++++++++-----------------
1 file changed, 17 insertions(+), 17 deletions(-)
diff --git a/po/ru.po b/po/ru.po
index 97093b4..1fc0202 100644
index 6092116..7bfbf61 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -466,7 +466,7 @@ msgid ""
@@ -813,7 +813,7 @@ msgid ""
"This hardware (or a combination thereof) is not supported by MSVSphere. For more information "
"on supported hardware, please refer to https://msvsphere-os.ru."
msgstr ""
-"Это аппаратное обеспечение (или их комбинация) не поддерживается МСВСфера. "
+"Это аппаратное обеспечение (или их комбинация) не поддерживается операционной системой. "
"Для получения дополнительной информации о поддерживаемом оборудовании см. "
"https://msvsphere-os.ru."
@@ -1996,7 +1996,7 @@ msgid ""
"recommended for a normal %(productName)s install."
msgstr ""
"Это аппаратное обеспечение (или их комбинация) не поддерживается "
-"МСВСфера ОС. Для получения дополнительной информации о поддерживаемом "
+"операционной системой. Для получения дополнительной информации о поддерживаемом "
"оборудовании см. https://msvsphere-os.ru."
"Размер раздела %(mount)s меньше %(size)s, что меньше рекомендованного "
-"размера для обычной установки МСВСфера ОС."
+"размера для обычной установки операционной системы."
#: pyanaconda/core/constants.py:163
@@ -1864,7 +1864,7 @@ msgid ""
"you'll be able to view their details here."
#: pyanaconda/modules/storage/checker/utils.py:131
#, python-format
@@ -3544,7 +3544,7 @@ msgid ""
"You haven't created any mount points for your %(product)s %(version)s "
"installation yet. You can:"
msgstr ""
"Здесь будет показана информация о созданных точках монтирования для "
-"установки МСВСфера %(version)s OC."
+"установки операционной системы."
-"Вы еще не создали точки монтирования для установки МСВСфера %(version)s OC. "
+"Вы еще не создали точки монтирования для установки операционной системы. "
"Вы можете:"
#: pyanaconda/ui/gui/spokes/custom_storage.py:615
#: pyanaconda/ui/gui/spokes/advstorage/nvdimm.glade:178
@@ -1961,7 +1961,7 @@ msgid ""
#: pyanaconda/ui/gui/spokes/lib/accordion.py:479
@@ -3591,7 +3591,7 @@ msgid ""
"of available space, including <b>%(software)s</b> for software and "
"<b>%(swap)s</b> for swap space."
msgstr ""
@ -38,7 +47,7 @@ index 97093b4..1fc0202 100644
"<b>%(software)s</b> для программ и <b>%(swap)s</b> для подкачки."
#: pyanaconda/ui/gui/spokes/lib/storage_dialogs.py:81
@@ -1971,8 +1971,8 @@ msgid ""
@@ -3601,8 +3601,8 @@ msgid ""
"selection</a> requires <b>%(total)s</b> of available space, including "
"<b>%(software)s</b> for software and <b>%(swap)s</b> for swap space."
msgstr ""
@ -49,7 +58,7 @@ index 97093b4..1fc0202 100644
"<b>%(software)s</b> для программ и <b>%(swap)s</b> для подкачки."
#: pyanaconda/ui/gui/spokes/lib/storage_dialogs.py:132
@@ -1987,7 +1987,7 @@ msgid ""
@@ -3617,7 +3617,7 @@ msgid ""
"or remove existing partitions via our guided reclaim space tool, or you can "
"adjust your partitions on your own in the custom partitioning interface."
msgstr ""
@ -58,7 +67,7 @@ index 97093b4..1fc0202 100644
"существующие разделы с помощью помощника или самостоятельно выбрать размеры "
"разделов в окне настройки разделов."
@@ -1997,7 +1997,7 @@ msgid ""
@@ -3627,7 +3627,7 @@ msgid ""
" You don't have enough space available to install <b>%(product)s</b>, even "
"if you used all of the free space available on the selected disks."
msgstr ""
@ -67,7 +76,7 @@ index 97093b4..1fc0202 100644
"использовать все свободное место на выбранных дисках."
#: pyanaconda/ui/gui/spokes/lib/storage_dialogs.py:178
@@ -2008,10 +2008,10 @@ msgid ""
@@ -3638,10 +3638,10 @@ msgid ""
"could add more disks for additional space, modify your software selection to "
"install a smaller version of <b>%(productName)s</b>, or quit the installer."
msgstr ""
@ -79,17 +88,17 @@ index 97093b4..1fc0202 100644
+"обеспечения, чтобы уменьшить размер <b>системы</b>, или "
"покинуть программу установки."
#: pyanaconda/ui/gui/spokes/lib/network_secret_agent.py:180
@@ -2071,7 +2071,7 @@ msgid ""
"You haven't created any mount points for your %(product)s %(version)s "
"installation yet. You can:"
#: pyanaconda/ui/gui/spokes/lib/subscription.py:66
@@ -4189,7 +4189,7 @@ msgid ""
"you'll be able to view their details here."
msgstr ""
-"Вы еще не создали точки монтирования для установки МСВСфера %(version)s OC. "
+"Вы еще не создали точки монтирования для установки операционной системы. "
"Вы можете:"
"Здесь будет показана информация о созданных точках монтирования для "
-"установки МСВСфера %(version)s OC."
+"установки операционной системы."
#: pyanaconda/ui/gui/spokes/lib/accordion.py:479
@@ -2401,20 +2401,20 @@ msgstr "_Завершить установку"
#: pyanaconda/ui/gui/spokes/custom_storage.py:615
#: pyanaconda/ui/gui/spokes/advstorage/nvdimm.glade:178
@@ -4602,20 +4602,20 @@ msgstr "_Завершить установку"
#: pyanaconda/ui/gui/spokes/installation_progress.py:158
#, python-format
msgid ""
@ -114,17 +123,8 @@ index 97093b4..1fc0202 100644
+"Операционная система установлена и готова к работе.\n"
+"Необходимо выйти из приложения, чтобы приступить к использованию."
#: pyanaconda/ui/gui/__init__.py:365 widgets/src/BaseWindow.c:151
msgid "Help!"
@@ -3486,7 +3486,7 @@ msgid ""
"recommended for a normal %(productName)s install."
msgstr ""
"Размер раздела %(mount)s меньше %(size)s, что меньше рекомендованного "
-"размера для обычной установки МСВСфера ОС."
+"размера для обычной установки операционной системы."
#: pyanaconda/modules/storage/checker/utils.py:131
#, python-format
#: pyanaconda/ui/gui/spokes/installation_source.py:73
msgid "Setting up installation source..."
--
2.41.0
2.44.0

@ -1,7 +1,7 @@
From 667ff8db6e0a78ee05cf41b768da8ec8fbc23858 Mon Sep 17 00:00:00 2001
From: tigro <tigro@msvsphere-os.ru>
Date: Mon, 25 Dec 2023 14:51:32 +0300
Subject: [PATCH 15/15] Drop sphere url
From 5cc07ceaceb5474881371819c5d5d03c775250d9 Mon Sep 17 00:00:00 2001
From: Alexey Lyubimov <a.lyubimov@softline.com>
Date: Wed, 3 Apr 2024 22:19:02 +0300
Subject: [PATCH] Drop sphere url
---
po/ru.po | 16 ++++++++--------
@ -9,24 +9,24 @@ Subject: [PATCH 15/15] Drop sphere url
2 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/po/ru.po b/po/ru.po
index f9ad24e..4619491 100644
index 7bfbf61..f39429a 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -463,11 +463,11 @@ msgstr ""
@@ -811,11 +811,11 @@ msgstr ""
#: pyanaconda/core/constants.py:163
msgid ""
"This hardware (or a combination thereof) is not supported by MSVSphere. "
"For more information on supported hardware, please refer to "
-"https://msvsphere-os.ru."
+"documentation."
"This hardware (or a combination thereof) is not supported by MSVSphere. For more information "
-"on supported hardware, please refer to https://msvsphere-os.ru."
+"on supported hardware, please refer to documentation."
msgstr ""
"Это аппаратное обеспечение (или их комбинация) не поддерживается "
"операционной системой. Для получения дополнительной информации о поддерживаемом "
-"оборудовании см. https://msvsphere-os.ru."
+"оборудовании см. документацию."
"Это аппаратное обеспечение (или их комбинация) не поддерживается операционной системой. "
"Для получения дополнительной информации о поддерживаемом оборудовании см. "
-"https://msvsphere-os.ru."
+"документацию."
#: pyanaconda/core/constants.py:163
#: pyanaconda/core/constants.py:169
msgid ""
@@ -486,29 +486,29 @@ msgid ""
@@ -834,29 +834,29 @@ msgid ""
"Simultaneous Multithreading (SMT) technology can provide performance "
"improvements for certain workloads, but introduces several publicly "
"disclosed security issues. You have the option of disabling SMT, which may "
@ -63,7 +63,7 @@ index f9ad24e..4619491 100644
#: pyanaconda/core/constants.py:199
diff --git a/pyanaconda/core/constants.py b/pyanaconda/core/constants.py
index b00c276..1b6aee3 100644
index 74db208..78577cb 100644
--- a/pyanaconda/core/constants.py
+++ b/pyanaconda/core/constants.py
@@ -161,7 +161,7 @@ WARNING_SUPPORT_REMOVED = N_(
@ -94,5 +94,5 @@ index b00c276..1b6aee3 100644
)
--
2.43.0
2.44.0

@ -1,7 +1,7 @@
Summary: Graphical system installer
Name: anaconda
Version: 34.25.3.8
Release: 1%{?dist}.inferit.12
Version: 34.25.4.7
Release: 1%{?dist}.inferit
License: GPLv2+ and MIT
URL: http://fedoraproject.org/wiki/Anaconda
@ -52,13 +52,14 @@ Patch1015: 0015-Disable-sphere-url.patch
%define libxklavierver 5.4
%define mehver 0.23-1
%define nmver 1.0
%define pykickstartver 3.32.10-1
%define pykickstartver 3.32.11-1
%define pypartedver 2.5-2
%define pythonblivetver 1:3.6.0-4
%define pythonblivetver 1:3.6.0-13
%define rpmver 4.10.0
%define simplelinever 1.8.3-1
%define subscriptionmanagerver 1.29.31
%define utillinuxver 2.15.1
%define rpmostreever 2023.2
BuildRequires: audit-libs-devel
BuildRequires: libtool
@ -117,6 +118,11 @@ Requires: python3-systemd
Requires: python3-productmd
Requires: python3-dasbus >= %{dasbusver}
Requires: flatpak-libs
# dependencies for rpm-ostree payload module
Requires: rpm-ostree >= %{rpmostreever}
Requires: ostree
# used by ostree command for native containers
Requires: skopeo
%if %{defined rhel} && %{undefined centos}
Requires: subscription-manager >= %{subscriptionmanagerver}
%endif
@ -431,12 +437,97 @@ desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{buildroot}%{_d
%{_prefix}/libexec/anaconda/dd_*
%changelog
* Wed Apr 03 2024 Alexey Lyubimov <a.lyubimov@msvsphere-os.ru> - 34.25.4.7-1.inferit
- Rebuilt for MSVSphere 9.4 beta
* Fri Feb 16 2024 Jiri Konecny <jkonecny@redhat.com> - 34.25.4.7-1
- Lower log file permission in /tmp (jkonecny)
Resolves: RHEL-23345
- Add utility function to set file mode (jkonecny)
Related: RHEL-23345
* Wed Feb 07 2024 Martin Kolman <mkolman@redhat.com> - 34.25.4.6-1
- Disable bug reporting to Bugzilla from anaconda (kkoukiou)
Resolves: RHEL-24419
- Fixed file-write operation to a public directory (ataf)
Resolves: RHEL-23345
* Mon Feb 05 2024 Arkady L. Shane <tigro@msvsphere-os.ru> - 34.25.3.8-1.inferit.12
- INF-1026: Added Version to Live Welcome alert
* Thu Feb 01 2024 Martin Kolman <mkolman@redhat.com> - 34.25.4.5-1
- bootupd: Use --write-uuid (walters)
Related: RHEL-17205
- bootloader: Detect bootupd and skip regular install (vslavik)
Related: RHEL-17205
- ostree: Use bootupd if installed by payload (vslavik)
Resolves: RHEL-17205
- bootloader: Create an installation task for collecting kernel arguments
(vponcova)
Related: RHEL-17205
- bootloader: Add the collect_arguments method (vponcova)
Related: RHEL-17205
- bootloader: Remove the install_boot_loader function (vponcova)
Related: RHEL-17205
- Apply the bootloader options before the installation (vponcova)
Related: RHEL-17205
* Mon Jan 29 2024 Martin Kolman <mkolman@redhat.com> - 34.25.4.4-1
- rpm-ostree: Setup readonly sysroot for ostree & rw karg (tim)
Related: RHEL-2250
* Wed Jan 24 2024 Martin Kolman <mkolman@redhat.com> - 34.25.4.3-1
- Fix missing emit of zfcp kickstart statements (maier)
Related: RHEL-11384
- DeviceTreeViewer: Add path-id attribute to zfcp-attached SCSI disks (maier)
Related: RHEL-11384
- Fix missing WWID values for multipath devices in advanced storage UI
(#2046654) (maier)
Resolves: RHEL-11384
- rescue: Don't allow to mount systems without a root device (vponcova)
Resolves: RHEL-14696
- Do not crash on default None values of ostreecontainer command (rvykydal)
Related: RHEL-2250
- Fix wrong dracut timeout message (jkonecny)
Resolves: RHEL-5638
- Move rpm-ostree deps from Lorax to Anaconda (#2125655) (jkonecny)
Related: RHEL-2250
- Implement needs_network for rpm_ostree_container (#2125655) (jkonecny)
Related: RHEL-2250
- Add tests for RPM Ostree payload with source from container (#2125655)
(rvykydal)
Related: RHEL-2250
- Enable RPM OSTree from container source in payload (#2125655) (rvykydal)
Resolves: RHEL-2250
- Add RPM OSTree source from container (#2125655) (rvykydal)
Related: RHEL-2250
* Tue Jan 09 2024 Martin Kolman <mkolman@redhat.com> - 34.25.4.2-1
- tests: Add a test case for the NVMe module (vtrefny)
Resolves: RHEL-11543
Resolves: RHEL-11544
- Add a simple NVMe module for NVMe Fabrics support (vtrefny)
Resolves: RHEL-11543
Resolves: RHEL-11544
- network: ignore BOOTIF connections when creating device configurations
(rvykydal)
Resolves: RHEL-4766
- network: ignore BOOTIF connections when looking for initramfs bond ports
(rvykydal)
Resolves: RHEL-4766
* Mon Dec 25 2023 Arkady L. Shane <tigro@msvsphere-os.ru> - 34.25.3.8-1.inferit.11
- Disable sphere url
* Thu Dec 07 2023 Jiri Konecny <jkonecny@redhat.com> - 34.25.4.1-1
- Fix versioning on RHEL 9.4 (jkonecny)
* Wed Dec 06 2023 Jiri Konecny <jkonecny@redhat.com> - 34.25.3.9-1
- timezone: for kickstart allow also timezones not offered by GUI (rvykydal)
Resolves: jira#RHEL-13150
- Rename Organization to Organization ID on subscription screen (mkolman)
Resolves: jira#RHEL-11167
* Tue Nov 14 2023 Arkady L. Shane <tigro@msvsphere-os.ru> - 34.25.3.8-1.inferit.10
- Fix smt translation

Loading…
Cancel
Save