#!/bin/bash
set -e

mkdir -p po
touch po/python.pot po/ui.pot
xgettext --language=Python -o po/python.pot *.py
xgettext --language=Glade -o po/ui.pot *.ui
msgcat po/python.pot po/ui.pot -o po/messages.pot
rm po/python.pot po/ui.pot
