More warnings about old pygtk versions.
[rox-lib.git] / Messages / update-po
blob4a426c3952bde976f3465ee8b6e1440eb103bf31
1 #!/bin/sh
3 echo Extracting messages from source files...
4 echo
6 (cd ../python/rox; pygettext *.py)
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