7 Module defining the different Python types and their display strings. |
7 Module defining the different Python types and their display strings. |
8 """ |
8 """ |
9 |
9 |
10 from __future__ import unicode_literals |
10 from __future__ import unicode_literals |
11 |
11 |
12 # TODO: change these to dictionaries with keys according to DebugConfig.py |
|
13 from PyQt5.QtCore import QT_TRANSLATE_NOOP |
12 from PyQt5.QtCore import QT_TRANSLATE_NOOP |
14 |
13 |
15 # Variables type definition |
14 # Variables type definition |
16 ConfigVarTypeDispStrings = { |
15 ConfigVarTypeDispStrings = { |
17 '__': QT_TRANSLATE_NOOP('Variable Types', 'Hidden Attributes'), |
16 '__': QT_TRANSLATE_NOOP('Variable Types', 'Hidden Attributes'), |