123
Some checks failed
CI / Lint (ruff + mypy) (push) Failing after 34s
CI / Run tests (push) Has been skipped
CI / Docker build test (push) Successful in 13s

This commit is contained in:
2026-04-02 18:04:04 +07:00
commit 02afbd23ec
31 changed files with 2624 additions and 0 deletions

36
babel.cfg Normal file
View File

@@ -0,0 +1,36 @@
# ==========================================================
# Babel configuration
# ==========================================================
# ----------------------------------------------------------
# Python source files
# ----------------------------------------------------------
[python: **.py]
encoding = utf-8
keywords =
_
gettext
ngettext:1,2
pgettext:1c,2
npgettext:1c,2,3
lazy_gettext
lazy_pgettext:1c,2
__
# ----------------------------------------------------------
# Jinja2 templates (optional)
# ----------------------------------------------------------
[jinja2: **/templates/**.html]
encoding = utf-8
# ----------------------------------------------------------
# Ignore directories
# ----------------------------------------------------------
[ignore: venv/**]
[ignore: .venv/**]
[ignore: env/**]
[ignore: migrations/**]
[ignore: alembic/**]
[ignore: tests/**]