Important information: Google announced that, from September 2026, Android devices will require ALL apps to be signed by Google, effectively leading to an iOS situation. Value your right to a computer that does what you want; do not tolerate this monopolistic practice! Contact me if you don't understand why it is bad. Click to learn more.

 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