HiddenEye-Legacy/Defs/LocalizationManager/localization.py

13 lines
444 B
Python
Raw Normal View History

#
# HiddenEye Copyright (C) 2020 DarkSec https://dark-sec-official.com
# This program comes with ABSOLUTELY NO WARRANTY; for details read LICENSE.
# This is free software, and you are welcome to redistribute it
# under certain conditions; you can read LICENSE for details.
#
import gettext
2020-08-05 16:06:24 +08:00
2020-08-13 18:29:52 +08:00
gettext.bindtextdomain("HiddenEye", "locale")
gettext.textdomain("HiddenEye")
2020-08-05 16:06:24 +08:00
_ = gettext.gettext
# FIXME deprecated file, will be removed