Revision d0a955d882c6ccd0876be578740c9350fe687cf1 authored by Jochen Kupperschmidt on 04 March 2024, 01:37:12 UTC, committed by Jochen Kupperschmidt on 04 March 2024, 01:37:12 UTC
1 parent 1661f3d
Raw File
justfile
_default:
    @just --list

babel-extract:
    pybabel extract -F babel.cfg -k lazy_gettext -k lazy_ngettext -k lazy_pgettext -k lazy_npgettext -o messages.pot . && pybabel update --ignore-pot-creation-date -i messages.pot -d byceps/translations

babel-init locale:
    pybabel init -i messages.pot -d byceps/translations -l {{locale}}

babel-compile:
    pybabel compile -d byceps/translations
back to top