diff options
Diffstat (limited to 'engines/mohawk/mohawk.cpp')
-rw-r--r-- | engines/mohawk/mohawk.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/mohawk/mohawk.cpp b/engines/mohawk/mohawk.cpp index b38409f9f1..40290d4e4c 100644 --- a/engines/mohawk/mohawk.cpp +++ b/engines/mohawk/mohawk.cpp @@ -24,6 +24,7 @@ #include "common/error.h" #include "common/system.h" #include "common/textconsole.h" +#include "common/translation.h" #include "mohawk/mohawk.h" #include "mohawk/cursors.h" @@ -57,7 +58,7 @@ MohawkEngine::~MohawkEngine() { Common::Error MohawkEngine::run() { _video = new VideoManager(this); - _pauseDialog = new PauseDialog(this, "The game is paused. Press any key to continue."); + _pauseDialog = new PauseDialog(this, _("The game is paused. Press any key to continue.")); return Common::kNoError; } |