diff options
| author | Lex Neva <lexelby@users.noreply.github.com> | 2018-02-24 20:28:51 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-24 20:28:51 -0500 |
| commit | 0ecf74297cdb2605278618cd8ea32e6a647444a3 (patch) | |
| tree | f4428b73a4c2d76b42767782594ce0f6c0d4f024 /embroider_params.py | |
| parent | c82636df32d01568d0e9c98775e77c00362eefa6 (diff) | |
use gettext for params tab names (#68)
* use gettext for params tab names
* new localization messages
Diffstat (limited to 'embroider_params.py')
| -rw-r--r-- | embroider_params.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embroider_params.py b/embroider_params.py index f41a667e..73c6f479 100644 --- a/embroider_params.py +++ b/embroider_params.py @@ -697,7 +697,7 @@ class EmbroiderParams(inkex.Effect): parent_tab = None new_tabs = [] for group, params in self.group_params(params): - tab = ParamsTab(parent, id=wx.ID_ANY, name=group or cls.__name__, params=list(params), nodes=nodes) + tab = ParamsTab(parent, id=wx.ID_ANY, name=group or cls.element_name, params=list(params), nodes=nodes) new_tabs.append(tab) if group is None: |
