2016-05-28 13:00:57 +02:00
|
|
|
# Makefile providing various facilities to manage translations
|
|
|
|
|
|
|
|
TEMPLATE = tools.pot
|
|
|
|
POFILES = $(wildcard *.po)
|
|
|
|
LANGS = $(POFILES:%.po=%)
|
|
|
|
|
|
|
|
all: update merge
|
|
|
|
|
|
|
|
update:
|
2016-05-31 18:24:41 +02:00
|
|
|
@cd ../..; python2 tools/translations/extract.py
|
2016-05-28 13:00:57 +02:00
|
|
|
|
|
|
|
merge:
|
|
|
|
@for po in $(POFILES); do \
|
|
|
|
echo -e "\nMerging $$po..."; \
|
2016-06-19 14:13:13 +02:00
|
|
|
msgmerge -w 79 -C $$po $$po $(TEMPLATE) > "$$po".new; \
|
2016-05-28 13:00:57 +02:00
|
|
|
mv -f "$$po".new $$po; \
|
|
|
|
done
|
|
|
|
|
|
|
|
check:
|
|
|
|
@for po in $(POFILES); do msgfmt -c $$po -o /dev/null; done
|