Plugins/CheckerPlugins/CodeStyleChecker/translations.py

changeset 6732
1a4758379c45
parent 6645
ad476851d7e0
child 6882
65d1bf4b7427
equal deleted inserted replaced
6726:bf2ec89b1975 6732:1a4758379c45
35 "pycodestyle", 35 "pycodestyle",
36 "expected an indented block (comment)"), 36 "expected an indented block (comment)"),
37 "E116": QCoreApplication.translate( 37 "E116": QCoreApplication.translate(
38 "pycodestyle", 38 "pycodestyle",
39 "unexpected indentation (comment)"), 39 "unexpected indentation (comment)"),
40 "E117": QCoreApplication.translate(
41 "pycodestyle",
42 "over-indented"),
40 "E121": QCoreApplication.translate( 43 "E121": QCoreApplication.translate(
41 "pycodestyle", 44 "pycodestyle",
42 "continuation line indentation is not a multiple of four"), 45 "continuation line indentation is not a multiple of four"),
43 "E122": QCoreApplication.translate( 46 "E122": QCoreApplication.translate(
44 "pycodestyle", 47 "pycodestyle",
205 "pycodestyle", 208 "pycodestyle",
206 "line break before binary operator"), 209 "line break before binary operator"),
207 "W504": QCoreApplication.translate( 210 "W504": QCoreApplication.translate(
208 "pycodestyle", 211 "pycodestyle",
209 "line break after binary operator"), 212 "line break after binary operator"),
213 "W505": QCoreApplication.translate(
214 "pycodestyle",
215 "doc line too long ({0} > {1} characters)"),
210 "W601": QCoreApplication.translate( 216 "W601": QCoreApplication.translate(
211 "pycodestyle", 217 "pycodestyle",
212 ".has_key() is deprecated, use 'in'"), 218 ".has_key() is deprecated, use 'in'"),
213 "W602": QCoreApplication.translate( 219 "W602": QCoreApplication.translate(
214 "pycodestyle", 220 "pycodestyle",
799 "E305": [2, 1], 805 "E305": [2, 1],
800 "E306": [1, 0], 806 "E306": [1, 0],
801 "E307": [3, 1], 807 "E307": [3, 1],
802 "E308": [3], 808 "E308": [3],
803 "E501": [85, 79], 809 "E501": [85, 79],
810 "W505": [80, 72],
804 "E605": ["A"], 811 "E605": ["A"],
805 "E711": ["None", "'if cond is None:'"], 812 "E711": ["None", "'if cond is None:'"],
806 "E712": ["True", "'if cond is True:' or 'if cond:'"], 813 "E712": ["True", "'if cond is True:' or 'if cond:'"],
807 "E741": ["l"], 814 "E741": ["l"],
808 "E742": ["l"], 815 "E742": ["l"],

eric ide

mercurial