# Find PO files, process each with msgfmt and rename the result to MO
rm -rf *.mo
for file in `find . -name "*.po"` ; do msgfmt -o ${file/.po/.mo} $file ;
done