aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLothar Serra Mari2018-05-01 10:34:02 +0200
committerLothar Serra Mari2018-05-01 10:34:02 +0200
commit570119eabf069b010ef9fde64a2ca14faa024d70 (patch)
treef69c53050f5e83868f6a0e9f9eee2edfe15234f9
parent75813358c41edcaac72edf3b26d774dd705affe6 (diff)
downloadscummvm-rg350-570119eabf069b010ef9fde64a2ca14faa024d70.tar.gz
scummvm-rg350-570119eabf069b010ef9fde64a2ca14faa024d70.tar.bz2
scummvm-rg350-570119eabf069b010ef9fde64a2ca14faa024d70.zip
ENGINES: Mark reportCommon string as translateable
-rw-r--r--engines/advancedDetector.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/advancedDetector.cpp b/engines/advancedDetector.cpp
index dbe2cdfd68..d258f49621 100644
--- a/engines/advancedDetector.cpp
+++ b/engines/advancedDetector.cpp
@@ -328,10 +328,10 @@ Common::Error AdvancedMetaEngine::createInstance(OSystem *syst, Engine **engine)
}
void AdvancedMetaEngine::reportUnknown(const Common::FSNode &path, const ADFilePropertiesMap &filesProps, const ADGameIdList &matchedGameIds, bool useUnknownGameDialog) const {
- const char *reportCommon = "The game in '%s' seems to be an unknown %s engine game "
+ const char *reportCommon = _s("The game in '%s' seems to be an unknown %s engine game "
"variant.\n\nPlease report the following data to the ScummVM "
"team at %s along with the name of the game you tried to add and "
- "its version, language, etc.:";
+ "its version, language, etc.:");
Common::String report = Common::String::format(reportCommon, path.getPath().c_str(), getName(), "https://bugs.scummvm.org/");
Common::String reportTranslated = Common::String::format(_(reportCommon), path.getPath().c_str(), getName(), "https://bugs.scummvm.org/");
Common::String bugtrackerAffectedEngine = getName();