gettext.NullTranslations.charset()
  • References/Python/Python/Internationalization

charset() Return the “protected” _charset variable, which is the encoding of the message catalog file.

2025-01-10 15:47:30
gettext.bind_textdomain_codeset()
  • References/Python/Python/Internationalization

gettext.bind_textdomain_codeset(domain, codeset=None) Bind the domain to codeset, changing the encoding of

2025-01-10 15:47:30
locale.nl_langinfo()
  • References/Python/Python/Internationalization

locale.nl_langinfo(option) Return some locale-specific information as a string. This function is not available on all systems

2025-01-10 15:47:30
gettext.GNUTranslations.ngettext()
  • References/Python/Python/Internationalization

GNUTranslations.ngettext(singular, plural, n) Do a plural-forms lookup of a message id. singular is used as the message

2025-01-10 15:47:30
gettext.NullTranslations.lgettext()
  • References/Python/Python/Internationalization

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

2025-01-10 15:47:30
gettext.dngettext()
  • References/Python/Python/Internationalization

gettext.dngettext(domain, singular, plural, n) Like ngettext(), but look the message up in the specified domain

2025-01-10 15:47:30
gettext.bindtextdomain()
  • References/Python/Python/Internationalization

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

2025-01-10 15:47:30
gettext.translation()
  • References/Python/Python/Internationalization

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

2025-01-10 15:47:30