Files
jellyfinStats/jellyfinstats/__init__.py
2024-05-15 14:03:28 +08:00

11 lines
276 B
Python

from gettext import bindtextdomain, gettext as _, textdomain # noqa: F401
from os.path import join
try:
bindtextdomain('jellyfinStats', join(__path__[0], 'language'))
textdomain('jellyfinStats')
except Exception:
from traceback import print_exc
print_exc()