[Scummvm-git-logs] scummvm master -> 34f9015e665948fb0d9f1b27ca5f08f40a33d2a3
antoniou79
a.antoniou79 at gmail.com
Sun Feb 9 20:23:56 UTC 2020
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:
34f9015e66 GUI: OPTIONS: Use translated string for None entry in Accessibility tab
Commit: 34f9015e665948fb0d9f1b27ca5f08f40a33d2a3
https://github.com/scummvm/scummvm/commit/34f9015e665948fb0d9f1b27ca5f08f40a33d2a3
Author: Thanasis Antoniou (a.antoniou79 at gmail.com)
Date: 2020-02-09T22:23:03+02:00
Commit Message:
GUI: OPTIONS: Use translated string for None entry in Accessibility tab
Changed paths:
gui/options.cpp
diff --git a/gui/options.cpp b/gui/options.cpp
index 0260c8c..1c6dda0 100644
--- a/gui/options.cpp
+++ b/gui/options.cpp
@@ -2073,7 +2073,7 @@ void GlobalOptionsDialog::addAccessibilityControls(GuiObject *boss, const Common
_ttsVoiceSelectionPopUp->appendEntry(voices[i].getDescription(), i);
}
if (voices.empty())
- _ttsVoiceSelectionPopUp->appendEntry("None", 0);
+ _ttsVoiceSelectionPopUp->appendEntry(_("None"), 0);
if (ConfMan.hasKey("tts_voice") && (unsigned) ConfMan.getInt("tts_voice", _domain) < voices.size())
_ttsVoiceSelectionPopUp->setSelectedTag(ConfMan.getInt("tts_voice", _domain)) ;
More information about the Scummvm-git-logs
mailing list