src/eric7/Plugins/CheckerPlugins/SyntaxChecker/pyflakes/translations.py

branch
eric7
changeset 10354
49a439993d06
parent 10164
b2fbf59d889f
child 10359
de0420dac60e
equal deleted inserted replaced
10353:babe9d606903 10354:49a439993d06
11 from PyQt6.QtCore import QCoreApplication 11 from PyQt6.QtCore import QCoreApplication
12 12
13 __all__ = ["getTranslatedFlakesMessage"] 13 __all__ = ["getTranslatedFlakesMessage"]
14 14
15 _messages = { 15 _messages = {
16 "F01": QCoreApplication.translate("pyFlakes", "{0!r} imported but unused."), 16 "F01": QCoreApplication.translate(
17 "pyFlakes",
18 "{0!r} imported but unused. Consider using 'importlib.util.find_spec()'."),
17 "F02": QCoreApplication.translate( 19 "F02": QCoreApplication.translate(
18 "pyFlakes", "Redefinition of unused {0!r} from line {1!r}." 20 "pyFlakes", "Redefinition of unused {0!r} from line {1!r}."
19 ), 21 ),
20 "F03": QCoreApplication.translate( 22 "F03": QCoreApplication.translate(
21 "pyFlakes", "Import {0!r} from line {1!r} shadowed by loop variable." 23 "pyFlakes", "Import {0!r} from line {1!r} shadowed by loop variable."

eric ide

mercurial