Convert other enums to int for Python 2.5 (Stephen Watson).
[rox-lib/lack.git] / Messages / update-po
blob3af45e03533e44252f14afb9c1b6b7e4040834f4
1 #!/bin/sh
3 echo Extracting messages from source files...
4 echo
6 (cd ../python/rox; pygettext *.py ../../AppRun)
8 echo
9 echo Updating all .po files...
10 echo
12 for FILE in *.po; do
13 echo -n "Updating '$FILE' translation"
14 mv $FILE $FILE.old
15 msgmerge $FILE.old ../python/rox/messages.pot > $FILE
16 done