|
|
@ -93,18 +93,18 @@ index c478f3f..914b54c 100644
|
|
|
|
-#: pyanaconda/ui/gui/spokes/welcome.py:274
|
|
|
|
-#: pyanaconda/ui/gui/spokes/welcome.py:274
|
|
|
|
+#: pyanaconda/ui/gui/spokes/welcome.py:278
|
|
|
|
+#: pyanaconda/ui/gui/spokes/welcome.py:278
|
|
|
|
+#, python-format
|
|
|
|
+#, python-format
|
|
|
|
+msgid "WELCOME TO MSVSphere %(version)s Server."
|
|
|
|
+msgid "WELCOME TO MSVSphere %(version)s Server"
|
|
|
|
+msgstr "ДОБРО ПОЖАЛОВАТЬ В МСВСфера %(version)s Сервер."
|
|
|
|
+msgstr "ДОБРО ПОЖАЛОВАТЬ В МСВСфера %(version)s Сервер"
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+#: pyanaconda/ui/gui/spokes/welcome.py:280
|
|
|
|
+#: pyanaconda/ui/gui/spokes/welcome.py:280
|
|
|
|
+#, python-format
|
|
|
|
+#, python-format
|
|
|
|
+msgid "WELCOME TO MSVSphere %(version)s ARM."
|
|
|
|
+msgid "WELCOME TO MSVSphere %(version)s ARM"
|
|
|
|
+msgstr "ДОБРО ПОЖАЛОВАТЬ В МСВСфера %(version)s АРМ."
|
|
|
|
+msgstr "ДОБРО ПОЖАЛОВАТЬ В МСВСфера %(version)s АРМ"
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+#: pyanaconda/ui/gui/spokes/welcome.py:282
|
|
|
|
+#: pyanaconda/ui/gui/spokes/welcome.py:282
|
|
|
|
+#, python-format
|
|
|
|
+#, python-format
|
|
|
|
+msgid "WELCOME TO MSVSphere %(version)s OS."
|
|
|
|
+msgid "WELCOME TO MSVSphere %(version)s OS"
|
|
|
|
+msgstr "ДОБРО ПОЖАЛОВАТЬ В МСВСфера %(version)s ОС."
|
|
|
|
+msgstr "ДОБРО ПОЖАЛОВАТЬ В МСВСфера %(version)s ОС"
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+#: pyanaconda/ui/gui/spokes/welcome.py:284
|
|
|
|
+#: pyanaconda/ui/gui/spokes/welcome.py:284
|
|
|
|
#, python-format
|
|
|
|
#, python-format
|
|
|
@ -436,13 +436,13 @@ index 2d8f6b2..4e1fd87 100644
|
|
|
|
|
|
|
|
|
|
|
|
- welcomeLabel.set_text(_("WELCOME TO %(name)s %(version)s.") %
|
|
|
|
- welcomeLabel.set_text(_("WELCOME TO %(name)s %(version)s.") %
|
|
|
|
+ if productBase == "MSVSphere" and productFlavor == "Server":
|
|
|
|
+ if productBase == "MSVSphere" and productFlavor == "Server":
|
|
|
|
+ welcome_text = _("WELCOME TO MSVSphere %(version)s Server.")
|
|
|
|
+ welcome_text = _("WELCOME TO MSVSphere %(version)s Server")
|
|
|
|
+ elif productBase == "MSVSphere" and productFlavor == "ARM":
|
|
|
|
+ elif productBase == "MSVSphere" and productFlavor == "ARM":
|
|
|
|
+ welcome_text = _("WELCOME TO MSVSphere %(version)s ARM.")
|
|
|
|
+ welcome_text = _("WELCOME TO MSVSphere %(version)s ARM")
|
|
|
|
+ elif productBase == "MSVSphere" and productFlavor == "OS":
|
|
|
|
+ elif productBase == "MSVSphere" and productFlavor == "OS":
|
|
|
|
+ welcome_text = _("WELCOME TO MSVSphere %(version)s OS.")
|
|
|
|
+ welcome_text = _("WELCOME TO MSVSphere %(version)s OS")
|
|
|
|
+ else:
|
|
|
|
+ else:
|
|
|
|
+ welcome_text = _("WELCOME TO %(name)s %(version)s.")
|
|
|
|
+ welcome_text = _("WELCOME TO %(name)s %(version)s")
|
|
|
|
+ welcomeLabel.set_text(welcome_text %
|
|
|
|
+ welcomeLabel.set_text(welcome_text %
|
|
|
|
{"name" : productName.upper(), "version" : productVersion}) # pylint: disable=no-member
|
|
|
|
{"name" : productName.upper(), "version" : productVersion}) # pylint: disable=no-member
|
|
|
|
|
|
|
|
|
|
|
|