[Scummvm-git-logs] scummvm master -> bcecf62f170cc8667b642c4483821c5fb064e2ab

sev- sev at scummvm.org
Sat Apr 17 19:25:38 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:
bcecf62f17 GUI: Added comments for translators for GUI scale options


Commit: bcecf62f170cc8667b642c4483821c5fb064e2ab
    https://github.com/scummvm/scummvm/commit/bcecf62f170cc8667b642c4483821c5fb064e2ab
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-04-17T21:25:29+02:00

Commit Message:
GUI: Added comments for translators for GUI scale options

Changed paths:
    gui/options.cpp


diff --git a/gui/options.cpp b/gui/options.cpp
index 8030b28d21..39accf5945 100644
--- a/gui/options.cpp
+++ b/gui/options.cpp
@@ -130,7 +130,13 @@ enum {
 static const char *savePeriodLabels[] = { _s("Never"), _s("Every 5 mins"), _s("Every 10 mins"), _s("Every 15 mins"), _s("Every 30 mins"), nullptr };
 static const int savePeriodValues[] = { 0, 5 * 60, 10 * 60, 15 * 60, 30 * 60, -1 };
 
-static const char *guiBaseLabels[] = { _s("Auto"), _s("Large"), _s("Medium"), _s("Small"), nullptr };
+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
+	nullptr
+};
 static const int guiBaseValues[] = { 0, 240, 480, 720, -1 };
 
 // The keyboard mouse speed values range from 0 to 7 and correspond to speeds shown in the label




More information about the Scummvm-git-logs mailing list