[Scummvm-git-logs] scummvm master -> 3ba06b40ebbec34f8ab5e8692272a728580fa164

rootfather lserramari at gmail.com
Sun Nov 27 18:24:49 CET 2016


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
3ba06b40eb ENGINES: Simplify translation for advancedDetector.cpp


Commit: 3ba06b40ebbec34f8ab5e8692272a728580fa164
    https://github.com/scummvm/scummvm/commit/3ba06b40ebbec34f8ab5e8692272a728580fa164
Author: rootfather (rootfather at scummvm.org)
Date: 2016-11-27T18:18:37+01:00

Commit Message:
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.

Changed paths:
    engines/advancedDetector.cpp


diff --git a/engines/advancedDetector.cpp b/engines/advancedDetector.cpp
index 7a09f66..fd3e43c 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)





More information about the Scummvm-git-logs mailing list