By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 extract_translations.sh

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