aboutsummaryrefslogtreecommitdiffhomepage
path: root/GNUmakefile
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2025-07-24 20:40:42 +0200
committerThomas Voss <mail@thomasvoss.com> 2025-07-24 20:40:42 +0200
commit1229eac801771fd12bcc885d393ef1727c02eddc (patch)
tree785da8ceddd0a6db494cc5039f9154b661537175 /GNUmakefile
parent94a2f1efa0da1d1d91d2af736c0dab720c9512b2 (diff)
Update the translation system
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/GNUmakefile b/GNUmakefile
index c69b87c..46c685b 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -13,14 +13,13 @@ all: euro-cash.eu exttmpl
euro-cash.eu: $(cssfiles) $(templates) $(gofiles) $(sqlfiles)
$(GO) build
-all-i18n: exttmpl
+po: exttmpl
find . -name '*.html.tmpl' -exec ./exttmpl -out po/templates.pot {} +
for bcp in en en-US nl; \
do \
mkdir -p "po/$$bcp"; \
msgmerge --update "po/$$bcp/messages.po" po/templates.pot; \
done
- $(GO) build
exttmpl: $(exttmpl)
$(GO) build ./cmd/exttmpl
@@ -41,4 +40,4 @@ clean:
-or -name '*.tar.gz' \
\) -delete
-.PHONY: all-i18n clean release \ No newline at end of file
+.PHONY: clean po release \ No newline at end of file