diff options
author | Ben Castricum | 2016-12-05 15:29:23 +0100 |
---|---|---|
committer | Ben Castricum | 2016-12-05 21:04:50 +0100 |
commit | e1ec91b69abe730f297dfe1fe1740f4b2a13d8da (patch) | |
tree | 33f63eaf0664eb23398def1abda5fe58ae4aa7ef /engines/lure | |
parent | 5c60a75f94f2a267b1ec02728a1f6ad0aa7da9c9 (diff) | |
download | scummvm-rg350-e1ec91b69abe730f297dfe1fe1740f4b2a13d8da.tar.gz scummvm-rg350-e1ec91b69abe730f297dfe1fe1740f4b2a13d8da.tar.bz2 scummvm-rg350-e1ec91b69abe730f297dfe1fe1740f4b2a13d8da.zip |
ALL: Unify 'missing engine data' message
Diffstat (limited to 'engines/lure')
-rw-r--r-- | engines/lure/POTFILES | 1 | ||||
-rw-r--r-- | engines/lure/lure.cpp | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/engines/lure/POTFILES b/engines/lure/POTFILES new file mode 100644 index 0000000000..d4fde2ab7b --- /dev/null +++ b/engines/lure/POTFILES @@ -0,0 +1 @@ +engines/lure/lure.cpp diff --git a/engines/lure/lure.cpp b/engines/lure/lure.cpp index 45fe0af025..9fd8372f29 100644 --- a/engines/lure/lure.cpp +++ b/engines/lure/lure.cpp @@ -24,6 +24,7 @@ #include "common/debug-channels.h" #include "common/system.h" #include "common/savefile.h" +#include "common/translation.h" #include "engines/util.h" @@ -60,7 +61,7 @@ Common::Error LureEngine::init() { Common::File f; VersionStructure version; if (!f.open(SUPPORT_FILENAME)) { - GUIError("Could not locate Lure support file"); + GUIError(_("You're missing the '%s' file. Get it from the ScummVM website"), SUPPORT_FILENAME); return Common::kUnknownError; } |