diff options
author | Alyssa Milburn | 2011-06-06 12:00:06 +0200 |
---|---|---|
committer | Alyssa Milburn | 2011-06-06 12:00:06 +0200 |
commit | a809ac9b7eeb1260d18b8a40c664a07624d94304 (patch) | |
tree | 9ee14cab290190aa92a57809dd34ce1781a28cb5 /gui | |
parent | 7a52d414e9b7387427f7e331c9367db5e7000078 (diff) | |
download | scummvm-rg350-a809ac9b7eeb1260d18b8a40c664a07624d94304.tar.gz scummvm-rg350-a809ac9b7eeb1260d18b8a40c664a07624d94304.tar.bz2 scummvm-rg350-a809ac9b7eeb1260d18b8a40c664a07624d94304.zip |
I18N: Make some more GUI strings translatable.
Diffstat (limited to 'gui')
-rw-r--r-- | gui/options.cpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/gui/options.cpp b/gui/options.cpp index eae6bf403e..b0b9fe6c90 100644 --- a/gui/options.cpp +++ b/gui/options.cpp @@ -369,7 +369,7 @@ void OptionsDialog::close() { if (gfxError != OSystem::kTransactionSuccess) { // Revert ConfMan to what OSystem is using. - Common::String message = "Failed to apply some of the graphic options changes:"; + Common::String message = _("Failed to apply some of the graphic options changes:"); if (gfxError & OSystem::kTransactionModeSwitchFailed) { const OSystem::GraphicsMode *gm = g_system->getSupportedGraphicsModes(); @@ -380,17 +380,20 @@ void OptionsDialog::close() { } gm++; } - message += "\nthe video mode could not be changed."; + message += "\n"; + message += _("the video mode could not be changed."); } if (gfxError & OSystem::kTransactionAspectRatioFailed) { ConfMan.setBool("aspect_ratio", g_system->getFeatureState(OSystem::kFeatureAspectRatioCorrection), _domain); - message += "\nthe fullscreen setting could not be changed"; + message += "\n"; + message += _("the fullscreen setting could not be changed"); } if (gfxError & OSystem::kTransactionFullscreenFailed) { ConfMan.setBool("fullscreen", g_system->getFeatureState(OSystem::kFeatureFullscreenMode), _domain); - message += "\nthe aspect ratio setting could not be changed"; + message += "\n"; + message += _("the aspect ratio setting could not be changed"); } // And display the error |