eric6/Plugins/CheckerPlugins/SyntaxChecker/pyflakes/translations.py

changeset 7395
dd50d0f4c588
parent 7360
9190402e4505
child 7617
a0e162a50ad7
diff -r e83e0ba6b90d -r dd50d0f4c588 eric6/Plugins/CheckerPlugins/SyntaxChecker/pyflakes/translations.py
--- a/eric6/Plugins/CheckerPlugins/SyntaxChecker/pyflakes/translations.py	Tue Feb 04 18:34:37 2020 +0100
+++ b/eric6/Plugins/CheckerPlugins/SyntaxChecker/pyflakes/translations.py	Tue Feb 04 19:41:50 2020 +0100
@@ -117,6 +117,51 @@
     'F33': QCoreApplication.translate(
         'pyFlakes',
         "use ==/!= to compare str, bytes, and int literals"),
+    'F34': QCoreApplication.translate(
+        'pyFlakes',
+        "f-string is missing placeholders"),
+    'F35': QCoreApplication.translate(
+        'pyFlakes',
+        "'...'.format(...) has unused arguments at position(s): {0}"),
+    'F36': QCoreApplication.translate(
+        'pyFlakes',
+        "'...'.format(...) has unused named argument(s): {0}"),
+    'F37': QCoreApplication.translate(
+        'pyFlakes',
+        "'...'.format(...) is missing argument(s) for placeholder(s): {0}"),
+    'F38': QCoreApplication.translate(
+        'pyFlakes',
+        "'...'.format(...) mixes automatic and manual numbering"),
+    'F39': QCoreApplication.translate(
+        'pyFlakes',
+        "'...'.format(...) has invalid format string: {0}"),
+    'F40': QCoreApplication.translate(
+        'pyFlakes',
+        "'...' % ... has invalid format string: {0}"),
+    'F41': QCoreApplication.translate(
+        'pyFlakes',
+        "'...' % ... has mixed positional and named placeholders"),
+    'F42': QCoreApplication.translate(
+        'pyFlakes',
+        "'...' % ... has unsupported format character {0!r}"),
+    'F43': QCoreApplication.translate(
+        'pyFlakes',
+        "'...' % ... has {0!d} placeholder(s) but {1!d} substitution(s)"),
+    'F44': QCoreApplication.translate(
+        'pyFlakes',
+        "'...' % ... has unused named argument(s): {0}"),
+    'F45': QCoreApplication.translate(
+        'pyFlakes',
+        "'...' % ... is missing argument(s) for placeholder(s): {0}"),
+    'F46': QCoreApplication.translate(
+        'pyFlakes',
+        "'...' % ... expected mapping but got sequence"),
+    'F47': QCoreApplication.translate(
+        'pyFlakes',
+        "'...' % ... expected sequence but got mapping"),
+    'F48': QCoreApplication.translate(
+        'pyFlakes',
+        "'...' % ... `*` specifier requires sequence"),
 }
 
 

eric ide

mercurial