inkstitch/lib/i18n.py

33 wiersze
851 B
Python
Czysty Zwykły widok Historia

import sys
import os
2018-08-21 00:42:02 +00:00
from os.path import dirname, realpath
import gettext
_ = translation = None
2018-08-21 00:42:02 +00:00
locale_dir = None
2018-08-20 19:49:19 +00:00
# Use N_ to mark a string for translation but _not_ immediately translate it.
# reference: https://docs.python.org/3/library/gettext.html#deferred-translations
# Makefile configures pybabel to treat N_() the same as _()
def N_(message): return message
2018-08-21 00:42:02 +00:00
def _set_locale_dir():
global locale_dir
if getattr(sys, 'frozen', False):
# we are in a pyinstaller installation
locale_dir = sys._MEIPASS
else:
2018-08-21 00:42:02 +00:00
locale_dir = dirname(dirname(realpath(__file__)))
locale_dir = os.path.join(locale_dir, 'locales')
2018-08-21 00:42:02 +00:00
def localize(languages=None):
global translation, _
translation = gettext.translation("inkstitch", locale_dir, fallback=True)
_ = translation.gettext
2018-08-21 00:42:02 +00:00
_set_locale_dir()
localize()