2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

Fixed error with wildcards

This commit is contained in:
Adam Zammit
2015-12-04 14:40:35 +11:00
parent af33c5eaa7
commit 7135118350
3 changed files with 3334 additions and 3363 deletions

View File

@@ -2,5 +2,7 @@
for f in `find ./ -iname *.po`; do
BASE=`basename $f .po`
DIR=`dirname $f`
grep -v '#, php-format' $f > $DIR/tmpfile
mv $DIR/tmpfile $f
msgfmt $f -o $DIR/$BASE.mo
done