aboutsummaryrefslogtreecommitdiff
path: root/engines/engine.cpp
diff options
context:
space:
mode:
authorThierry Crozat2011-06-20 23:12:26 +0100
committerThierry Crozat2011-06-20 23:12:26 +0100
commitf4d20223be7a2bb9cf5a27c689a7b7dea1be4958 (patch)
treedc1404786b3ab82c49c0980b53e116de52743dec /engines/engine.cpp
parentba6d0121e109fc363631d38be5b8630a004508ad (diff)
downloadscummvm-rg350-f4d20223be7a2bb9cf5a27c689a7b7dea1be4958.tar.gz
scummvm-rg350-f4d20223be7a2bb9cf5a27c689a7b7dea1be4958.tar.bz2
scummvm-rg350-f4d20223be7a2bb9cf5a27c689a7b7dea1be4958.zip
I18N: Make the unsupported game warning translatable
Diffstat (limited to 'engines/engine.cpp')
-rw-r--r--engines/engine.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/engine.cpp b/engines/engine.cpp
index 0797bafc27..dde5064dc4 100644
--- a/engines/engine.cpp
+++ b/engines/engine.cpp
@@ -402,10 +402,10 @@ void Engine::openMainMenuDialog() {
bool Engine::warnUserAboutUnsupportedGame() {
if (ConfMan.getBool("enable_unsupported_game_warning")) {
- GUI::MessageDialog alert("WARNING: The game you are about to start is"
+ GUI::MessageDialog alert(_("WARNING: The game you are about to start is"
" not yet fully supported by ScummVM. As such, it is likely to be"
" unstable, and any saves you make might not work in future"
- " versions of ScummVM.", "Start anyway", "Cancel");
+ " versions of ScummVM."), _("Start anyway"), _("Cancel"));
return alert.runModal() == GUI::kMessageOK;
}
return true;