SUBDIRS = wxstd
LINGUAS = de
if GOT_GETTEXT
XGETTEXT_ARGS=-CF -k_ -kwxPLURAL:1,2 -kwxTRANSLATE
%.mo: %.po
$(MSGFMT) --verbose -c -o $@ $<
%.h: %.mo
../art/file2h -c -p "locale-" $< > $@
%.po: cryptote.pot
if [ -f $@ ]; then $(MSGMERGE) --verbose $@ cryptote.pot > $@.new && mv $@.new $@; else cp cryptote.pot $@; fi
cryptote.pot:
$(XGETTEXT) $(XGETTEXT_ARGS) -o cryptote.pot \
../pwgen/*.h ../pwgen/*.cpp \
../cryptote/*.h ../cryptote/*.cpp
force-update:
$(RM) cryptote.pot
allpo: force-update
@for t in $(LINGUAS); do $(MAKE) $$t.po; done
allmo:
@for t in $(LINGUAS); do $(MAKE) $$t.mo; done
allh:
@for t in $(LINGUAS); do $(MAKE) $$t.h; done
all-local: allmo allh
stats:
@for i in $(LINGUAS); do \
x=`$(MSGFMT) --verbose -o /dev/null "$$i.po" 2>&1 | sed -e 's/[,\.]//g' \
-e 's/\([0-9]\+\) translated messages\?/TR=\1/' \
-e 's/\([0-9]\+\) fuzzy translations\?/FZ=\1/' \
-e 's/\([0-9]\+\) untranslated messages\?/UT=\1/'`; \
TR=0 FZ=0 UT=0; \
eval $$x; \
TOTAL=`expr $$TR + $$FZ + $$UT`; \
echo "$$i.po `expr 100 "*" $$TR / $$TOTAL`% of $$TOTAL strings"; \
done
endif
.PHONY: allpo allmo allh force-update stats
EXTRA_DIST = cryptote.pot \
de.po de.mo de.h