Latest version
[rox-ripper.git] / Messages / update-po
blobdba7ff2b5e843cd31c2901f906e548c3506c5033
1 #!/bin/sh
3 echo Extracting messages from source files...
4 echo
6 python ./tips.py
7 (cd ..; pygettext *.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