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: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1998>
This commit is contained in:
Florian Müllner 2021-10-05 15:05:18 +02:00
parent 380d2db1d9
commit 7f77b6f054

View File

@ -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 });