[Scummvm-git-logs] scummvm master -> 36d19d68c1ca86365874a9a901789315bdf758a1

sev- sev at scummvm.org
Sat Apr 17 20:20:15 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:
36d19d68c1 GUI: Fix formatting for I18N comments


Commit: 36d19d68c1ca86365874a9a901789315bdf758a1
    https://github.com/scummvm/scummvm/commit/36d19d68c1ca86365874a9a901789315bdf758a1
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-04-17T22:19:47+02:00

Commit Message:
GUI: Fix formatting for I18N comments

Changed paths:
    gui/options.cpp


diff --git a/gui/options.cpp b/gui/options.cpp
index 39accf5945..cf611f48db 100644
--- a/gui/options.cpp
+++ b/gui/options.cpp
@@ -131,10 +131,14 @@ static const char *savePeriodLabels[] = { _s("Never"), _s("Every 5 mins"), _s("E
 static const int savePeriodValues[] = { 0, 5 * 60, 10 * 60, 15 * 60, 30 * 60, -1 };
 
 static const char *guiBaseLabels[] = {
-	_s("Auto"),		// I18N: Automatic GUI scaling
-	_s("Large"),	// I18N: Large GUI scale
-	_s("Medium"),	// I18N: Medium GUI scale
-	_s("Small"),	// I18N: Small GUI scale
+	// I18N: Automatic GUI scaling
+	_s("Auto"),
+	// I18N: Large GUI scale
+	_s("Large"),
+	// I18N: Medium GUI scale
+	_s("Medium"),
+	// I18N: Small GUI scale
+	_s("Small"),
 	nullptr
 };
 static const int guiBaseValues[] = { 0, 240, 480, 720, -1 };




More information about the Scummvm-git-logs mailing list