phpldapadmin/tools/po/make_mo_all

16 lines
201 B
Plaintext
Raw Normal View History

2009-06-30 11:52:55 +00:00
#!/bin/bash
2009-06-30 10:46:00 +00:00
2009-06-30 10:46:41 +00:00
HOME=$PWD/$(dirname $0)
2009-06-30 10:46:00 +00:00
cd ../../locale
for i in $(ls -1); do
2009-06-30 11:52:55 +00:00
if [ "$i" == "CVS" ]; then
2009-06-30 10:46:00 +00:00
continue;
else
echo Processing: $i
cd $i/LC_MESSAGES
$HOME/make_mo
cd ../..
fi
done