#!/bin/sh

echo Making all .gmo files...
echo

for FILE in *.po; do
	./make-mo ${FILE%.po};
	echo ""
done
