gettext.gettext()

gettext.gettext(message) Return the localized translation of message, based on the current global domain, language

2016-10-07 17:33:33
gettext.lngettext()

gettext.lngettext(singular, plural, n) Equivalent to ngettext(), but the translation is returned in the preferred

2016-10-07 17:33:34
locale.localeconv()

locale.localeconv() Returns the database of the local conventions as a dictionary. This dictionary has the following strings

2016-10-07 17:35:57
gettext.ldgettext()

gettext.ldgettext(domain, message) Equivalent to dgettext(), but the translation is returned in the preferred system

2016-10-07 17:33:34
locale.resetlocale()

locale.resetlocale(category=LC_ALL) Sets the locale for category to the default setting. The

2016-10-07 17:35:58
gettext.dgettext()

gettext.dgettext(domain, message) Like gettext(), but look the message up in the specified domain.

2016-10-07 17:33:32
locale.getlocale()

locale.getlocale(category=LC_CTYPE) Returns the current setting for the given locale category as sequence containing language

2016-10-07 17:35:57
locale.format()

locale.format(format, val, grouping=False, monetary=False) Formats a number val according to the current LC_NUMERIC

2016-10-07 17:35:57
gettext.NullTranslations.output_charset()

output_charset() Return the “protected” _output_charset variable, which defines the encoding used to return translated

2016-10-07 17:33:36
locale.getpreferredencoding()

locale.getpreferredencoding(do_setlocale=True) Return the encoding used for text data, according to user preferences. User preferences

2016-10-07 17:35:57