gettext (correctly) uses "1 message" (singular).

Take that into account in make stats.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16954 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mattia Barbon 2002-09-03 19:32:03 +00:00
parent a1f9e3ec5d
commit 93ff73b308

View File

@ -46,9 +46,9 @@ force-update:
stats: FORCE
@for i in $(WX_LINGUAS); do \
x=`$(MSGFMT) -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/'`; \
-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`; \