extract_translations.sh
Bourne-Again shell script, ASCII text executable
1#!/bin/bash 2set -e 3 4mkdir -p po 5touch po/python.pot po/ui.pot 6xgettext --language=Python -o po/python.pot *.py 7xgettext --language=Glade -o po/ui.pot *.ui 8msgcat po/python.pot po/ui.pot -o po/messages.pot 9rm po/python.pot po/ui.pot 10