7 """ |
7 """ |
8 Module implementing message translations for the code style plugin messages |
8 Module implementing message translations for the code style plugin messages |
9 (naming part). |
9 (naming part). |
10 """ |
10 """ |
11 |
11 |
12 from PyQt5.QtCore import QCoreApplication |
12 from PyQt6.QtCore import QCoreApplication |
13 |
13 |
14 _namingStyleMessages = { |
14 _namingStyleMessages = { |
15 "N801": QCoreApplication.translate( |
15 "N801": QCoreApplication.translate( |
16 "NamingStyleChecker", |
16 "NamingStyleChecker", |
17 "class names should use CapWords convention"), |
17 "class names should use CapWords convention"), |