Vega strike Python Modules doc
0.5.1
Documentation of the " Modules " folder of Vega strike
|
Data Structures | |
class | NullTranslations |
class | GNUTranslations |
Functions | |
def | find |
def | translation |
def | install |
def | textdomain |
def | bindtextdomain |
def | dgettext |
def | gettext |
Variables | |
list | __all__ |
tuple | _default_localedir = os.path.join(sys.prefix, 'share', 'locale') |
dictionary | _translations = {} |
dictionary | _localedirs = {} |
string | _current_domain = 'messages' |
Catalog = translation | |
Internationalization and localization support. This module provides internationalization (I18N) and localization (L10N) support for your Python programs by providing an interface to the GNU gettext message catalog library. I18N refers to the operation by which a program is made aware of multiple languages. L10N refers to the adaptation of your program, once internationalized, to the local language and cultural habits.
def gettext.bindtextdomain | ( | domain, | |
localedir = None |
|||
) |
Definition at line 271 of file gettext.py.
def gettext.dgettext | ( | domain, | |
message | |||
) |
def gettext.find | ( | domain, | |
localedir = None , |
|||
languages = None |
|||
) |
Definition at line 200 of file gettext.py.
def gettext.gettext | ( | message) |
def gettext.install | ( | domain, | |
localedir = None , |
|||
unicode = 0 |
|||
) |
Definition at line 253 of file gettext.py.
References translation().
def gettext.textdomain | ( | domain = None ) |
Definition at line 264 of file gettext.py.
def gettext.translation | ( | domain, | |
localedir = None , |
|||
languages = None , |
|||
class_ = None , |
|||
fallback = 0 |
|||
) |
list __all__ |
Definition at line 51 of file gettext.py.
string _current_domain = 'messages' |
Definition at line 261 of file gettext.py.
tuple _default_localedir = os.path.join(sys.prefix, 'share', 'locale') |
Definition at line 54 of file gettext.py.
dictionary _localedirs = {} |
Definition at line 259 of file gettext.py.
dictionary _translations = {} |
Definition at line 231 of file gettext.py.
Catalog = translation |
Definition at line 304 of file gettext.py.