Add quiet mode.

This commit is contained in:
Michal Čihař
2010-03-30 11:23:00 +02:00
parent e9909a2441
commit ee01556641

View File

@@ -1,7 +1,15 @@
#!/bin/sh
if [ x$1 = x--quiet ] ; then
stats=""
else
stats="--statistics"
fi
for x in po/*.po ; do
lang=`echo $x | sed 's@po/\(.*\)\.po@\1@'`
echo -n "$lang: "
if [ ! -z "$stas" ] ; then
echo -n "$lang: "
fi
mkdir -p locale/$lang/LC_MESSAGES
msgfmt --statistics --check -o locale/$lang/LC_MESSAGES/phpmyadmin.mo $x
msgfmt $stats --check -o locale/$lang/LC_MESSAGES/phpmyadmin.mo $x
done