[Scummvm-git-logs] scummvm master -> 9656627494fd17ece3ca14195e5827282861fa09

lotharsm mail at serra.me
Sat Nov 13 20:31:50 UTC 2021


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
9656627494 GUI: Enable translation for missing strings


Commit: 9656627494fd17ece3ca14195e5827282861fa09
    https://github.com/scummvm/scummvm/commit/9656627494fd17ece3ca14195e5827282861fa09
Author: Lothar Serra Mari (mail at serra.me)
Date: 2021-11-13T21:31:41+01:00

Commit Message:
GUI: Enable translation for missing strings

Changed paths:
    gui/launcher.cpp


diff --git a/gui/launcher.cpp b/gui/launcher.cpp
index b6fb2d7cee..0c500eac72 100644
--- a/gui/launcher.cpp
+++ b/gui/launcher.cpp
@@ -195,9 +195,9 @@ void LauncherDialog::build() {
 		_groupPic->useThemeTransparency(true);
 	} else
 #endif
-		_grpChooserDesc = new StaticTextWidget(this, Common::String(_title + ".laGroupPopupDesc"), Common::U32String("Group by: "));
+		_grpChooserDesc = new StaticTextWidget(this, Common::String(_title + ".laGroupPopupDesc"), Common::U32String(_("Group by: ")));
 
-	_grpChooserPopup = new PopUpWidget(this, Common::String(_title + ".laGroupPopup"), Common::U32String("Select a criteria to group the entries"), kSetGroupMethodCmd);
+	_grpChooserPopup = new PopUpWidget(this, Common::String(_title + ".laGroupPopup"), Common::U32String(_("Select a criteria to group the entries"`)), kSetGroupMethodCmd);
 	// I18N: Group name for the game list
 	_grpChooserPopup->appendEntry(_c("None", "group"), kGroupByNone);
 	// I18N: Group name for the game list, grouped by the first letter of the game title




More information about the Scummvm-git-logs mailing list