phpldapadmin/tools/po/make_mo_all
2009-06-30 21:52:55 +10:00

16 lines
201 B
Bash
Executable File

#!/bin/bash
HOME=$PWD/$(dirname $0)
cd ../../locale
for i in $(ls -1); do
if [ "$i" == "CVS" ]; then
continue;
else
echo Processing: $i
cd $i/LC_MESSAGES
$HOME/make_mo
cd ../..
fi
done