gettext.lngettext()

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

2016-10-07 17:33:34
gettext.dgettext()

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

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

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

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

set_output_charset(charset) Change the “protected” _output_charset variable, which defines the encoding used to

2016-10-07 17:33:36
gettext.NullTranslations.gettext()

gettext(message) If a fallback has been set, forward gettext() to the fallback. Otherwise, return the translated

2016-10-07 17:33:35
gettext.NullTranslations.ngettext()

ngettext(singular, plural, n) If a fallback has been set, forward ngettext() to the fallback. Otherwise, return

2016-10-07 17:33:36
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.Error

exception locale.Error Exception raised when the locale passed to setlocale() is not recognized.

2016-10-07 17:35:56
gettext.ldngettext()

gettext.ldngettext(domain, singular, plural, n) Equivalent to dngettext(), but the translation is returned in the

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

locale.str(float) Formats a floating point number using the same format as the built-in function str(float), but

2016-10-07 17:35:58