godot/tools/translations/Makefile
Rémi Verschelde 48a7216f99 i18n: Update and merge translation templates
Also switched the wrapping length to 79 chars instead of 80,
which seems to be what Weblate uses by default (as well as Poedit).
2016-06-19 14:13:31 +02:00

21 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 79 -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