1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-03 07:50:15 +02:00

point out the easy way to generate the locale files

fdroid/fdroidserver!560
fdroid/fdroidserver#546
This commit is contained in:
Hans-Christoph Steiner 2018-09-20 11:35:07 +02:00
parent 5c6097f9e0
commit f11b2e8d45

View File

@ -13,11 +13,17 @@ TEMPLATE = fdroidserver.pot
VERSION = $(shell git describe)
default:
@printf "Build the translation files using: ./setup.py compile_catalog\n\n"
message:
@printf "\nYou probably want to use this instead: ./setup.py compile_catalog\n\n"
# refresh everything from the source code
update: $(POFILES)
# generate .mo files from the .po files
compile: $(MOFILES)
compile: message $(MOFILES)
clean:
-rm -f -- $(MOFILES)