See the changelog. :)
[rox-ripper.git] / Messages / update-po
blob4ec9dc97ef8f38cae4ae15dea26f196fd096dd53
1 #!/bin/sh
3 echo Extracting messages from source files...
4 echo
6 python ./make_tips
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