diff options
| author | Thierry Crozat | 2011-06-13 22:19:18 +0100 |
|---|---|---|
| committer | Thierry Crozat | 2011-06-13 22:19:18 +0100 |
| commit | 06bbb57ad71103ac34e607c04798efae78a28880 (patch) | |
| tree | 48bf4eeac219fd00c957a43545e53300ef7f14f2 /engines/groovie | |
| parent | ba758710f5b4e700d5e18461bd0939876fbf4499 (diff) | |
| download | scummvm-rg350-06bbb57ad71103ac34e607c04798efae78a28880.tar.gz scummvm-rg350-06bbb57ad71103ac34e607c04798efae78a28880.tar.bz2 scummvm-rg350-06bbb57ad71103ac34e607c04798efae78a28880.zip | |
I18N: Make many more GUI MessageDialog strings translatable
Diffstat (limited to 'engines/groovie')
| -rw-r--r-- | engines/groovie/script.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/groovie/script.cpp b/engines/groovie/script.cpp index b52a8723fc..f87e6bb91b 100644 --- a/engines/groovie/script.cpp +++ b/engines/groovie/script.cpp @@ -36,6 +36,7 @@ #include "common/events.h" #include "common/file.h" #include "common/macresman.h" +#include "common/translation.h" #include "gui/message.h" @@ -413,7 +414,7 @@ void Script::savegame(uint slot) { if (!file) { debugC(9, kGroovieDebugScript, "Save file pointer is null"); - GUI::MessageDialog dialog("Failed to save game", "OK"); + GUI::MessageDialog dialog(_("Failed to save game"), _("OK")); dialog.runModal(); return; } |
