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
gettext.NullTranslations

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

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

locale.strxfrm(string) Transforms a string to one that can be used in locale-aware comparisons. For example, strxfrm(s1)

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

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

2016-10-07 17:35:56
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.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
gettext.gettext()

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

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