snapshot: preserve handbook, bilingual phase 2, and logo updates

This commit is contained in:
Md Bayazid Bostame
2026-03-24 12:25:43 +01:00
parent 0f285aa2cf
commit 4d3c7bdf6e
26 changed files with 625 additions and 66 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
COMPOSE ?= docker compose
.PHONY: i18n-extract-en i18n-extract-de i18n-compile i18n-update-en i18n-update-de
i18n-extract-en:
$(COMPOSE) exec -T web django-admin makemessages -l en
i18n-extract-de:
$(COMPOSE) exec -T web django-admin makemessages -l de
i18n-compile:
$(COMPOSE) exec -T web django-admin compilemessages
i18n-update-en: i18n-extract-en i18n-compile
i18n-update-de: i18n-extract-de i18n-compile