blob: f0066e816b1ed568e9d8dd48f20d36aa1823c5d9 (
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
|
####### tdevelop will overwrite this part!!! (begin)##########
####### tdevelop will overwrite this part!!! (end)############
POFILES = AUTO
CONFIG_CLEAN_FILES = $(GMOFILES)
message-stats:
@echo "<?xml version='1.0' standalone='yes'?>"
@echo "<!DOCTYPE issuelist>"
@echo "<translist>"
@echo "<translation><flag>C</flag>"
@echo "<cvsrevision>"
@cvs stat kmymoney2.pot | grep Working | cut -d: -f2 | sed -e 's/\ *//'
@echo "</cvsrevision>"
@echo -n "<potrevision>"
@R=`grep POT kmymoney2.pot | cut -d' ' -f 2`; \
echo "$$R</potrevision>"
@echo "</translation>"
@for i in ${srcdir}/*.po; do \
${srcdir}/stats.pl $$i; \
done;
@echo "</translist>"
|