|
|
|
is_locale_supported(locale,
domain=None)
Check if [domain].mo file exists for this language. |
source code
|
|
|
get_catalog(locale,
domain=None)
Return translations for given locale. |
source code
|
|
|
|
|
|
|
plain_ngettext(key1,
key2,
num,
locale=None)
Translate two possible texts based on whether num is greater than 1. |
source code
|
|
|
|
|
|
|
|
|
lazy_ngettext(key1,
key2,
num,
locale=None)
Translate two possible texts based on whether num is greater than 1. |
source code
|
|
|
|
|
ngettext(key1,
key2,
num,
locale=None)
Translate two possible texts based on whether num is greater than 1. |
source code
|
|
|
install()
Add the gettext function to __builtins__ as '_'. |
source code
|
|