Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ test:
test-translations: babel
poetry run pybabel extract -F babel.cfg -k _l -o /tmp/messages.po . && poetry run po2csv /tmp/messages.po /tmp/messages.csv
rm /tmp/messages.po
python scripts/test-translations.py /tmp/messages.csv
python scripts/test_translations.py /tmp/messages.csv
rm /tmp/messages.csv

.PHONY: babel
Expand All @@ -39,6 +39,10 @@ babel:
search-csv:
python scripts/search_csv.py

.PHONY: cleanup-translations
cleanup-translations: ## Find unused translations in fr.csv
poetry run python scripts/cleanup_translations.py

.PHONY: freeze-requirements
freeze-requirements:
poetry lock --no-update
Expand Down
Loading
Loading