diff options
author | Thierry Crozat | 2010-07-09 17:22:02 +0000 |
---|---|---|
committer | Thierry Crozat | 2010-07-09 17:22:02 +0000 |
commit | 65d6ce41935f6a137869d4e87bc5690950ae315f (patch) | |
tree | ae81f201e5c2147abd6a503744e376941a0bf8e4 /gui | |
parent | 0e4bf4aff70846b77bac2f39d0f031cede6afa05 (diff) | |
download | scummvm-rg350-65d6ce41935f6a137869d4e87bc5690950ae315f.tar.gz scummvm-rg350-65d6ce41935f6a137869d4e87bc5690950ae315f.tar.bz2 scummvm-rg350-65d6ce41935f6a137869d4e87bc5690950ae315f.zip |
Replace _s(test ? "string1" : "string2") by test ? _("string1") : _("string2") in two places. With the old code the second string was not detected as being translatable.
svn-id: r50763
Diffstat (limited to 'gui')
-rw-r--r-- | gui/options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/options.cpp b/gui/options.cpp index 9244edfa75..1cdba06cd7 100644 --- a/gui/options.cpp +++ b/gui/options.cpp @@ -642,7 +642,7 @@ void OptionsDialog::addGraphicControls(GuiObject *boss, const Common::String &pr void OptionsDialog::addAudioControls(GuiObject *boss, const Common::String &prefix) { // The MIDI mode popup & a label - _midiPopUpDesc = new StaticTextWidget(boss, prefix + "auMidiPopupDesc", _(_domain == Common::ConfigManager::kApplicationDomain ? "Preferred Device:" : "Music Device:"), _(_domain == Common::ConfigManager::kApplicationDomain ? "Specifies preferred sound device or sound card emulator" : "Specifies output sound device or sound card emulator")); + _midiPopUpDesc = new StaticTextWidget(boss, prefix + "auMidiPopupDesc", _domain == Common::ConfigManager::kApplicationDomain ? _("Preferred Device:") : _("Music Device:"), _domain == Common::ConfigManager::kApplicationDomain ? _("Specifies preferred sound device or sound card emulator") : _("Specifies output sound device or sound card emulator")); _midiPopUp = new PopUpWidget(boss, prefix + "auMidiPopup", _("Specifies output sound device or sound card emulator")); _mt32DevicePopUpDesc = new StaticTextWidget(boss, prefix + "auPrefMt32PopupDesc", _("MT32 Device:"), _("Specifies default sound device for Roland MT-32/LAPC1/CM32l/CM64 output")); |