diff -r 8fbb21be8579 -r 129a973fc33e eric7/Plugins/CheckerPlugins/CodeStyleChecker/Imports/translations.py --- a/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Imports/translations.py Wed Dec 01 20:09:57 2021 +0100 +++ b/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Imports/translations.py Thu Dec 02 18:53:26 2021 +0100 @@ -20,8 +20,28 @@ "I103": QCoreApplication.translate( "ImportsChecker", "packages from standard modules should not be imported locally"), + + "I201": QCoreApplication.translate( + "ImportsChecker", + "Import statements are in the wrong order. " + "'{0}' should be before '{1}'"), + "I202": QCoreApplication.translate( + "ImportsChecker", + "Imported names are in the wrong order. " + "Should be {0}"), + "I203": QCoreApplication.translate( + "ImportsChecker", + "Import statements should be combined. " + "'{0}' should be combined with '{1}'"), + "I204": QCoreApplication.translate( + "ImportsChecker", + "The names in __all__ are in the wrong order. " + "The order should be {0}"), } _importsMessagesSampleArgs = { - + "I201": ["import os", "import sys"], + "I202": ["copy, os, sys"], + "I203": ["from foo import bar", "from foo import baz"], + "I204": ["bar, baz, foo"], }