From 7f77b6f054013e235c88df60163317ab2c7e8c9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 5 Oct 2021 15:05:18 +0200 Subject: [PATCH] welcomeDialog: Fix title translation Translators translate the format string ('... GNOME %s'), not the substituted one ('... GNOME 41'). https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/4669 Part-of: --- js/ui/welcomeDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/welcomeDialog.js b/js/ui/welcomeDialog.js index cf6540fe2..9d99f0035 100644 --- a/js/ui/welcomeDialog.js +++ b/js/ui/welcomeDialog.js @@ -33,7 +33,7 @@ class WelcomeDialog extends ModalDialog.ModalDialog { _buildLayout() { const [majorVersion] = Config.PACKAGE_VERSION.split('.'); - const title = _('Welcome to GNOME %s'.format(majorVersion)); + const title = _('Welcome to GNOME %s').format(majorVersion); const description = _('If you want to learn your way around, check out the tour.'); const content = new Dialog.MessageDialogContent({ title, description });