diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 16:46:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 16:46:29 +0000 |
commit | 5e1454ef4562bdcc75c213624a14e83c7959b592 (patch) | |
tree | ff2df2bfaf8732840c3c3d25dc0702f13e1fa1f0 /po/Makefile | |
parent | Initial commit. (diff) | |
download | tasksel-5e1454ef4562bdcc75c213624a14e83c7959b592.tar.xz tasksel-5e1454ef4562bdcc75c213624a14e83c7959b592.zip |
Adding upstream version 3.73.upstream/3.73upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | po/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/po/Makefile b/po/Makefile new file mode 100644 index 0000000..a163cd7 --- /dev/null +++ b/po/Makefile @@ -0,0 +1,33 @@ +XGETTEXT = xgettext --keyword=_ --keyword=N_ --add-comments=TRANS: +POTFILE = tasksel.pot +MOS:=$(addsuffix .mo, $(LANGS)) + +all: $(POTFILE) $(MOS) + touch build_stamp + +$(POTFILE): ../tasksel.pl + $(XGETTEXT) -o $(POTFILE)-update ../tasksel.pl + if test -f $(POTFILE); then \ + if diff -I '^"POT-Creation-Date:' -I '^Report-Msgid-Bugs-To:' $(POTFILE) $(POTFILE)-update >/dev/null 2>&1; then \ + rm -f $(POTFILE)-update; \ + else \ + rm -f $(POTFILE); \ + mv $(POTFILE)-update $(POTFILE); \ + fi; \ + else \ + mv $(POTFILE)-update $(POTFILE); \ + fi + +%.mo: %.po + msgfmt -o $@ $< + +clean: + -rm -f build_stamp + -rm -f *.mo + +update: $(addprefix update-, $(LANGS)) + +update-%: %.po $(POTFILE) + mv $< $<.bak + msgmerge $<.bak $(POTFILE) > $< + |