blob: a1b80934a7f8b41a6182a1afe9ee99548663f1ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
PACKAGE_NAME = search plugin
PACKAGE_VERSION = 1.0
TCLFILES = search-plugin.tcl
# these are the supported languages,
ALL_LINGUAS = af az be bg ca cs de el en_ca en_gb es_es es_mx eu fr gd gu he hi hu it ja lt lv nl pa pt_br pt_pt ru sq sv tr vi zh_tw
POFILES = $(ALL_LINGUAS:=.po)
MSGFILES = $(ALL_LINGUAS:=.msg)
TEMPLATE = template.pot
FILES = $(addprefix ../, $(TCLFILES))
# generate .msg files from the .po files
all: $(TEMPLATE) $(MSGFILES)
# refresh .po files from the template
clean:
-rm -f -- $(TEMPLATE)
-rm -f -- $(MSGFILES)
-rm -f -- $(POFILES:=~)
po: $(TEMPLATE) $(POFILES)
$(TEMPLATE): $(FILES)
touch $(TEMPLATE)
xgettext --join-existing \
--from-code=UTF-8 --language=Tcl --keyword=_ \
--sort-by-file --output=$(TEMPLATE) \
--package-name="$(PACKAGE_NAME)" \
--package-version=$(PACKAGE_VERSION) \
--copyright-holder='This file is put in the public domain' \
--foreign-user \
--msgid-bugs-address=http://bugs.puredata.info \
$(FILES)
$(POFILES): $(TEMPLATE)
touch $@
msgmerge --sort-by-file -C /home/hans/code/pd-extended.git/po/$@ --update $@ $(TEMPLATE)
%.msg: %.po
msgfmt --check --tcl --locale=$* -d . $<
|