Blame SOURCES/0001-welcomeDialog-Adapt-dialog-title.patch

f648b7
From 5033596c01e1d8fcdc9bd64a575a44f423b1ac51 Mon Sep 17 00:00:00 2001
f648b7
From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org>
f648b7
Date: Wed, 27 Oct 2021 15:18:20 +0200
f648b7
Subject: [PATCH] welcomeDialog: Adapt dialog title
f648b7
f648b7
Use RHEL branding instead of the upstream GNOME XX one.
f648b7
---
f648b7
 js/ui/welcomeDialog.js | 4 +---
f648b7
 1 file changed, 1 insertion(+), 3 deletions(-)
f648b7
f648b7
diff --git a/js/ui/welcomeDialog.js b/js/ui/welcomeDialog.js
f648b7
index 9d99f0035..17e2a277c 100644
f648b7
--- a/js/ui/welcomeDialog.js
f648b7
+++ b/js/ui/welcomeDialog.js
f648b7
@@ -3,7 +3,6 @@
f648b7
 
f648b7
 const { Clutter, GObject, Shell, St } = imports.gi;
f648b7
 
f648b7
-const Config = imports.misc.config;
f648b7
 const Dialog = imports.ui.dialog;
f648b7
 const Main = imports.ui.main;
f648b7
 const ModalDialog = imports.ui.modalDialog;
f648b7
@@ -32,8 +31,7 @@ class WelcomeDialog extends ModalDialog.ModalDialog {
f648b7
     }
f648b7
 
f648b7
     _buildLayout() {
f648b7
-        const [majorVersion] = Config.PACKAGE_VERSION.split('.');
f648b7
-        const title = _('Welcome to GNOME %s').format(majorVersion);
f648b7
+        const title = _('Welcome to Red Hat Enterprise Linux');
f648b7
         const description = _('If you want to learn your way around, check out the tour.');
f648b7
         const content = new Dialog.MessageDialogContent({ title, description });
f648b7
 
f648b7
-- 
f648b7
2.32.0
f648b7