blob: 2b3fc387fbfc95ffea20773b35934a43cb607b88 (
plain)
1
2
3
4
5
6
7
8
9
10
|
.PHONY: compile extract update
extract:
pybabel extract --mapping babel.cfg --output messages.pot ./
compile:
pybabel compile --directory translations/ --domain messages
update: extract
pybabel update --input-file messages.pot --output-dir translations/ --domain messages
|