diff -r cb43c34239b1 -r c4bf32c791d0 Plugins/CheckerPlugins/CodeStyleChecker/NamingStyleChecker.py --- a/Plugins/CheckerPlugins/CodeStyleChecker/NamingStyleChecker.py Thu Oct 10 18:40:16 2013 +0200 +++ b/Plugins/CheckerPlugins/CodeStyleChecker/NamingStyleChecker.py Thu Oct 10 19:03:45 2013 +0200 @@ -127,10 +127,12 @@ @return translated and formatted message (string) """ if code in cls.Messages: - return code + " " + QCoreApplication.translate("NamingStyleChecker", + return code + " " + QCoreApplication.translate( + "NamingStyleChecker", cls.Messages[code]).format(*args) else: - return code + " " + QCoreApplication.translate("NamingStyleChecker", + return code + " " + QCoreApplication.translate( + "NamingStyleChecker", "no message for this code defined") def __visitTree(self, node):