diff options
Diffstat (limited to '')
-rw-r--r-- | portato/__init__.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/portato/__init__.py b/portato/__init__.py index 3343e24..60aeec4 100644 --- a/portato/__init__.py +++ b/portato/__init__.py @@ -54,6 +54,11 @@ def get_parser (use_ = False): return parser +def _sub_start (): + # set gettext stuff + locale.setlocale(locale.LC_ALL, '') + gettext.install(APP, LOCALE_DIR, unicode = True) + def start(): # set gettext stuff |