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
gettext.GNUTranslations.lgettext()

GNUTranslations.lgettext(message) Equivalent to gettext(), but the translation is returned as a bytestring encoded

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

GNUTranslations.gettext(message) Look up the message id in the catalog and return the corresponding message string

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

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

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

add_fallback(fallback) Add fallback as the fallback object for the current translation object. A translation object

2016-10-07 17:33:35
locale.Error

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

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

gettext.ngettext(singular, plural, n) Like gettext(), but consider plural forms. If a translation is found, apply

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

gettext.install(domain, localedir=None, codeset=None, names=None) This installs the function _() in Python’s builtins

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

gettext.translation(domain, localedir=None, languages=None, class_=None, fallback=False, codeset=None) Return a Translations

2016-10-07 17:33:37
gettext.bindtextdomain()

gettext.bindtextdomain(domain, localedir=None) Bind the domain to the locale directory localedir. More concretely

2016-10-07 17:33:32