diff options
| author | Lex Neva <lexelby@users.noreply.github.com> | 2018-09-21 22:09:50 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-21 22:09:50 -0400 |
| commit | 3ca3045328be5882bd3d8acb2e4e32d65c901ec6 (patch) | |
| tree | 9155f4ad1770c8f06d34c1c05e12624a52e76dd6 /lib/i18n.py | |
| parent | d8560b60458da536d0236b0d80c4a25202d0dd99 (diff) | |
| parent | ac77a72f3f60706e6394e827877b6a772b432519 (diff) | |
Merge pull request #321 from inkstitch/lexelby/ugettext
use ugettext() instead of gettext()
Diffstat (limited to 'lib/i18n.py')
| -rw-r--r-- | lib/i18n.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/i18n.py b/lib/i18n.py index 045fa1b2..98f63ec1 100644 --- a/lib/i18n.py +++ b/lib/i18n.py @@ -30,7 +30,7 @@ def localize(languages=None): global translation, _ translation = gettext.translation("inkstitch", locale_dir, fallback=True) - _ = translation.gettext + _ = translation.ugettext _set_locale_dir() |
