#!/bin/sh

echo Making all .mo files...
echo

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