From af12fb38dee4bb979ad9bd1ce27c0714a0fb0119 Mon Sep 17 00:00:00 2001 From: Verum Date: Sat, 7 Mar 2026 01:29:05 +0700 Subject: [PATCH] =?UTF-8?q?=D0=9A=D0=BE=D0=BD=D1=84=D0=B8=D0=B3=D1=83?= =?UTF-8?q?=D1=80=D0=B0=D1=86=D0=B8=D1=8F=20babel=20=D0=B4=D0=BB=D1=8F=20?= =?UTF-8?q?=D0=BC=D1=83=D0=BB=D1=8C=D1=82=D0=B8=D1=8F=D0=B7=D1=8B=D1=87?= =?UTF-8?q?=D0=BD=D0=BE=D1=81=D1=82=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- babel.cfg | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 babel.cfg diff --git a/babel.cfg b/babel.cfg new file mode 100644 index 0000000..b315e2c --- /dev/null +++ b/babel.cfg @@ -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/**]