gettext.GNUTranslations.lngettext()

GNUTranslations.lngettext(singular, plural, n) Equivalent to gettext(), but the translation is returned as a bytestring

2016-10-07 17:33:33
locale.getdefaultlocale()

locale.getdefaultlocale([envvars]) Tries to determine the default locale settings and returns them as a tuple of the form (language

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

locale.normalize(localename) Returns a normalized locale code for the given locale name. The returned locale code is formatted

2016-10-07 17:35:58
locale.currency()

locale.currency(val, symbol=True, grouping=False, international=False) Formats a number val according to the current

2016-10-07 17:35:56
locale.atoi()

locale.atoi(string) Converts a string to an integer, following the LC_NUMERIC conventions.

2016-10-07 17:35:56
gettext.NullTranslations

class gettext.NullTranslations(fp=None) Takes an optional file object fp, which

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

gettext.lgettext(message) Equivalent to gettext(), but the translation is returned in the preferred system encoding

2016-10-07 17:33:34
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.ngettext()

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

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