mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 14:12:51 +00:00
87d23bf85a
Change extract script `path` argument to support specifying multiple paths, like `makerst.py`. This prevents parsing invalid XML files while scanning the whole repository.
24 lines
541 B
Makefile
24 lines
541 B
Makefile
# Makefile providing various facilities to manage translations
|
|
|
|
TEMPLATE = classes.pot
|
|
POFILES = $(wildcard *.po)
|
|
LANGS = $(POFILES:%.po=%)
|
|
|
|
all: update merge
|
|
|
|
update:
|
|
@cd ../..; \
|
|
python3 doc/translations/extract.py \
|
|
--path doc/classes modules/*/doc_classes \
|
|
--output doc/translations/$(TEMPLATE)
|
|
|
|
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
|