__init__.py 349 B

123456789101112131415161718192021
  1. """
  2. babel.messages
  3. ~~~~~~~~~~~~~~
  4. Support for ``gettext`` message catalogs.
  5. :copyright: (c) 2013-2025 by the Babel Team.
  6. :license: BSD, see LICENSE for more details.
  7. """
  8. from babel.messages.catalog import (
  9. Catalog,
  10. Message,
  11. TranslationError,
  12. )
  13. __all__ = [
  14. "Catalog",
  15. "Message",
  16. "TranslationError",
  17. ]