diff options
| author | Lex Neva <github.com@lexneva.name> | 2018-09-18 20:24:53 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2018-09-18 20:24:53 -0400 |
| commit | 9203283081d255e20dc78839398fed9e038931b2 (patch) | |
| tree | 630179c2456d4de1e16a22cdc0d2777da04ebb2f /lib/inx/utils.py | |
| parent | f637043fa42d19faef7f1e26899f8423de8e4c9b (diff) | |
use ugettext() instead of gettext()
Diffstat (limited to 'lib/inx/utils.py')
| -rw-r--r-- | lib/inx/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/inx/utils.py b/lib/inx/utils.py index 54b37c58..a22b1892 100644 --- a/lib/inx/utils.py +++ b/lib/inx/utils.py @@ -44,7 +44,7 @@ def iterate_inx_locales(): # generate menu items for this language in Inkscape's "Extensions" # menu. magic_string = N_("Generate INX files") - translated_magic_string = translation.gettext(magic_string) + translated_magic_string = translation.ugettext(magic_string) if translated_magic_string != magic_string or locale == "en_US": current_translation = translation |
