diff --git a/SOURCES/0001-disable-subscription-spoke.py b/SOURCES/0001-disable-subscription-spoke.py
new file mode 100644
index 0000000..456fdee
--- /dev/null
+++ b/SOURCES/0001-disable-subscription-spoke.py
@@ -0,0 +1,14 @@
+diff -uNrp anaconda-33.16.3.5.orig/pyanaconda/ui/gui/spokes/subscription.py anaconda-33.16.3.5/pyanaconda/ui/gui/spokes/subscription.py
+--- anaconda-33.16.3.5.orig/pyanaconda/ui/gui/spokes/subscription.py	2020-05-28 02:54:11.000000000 -0500
++++ anaconda-33.16.3.5/pyanaconda/ui/gui/spokes/subscription.py	2020-06-19 08:13:13.262888890 -0500
+@@ -521,6 +521,10 @@ class SubscriptionSpoke(NormalSpoke):
+         self._registration_error = error_message
+         # also set the spoke warning banner
+         self.show_warning_message(error_message)
++    
++    @property
++    def showable(self):
++        return False
+ 
+     def initialize(self):
+         NormalSpoke.initialize(self)
diff --git a/SOURCES/0002-add-centos-background-color.patch b/SOURCES/0002-add-centos-background-color.patch
new file mode 100644
index 0000000..1d33b3c
--- /dev/null
+++ b/SOURCES/0002-add-centos-background-color.patch
@@ -0,0 +1,11 @@
+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
new file mode 100644
index 0000000..9356722
--- /dev/null
+++ b/SOURCES/0003-disable-subscription-button.patch
@@ -0,0 +1,78 @@
+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
new file mode 100644
index 0000000..5c6c55d
--- /dev/null
+++ b/SOURCES/centos-l10n.patch
@@ -0,0 +1,1044 @@
+diff -uNrp anaconda-33.16.3.5.orig/po/af.po anaconda-33.16.3.5/po/af.po
+--- anaconda-33.16.3.5.orig/po/af.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/af.po	2020-06-19 08:46:28.407715348 -0500
+@@ -6692,7 +6692,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/am.po anaconda-33.16.3.5/po/am.po
+--- anaconda-33.16.3.5.orig/po/am.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/am.po	2020-06-19 08:46:28.408715346 -0500
+@@ -6692,7 +6692,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/ar.po anaconda-33.16.3.5/po/ar.po
+--- anaconda-33.16.3.5.orig/po/ar.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/ar.po	2020-06-19 08:46:28.409715344 -0500
+@@ -6932,7 +6932,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/as.po anaconda-33.16.3.5/po/as.po
+--- anaconda-33.16.3.5.orig/po/as.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/as.po	2020-06-19 08:46:28.411715340 -0500
+@@ -7131,7 +7131,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/ast.po anaconda-33.16.3.5/po/ast.po
+--- anaconda-33.16.3.5.orig/po/ast.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/ast.po	2020-06-19 08:46:28.412715339 -0500
+@@ -6714,7 +6714,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/be.po anaconda-33.16.3.5/po/be.po
+--- anaconda-33.16.3.5.orig/po/be.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/be.po	2020-06-19 08:46:28.414715334 -0500
+@@ -7511,8 +7511,8 @@ 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 ""
+diff -uNrp anaconda-33.16.3.5.orig/po/bg.po anaconda-33.16.3.5/po/bg.po
+--- anaconda-33.16.3.5.orig/po/bg.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/bg.po	2020-06-19 08:46:28.416715331 -0500
+@@ -7295,7 +7295,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/bn_IN.po anaconda-33.16.3.5/po/bn_IN.po
+--- anaconda-33.16.3.5.orig/po/bn_IN.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/bn_IN.po	2020-06-19 08:46:28.419715325 -0500
+@@ -7154,7 +7154,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/bn.po anaconda-33.16.3.5/po/bn.po
+--- anaconda-33.16.3.5.orig/po/bn.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/bn.po	2020-06-19 08:46:28.421715321 -0500
+@@ -6735,7 +6735,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/bo.po anaconda-33.16.3.5/po/bo.po
+--- anaconda-33.16.3.5.orig/po/bo.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/bo.po	2020-06-19 08:46:28.423715317 -0500
+@@ -6688,7 +6688,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/bs.po anaconda-33.16.3.5/po/bs.po
+--- anaconda-33.16.3.5.orig/po/bs.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/bs.po	2020-06-19 08:46:28.426715311 -0500
+@@ -6703,7 +6703,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/ca.po anaconda-33.16.3.5/po/ca.po
+--- anaconda-33.16.3.5.orig/po/ca.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/ca.po	2020-06-19 08:46:28.429715305 -0500
+@@ -7487,7 +7487,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/cs.po anaconda-33.16.3.5/po/cs.po
+--- anaconda-33.16.3.5.orig/po/cs.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/cs.po	2020-06-19 08:46:28.432715299 -0500
+@@ -7465,8 +7465,8 @@ 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 ""
+diff -uNrp anaconda-33.16.3.5.orig/po/cy.po anaconda-33.16.3.5/po/cy.po
+--- anaconda-33.16.3.5.orig/po/cy.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/cy.po	2020-06-19 08:46:28.433715297 -0500
+@@ -6700,7 +6700,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/da.po anaconda-33.16.3.5/po/da.po
+--- anaconda-33.16.3.5.orig/po/da.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/da.po	2020-06-19 08:46:28.435715293 -0500
+@@ -7372,7 +7372,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/de_CH.po anaconda-33.16.3.5/po/de_CH.po
+--- anaconda-33.16.3.5.orig/po/de_CH.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/de_CH.po	2020-06-19 08:46:28.436715292 -0500
+@@ -6721,7 +6721,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/de.po anaconda-33.16.3.5/po/de.po
+--- anaconda-33.16.3.5.orig/po/de.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/de.po	2020-06-19 08:46:28.438715288 -0500
+@@ -7582,8 +7582,8 @@ 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 ""
+diff -uNrp anaconda-33.16.3.5.orig/po/el.po anaconda-33.16.3.5/po/el.po
+--- anaconda-33.16.3.5.orig/po/el.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/el.po	2020-06-19 08:46:28.439715286 -0500
+@@ -6731,7 +6731,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/en_GB.po anaconda-33.16.3.5/po/en_GB.po
+--- anaconda-33.16.3.5.orig/po/en_GB.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/en_GB.po	2020-06-19 08:46:28.440715284 -0500
+@@ -6726,7 +6726,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/et.po anaconda-33.16.3.5/po/et.po
+--- anaconda-33.16.3.5.orig/po/et.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/et.po	2020-06-19 08:46:28.441715282 -0500
+@@ -6751,7 +6751,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/eu.po anaconda-33.16.3.5/po/eu.po
+--- anaconda-33.16.3.5.orig/po/eu.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/eu.po	2020-06-19 08:46:28.443715278 -0500
+@@ -6735,7 +6735,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/fa.po anaconda-33.16.3.5/po/fa.po
+--- anaconda-33.16.3.5.orig/po/fa.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/fa.po	2020-06-19 08:46:28.444715276 -0500
+@@ -6747,7 +6747,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/fil.po anaconda-33.16.3.5/po/fil.po
+--- anaconda-33.16.3.5.orig/po/fil.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/fil.po	2020-06-19 08:46:28.445715274 -0500
+@@ -6783,7 +6783,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/fi.po anaconda-33.16.3.5/po/fi.po
+--- anaconda-33.16.3.5.orig/po/fi.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/fi.po	2020-06-19 08:46:28.447715270 -0500
+@@ -7104,7 +7104,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/fr.po anaconda-33.16.3.5/po/fr.po
+--- anaconda-33.16.3.5.orig/po/fr.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/fr.po	2020-06-19 08:46:28.448715268 -0500
+@@ -7653,8 +7653,8 @@ 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 ""
+diff -uNrp anaconda-33.16.3.5.orig/po/fur.po anaconda-33.16.3.5/po/fur.po
+--- anaconda-33.16.3.5.orig/po/fur.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/fur.po	2020-06-19 08:46:28.450715264 -0500
+@@ -7292,7 +7292,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/ga.po anaconda-33.16.3.5/po/ga.po
+--- anaconda-33.16.3.5.orig/po/ga.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/ga.po	2020-06-19 08:46:28.451715262 -0500
+@@ -6729,7 +6729,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/gl.po anaconda-33.16.3.5/po/gl.po
+--- anaconda-33.16.3.5.orig/po/gl.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/gl.po	2020-06-19 08:46:28.452715260 -0500
+@@ -6904,7 +6904,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/gu.po anaconda-33.16.3.5/po/gu.po
+--- anaconda-33.16.3.5.orig/po/gu.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/gu.po	2020-06-19 08:46:28.454715256 -0500
+@@ -6955,7 +6955,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/he.po anaconda-33.16.3.5/po/he.po
+--- anaconda-33.16.3.5.orig/po/he.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/he.po	2020-06-19 08:46:28.455715254 -0500
+@@ -7245,7 +7245,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/hi.po anaconda-33.16.3.5/po/hi.po
+--- anaconda-33.16.3.5.orig/po/hi.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/hi.po	2020-06-19 08:46:28.456715253 -0500
+@@ -6883,7 +6883,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/hr.po anaconda-33.16.3.5/po/hr.po
+--- anaconda-33.16.3.5.orig/po/hr.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/hr.po	2020-06-19 08:46:28.458715249 -0500
+@@ -7280,7 +7280,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/hu.po anaconda-33.16.3.5/po/hu.po
+--- anaconda-33.16.3.5.orig/po/hu.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/hu.po	2020-06-19 08:46:28.459715247 -0500
+@@ -7488,7 +7488,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/ia.po anaconda-33.16.3.5/po/ia.po
+--- anaconda-33.16.3.5.orig/po/ia.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/ia.po	2020-06-19 08:46:28.461715243 -0500
+@@ -6972,7 +6972,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/id.po anaconda-33.16.3.5/po/id.po
+--- anaconda-33.16.3.5.orig/po/id.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/id.po	2020-06-19 08:46:28.462715241 -0500
+@@ -7277,8 +7277,8 @@ msgid "Liveinst Setup"
+ msgstr "Penyiapan Liveinst"
+ 
+ #: data/liveinst/gnome/rhel-welcome.js:91
+-msgid "Try RHEL"
+-msgstr "Coba RHEL"
++msgid "Try CentOS"
++msgstr "Coba CentOS"
+ 
+ #: data/liveinst/gnome/rhel-welcome.js:107
+ msgid ""
+diff -uNrp anaconda-33.16.3.5.orig/po/ilo.po anaconda-33.16.3.5/po/ilo.po
+--- anaconda-33.16.3.5.orig/po/ilo.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/ilo.po	2020-06-19 08:46:28.463715239 -0500
+@@ -6695,7 +6695,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/is.po anaconda-33.16.3.5/po/is.po
+--- anaconda-33.16.3.5.orig/po/is.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/is.po	2020-06-19 08:46:28.465715235 -0500
+@@ -6696,7 +6696,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/it.po anaconda-33.16.3.5/po/it.po
+--- anaconda-33.16.3.5.orig/po/it.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/it.po	2020-06-19 08:46:28.468715229 -0500
+@@ -7521,8 +7521,8 @@ 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 ""
+diff -uNrp anaconda-33.16.3.5.orig/po/ja.po anaconda-33.16.3.5/po/ja.po
+--- anaconda-33.16.3.5.orig/po/ja.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/ja.po	2020-06-19 08:46:28.470715225 -0500
+@@ -7520,8 +7520,8 @@ 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 ""
+diff -uNrp anaconda-33.16.3.5.orig/po/ka.po anaconda-33.16.3.5/po/ka.po
+--- anaconda-33.16.3.5.orig/po/ka.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/ka.po	2020-06-19 08:46:28.473715219 -0500
+@@ -6742,7 +6742,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/kk.po anaconda-33.16.3.5/po/kk.po
+--- anaconda-33.16.3.5.orig/po/kk.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/kk.po	2020-06-19 08:46:28.476715213 -0500
+@@ -7317,7 +7317,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/km.po anaconda-33.16.3.5/po/km.po
+--- anaconda-33.16.3.5.orig/po/km.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/km.po	2020-06-19 08:46:28.478715210 -0500
+@@ -6933,7 +6933,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/kn.po anaconda-33.16.3.5/po/kn.po
+--- anaconda-33.16.3.5.orig/po/kn.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/kn.po	2020-06-19 08:46:28.481715204 -0500
+@@ -7095,7 +7095,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/ko.po anaconda-33.16.3.5/po/ko.po
+--- anaconda-33.16.3.5.orig/po/ko.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/ko.po	2020-06-19 08:46:28.484715198 -0500
+@@ -7389,8 +7389,8 @@ 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 ""
+diff -uNrp anaconda-33.16.3.5.orig/po/lt.po anaconda-33.16.3.5/po/lt.po
+--- anaconda-33.16.3.5.orig/po/lt.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/lt.po	2020-06-19 08:46:28.487715192 -0500
+@@ -7365,7 +7365,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/lv.po anaconda-33.16.3.5/po/lv.po
+--- anaconda-33.16.3.5.orig/po/lv.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/lv.po	2020-06-19 08:46:28.488715190 -0500
+@@ -6733,7 +6733,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/mai.po anaconda-33.16.3.5/po/mai.po
+--- anaconda-33.16.3.5.orig/po/mai.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/mai.po	2020-06-19 08:46:28.490715186 -0500
+@@ -6711,7 +6711,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/mk.po anaconda-33.16.3.5/po/mk.po
+--- anaconda-33.16.3.5.orig/po/mk.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/mk.po	2020-06-19 08:46:28.491715184 -0500
+@@ -6699,7 +6699,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/ml.po anaconda-33.16.3.5/po/ml.po
+--- anaconda-33.16.3.5.orig/po/ml.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/ml.po	2020-06-19 08:46:28.492715182 -0500
+@@ -6913,7 +6913,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/mr.po anaconda-33.16.3.5/po/mr.po
+--- anaconda-33.16.3.5.orig/po/mr.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/mr.po	2020-06-19 08:46:28.494715179 -0500
+@@ -6951,7 +6951,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/ms.po anaconda-33.16.3.5/po/ms.po
+--- anaconda-33.16.3.5.orig/po/ms.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/ms.po	2020-06-19 08:46:28.495715176 -0500
+@@ -6691,7 +6691,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/my.po anaconda-33.16.3.5/po/my.po
+--- anaconda-33.16.3.5.orig/po/my.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/my.po	2020-06-19 08:46:28.496715174 -0500
+@@ -6719,7 +6719,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/nb.po anaconda-33.16.3.5/po/nb.po
+--- anaconda-33.16.3.5.orig/po/nb.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/nb.po	2020-06-19 08:46:28.498715171 -0500
+@@ -7008,7 +7008,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/nds.po anaconda-33.16.3.5/po/nds.po
+--- anaconda-33.16.3.5.orig/po/nds.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/nds.po	2020-06-19 08:46:28.499715169 -0500
+@@ -6693,7 +6693,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/ne.po anaconda-33.16.3.5/po/ne.po
+--- anaconda-33.16.3.5.orig/po/ne.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/ne.po	2020-06-19 08:46:28.500715167 -0500
+@@ -6696,7 +6696,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/nl.po anaconda-33.16.3.5/po/nl.po
+--- anaconda-33.16.3.5.orig/po/nl.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/nl.po	2020-06-19 08:46:28.502715163 -0500
+@@ -7331,8 +7331,8 @@ 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 ""
+diff -uNrp anaconda-33.16.3.5.orig/po/nn.po anaconda-33.16.3.5/po/nn.po
+--- anaconda-33.16.3.5.orig/po/nn.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/nn.po	2020-06-19 08:46:28.503715161 -0500
+@@ -6705,7 +6705,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/nso.po anaconda-33.16.3.5/po/nso.po
+--- anaconda-33.16.3.5.orig/po/nso.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/nso.po	2020-06-19 08:46:28.504715159 -0500
+@@ -6697,7 +6697,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/or.po anaconda-33.16.3.5/po/or.po
+--- anaconda-33.16.3.5.orig/po/or.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/or.po	2020-06-19 08:46:28.506715155 -0500
+@@ -6923,7 +6923,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/pa.po anaconda-33.16.3.5/po/pa.po
+--- anaconda-33.16.3.5.orig/po/pa.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/pa.po	2020-06-19 08:46:28.507715153 -0500
+@@ -6972,7 +6972,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/pl.po anaconda-33.16.3.5/po/pl.po
+--- anaconda-33.16.3.5.orig/po/pl.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/pl.po	2020-06-19 08:46:28.509715149 -0500
+@@ -7330,8 +7330,8 @@ 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 ""
+diff -uNrp anaconda-33.16.3.5.orig/po/pt_BR.po anaconda-33.16.3.5/po/pt_BR.po
+--- anaconda-33.16.3.5.orig/po/pt_BR.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/pt_BR.po	2020-06-19 08:46:28.510715147 -0500
+@@ -7527,8 +7527,8 @@ 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 ""
+diff -uNrp anaconda-33.16.3.5.orig/po/pt.po anaconda-33.16.3.5/po/pt.po
+--- anaconda-33.16.3.5.orig/po/pt.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/pt.po	2020-06-19 08:46:28.511715145 -0500
+@@ -6810,7 +6810,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/ro.po anaconda-33.16.3.5/po/ro.po
+--- anaconda-33.16.3.5.orig/po/ro.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/ro.po	2020-06-19 08:46:28.513715141 -0500
+@@ -7380,7 +7380,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/ru.po anaconda-33.16.3.5/po/ru.po
+--- anaconda-33.16.3.5.orig/po/ru.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/ru.po	2020-06-19 08:46:28.514715139 -0500
+@@ -7469,8 +7469,8 @@ 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 ""
+diff -uNrp anaconda-33.16.3.5.orig/po/si.po anaconda-33.16.3.5/po/si.po
+--- anaconda-33.16.3.5.orig/po/si.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/si.po	2020-06-19 08:46:28.516715136 -0500
+@@ -6722,7 +6722,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/sk.po anaconda-33.16.3.5/po/sk.po
+--- anaconda-33.16.3.5.orig/po/sk.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/sk.po	2020-06-19 08:46:28.517715134 -0500
+@@ -7484,8 +7484,8 @@ 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 ""
+diff -uNrp anaconda-33.16.3.5.orig/po/sl.po anaconda-33.16.3.5/po/sl.po
+--- anaconda-33.16.3.5.orig/po/sl.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/sl.po	2020-06-19 08:46:28.518715132 -0500
+@@ -6706,7 +6706,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/sq.po anaconda-33.16.3.5/po/sq.po
+--- anaconda-33.16.3.5.orig/po/sq.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/sq.po	2020-06-19 08:46:28.520715128 -0500
+@@ -7317,7 +7317,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/sr@latin.po anaconda-33.16.3.5/po/sr@latin.po
+--- anaconda-33.16.3.5.orig/po/sr@latin.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/sr@latin.po	2020-06-19 08:46:28.521715126 -0500
+@@ -6715,7 +6715,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/sr.po anaconda-33.16.3.5/po/sr.po
+--- anaconda-33.16.3.5.orig/po/sr.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/sr.po	2020-06-19 08:46:28.522715124 -0500
+@@ -7253,7 +7253,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/sv.po anaconda-33.16.3.5/po/sv.po
+--- anaconda-33.16.3.5.orig/po/sv.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/sv.po	2020-06-19 08:46:28.524715120 -0500
+@@ -7484,8 +7484,8 @@ 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 ""
+diff -uNrp anaconda-33.16.3.5.orig/po/ta.po anaconda-33.16.3.5/po/ta.po
+--- anaconda-33.16.3.5.orig/po/ta.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/ta.po	2020-06-19 08:46:28.525715118 -0500
+@@ -7144,7 +7144,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/te.po anaconda-33.16.3.5/po/te.po
+--- anaconda-33.16.3.5.orig/po/te.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/te.po	2020-06-19 08:46:28.527715114 -0500
+@@ -6898,7 +6898,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/tg.po anaconda-33.16.3.5/po/tg.po
+--- anaconda-33.16.3.5.orig/po/tg.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/tg.po	2020-06-19 08:46:28.528715112 -0500
+@@ -6692,7 +6692,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/th.po anaconda-33.16.3.5/po/th.po
+--- anaconda-33.16.3.5.orig/po/th.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/th.po	2020-06-19 08:46:28.529715110 -0500
+@@ -6766,7 +6766,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/tr.po anaconda-33.16.3.5/po/tr.po
+--- anaconda-33.16.3.5.orig/po/tr.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/tr.po	2020-06-19 08:46:28.531715106 -0500
+@@ -7257,8 +7257,8 @@ msgid "Liveinst Setup"
+ msgstr "Liveinst Kurulumu"
+ 
+ #: data/liveinst/gnome/rhel-welcome.js:91
+-msgid "Try RHEL"
+-msgstr "RHEL'i deneyin"
++msgid "Try CentOS"
++msgstr "CentOS'i deneyin"
+ 
+ #: data/liveinst/gnome/rhel-welcome.js:107
+ msgid ""
+diff -uNrp anaconda-33.16.3.5.orig/po/uk.po anaconda-33.16.3.5/po/uk.po
+--- anaconda-33.16.3.5.orig/po/uk.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/uk.po	2020-06-19 08:46:28.532715104 -0500
+@@ -7347,8 +7347,8 @@ 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 ""
+diff -uNrp anaconda-33.16.3.5.orig/po/ur.po anaconda-33.16.3.5/po/ur.po
+--- anaconda-33.16.3.5.orig/po/ur.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/ur.po	2020-06-19 08:46:28.534715100 -0500
+@@ -6693,7 +6693,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/vi.po anaconda-33.16.3.5/po/vi.po
+--- anaconda-33.16.3.5.orig/po/vi.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/vi.po	2020-06-19 08:46:28.535715098 -0500
+@@ -6689,7 +6689,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/zh_CN.po anaconda-33.16.3.5/po/zh_CN.po
+--- anaconda-33.16.3.5.orig/po/zh_CN.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/zh_CN.po	2020-06-19 08:46:28.536715097 -0500
+@@ -7244,8 +7244,8 @@ 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 ""
+diff -uNrp anaconda-33.16.3.5.orig/po/zh_HK.po anaconda-33.16.3.5/po/zh_HK.po
+--- anaconda-33.16.3.5.orig/po/zh_HK.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/zh_HK.po	2020-06-19 08:46:28.538715093 -0500
+@@ -6778,7 +6778,7 @@ 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
+diff -uNrp anaconda-33.16.3.5.orig/po/zh_TW.po anaconda-33.16.3.5/po/zh_TW.po
+--- anaconda-33.16.3.5.orig/po/zh_TW.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/zh_TW.po	2020-06-19 08:46:28.539715091 -0500
+@@ -7226,8 +7226,8 @@ 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 ""
+diff -uNrp anaconda-33.16.3.5.orig/po/zu.po anaconda-33.16.3.5/po/zu.po
+--- anaconda-33.16.3.5.orig/po/zu.po	2020-06-04 07:42:56.000000000 -0500
++++ anaconda-33.16.3.5/po/zu.po	2020-06-19 08:46:28.540715089 -0500
+@@ -6694,7 +6694,7 @@ 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
diff --git a/SPECS/anaconda.spec b/SPECS/anaconda.spec
index ce61114..a3cbb5f 100644
--- a/SPECS/anaconda.spec
+++ b/SPECS/anaconda.spec
@@ -12,6 +12,11 @@ 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).