aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorrootfather2016-11-27 17:35:46 +0100
committerrootfather2016-11-27 18:18:37 +0100
commit3ba06b40ebbec34f8ab5e8692272a728580fa164 (patch)
treeb69aaa7ab2cbe2a03e30c335702a5d698590a931 /engines
parenteadddd63cfc46e6e2a7a65cdc789c382a9fdcd57 (diff)
downloadscummvm-rg350-3ba06b40ebbec34f8ab5e8692272a728580fa164.tar.gz
scummvm-rg350-3ba06b40ebbec34f8ab5e8692272a728580fa164.tar.bz2
scummvm-rg350-3ba06b40ebbec34f8ab5e8692272a728580fa164.zip
ENGINES: Simplify translation for advancedDetector.cpp
Until now, we had three separate strings for the message about unsupported games. This commit merges them into one single string.
Diffstat (limited to 'engines')
-rw-r--r--engines/advancedDetector.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/advancedDetector.cpp b/engines/advancedDetector.cpp
index 7a09f662d1..fd3e43c57f 100644
--- a/engines/advancedDetector.cpp
+++ b/engines/advancedDetector.cpp
@@ -331,10 +331,10 @@ void AdvancedMetaEngine::reportUnknown(const Common::FSNode &path, const ADFileP
//
// Might also be helpful to display the full path (for when this is used
// from the mass detector).
- Common::String report = Common::String::format(_("The game in '%s' seems to be unknown."), path.getPath().c_str()) + "\n";
- report += _("Please, report the following data to the ScummVM team along with name");
- report += "\n";
- report += _("of the game you tried to add and its version/language/etc.:");
+ Common::String report = Common::String::format(
+ _("The game in '%s' seems to be unknown.\n"
+ "Please, report the following data to the ScummVM team along with name\n"
+ "of the game you tried to add and its version/language/etc.:"), path.getPath().c_str()) + "\n";
report += "\n";
for (ADFilePropertiesMap::const_iterator file = filesProps.begin(); file != filesProps.end(); ++file)