r1996: Cope slightly better with invalid filenames in various places (reported by
[rox-filer.git] / ROX-Filer / src / po / update-po
blob17f8d1b004b1bd87fe487b2633c8182578474cb9
1 #!/bin/sh
3 echo Extracting messages from source files...
4 echo
6 (cd ..; make messages.pot)
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 ../messages.pot > ${FILE};
16 done