Adds command to pull locale updates

This commit is contained in:
Mouse Reeve 2021-11-16 09:29:58 -08:00
parent 2968145627
commit 77f29a621f

11
bw-dev
View file

@ -108,6 +108,17 @@ case "$CMD" in
compilemessages)
runweb django-admin compilemessages --ignore venv $@
;;
update_locales)
git fetch origin l10n_main:l10n_main
git checkout l10n_main locale/de_DE
git checkout l10n_main locale/es_ES
git checkout l10n_main locale/fr_FR
git checkout l10n_main locale/lt_LT
git checkout l10n_main locale/pt_BR
git checkout l10n_main locale/zh_Hans
git checkout l10n_main locale/zh_Hant
runweb django-admin compilemessages --ignore venv
;;
build)
docker-compose build
;;