diff --git a/.anaconda.metadata b/.anaconda.metadata
index 6387d96..62b8edb 100644
--- a/.anaconda.metadata
+++ b/.anaconda.metadata
@@ -1 +1 @@
-632462bddbdc19d45ca62725bff1a37cccb4babf SOURCES/anaconda-29.19.2.17.tar.bz2
+f5bc4a6e37ede665bcbf789504a961230e9d31b0 SOURCES/anaconda-33.16.3.5.tar.bz2
diff --git a/.gitignore b/.gitignore
index 8836092..1cf4ddd 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-SOURCES/anaconda-29.19.2.17.tar.bz2
+SOURCES/anaconda-33.16.3.5.tar.bz2
diff --git a/SOURCES/0001-disable-subscription-spoke.py b/SOURCES/0001-disable-subscription-spoke.py
deleted file mode 100644
index 8308686..0000000
--- a/SOURCES/0001-disable-subscription-spoke.py
+++ /dev/null
@@ -1,23 +0,0 @@
-diff -uNrp anaconda-29.19.2.17.orig/pyanaconda/ui/gui/spokes/subscription.py anaconda-29.19.2.17/pyanaconda/ui/gui/spokes/subscription.py
---- anaconda-29.19.2.17.orig/pyanaconda/ui/gui/spokes/subscription.py 2020-02-20 11:12:01.000000000 -0600
-+++ anaconda-29.19.2.17/pyanaconda/ui/gui/spokes/subscription.py 2020-04-25 21:33:55.603391706 -0500
-@@ -103,6 +103,10 @@ class SubscriptionSpoke(NormalSpoke):
- # overridden installation source method tracking
- self._overridden_method = None
-
-+ @property
-+ def showable(self):
-+ return False
-+
- def initialize(self):
- NormalSpoke.initialize(self)
- self.initialize_start()
-@@ -983,7 +987,7 @@ class SubscriptionSpoke(NormalSpoke):
- details_grid_1 = Gtk.Grid()
- details_grid_1.set_column_spacing(12)
- details_grid_1.set_row_spacing(12)
--
-+
- # first column
- service_level_label = Gtk.Label(label="{}".format(_("Service level")),
- use_markup=True, xalign=0)
diff --git a/SOURCES/0002-add-centos-background-color.patch b/SOURCES/0002-add-centos-background-color.patch
deleted file mode 100644
index 1d33b3c..0000000
--- a/SOURCES/0002-add-centos-background-color.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -uNrp anaconda-29.19.2.17.orig/data/anaconda-gtk.css anaconda-29.19.2.17/data/anaconda-gtk.css
---- anaconda-29.19.2.17.orig/data/anaconda-gtk.css 2019-12-13 07:20:52.000000000 -0600
-+++ anaconda-29.19.2.17/data/anaconda-gtk.css 2020-04-25 21:13:42.388430421 -0500
-@@ -92,6 +92,7 @@ infobar.error {
-
- @define-color redhat #2d2d2d;
- @define-color fedora #2f4265;
-+@define-color centos #000a38;
-
- /* theme colors/images */
-
diff --git a/SOURCES/0003-disable-subscription-button.patch b/SOURCES/0003-disable-subscription-button.patch
deleted file mode 100644
index 9356722..0000000
--- a/SOURCES/0003-disable-subscription-button.patch
+++ /dev/null
@@ -1,78 +0,0 @@
-diff -uNrp anaconda-29.19.2.17.orig/pyanaconda/ui/gui/spokes/installation_source.py anaconda-29.19.2.17/pyanaconda/ui/gui/spokes/installation_source.py
---- anaconda-29.19.2.17.orig/pyanaconda/ui/gui/spokes/installation_source.py 2020-02-20 11:12:01.000000000 -0600
-+++ anaconda-29.19.2.17/pyanaconda/ui/gui/spokes/installation_source.py 2020-05-15 15:29:38.658567741 -0500
-@@ -655,9 +655,7 @@ class SourceSpoke(NormalSpoke, GUISpokeI
- - method is None
- - the RedHatCDNEnabled hint needs to be True
- """
-- method_set = self.data.method.method is not None
-- cdn_enabled = self._payload_module.proxy.RedHatCDNEnabled
-- return cdn_enabled and not method_set
-+ return False
-
- @property
- def completed(self):
-@@ -691,14 +689,7 @@ class SourceSpoke(NormalSpoke, GUISpokeI
- elif not self.ready:
- return _(BASEREPO_SETUP_MESSAGE)
- elif not self.payload.baseRepo:
-- subscribed = self._subscription_module.proxy.IsSubscriptionAttached
-- if not self.data.method.method and not subscribed:
-- # If method is None, there is no base repo and system
-- # has no subscription attached it means the Red Hat CDN
-- # is in use, but the system has not yet been registered.
-- return _("Red Hat CDN")
-- else:
-- return _("Error setting up base repository")
-+ return _("Error setting up base repository")
- elif self._error:
- return _("Error setting up software source")
- elif self.data.method.method == "url":
-@@ -813,6 +804,8 @@ class SourceSpoke(NormalSpoke, GUISpokeI
- self._networkButton.connect("toggled", self.on_source_toggled, self._networkBox)
- self._networkButton.connect("toggled", self._updateURLEntryCheck)
-
-+ really_hide(self._cdnButton)
-+
- # Show or hide the updates option based on the installclass
- if self.instclass.installUpdates:
- really_show(self._updatesBox)
-@@ -831,7 +824,7 @@ class SourceSpoke(NormalSpoke, GUISpokeI
- payloadMgr.addListener(payloadMgr.STATE_ERROR, self._payload_error)
-
- # default to Red Hat CDN if no method has been specified
-- if not self.data.method.method:
-+ if False:
- log.debug("source spoke: no method set during initialization, enabling CDN")
- self._cdnButton.set_active(True)
- # Clear the manual flag that unfortunately also gets triggered
-@@ -1009,7 +1002,7 @@ class SourceSpoke(NormalSpoke, GUISpokeI
-
- # Set CDN radio button active, in case external conditions
- # changed since the last refresh.
-- if self.cdn_used_as_installation_source and not self._cdnButton.get_active():
-+ if False:
- log.debug("source spoke: CDN enabled, enabling CDN button")
- self._cdnButton.set_active(True)
- elif self.data.method.method == "url":
-@@ -1059,9 +1052,9 @@ class SourceSpoke(NormalSpoke, GUISpokeI
- # guess. Try to autodetect media if that was provided, and then
- # fall back to Red Hat CDN.
- autodetect_on = not self._autodetectButton.get_no_show_all()
-- cdn_in_use = self.cdn_used_as_installation_source
-+ cdn_in_use = False
- if autodetect_on and not cdn_in_use:
-- self._autodetectButton.set_active(True)
-+ self._autodetectButton.set_active(False)
- self.data.method.method = "cdrom"
- log.debug("source spoke: CDN not enabled & no other method found, enabling cdrom")
- elif not self._cdnButton.get_active():
-@@ -1069,7 +1062,7 @@ class SourceSpoke(NormalSpoke, GUISpokeI
- # NOTE: we already do something similar at the start of the method, but we need
- # to do it again as some of the calls in between might have side effects
- # that could result in CDN and/or the button being turned on/off
-- self._cdnButton.set_active(True)
-+ self._cdnButton.set_active(False)
- self.data.method.method = None
- self._update_CDN_usage()
-
diff --git a/SOURCES/centos-l10n.patch b/SOURCES/centos-l10n.patch
deleted file mode 100644
index d8e1af5..0000000
--- a/SOURCES/centos-l10n.patch
+++ /dev/null
@@ -1,2563 +0,0 @@
-diff -uNrp anaconda-29.19.2.17.orig/po/af.po anaconda-29.19.2.17/po/af.po
---- anaconda-29.19.2.17.orig/po/af.po 2020-03-13 10:01:30.000000000 -0500
-+++ anaconda-29.19.2.17/po/af.po 2020-04-25 21:27:00.641497851 -0500
-@@ -6771,7 +6771,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6779,13 +6779,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/am.po anaconda-29.19.2.17/po/am.po
---- anaconda-29.19.2.17.orig/po/am.po 2020-03-13 10:01:32.000000000 -0500
-+++ anaconda-29.19.2.17/po/am.po 2020-04-25 21:27:00.648497983 -0500
-@@ -6771,7 +6771,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6779,13 +6779,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/ar.po anaconda-29.19.2.17/po/ar.po
---- anaconda-29.19.2.17.orig/po/ar.po 2020-03-13 10:01:41.000000000 -0500
-+++ anaconda-29.19.2.17/po/ar.po 2020-04-25 21:27:00.654498096 -0500
-@@ -6917,7 +6917,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6925,13 +6925,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/as.po anaconda-29.19.2.17/po/as.po
---- anaconda-29.19.2.17.orig/po/as.po 2020-03-13 10:01:40.000000000 -0500
-+++ anaconda-29.19.2.17/po/as.po 2020-04-25 21:27:00.662498247 -0500
-@@ -7090,7 +7090,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -7098,13 +7098,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/ast.po anaconda-29.19.2.17/po/ast.po
---- anaconda-29.19.2.17.orig/po/ast.po 2020-03-13 10:02:06.000000000 -0500
-+++ anaconda-29.19.2.17/po/ast.po 2020-04-25 21:27:00.668498360 -0500
-@@ -6791,7 +6791,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6799,13 +6799,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/be.po anaconda-29.19.2.17/po/be.po
---- anaconda-29.19.2.17.orig/po/be.po 2020-03-13 10:02:01.000000000 -0500
-+++ anaconda-29.19.2.17/po/be.po 2020-04-25 21:27:00.675498492 -0500
-@@ -7385,24 +7385,24 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
--msgstr "Вітаем у сістэме Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
-+msgstr "Вітаем у сістэме CentOS Linux"
-
- #: data/liveinst/liveinst-setup.desktop:4
- msgid "Liveinst Setup"
- msgstr "Наладка інсталяцыі Live"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
--msgstr "Паспрабуй RHEL"
-+msgid "Try CentOS"
-+msgstr "Паспрабуй CentOS"
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
--"Цяпер вы запусцілі Red Hat Enterprise Linux з live носьбіта. Можна зараз "
--"інсталяваць Red Hat Enterprise Linux альбо у любы пазнейшы час пазначце "
-+"Цяпер вы запусцілі CentOS Linux з live носьбіта. Можна зараз "
-+"інсталяваць CentOS Linux альбо у любы пазнейшы час пазначце "
- "\"Інсталяваць на цвёрды дыск\" у аглядзе дзеянняў."
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/bg.po anaconda-29.19.2.17/po/bg.po
---- anaconda-29.19.2.17.orig/po/bg.po 2020-03-13 10:02:05.000000000 -0500
-+++ anaconda-29.19.2.17/po/bg.po 2020-04-25 21:27:00.682498624 -0500
-@@ -7201,7 +7201,7 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -7209,13 +7209,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/bn_IN.po anaconda-29.19.2.17/po/bn_IN.po
---- anaconda-29.19.2.17.orig/po/bn_IN.po 2020-03-13 10:01:03.000000000 -0500
-+++ anaconda-29.19.2.17/po/bn_IN.po 2020-04-25 21:27:00.688498737 -0500
-@@ -7132,7 +7132,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -7140,13 +7140,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/bn.po anaconda-29.19.2.17/po/bn.po
---- anaconda-29.19.2.17.orig/po/bn.po 2020-03-13 10:02:07.000000000 -0500
-+++ anaconda-29.19.2.17/po/bn.po 2020-04-25 21:27:00.694498851 -0500
-@@ -6811,7 +6811,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6819,13 +6819,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/bo.po anaconda-29.19.2.17/po/bo.po
---- anaconda-29.19.2.17.orig/po/bo.po 2020-03-13 10:02:08.000000000 -0500
-+++ anaconda-29.19.2.17/po/bo.po 2020-04-25 21:27:00.700498964 -0500
-@@ -6770,7 +6770,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6778,13 +6778,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/bs.po anaconda-29.19.2.17/po/bs.po
---- anaconda-29.19.2.17.orig/po/bs.po 2020-03-13 10:02:12.000000000 -0500
-+++ anaconda-29.19.2.17/po/bs.po 2020-04-25 21:27:00.705499058 -0500
-@@ -6778,7 +6778,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6786,13 +6786,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/ca.po anaconda-29.19.2.17/po/ca.po
---- anaconda-29.19.2.17.orig/po/ca.po 2020-03-13 10:00:28.000000000 -0500
-+++ anaconda-29.19.2.17/po/ca.po 2020-04-25 21:27:00.713499209 -0500
-@@ -7373,7 +7373,7 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -7381,13 +7381,13 @@ msgid "Liveinst Setup"
- msgstr "Ajust de la instal·lació autònoma"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/cs.po anaconda-29.19.2.17/po/cs.po
---- anaconda-29.19.2.17.orig/po/cs.po 2020-03-13 10:00:35.000000000 -0500
-+++ anaconda-29.19.2.17/po/cs.po 2020-04-25 21:27:00.720499341 -0500
-@@ -7372,24 +7372,24 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
--msgstr "Vítejte v Red Hat Enterprise Linuxu"
-+msgid "Welcome to CentOS Linux"
-+msgstr "Vítejte v CentOS Linuxu"
-
- #: data/liveinst/liveinst-setup.desktop:4
- msgid "Liveinst Setup"
- msgstr "Nastavení Liveinst"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
--msgstr "Zkuste RHEL"
-+msgid "Try CentOS"
-+msgstr "Zkuste CentOS"
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
--"Máte Red Hat Enterprise Linux spuštěný z LIVE média.\n"
--"Můžete instalovat Red Hat Enterprise Linux hned, nebo vybrat \"Instalovat na pevný disk\" v Přehledu Aktivit kdykoli později."
-+"Máte CentOS Linux spuštěný z LIVE média.\n"
-+"Můžete instalovat CentOS Linux hned, nebo vybrat \"Instalovat na pevný disk\" v Přehledu Aktivit kdykoli později."
-
- #: data/liveinst/gnome/rhel-welcome.js:125
- msgid ""
-diff -uNrp anaconda-29.19.2.17.orig/po/cy.po anaconda-29.19.2.17/po/cy.po
---- anaconda-29.19.2.17.orig/po/cy.po 2020-03-13 10:00:30.000000000 -0500
-+++ anaconda-29.19.2.17/po/cy.po 2020-04-25 21:27:00.726499455 -0500
-@@ -6772,7 +6772,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6780,13 +6780,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/da.po anaconda-29.19.2.17/po/da.po
---- anaconda-29.19.2.17.orig/po/da.po 2020-03-13 10:02:17.000000000 -0500
-+++ anaconda-29.19.2.17/po/da.po 2020-04-25 21:27:00.732499568 -0500
-@@ -7256,7 +7256,7 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -7264,13 +7264,13 @@ msgid "Liveinst Setup"
- msgstr "Liveinst-opsætning"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/de_CH.po anaconda-29.19.2.17/po/de_CH.po
---- anaconda-29.19.2.17.orig/po/de_CH.po 2020-03-13 10:00:42.000000000 -0500
-+++ anaconda-29.19.2.17/po/de_CH.po 2020-04-25 21:27:00.738499681 -0500
-@@ -6800,7 +6800,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6808,13 +6808,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/de.po anaconda-29.19.2.17/po/de.po
---- anaconda-29.19.2.17.orig/po/de.po 2020-03-13 10:01:05.000000000 -0500
-+++ anaconda-29.19.2.17/po/de.po 2020-04-25 21:27:00.745499813 -0500
-@@ -7486,23 +7486,23 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
--msgstr "Willkommen bei Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
-+msgstr "Willkommen bei CentOS Linux"
-
- #: data/liveinst/liveinst-setup.desktop:4
- msgid "Liveinst Setup"
- msgstr "Einstellungen Liveinst"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
--msgstr "Probieren Sie RHEL"
-+msgid "Try CentOS"
-+msgstr "Probieren Sie CentOS"
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
--"Sie können Red Hat Enterprise Linux jetzt installieren oder zu einem "
-+"Sie können CentOS Linux jetzt installieren oder zu einem "
- "späteren Zeitpunkt in der Aktivitätenübersicht \"Auf Festplatte "
- "installieren\" wählen."
-
-diff -uNrp anaconda-29.19.2.17.orig/po/el.po anaconda-29.19.2.17/po/el.po
---- anaconda-29.19.2.17.orig/po/el.po 2020-03-13 10:01:27.000000000 -0500
-+++ anaconda-29.19.2.17/po/el.po 2020-04-25 21:27:00.751499927 -0500
-@@ -6809,7 +6809,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6817,13 +6817,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/en_GB.po anaconda-29.19.2.17/po/en_GB.po
---- anaconda-29.19.2.17.orig/po/en_GB.po 2020-03-13 10:00:37.000000000 -0500
-+++ anaconda-29.19.2.17/po/en_GB.po 2020-04-25 21:27:00.757500040 -0500
-@@ -6798,7 +6798,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6806,13 +6806,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/es.po anaconda-29.19.2.17/po/es.po
---- anaconda-29.19.2.17.orig/po/es.po 2020-03-13 10:01:49.000000000 -0500
-+++ anaconda-29.19.2.17/po/es.po 2020-04-25 21:27:00.765500191 -0500
-@@ -7470,24 +7470,24 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
--msgstr "Bienvenido a Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
-+msgstr "Bienvenido a CentOS Linux"
-
- #: data/liveinst/liveinst-setup.desktop:4
- msgid "Liveinst Setup"
- msgstr "Ajustes para instalar desde LiveCD"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
--msgstr "Probar RHEL"
-+msgid "Try CentOS"
-+msgstr "Probar CentOS"
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
--"Actualmente está ejecutando Red Hat Enterprise Linux desde un medio vivo.\n"
--"Puede instalar Red Hat Enterprise Linux ahora, o elegir «Instalar en el disco duro» en el resumen de actividades en cualquier momento."
-+"Actualmente está ejecutando CentOS Linux desde un medio vivo.\n"
-+"Puede instalar CentOS Linux ahora, o elegir «Instalar en el disco duro» en el resumen de actividades en cualquier momento."
-
- #: data/liveinst/gnome/rhel-welcome.js:125
- msgid ""
-diff -uNrp anaconda-29.19.2.17.orig/po/et.po anaconda-29.19.2.17/po/et.po
---- anaconda-29.19.2.17.orig/po/et.po 2020-03-13 10:01:45.000000000 -0500
-+++ anaconda-29.19.2.17/po/et.po 2020-04-25 21:27:00.772500323 -0500
-@@ -6794,7 +6794,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6802,13 +6802,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/eu.po anaconda-29.19.2.17/po/eu.po
---- anaconda-29.19.2.17.orig/po/eu.po 2020-03-13 10:01:44.000000000 -0500
-+++ anaconda-29.19.2.17/po/eu.po 2020-04-25 21:27:00.779500455 -0500
-@@ -6790,7 +6790,7 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6798,13 +6798,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/fa.po anaconda-29.19.2.17/po/fa.po
---- anaconda-29.19.2.17.orig/po/fa.po 2020-03-13 10:02:10.000000000 -0500
-+++ anaconda-29.19.2.17/po/fa.po 2020-04-25 21:27:00.784500549 -0500
-@@ -6817,7 +6817,7 @@ msgstr "آناکوندا"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6825,13 +6825,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/fil.po anaconda-29.19.2.17/po/fil.po
---- anaconda-29.19.2.17.orig/po/fil.po 2020-03-13 10:01:20.000000000 -0500
-+++ anaconda-29.19.2.17/po/fil.po 2020-04-25 21:27:00.790500663 -0500
-@@ -6820,7 +6820,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6828,13 +6828,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/fi.po anaconda-29.19.2.17/po/fi.po
---- anaconda-29.19.2.17.orig/po/fi.po 2020-03-13 10:02:15.000000000 -0500
-+++ anaconda-29.19.2.17/po/fi.po 2020-04-25 21:27:00.797500795 -0500
-@@ -7039,7 +7039,7 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -7047,13 +7047,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/fr.po anaconda-29.19.2.17/po/fr.po
---- anaconda-29.19.2.17.orig/po/fr.po 2020-03-13 10:02:03.000000000 -0500
-+++ anaconda-29.19.2.17/po/fr.po 2020-04-25 21:27:00.804500927 -0500
-@@ -7540,24 +7540,24 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
--msgstr "Bienvenue sur Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
-+msgstr "Bienvenue sur CentOS Linux"
-
- #: data/liveinst/liveinst-setup.desktop:4
- msgid "Liveinst Setup"
- msgstr "Configuration de l'installation live"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
--msgstr "Essayez RHEL"
-+msgid "Try CentOS"
-+msgstr "Essayez CentOS"
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
--"Vous êtes en train d’utiliser Red Hat Enterprise Linux depuis un média live.\n"
--"Vous pouvez installer Red Hat Enterprise Linux maintenant, ou choisir « Installer sur le disque dur » dans la vue d’ensemble des activités plus tard."
-+"Vous êtes en train d’utiliser CentOS Linux depuis un média live.\n"
-+"Vous pouvez installer CentOS Linux maintenant, ou choisir « Installer sur le disque dur » dans la vue d’ensemble des activités plus tard."
-
- #: data/liveinst/gnome/rhel-welcome.js:125
- msgid ""
-diff -uNrp anaconda-29.19.2.17.orig/po/fur.po anaconda-29.19.2.17/po/fur.po
---- anaconda-29.19.2.17.orig/po/fur.po 2020-03-13 10:01:13.000000000 -0500
-+++ anaconda-29.19.2.17/po/fur.po 2020-04-25 21:27:00.811501059 -0500
-@@ -7247,7 +7247,7 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -7255,13 +7255,13 @@ msgid "Liveinst Setup"
- msgstr "Liveinst Setup"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/ga.po anaconda-29.19.2.17/po/ga.po
---- anaconda-29.19.2.17.orig/po/ga.po 2020-03-13 10:00:32.000000000 -0500
-+++ anaconda-29.19.2.17/po/ga.po 2020-04-25 21:27:00.817501172 -0500
-@@ -6802,7 +6802,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6810,13 +6810,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/gl.po anaconda-29.19.2.17/po/gl.po
---- anaconda-29.19.2.17.orig/po/gl.po 2020-03-13 10:00:36.000000000 -0500
-+++ anaconda-29.19.2.17/po/gl.po 2020-04-25 21:27:00.822501267 -0500
-@@ -6892,7 +6892,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6900,13 +6900,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/gu.po anaconda-29.19.2.17/po/gu.po
---- anaconda-29.19.2.17.orig/po/gu.po 2020-03-13 10:00:24.000000000 -0500
-+++ anaconda-29.19.2.17/po/gu.po 2020-04-25 21:27:00.828501380 -0500
-@@ -6960,7 +6960,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6968,13 +6968,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/he.po anaconda-29.19.2.17/po/he.po
---- anaconda-29.19.2.17.orig/po/he.po 2020-03-13 10:01:12.000000000 -0500
-+++ anaconda-29.19.2.17/po/he.po 2020-04-25 21:27:00.834501493 -0500
-@@ -7135,7 +7135,7 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -7143,13 +7143,13 @@ msgid "Liveinst Setup"
- msgstr "הכנת Liveinst"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/hi.po anaconda-29.19.2.17/po/hi.po
---- anaconda-29.19.2.17.orig/po/hi.po 2020-03-13 10:01:08.000000000 -0500
-+++ anaconda-29.19.2.17/po/hi.po 2020-04-25 21:27:00.841501625 -0500
-@@ -6897,7 +6897,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6905,13 +6905,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/hr.po anaconda-29.19.2.17/po/hr.po
---- anaconda-29.19.2.17.orig/po/hr.po 2020-03-13 10:01:01.000000000 -0500
-+++ anaconda-29.19.2.17/po/hr.po 2020-04-25 21:27:00.847501739 -0500
-@@ -7185,7 +7185,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -7193,13 +7193,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/hu.po anaconda-29.19.2.17/po/hu.po
---- anaconda-29.19.2.17.orig/po/hu.po 2020-03-13 10:01:07.000000000 -0500
-+++ anaconda-29.19.2.17/po/hu.po 2020-04-25 21:27:00.853501852 -0500
-@@ -7368,7 +7368,7 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -7376,13 +7376,13 @@ msgid "Liveinst Setup"
- msgstr "Liveinst telepítő"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/ia.po anaconda-29.19.2.17/po/ia.po
---- anaconda-29.19.2.17.orig/po/ia.po 2020-03-13 10:00:54.000000000 -0500
-+++ anaconda-29.19.2.17/po/ia.po 2020-04-25 21:27:00.859501965 -0500
-@@ -6955,7 +6955,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6963,13 +6963,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/id.po anaconda-29.19.2.17/po/id.po
---- anaconda-29.19.2.17.orig/po/id.po 2020-03-13 10:01:47.000000000 -0500
-+++ anaconda-29.19.2.17/po/id.po 2020-04-25 21:27:00.865502078 -0500
-@@ -7267,7 +7267,7 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -7275,13 +7275,13 @@ msgid "Liveinst Setup"
- msgstr "Penyiapan Liveinst"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/ilo.po anaconda-29.19.2.17/po/ilo.po
---- anaconda-29.19.2.17.orig/po/ilo.po 2020-03-13 10:01:26.000000000 -0500
-+++ anaconda-29.19.2.17/po/ilo.po 2020-04-25 21:27:00.871502191 -0500
-@@ -6775,7 +6775,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6783,13 +6783,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/is.po anaconda-29.19.2.17/po/is.po
---- anaconda-29.19.2.17.orig/po/is.po 2020-03-13 10:01:31.000000000 -0500
-+++ anaconda-29.19.2.17/po/is.po 2020-04-25 21:27:00.877502305 -0500
-@@ -6775,7 +6775,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6783,13 +6783,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/it.po anaconda-29.19.2.17/po/it.po
---- anaconda-29.19.2.17.orig/po/it.po 2020-03-13 10:01:35.000000000 -0500
-+++ anaconda-29.19.2.17/po/it.po 2020-04-25 21:27:00.883502418 -0500
-@@ -7419,23 +7419,23 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
--msgstr "Benvenuti su Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
-+msgstr "Benvenuti su CentOS Linux"
-
- #: data/liveinst/liveinst-setup.desktop:4
- msgid "Liveinst Setup"
- msgstr "Installazione di LiveInst"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
--msgstr "Prova RHEL"
-+msgid "Try CentOS"
-+msgstr "Prova CentOS"
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
--"È possibile installare Red Hat Enterprise Linux ora, oppure scegliere "
-+"È possibile installare CentOS Linux ora, oppure scegliere "
- "\"Installa su disco rigido\" nella panoramica delle attività in qualsiasi "
- "momento successivo."
-
-diff -uNrp anaconda-29.19.2.17.orig/po/ja.po anaconda-29.19.2.17/po/ja.po
---- anaconda-29.19.2.17.orig/po/ja.po 2020-03-13 10:00:44.000000000 -0500
-+++ anaconda-29.19.2.17/po/ja.po 2020-04-25 21:27:00.889502531 -0500
-@@ -7112,24 +7112,24 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
--msgstr "Red Hat Enterprise Linux へようこそ"
-+msgid "Welcome to CentOS Linux"
-+msgstr "CentOS Linux へようこそ"
-
- #: data/liveinst/liveinst-setup.desktop:4
- msgid "Liveinst Setup"
- msgstr "Liveinst のセットアップ"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
--msgstr "RHEL を使ってみる"
-+msgid "Try CentOS"
-+msgstr "CentOS を使ってみる"
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
--"現在、ライブメディアから Red Hat Enterprise Linux を実行しています。\n"
--"今すぐ Red Hat Enterprise Linux をインストールするか、後で「アクティビティーオーバービュー」内から「ハードドライブへインストール」を選択することもできます。"
-+"現在、ライブメディアから CentOS Linux を実行しています。\n"
-+"今すぐ CentOS Linux をインストールするか、後で「アクティビティーオーバービュー」内から「ハードドライブへインストール」を選択することもできます。"
-
- #: data/liveinst/gnome/rhel-welcome.js:125
- msgid ""
-diff -uNrp anaconda-29.19.2.17.orig/po/ka.po anaconda-29.19.2.17/po/ka.po
---- anaconda-29.19.2.17.orig/po/ka.po 2020-03-13 10:02:19.000000000 -0500
-+++ anaconda-29.19.2.17/po/ka.po 2020-04-25 21:27:00.895502644 -0500
-@@ -6778,7 +6778,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6786,13 +6786,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/kk.po anaconda-29.19.2.17/po/kk.po
---- anaconda-29.19.2.17.orig/po/kk.po 2020-03-13 10:02:21.000000000 -0500
-+++ anaconda-29.19.2.17/po/kk.po 2020-04-25 21:27:00.901502758 -0500
-@@ -7218,7 +7218,7 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -7226,13 +7226,13 @@ msgid "Liveinst Setup"
- msgstr "Liveinst орнатуы"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/km.po anaconda-29.19.2.17/po/km.po
---- anaconda-29.19.2.17.orig/po/km.po 2020-03-13 10:02:30.000000000 -0500
-+++ anaconda-29.19.2.17/po/km.po 2020-04-25 21:27:00.908502890 -0500
-@@ -6933,7 +6933,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6941,13 +6941,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/kn.po anaconda-29.19.2.17/po/kn.po
---- anaconda-29.19.2.17.orig/po/kn.po 2020-03-13 10:01:37.000000000 -0500
-+++ anaconda-29.19.2.17/po/kn.po 2020-04-25 21:27:00.915503022 -0500
-@@ -7068,7 +7068,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -7076,13 +7076,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/ko.po anaconda-29.19.2.17/po/ko.po
---- anaconda-29.19.2.17.orig/po/ko.po 2020-03-13 10:02:27.000000000 -0500
-+++ anaconda-29.19.2.17/po/ko.po 2020-04-25 21:27:00.921503135 -0500
-@@ -7047,24 +7047,24 @@ msgstr "아나콘다"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
--msgstr "Red Hat Enterprise Linux에 오신 것을 환영합니다"
-+msgid "Welcome to CentOS Linux"
-+msgstr "CentOS Linux에 오신 것을 환영합니다"
-
- #: data/liveinst/liveinst-setup.desktop:4
- msgid "Liveinst Setup"
- msgstr "Liveinst 설정"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
--msgstr "RHEL 사용해보기 "
-+msgid "Try CentOS"
-+msgstr "CentOS 사용해보기 "
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
--"현재 라이브 미디어에서 Red Hat Enterprise Linux를 실행하고 있습니다. \n"
--"지금 Red Hat Enterprise Linux를 설치하거나 나중에 '작업 개요 (Activities Overview)'에서 \"하드 드라이브에 설치\"를 통해 설치할 수 있습니다."
-+"현재 라이브 미디어에서 CentOS Linux를 실행하고 있습니다. \n"
-+"지금 CentOS Linux를 설치하거나 나중에 '작업 개요 (Activities Overview)'에서 \"하드 드라이브에 설치\"를 통해 설치할 수 있습니다."
-
- #: data/liveinst/gnome/rhel-welcome.js:125
- msgid ""
-diff -uNrp anaconda-29.19.2.17.orig/po/lt.po anaconda-29.19.2.17/po/lt.po
---- anaconda-29.19.2.17.orig/po/lt.po 2020-03-13 10:00:47.000000000 -0500
-+++ anaconda-29.19.2.17/po/lt.po 2020-04-25 21:27:00.927503248 -0500
-@@ -7271,7 +7271,7 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -7279,13 +7279,13 @@ msgid "Liveinst Setup"
- msgstr "Internetinio diegimo nustatymas"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/lv.po anaconda-29.19.2.17/po/lv.po
---- anaconda-29.19.2.17.orig/po/lv.po 2020-03-13 10:00:45.000000000 -0500
-+++ anaconda-29.19.2.17/po/lv.po 2020-04-25 21:27:00.933503362 -0500
-@@ -6800,7 +6800,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6808,13 +6808,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/mai.po anaconda-29.19.2.17/po/mai.po
---- anaconda-29.19.2.17.orig/po/mai.po 2020-03-13 10:02:13.000000000 -0500
-+++ anaconda-29.19.2.17/po/mai.po 2020-04-25 21:27:00.939503475 -0500
-@@ -6789,7 +6789,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6797,13 +6797,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/mk.po anaconda-29.19.2.17/po/mk.po
---- anaconda-29.19.2.17.orig/po/mk.po 2020-03-13 10:01:16.000000000 -0500
-+++ anaconda-29.19.2.17/po/mk.po 2020-04-25 21:27:00.946503607 -0500
-@@ -6778,7 +6778,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6786,13 +6786,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/ml.po anaconda-29.19.2.17/po/ml.po
---- anaconda-29.19.2.17.orig/po/ml.po 2020-03-13 10:01:14.000000000 -0500
-+++ anaconda-29.19.2.17/po/ml.po 2020-04-25 21:27:00.952503720 -0500
-@@ -6962,7 +6962,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6970,13 +6970,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/mr.po anaconda-29.19.2.17/po/mr.po
---- anaconda-29.19.2.17.orig/po/mr.po 2020-03-13 10:01:23.000000000 -0500
-+++ anaconda-29.19.2.17/po/mr.po 2020-04-25 21:27:00.958503833 -0500
-@@ -6962,7 +6962,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6970,13 +6970,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/ms.po anaconda-29.19.2.17/po/ms.po
---- anaconda-29.19.2.17.orig/po/ms.po 2020-03-13 10:02:05.000000000 -0500
-+++ anaconda-29.19.2.17/po/ms.po 2020-04-25 21:27:00.964503947 -0500
-@@ -6773,7 +6773,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6781,13 +6781,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/my.po anaconda-29.19.2.17/po/my.po
---- anaconda-29.19.2.17.orig/po/my.po 2020-03-13 10:01:27.000000000 -0500
-+++ anaconda-29.19.2.17/po/my.po 2020-04-25 21:27:00.969504041 -0500
-@@ -6780,7 +6780,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6788,13 +6788,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/nb.po anaconda-29.19.2.17/po/nb.po
---- anaconda-29.19.2.17.orig/po/nb.po 2020-03-13 10:01:55.000000000 -0500
-+++ anaconda-29.19.2.17/po/nb.po 2020-04-25 21:27:00.976504173 -0500
-@@ -6963,7 +6963,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6971,13 +6971,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/nds.po anaconda-29.19.2.17/po/nds.po
---- anaconda-29.19.2.17.orig/po/nds.po 2020-03-13 10:02:18.000000000 -0500
-+++ anaconda-29.19.2.17/po/nds.po 2020-04-25 21:27:00.981504268 -0500
-@@ -6772,7 +6772,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6780,13 +6780,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/ne.po anaconda-29.19.2.17/po/ne.po
---- anaconda-29.19.2.17.orig/po/ne.po 2020-03-13 10:01:56.000000000 -0500
-+++ anaconda-29.19.2.17/po/ne.po 2020-04-25 21:27:00.987504381 -0500
-@@ -6776,7 +6776,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6784,13 +6784,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/nl.po anaconda-29.19.2.17/po/nl.po
---- anaconda-29.19.2.17.orig/po/nl.po 2020-03-13 10:01:53.000000000 -0500
-+++ anaconda-29.19.2.17/po/nl.po 2020-04-25 21:27:00.993504494 -0500
-@@ -7403,24 +7403,24 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
--msgstr "Welkom bij Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
-+msgstr "Welkom bij CentOS Linux"
-
- #: data/liveinst/liveinst-setup.desktop:4
- msgid "Liveinst Setup"
- msgstr "Liveinst instelling"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
--msgstr "Probeer RHEL"
-+msgid "Try CentOS"
-+msgstr "Probeer CentOS"
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
--"Je draait Red Hat Enterprise Linux op dit moment vanaf live-media.\n"
--"Je kunt Red Hat Enterprise Linux nu installeren, of je kiest \"Naar harde schijf installeren\" in het 'Activiteiten'-overzicht op een later moment."
-+"Je draait CentOS Linux op dit moment vanaf live-media.\n"
-+"Je kunt CentOS Linux nu installeren, of je kiest \"Naar harde schijf installeren\" in het 'Activiteiten'-overzicht op een later moment."
-
- #: data/liveinst/gnome/rhel-welcome.js:125
- msgid ""
-diff -uNrp anaconda-29.19.2.17.orig/po/nn.po anaconda-29.19.2.17/po/nn.po
---- anaconda-29.19.2.17.orig/po/nn.po 2020-03-13 10:01:54.000000000 -0500
-+++ anaconda-29.19.2.17/po/nn.po 2020-04-25 21:27:00.999504607 -0500
-@@ -6779,7 +6779,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6787,13 +6787,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/nso.po anaconda-29.19.2.17/po/nso.po
---- anaconda-29.19.2.17.orig/po/nso.po 2020-03-13 10:00:39.000000000 -0500
-+++ anaconda-29.19.2.17/po/nso.po 2020-04-25 21:27:01.005504721 -0500
-@@ -6776,7 +6776,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6784,13 +6784,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/or.po anaconda-29.19.2.17/po/or.po
---- anaconda-29.19.2.17.orig/po/or.po 2020-03-13 10:02:36.000000000 -0500
-+++ anaconda-29.19.2.17/po/or.po 2020-04-25 21:27:01.012504853 -0500
-@@ -6945,7 +6945,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6953,13 +6953,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/pa.po anaconda-29.19.2.17/po/pa.po
---- anaconda-29.19.2.17.orig/po/pa.po 2020-03-13 10:00:49.000000000 -0500
-+++ anaconda-29.19.2.17/po/pa.po 2020-04-25 21:27:01.019504985 -0500
-@@ -6955,7 +6955,7 @@ msgstr "ਐਨਾਕੋਂਡਾ"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6963,13 +6963,13 @@ msgid "Liveinst Setup"
- msgstr "Liveinst ਸਥਾਪਨ"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/pl.po anaconda-29.19.2.17/po/pl.po
---- anaconda-29.19.2.17.orig/po/pl.po 2020-03-13 10:00:57.000000000 -0500
-+++ anaconda-29.19.2.17/po/pl.po 2020-04-25 21:27:01.026505117 -0500
-@@ -7443,23 +7443,23 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
--msgstr "Witaj w systemie Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
-+msgstr "Witaj w systemie CentOS Linux"
-
- #: data/liveinst/liveinst-setup.desktop:4
- msgid "Liveinst Setup"
- msgstr "Ustawienia instalacji Live"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
--msgstr "Wypróbuj RHEL"
-+msgid "Try CentOS"
-+msgstr "Wypróbuj CentOS"
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
--"Obecnie system Red Hat Enterprise Linux jest uruchomiony z nośnika Live.\n"
-+"Obecnie system CentOS Linux jest uruchomiony z nośnika Live.\n"
- "Można zainstalować go teraz lub wybrać „Instalacja na dysku twardym” na ekranie podglądu w dowolnym czasie."
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/pt_BR.po anaconda-29.19.2.17/po/pt_BR.po
---- anaconda-29.19.2.17.orig/po/pt_BR.po 2020-03-13 10:01:10.000000000 -0500
-+++ anaconda-29.19.2.17/po/pt_BR.po 2020-04-25 21:27:01.032505230 -0500
-@@ -7418,23 +7418,23 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
--msgstr "Bem-vindo ao Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
-+msgstr "Bem-vindo ao CentOS Linux"
-
- #: data/liveinst/liveinst-setup.desktop:4
- msgid "Liveinst Setup"
- msgstr "Configuração Liveinst"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
--msgstr "Experimente RHEL"
-+msgid "Try CentOS"
-+msgstr "Experimente CentOS"
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
--"Você pode instalar o Red Hat Enterprise Linux agora ou escolher \"Instalar "
-+"Você pode instalar o CentOS Linux agora ou escolher \"Instalar "
- "no Disco Rígido\" na Visão Geral de Atividades a qualquer momento."
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/pt.po anaconda-29.19.2.17/po/pt.po
---- anaconda-29.19.2.17.orig/po/pt.po 2020-03-13 10:00:38.000000000 -0500
-+++ anaconda-29.19.2.17/po/pt.po 2020-04-25 21:27:01.039505362 -0500
-@@ -6841,7 +6841,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6849,13 +6849,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/ro.po anaconda-29.19.2.17/po/ro.po
---- anaconda-29.19.2.17.orig/po/ro.po 2020-03-13 10:01:59.000000000 -0500
-+++ anaconda-29.19.2.17/po/ro.po 2020-04-25 21:27:01.046505494 -0500
-@@ -7276,7 +7276,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -7284,13 +7284,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/ru.po anaconda-29.19.2.17/po/ru.po
---- anaconda-29.19.2.17.orig/po/ru.po 2020-03-13 10:01:51.000000000 -0500
-+++ anaconda-29.19.2.17/po/ru.po 2020-04-25 21:27:01.053505626 -0500
-@@ -7373,23 +7373,23 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
--msgstr "Добро пожаловать в Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
-+msgstr "Добро пожаловать в CentOS Linux"
-
- #: data/liveinst/liveinst-setup.desktop:4
- msgid "Liveinst Setup"
- msgstr "Настройка Liveinst"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
--msgstr "Попробуйте RHELL"
-+msgid "Try CentOS"
-+msgstr "Попробуйте CentOSL"
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
--"Вы можете установить Red Hat Enterprise Linux прямо сейчас или выбрать "
-+"Вы можете установить CentOS Linux прямо сейчас или выбрать "
- "\"Установить на жесткий диск\" в обзоре деятельности в любое время позже."
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/si.po anaconda-29.19.2.17/po/si.po
---- anaconda-29.19.2.17.orig/po/si.po 2020-03-13 10:02:33.000000000 -0500
-+++ anaconda-29.19.2.17/po/si.po 2020-04-25 21:27:01.059505740 -0500
-@@ -6799,7 +6799,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6807,13 +6807,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/sk.po anaconda-29.19.2.17/po/sk.po
---- anaconda-29.19.2.17.orig/po/sk.po 2020-03-13 10:02:32.000000000 -0500
-+++ anaconda-29.19.2.17/po/sk.po 2020-04-25 21:27:01.066505872 -0500
-@@ -7374,23 +7374,23 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
--msgstr "Vitajte v Red Hat Enterprise Linuxe"
-+msgid "Welcome to CentOS Linux"
-+msgstr "Vitajte v CentOS Linuxe"
-
- #: data/liveinst/liveinst-setup.desktop:4
- msgid "Liveinst Setup"
- msgstr "Nastavenie Liveinst"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
--msgstr "Vyskúšajte RHEL"
-+msgid "Try CentOS"
-+msgstr "Vyskúšajte CentOS"
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
--"Momentálne máte spustený systém Red Hat Enterprise Linux z live média.\n"
-+"Momentálne máte spustený systém CentOS Linux z live média.\n"
- "Môžete ho nainštalovať ihneď alebo kedykoľvek neskôr spustením odkazu „Inštalovať na pevný disk“ v prehľade Aktivít."
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/sl.po anaconda-29.19.2.17/po/sl.po
---- anaconda-29.19.2.17.orig/po/sl.po 2020-03-13 10:02:34.000000000 -0500
-+++ anaconda-29.19.2.17/po/sl.po 2020-04-25 21:27:01.072505985 -0500
-@@ -6778,7 +6778,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6786,13 +6786,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/sq.po anaconda-29.19.2.17/po/sq.po
---- anaconda-29.19.2.17.orig/po/sq.po 2020-03-13 10:02:25.000000000 -0500
-+++ anaconda-29.19.2.17/po/sq.po 2020-04-25 21:27:01.079506117 -0500
-@@ -7220,7 +7220,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -7228,13 +7228,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/sr@latin.po anaconda-29.19.2.17/po/sr@latin.po
---- anaconda-29.19.2.17.orig/po/sr@latin.po 2020-03-13 10:02:09.000000000 -0500
-+++ anaconda-29.19.2.17/po/sr@latin.po 2020-04-25 21:27:01.085506230 -0500
-@@ -6788,7 +6788,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6796,13 +6796,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/sr.po anaconda-29.19.2.17/po/sr.po
---- anaconda-29.19.2.17.orig/po/sr.po 2020-03-13 10:02:23.000000000 -0500
-+++ anaconda-29.19.2.17/po/sr.po 2020-04-25 21:27:01.092506362 -0500
-@@ -7172,7 +7172,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -7180,13 +7180,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/sv.po anaconda-29.19.2.17/po/sv.po
---- anaconda-29.19.2.17.orig/po/sv.po 2020-03-13 10:02:29.000000000 -0500
-+++ anaconda-29.19.2.17/po/sv.po 2020-04-25 21:27:01.098506476 -0500
-@@ -7366,24 +7366,24 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
--msgstr "Välkommen till Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
-+msgstr "Välkommen till CentOS Linux"
-
- #: data/liveinst/liveinst-setup.desktop:4
- msgid "Liveinst Setup"
- msgstr "Liveinst-inställning"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
--msgstr "Prova RHEL"
-+msgid "Try CentOS"
-+msgstr "Prova CentOS"
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
--"Du kör för närvarande Red Hat Enterprise Linux från ett live-medium.\n"
--"Du kan installera Red Hat Enterprise Linux nu, eller välja ”Installera på hårddisk” i aktivitetsöversikten vid ett senare tillfälle."
-+"Du kör för närvarande CentOS Linux från ett live-medium.\n"
-+"Du kan installera CentOS Linux nu, eller välja ”Installera på hårddisk” i aktivitetsöversikten vid ett senare tillfälle."
-
- #: data/liveinst/gnome/rhel-welcome.js:125
- msgid ""
-diff -uNrp anaconda-29.19.2.17.orig/po/ta.po anaconda-29.19.2.17/po/ta.po
---- anaconda-29.19.2.17.orig/po/ta.po 2020-03-13 10:00:58.000000000 -0500
-+++ anaconda-29.19.2.17/po/ta.po 2020-04-25 21:27:01.104506589 -0500
-@@ -7138,7 +7138,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -7146,13 +7146,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/te.po anaconda-29.19.2.17/po/te.po
---- anaconda-29.19.2.17.orig/po/te.po 2020-03-13 10:00:53.000000000 -0500
-+++ anaconda-29.19.2.17/po/te.po 2020-04-25 21:27:01.111506721 -0500
-@@ -6917,7 +6917,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6925,13 +6925,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/tg.po anaconda-29.19.2.17/po/tg.po
---- anaconda-29.19.2.17.orig/po/tg.po 2020-03-13 10:00:51.000000000 -0500
-+++ anaconda-29.19.2.17/po/tg.po 2020-04-25 21:27:01.118506853 -0500
-@@ -6771,7 +6771,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6779,13 +6779,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/th.po anaconda-29.19.2.17/po/th.po
---- anaconda-29.19.2.17.orig/po/th.po 2020-03-13 10:00:51.000000000 -0500
-+++ anaconda-29.19.2.17/po/th.po 2020-04-25 21:27:01.124506966 -0500
-@@ -6813,7 +6813,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6821,13 +6821,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/tr.po anaconda-29.19.2.17/po/tr.po
---- anaconda-29.19.2.17.orig/po/tr.po 2020-03-13 10:00:41.000000000 -0500
-+++ anaconda-29.19.2.17/po/tr.po 2020-04-25 21:27:01.130507080 -0500
-@@ -7147,7 +7147,7 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -7155,13 +7155,13 @@ msgid "Liveinst Setup"
- msgstr "Liveinst Kurulumu"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/uk.po anaconda-29.19.2.17/po/uk.po
---- anaconda-29.19.2.17.orig/po/uk.po 2020-03-13 10:01:22.000000000 -0500
-+++ anaconda-29.19.2.17/po/uk.po 2020-04-25 21:27:01.137507212 -0500
-@@ -7385,7 +7385,7 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -7393,13 +7393,13 @@ msgid "Liveinst Setup"
- msgstr "Налаштовування Liveinst"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/ur.po anaconda-29.19.2.17/po/ur.po
---- anaconda-29.19.2.17.orig/po/ur.po 2020-03-13 10:01:17.000000000 -0500
-+++ anaconda-29.19.2.17/po/ur.po 2020-04-25 21:27:01.143507325 -0500
-@@ -6772,7 +6772,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6780,13 +6780,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/vi.po anaconda-29.19.2.17/po/vi.po
---- anaconda-29.19.2.17.orig/po/vi.po 2020-03-13 10:01:30.000000000 -0500
-+++ anaconda-29.19.2.17/po/vi.po 2020-04-25 21:27:01.149507438 -0500
-@@ -6771,7 +6771,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6779,13 +6779,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/zh_CN.po anaconda-29.19.2.17/po/zh_CN.po
---- anaconda-29.19.2.17.orig/po/zh_CN.po 2020-03-13 10:01:19.000000000 -0500
-+++ anaconda-29.19.2.17/po/zh_CN.po 2020-04-25 21:27:01.156507570 -0500
-@@ -7021,24 +7021,24 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
--msgstr "欢迎使用 Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
-+msgstr "欢迎使用 CentOS Linux"
-
- #: data/liveinst/liveinst-setup.desktop:4
- msgid "Liveinst Setup"
- msgstr "Liveinst 设置"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
--msgstr "试用 RHEL"
-+msgid "Try CentOS"
-+msgstr "试用 CentOS"
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
--"您当前正在通过自生系统(live media)运行 Red Hat Enterprise Linux。\n"
--"您可以现在安装 Red Hat Enterprise Linux ,或在以后的任何时间选择活动概览中的“安装到硬盘”选项进行安装。"
-+"您当前正在通过自生系统(live media)运行 CentOS Linux。\n"
-+"您可以现在安装 CentOS Linux ,或在以后的任何时间选择活动概览中的“安装到硬盘”选项进行安装。"
-
- #: data/liveinst/gnome/rhel-welcome.js:125
- msgid ""
-diff -uNrp anaconda-29.19.2.17.orig/po/zh_HK.po anaconda-29.19.2.17/po/zh_HK.po
---- anaconda-29.19.2.17.orig/po/zh_HK.po 2020-03-13 10:01:38.000000000 -0500
-+++ anaconda-29.19.2.17/po/zh_HK.po 2020-04-25 21:27:01.162507684 -0500
-@@ -6806,7 +6806,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6814,13 +6814,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/zh_TW.po anaconda-29.19.2.17/po/zh_TW.po
---- anaconda-29.19.2.17.orig/po/zh_TW.po 2020-03-13 10:00:25.000000000 -0500
-+++ anaconda-29.19.2.17/po/zh_TW.po 2020-04-25 21:27:01.169507816 -0500
-@@ -6998,23 +6998,23 @@ msgstr "anaconda"
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
--msgstr "歡迎使用Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
-+msgstr "歡迎使用CentOS Linux"
-
- #: data/liveinst/liveinst-setup.desktop:4
- msgid "Liveinst Setup"
- msgstr "Liveinst 設置"
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
--msgstr "試試RHEL"
-+msgid "Try CentOS"
-+msgstr "試試CentOS"
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
--"您目前正在從實時媒體運行Red Hat Enterprise Linux。您可以立即安裝Red Hat Enterprise "
-+"您目前正在從實時媒體運行CentOS Linux。您可以立即安裝Red Hat Enterprise "
- "Linux,也可以在以後的活動概覽中選擇“安裝到硬盤”。"
-
- #: data/liveinst/gnome/rhel-welcome.js:125
-diff -uNrp anaconda-29.19.2.17.orig/po/zu.po anaconda-29.19.2.17/po/zu.po
---- anaconda-29.19.2.17.orig/po/zu.po 2020-03-13 10:01:43.000000000 -0500
-+++ anaconda-29.19.2.17/po/zu.po 2020-04-25 21:27:01.175507929 -0500
-@@ -6773,7 +6773,7 @@ msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.desktop:3
- #: data/liveinst/gnome/rhel-welcome.js:62
--msgid "Welcome to Red Hat Enterprise Linux"
-+msgid "Welcome to CentOS Linux"
- msgstr ""
-
- #: data/liveinst/liveinst-setup.desktop:4
-@@ -6781,13 +6781,13 @@ msgid "Liveinst Setup"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:91
--msgid "Try RHEL"
-+msgid "Try CentOS"
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:107
- msgid ""
--"You are currently running Red Hat Enterprise Linux from live media.\n"
--"You can install Red Hat Enterprise Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
-+"You are currently running CentOS Linux from live media.\n"
-+"You can install CentOS Linux now, or choose \"Install to Hard Drive\" in the Activities Overview at any later time."
- msgstr ""
-
- #: data/liveinst/gnome/rhel-welcome.js:125
diff --git a/SPECS/anaconda.spec b/SPECS/anaconda.spec
index d6f7168..ce61114 100644
--- a/SPECS/anaconda.spec
+++ b/SPECS/anaconda.spec
@@ -1,15 +1,8 @@
-%define livearches %{ix86} x86_64 ppc ppc64 ppc64le
-
-# Avoid anaconda-core requiring gjs-console due to the GNOME welcome
-# screen that's shipped in it
-%global __requires_exclude_from ^%{_datadir}/anaconda/gnome/rhel-welcome.*$
-
Summary: Graphical system installer
Name: anaconda
-Version: 29.19.2.17
+Version: 33.16.3.5
Release: 1%{?dist}
License: GPLv2+ and MIT
-Group: Applications/System
URL: http://fedoraproject.org/wiki/Anaconda
# To generate Source0 do:
@@ -19,14 +12,12 @@ URL: http://fedoraproject.org/wiki/Anaconda
# make dist
Source0: %{name}-%{version}.tar.bz2
-Patch100: centos-l10n.patch
-Patch101: 0001-disable-subscription-spoke.py
-Patch102: 0002-add-centos-background-color.patch
-Patch103: 0003-disable-subscription-button.patch
-
# Versions of required components (done so we make sure the buildrequires
# match the requires versions of things).
+%if ! 0%{?rhel}
+%define blivetguiver 2.1.12-1
+%endif
%define dbusver 1.2.3
%define dnfver 3.6.0
%define dracutver 034-7
@@ -35,20 +26,22 @@ Patch103: 0003-disable-subscription-button.patch
%define gtk3ver 3.22.17
%define helpver 22.1-1
%define isomd5sum 1.0.10
-%define langtablever 0.0.34
+%define langtablever 0.0.49
%define libarchivever 3.0.4
%define libblockdevver 2.1
%define libtimezonemapver 0.4.1-2
%define libxklavierver 5.4
%define mehver 0.23-1
%define nmver 1.0
-%define pykickstartver 3.16.8-1
+%define pykickstartver 3.16.11-1
%define pypartedver 2.5-2
%define rpmver 4.10.0
%define simplelinever 1.1-1
%define utillinuxver 2.15.1
+%define dasbusver 0.4
BuildRequires: audit-libs-devel
+BuildRequires: libtool
BuildRequires: gettext-devel >= %{gettextver}
BuildRequires: gtk3-devel >= %{gtk3ver}
BuildRequires: gtk-doc
@@ -66,9 +59,6 @@ BuildRequires: systemd
# rpm and libarchive are needed for driver disk handling
BuildRequires: rpm-devel >= %{rpmver}
BuildRequires: libarchive-devel >= %{libarchivever}
-%ifarch %livearches
-BuildRequires: desktop-file-utils
-%endif
%ifarch s390 s390x
BuildRequires: s390utils-devel
%endif
@@ -90,7 +80,7 @@ The anaconda package is a metapackage for the Anaconda installer.
Summary: Core of the Anaconda installer
Requires: python3-libs
Requires: python3-dnf >= %{dnfver}
-Requires: python3-blivet >= 1:3.1.0-12
+Requires: python3-blivet >= 1:3.2.2-1
Requires: python3-blockdev >= %{libblockdevver}
Requires: python3-meh >= %{mehver}
Requires: libreport-anaconda >= 2.0.21-1
@@ -101,17 +91,19 @@ Requires: python3-requests
Requires: python3-requests-file
Requires: python3-requests-ftp
Requires: python3-kickstart >= %{pykickstartver}
-Requires: langtable-data >= %{langtablever}
-Requires: langtable-python3 >= %{langtablever}
+Requires: python3-langtable >= %{langtablever}
Requires: util-linux >= %{utillinuxver}
Requires: python3-gobject-base
Requires: python3-dbus
Requires: python3-pwquality
Requires: python3-systemd
-Requires: python3-pydbus
Requires: python3-productmd
+Requires: python3-dasbus >= %{dasbusver}
+Requires: flatpak-libs
+%if 0%{?rhel}
Requires: python3-syspurpose
Requires: subscription-manager >= 1.26
+%endif
# pwquality only "recommends" the dictionaries it needs to do anything useful,
# which is apparently great for containers but unhelpful for the rest of us
@@ -119,16 +111,12 @@ Requires: cracklib-dicts
Requires: python3-pytz
Requires: teamd
-%ifarch %livearches
-Requires: usermode
-%endif
%ifarch s390 s390x
Requires: openssh
%endif
Requires: NetworkManager >= %{nmver}
Requires: NetworkManager-libnm >= %{nmver}
Requires: NetworkManager-team
-Requires: dhclient
Requires: kbd
Requires: chrony
Requires: python3-ntplib
@@ -136,7 +124,9 @@ Requires: systemd
Requires: python3-pid
Requires: python3-ordered-set >= 2.0.0
-Requires: platform-python-coverage
+# Required by the systemd service anaconda-fips.
+Requires: crypto-policies
+Requires: /usr/bin/update-crypto-policies
# required because of the rescue mode and VNC question
Requires: anaconda-tui = %{version}-%{release}
@@ -144,6 +134,14 @@ Requires: anaconda-tui = %{version}-%{release}
# Make sure we get the en locale one way or another
Requires: glibc-langpack-en
+# anaconda literally runs its own dbus-daemon, so it needs this,
+# even though the distro default is dbus-broker in F30+
+Requires: dbus-daemon
+
+# Ensure it's not possible for a version of grubby to be installed
+# that doesn't work with btrfs subvolumes correctly...
+Conflicts: grubby < 8.40-10
+
Obsoletes: anaconda-images <= 10
Provides: anaconda-images = %{version}-%{release}
Obsoletes: anaconda-runtime < %{version}-%{release}
@@ -154,6 +152,18 @@ Obsoletes: booty <= 0.107-1
The anaconda-core package contains the program which was used to install your
system.
+%package live
+Summary: Live installation specific files and dependencies
+BuildRequires: desktop-file-utils
+# live installation currently implies a graphical installation
+Requires: anaconda-gui = %{version}-%{release}
+Requires: usermode
+Requires: zenity
+
+%description live
+The anaconda-live package contains scripts, data and dependencies required
+for live installations.
+
%package install-env-deps
Summary: Installation environment specific dependencies
Requires: udisks2-iscsi
@@ -164,6 +174,12 @@ Requires: isomd5sum >= %{isomd5sum}
%ifarch %{ix86} x86_64
Requires: fcoe-utils >= %{fcoeutilsver}
%endif
+# likely HFS+ resize support
+%ifarch %{ix86} x86_64
+%if ! 0%{?rhel}
+Requires: hfsplus-tools
+%endif
+%endif
# kexec support
Requires: kexec-tools
Requires: createrepo_c
@@ -189,15 +205,15 @@ Requires: libxklavier >= %{libxklavierver}
Requires: libgnomekbd
Requires: libtimezonemap >= %{libtimezonemapver}
Requires: nm-connection-editor
-%ifarch %livearches
-Requires: zenity
-%endif
Requires: keybinder3
%ifnarch s390 s390x
Requires: NetworkManager-wifi
%endif
Requires: anaconda-user-help >= %{helpver}
Requires: yelp
+%if ! 0%{?rhel}
+Requires: blivet-gui-runtime >= %{blivetguiver}
+%endif
Requires: system-logos
# Needed to compile the gsettings files
@@ -217,15 +233,13 @@ This package contains textual user interface for the Anaconda installer.
%package widgets
Summary: A set of custom GTK+ widgets for use with anaconda
-Group: System Environment/Libraries
-%{?__python3:Requires: %{__python3}}
+Requires: %{__python3}
%description widgets
This package contains a set of custom GTK+ widgets used by the anaconda installer.
%package widgets-devel
Summary: Development files for anaconda-widgets
-Group: Development/Libraries
Requires: glade
Requires: %{name}-widgets%{?_isa} = %{version}-%{release}
@@ -248,7 +262,7 @@ options. This includes driver disks, kickstarts, and finding the anaconda
runtime on NFS/HTTP/FTP servers or local disks.
%prep
-%autosetup -p1
+%autosetup -p 1
%build
# use actual build-time release number, not tarball creation time release number
@@ -262,24 +276,12 @@ find %{buildroot} -type f -name "*.la" | xargs %{__rm}
# Create an empty directory for addons
mkdir %{buildroot}%{_datadir}/anaconda/addons
-%ifarch %livearches
+# required for live installations
desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{buildroot}%{_datadir}/applications/liveinst.desktop
-%endif
-# NOTE: If you see "error: Installed (but unpackaged) file(s) found" that include liveinst files,
-# check the IS_LIVEINST_ARCH in configure.ac to make sure your architecture is properly defined
# If no langs found, keep going
%find_lang %{name} || :
-%ifarch %livearches
-%post
-update-desktop-database &> /dev/null || :
-%endif
-
-%ifarch %livearches
-%postun
-update-desktop-database &> /dev/null || :
-%endif
# main package and install-env-deps are metapackages
%files
@@ -298,9 +300,12 @@ update-desktop-database &> /dev/null || :
%{_sbindir}/anaconda
%{_sbindir}/handle-sshpw
%{_datadir}/anaconda
-# Remove blivet-gui
-%exclude %{_datadir}/anaconda/ui/spokes/blivet_gui.*
%{_prefix}/libexec/anaconda
+%exclude %{_datadir}/anaconda/gnome
+%exclude %{_datadir}/anaconda/pixmaps
+%exclude %{_datadir}/anaconda/ui
+%exclude %{_datadir}/anaconda/window-manager
+%exclude %{_datadir}/anaconda/anaconda-gtk.css
%exclude %{_prefix}/libexec/anaconda/dd_*
%{python3_sitearch}/pyanaconda
%exclude %{python3_sitearch}/pyanaconda/rescue.py*
@@ -309,20 +314,34 @@ update-desktop-database &> /dev/null || :
%exclude %{python3_sitearch}/pyanaconda/ui/tui/*
%{_bindir}/analog
%{_bindir}/anaconda-cleanup
-%ifarch %livearches
+%dir %{_sysconfdir}/%{name}
+%config %{_sysconfdir}/%{name}/*
+%dir %{_sysconfdir}/%{name}/conf.d
+%config %{_sysconfdir}/%{name}/conf.d/*
+%dir %{_sysconfdir}/%{name}/product.d
+%config %{_sysconfdir}/%{name}/product.d/*
+
+%files live
%{_bindir}/liveinst
%{_sbindir}/liveinst
%config(noreplace) %{_sysconfdir}/pam.d/*
%config(noreplace) %{_sysconfdir}/security/console.apps/*
%{_libexecdir}/liveinst-setup.sh
%{_datadir}/applications/*.desktop
+%{_datadir}/anaconda/gnome
%{_sysconfdir}/xdg/autostart/*.desktop
-%endif
%files gui
%{python3_sitearch}/pyanaconda/ui/gui/*
+%{_datadir}/anaconda/pixmaps
+%{_datadir}/anaconda/ui
+%if 0%{?rhel}
# Remove blivet-gui
+%exclude %{_datadir}/anaconda/ui/spokes/blivet_gui.*
%exclude %{python3_sitearch}/pyanaconda/ui/gui/spokes/blivet_gui.*
+%endif
+%{_datadir}/anaconda/window-manager
+%{_datadir}/anaconda/anaconda-gtk.css
%files tui
%{python3_sitearch}/pyanaconda/rescue.py
@@ -336,6 +355,7 @@ update-desktop-database &> /dev/null || :
%files widgets-devel
%{_libdir}/libAnacondaWidgets.so
+%{_libdir}/glade/modules/libAnacondaWidgets.so
%{_includedir}/*
%{_datadir}/glade/catalogs/AnacondaWidgets.xml
%{_datadir}/gtk-doc
@@ -346,6 +366,130 @@ update-desktop-database &> /dev/null || :
%{_prefix}/libexec/anaconda/dd_*
%changelog
+* Thu Jun 04 2020 Radek Vykydal - 33.16.3.5-1
+- Don't use data.method.proxy (vponcova)
+ Related: rhbz#1691319
+- Fix more SElinux contexts (vslavik)
+ Resolves: rhbz#1834189
+ Resolves: rhbz#1775975
+- localization: do not crash on failed parsing of X layout (rvykydal)
+ Resolves: rhbz#1843379
+
+* Fri May 29 2020 Radek Vykydal - 33.16.3.4-1
+- Create /etc/systemd/network dir for ifname= renaming if needed. (rvykydal)
+ Resolves: rhbz#1841469
+- Update requirements for fips - update-crypto-policies script (rvykydal)
+ Resolves: rhbz#1841471
+
+* Thu May 28 2020 Radek Vykydal - 33.16.3.3-1
+- Convert help system to use help id (mkolman)
+ Related: rhbz#1691319
+- Remove unused constants (mkolman)
+ Related: rhbz#1691319
+- Adjust help related configuration options (mkolman)
+ Related: rhbz#1691319
+- Replace helpFile property with help_id (mkolman)
+ Related: rhbz#1691319
+- Close responses from session.get (vponcova)
+ Related: rhbz#1691319
+- Improve the documentation of the SetUpMountTask class (vponcova)
+ Related: rhbz#1691319
+- Raise an exception if the source's mount point is not unmounted (vponcova)
+ Related: rhbz#1691319
+- Change the default source to CDROM (vponcova)
+ Related: rhbz#1691319
+- Don't set up sources in the refresh method of the Source spoke (vponcova)
+ Related: rhbz#1691319
+- Set up FIPS in the target system (vponcova)
+ Related: rhbz#1800697
+- Update the service anaconda-sshd (vponcova)
+ Related: rhbz#1800697
+- Set up FIPS in the installation environment (vponcova)
+ Resolves: rhbz#1800697
+- Add NFS ISO support back to the NFS SetupSourceTask (jkonecny)
+ Resolves: rhbz#1840346
+- Add NFS ISO support to the NFSSourceModule (jkonencny)
+ Related: rhbz#1840346
+- Fix changelog to keep rhel history (rvykydal)
+ Related: rhbz#1691319
+- Tear down HDD device mount if no valid installation source is found
+ (jkonecny)
+ Related: rhbz#1840346
+- Extract ISO find algorith from harddrive (jkonecny)
+ Related: rhbz#1840346
+- Update required ack in makebumpver script for rhel > 7 (rvykydal)
+ Related: rhbz#1691319
+- Fix string based on translator comments (vslavik)
+ Related: rhbz#1691319
+- subscription: Fix authentication method switching in GUI (mkolman)
+ Related: rhbz#1691319
+
+* Wed May 27 2020 Radek Vykydal - 33.16.3.2-1
+- subscription: Make sure CDN repos are loaded and usable (mkolman)
+ Related: rhbz#1691319
+- Fix issue that unified ISO from URL is not loaded (jkonecny)
+ Related: rhbz#1691319
+- Add split_protocol payload helper function (jkonecny)
+ Related: rhbz#1691319
+- Fix imports of Blivet-GUI in unit tests (vponcova)
+ Related: rhbz#1691319
+- Make cppcheck ignore the G_DEFINE_TYPE macros (vslavik)
+ Related: rhbz#1691319
+- Fix test to not use Python 3.8 feature (vslavik)
+ Related: rhbz#1691319
+- Fix test for root SSH login allowed (vslavik)
+ Related: rhbz#1691319
+- Remove blivet-GUI tests (vslavik)
+ Related: rhbz#1691319
+- Ignore no return from BTRFS (vslavik)
+ Related: rhbz#1691319
+- Remove unused imports (vslavik)
+ Related: rhbz#1691319
+
+* Mon May 25 2020 Radek Vykydal - 33.16.3.1-1
+- Change git branch configuration (jkonecny)
+ Related: rhbz#1805757
+- Update translation badge (jkonecny)
+ Related: rhbz#1805757
+- Use rhel-8 weblate translation repository (jkonecny)
+ Resolves: rhbz#1805757
+- Use platform-python instead of python3 (vslavik)
+ Related: rhbz#1691319
+- root spoke gui: do not expose some root account options (eg locking) (rvykydal)
+ Related: rhbz#1691319
+- Modify locking of root defauls for rhel (rvykydal)
+ Related: rhbz#1691319
+- Update required version of blivet (rvykydal)
+ Related: rhbz#1691319
+- Remove tests for --ignorebroken %packages section option (rvykydal)
+ Related: rhbz#1691319
+- Remove support for --ignorebroken %packages option (rvykydal)
+ Related: rhbz#1691319
+- Use F25_Timezone (rvykydal)
+ Related: rhbz#1691319
+- Make sure rhsm.service is running at Anaconda startup (mkolman)
+ Related: rhbz#1691319
+- Replace SimpleQueue with Queue (vponcova)
+ Related: rhbz#1691319
+- Change fedora-welcome to rhel-welcome (bcl)
+ Related: rhbz#1691319
+- Make RHEL the default (fallback) product (vslavik)
+ Related: rhbz#1691319
+- Exclude blivet gui source from rpm_test (rvykydal)
+ Related: rhbz#1691319
+- Exclude dependencies for tests from RHEL-8 (jkonecny)
+ Related: rhbz#1691319
+- Update pykickstart version for rhel (rvykydal)
+ Related: rhbz#1691319
+- Use RHEL8 versions of commands (rvykydal)
+ Related: rhbz#1691319
+- Use RHEL8 kickstart handler (rvykydal)
+ Related: rhbz#1691319
+- Remove kickstart btrfs support (rvykydal)
+ Related: rhbz#1691319
+- Rebase to upstream 33.16 version (rvykydal)
+ Resolves: rhbz#1691319
+
* Fri Mar 13 2020 Radek Vykydal - 29.19.2.17-1
- Make sure rhsm.service is running at Anaconda startup (mkolman)
Resolves: rhbz#1805266