f4ee46124a
This should ensure that python produces the same tools.pot for every user, and thus that the .po will not get useless diffs upon merge.
20 lines
449 B
Makefile
20 lines
449 B
Makefile
# Makefile providing various facilities to manage translations
|
|
|
|
TEMPLATE = tools.pot
|
|
POFILES = $(wildcard *.po)
|
|
LANGS = $(POFILES:%.po=%)
|
|
|
|
all: update merge
|
|
|
|
update:
|
|
@cd ../..; python2 tools/translations/extract.py
|
|
|
|
merge:
|
|
@for po in $(POFILES); do \
|
|
echo -e "\nMerging $$po..."; \
|
|
msgmerge -w 80 -C $$po $$po $(TEMPLATE) > "$$po".new; \
|
|
mv -f "$$po".new $$po; \
|
|
done
|
|
|
|
check:
|
|
@for po in $(POFILES); do msgfmt -c $$po -o /dev/null; done
|