betty.locale.localizable package¶
Submodules¶
- betty.locale.localizable.assertion module
- betty.locale.localizable.config module
StaticTranslationsLocalizableConfiguration
StaticTranslationsLocalizableConfiguration.__init__()
StaticTranslationsLocalizableConfiguration.dump()
StaticTranslationsLocalizableConfiguration.load()
StaticTranslationsLocalizableConfiguration.localize()
StaticTranslationsLocalizableConfiguration.set()
StaticTranslationsLocalizableConfiguration.update()
StaticTranslationsLocalizableConfigurationProperty
Module contents¶
The localizable API allows objects to be localized at the point of use.
- class betty.locale.localizable.Localizable[source]¶
Bases:
ABC
A localizable object.
Objects of this type can convert themselves to localized strings at the point of use.
- betty.locale.localizable.ShorthandStaticTranslations: TypeAlias = collections.abc.Mapping[str, str] | str¶
StaticTranslations
or a string which is the translation for the undetermined locale. Seebetty.locale.localizable.assertion.assert_static_translations()
.
- betty.locale.localizable.StaticTranslations¶
Keys are locales, values are translations. See
betty.locale.localizable.assertion.assert_static_translations()
.
- class betty.locale.localizable.StaticTranslationsLocalizable[source]¶
Bases:
_FormattableLocalizable
Provide a
betty.locale.Localizable
backed by static translations.
- betty.locale.localizable.call(call: Callable[[Localizer], str]) Localizable [source]¶
Create a new localizable that outputs the callable’s return value.
- betty.locale.localizable.format(localizable: Localizable, *format_args: str | Localizable, **format_kwargs: str | Localizable) Localizable [source]¶
Perform string formatting.
The arguments are identical to those of :py:meth:
str.format
.
- betty.locale.localizable.gettext(message: str) _GettextLocalizable [source]¶
Like
gettext.gettext()
.Positional arguments are identical to those of
gettext.gettext()
. Keyword arguments are identical to those of :py:met:`str.format`, except that anybetty.locale.Localizable
will be localized before string formatting.
- betty.locale.localizable.ngettext(message_singular: str, message_plural: str, n: int) _GettextLocalizable [source]¶
Like
gettext.ngettext()
.Positional arguments are identical to those of
gettext.ngettext()
. Keyword arguments are identical to those of :py:met:`str.format`, except that anybetty.locale.Localizable
will be localized before string formatting.
- betty.locale.localizable.npgettext(context: str, message_singular: str, message_plural: str, n: int) _GettextLocalizable [source]¶
Like
gettext.npgettext()
.Positional arguments are identical to those of
gettext.npgettext()
. Keyword arguments are identical to those of :py:met:`str.format`, except that anybetty.locale.Localizable
will be localized before string formatting.
- betty.locale.localizable.pgettext(context: str, message: str) _GettextLocalizable [source]¶
Like
gettext.pgettext()
.Positional arguments are identical to those of
gettext.pgettext()
. Keyword arguments are identical to those of :py:met:`str.format`, except that anybetty.locale.Localizable
will be localized before string formatting.