From f11b2e8d450e0ef530f1ce260e4c5419e4567da9 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Thu, 20 Sep 2018 11:35:07 +0200 Subject: [PATCH] point out the easy way to generate the locale files fdroid/fdroidserver!560 fdroid/fdroidserver#546 --- locale/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/locale/Makefile b/locale/Makefile index 4f68f627..a8b62eb6 100644 --- a/locale/Makefile +++ b/locale/Makefile @@ -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)