aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorJordi Vilalta Prat2010-06-26 15:48:03 +0000
committerJordi Vilalta Prat2010-06-26 15:48:03 +0000
commit063cef0c284cda74f6ad366182818ac4d3dfca83 (patch)
tree9b0358b7bede862c83ea3d2586fa0b44b59aa22d /sound
parent21831b61832060855017d5b30dc277eaa333aef8 (diff)
downloadscummvm-rg350-063cef0c284cda74f6ad366182818ac4d3dfca83.tar.gz
scummvm-rg350-063cef0c284cda74f6ad366182818ac4d3dfca83.tar.bz2
scummvm-rg350-063cef0c284cda74f6ad366182818ac4d3dfca83.zip
GUI: Add and improve some messages to translate
svn-id: r50324
Diffstat (limited to 'sound')
-rw-r--r--sound/fmopl.cpp4
-rw-r--r--sound/null.cpp4
-rw-r--r--sound/softsynth/pcspk.cpp4
3 files changed, 6 insertions, 6 deletions
diff --git a/sound/fmopl.cpp b/sound/fmopl.cpp
index 8fdddc20f8..dea8c5429b 100644
--- a/sound/fmopl.cpp
+++ b/sound/fmopl.cpp
@@ -47,9 +47,9 @@ OPL::OPL() {
const Config::EmulatorDescription Config::_drivers[] = {
{ "auto", "<default>", kAuto, kFlagOpl2 | kFlagDualOpl2 | kFlagOpl3 },
- { "mame", "MAME OPL emulator", kMame, kFlagOpl2 },
+ { "mame", _s("MAME OPL emulator"), kMame, kFlagOpl2 },
#ifndef DISABLE_DOSBOX_OPL
- { "db", "DOSBox OPL emulator", kDOSBox, kFlagOpl2 | kFlagDualOpl2 | kFlagOpl3 },
+ { "db", _s("DOSBox OPL emulator"), kDOSBox, kFlagOpl2 | kFlagDualOpl2 | kFlagOpl3 },
#endif
{ 0, 0, 0, 0 }
};
diff --git a/sound/null.cpp b/sound/null.cpp
index 9be545ab76..556b96c14c 100644
--- a/sound/null.cpp
+++ b/sound/null.cpp
@@ -32,7 +32,7 @@ Common::Error NullMusicPlugin::createInstance(MidiDriver **mididriver, MidiDrive
MusicDevices NullMusicPlugin::getDevices() const {
MusicDevices devices;
- devices.push_back(MusicDevice(this, _s(""), MT_NULL));
+ devices.push_back(MusicDevice(this, "", MT_NULL));
return devices;
}
@@ -50,7 +50,7 @@ public:
MusicDevices AutoMusicPlugin::getDevices() const {
MusicDevices devices;
- devices.push_back(MusicDevice(this, _s(""), MT_AUTO));
+ devices.push_back(MusicDevice(this, "", MT_AUTO));
return devices;
}
diff --git a/sound/softsynth/pcspk.cpp b/sound/softsynth/pcspk.cpp
index fae2b7eef3..bdf9f112e8 100644
--- a/sound/softsynth/pcspk.cpp
+++ b/sound/softsynth/pcspk.cpp
@@ -151,7 +151,7 @@ public:
MusicDevices PCSpeakerMusicPlugin::getDevices() const {
MusicDevices devices;
- devices.push_back(MusicDevice(this, _s(""), MT_PCSPK));
+ devices.push_back(MusicDevice(this, "", MT_PCSPK));
return devices;
}
@@ -170,7 +170,7 @@ public:
MusicDevices PCjrMusicPlugin::getDevices() const {
MusicDevices devices;
- devices.push_back(MusicDevice(this, _s(""), MT_PCJR));
+ devices.push_back(MusicDevice(this, "", MT_PCJR));
return devices;
}