#!/bin/sh

echo Making all .mo files...
echo

for FILE in *.po; do
	msgfmt $FILE -o ${FILE%.po}.gmo && echo Processed $FILE OK
done
