Don't autodetect which sound driver to use - only use selected driver
[rox-musicbox.git] / Messages / update-po
blob18fe3d9b88e3d9b66b1ffcd89b28422ec46fb3bc
1 #!/bin/sh
3 echo Extracting messages from source files...
4 echo
6 python ./tips.py
7 (cd ..; pygettext AppRun *.py tips)
9 echo
10 echo Updating all .po files...
11 echo
13 for FILE in *.po; do
14 echo -n "Updating '$FILE' translation"
15 mv $FILE $FILE.old
16 msgmerge $FILE.old ../messages.pot > $FILE
17 done