diff -r 1128cb7bbb42 -r 041d0785dd42 src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/NameOrder/translations.py --- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/NameOrder/translations.py Mon May 22 19:46:19 2023 +0200 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/NameOrder/translations.py Mon May 22 19:53:41 2023 +0200 @@ -12,22 +12,22 @@ _nameOrderMessages = { "NO101": QCoreApplication.translate( - "ImportsChecker", + "NameOrderChecker", "Import statements are in the wrong order. '{0}' should be before '{1}'", ), "NO102": QCoreApplication.translate( - "ImportsChecker", "Imported names are in the wrong order. Should be '{0}'" + "NameOrderChecker", "Imported names are in the wrong order. Should be '{0}'" ), "NO103": QCoreApplication.translate( - "ImportsChecker", + "NameOrderChecker", "Import statements should be combined. '{0}' should be combined with '{1}'", ), "NO104": QCoreApplication.translate( - "ImportsChecker", + "NameOrderChecker", "The names in __all__ are in the wrong order. The order should be '{0}'", ), "NO105": QCoreApplication.translate( - "ImportsChecker", + "NameOrderChecker", "The names in the exception handler list are in the wrong order. The order" " should be '{0}'", ),