comparison scripts/update-po.sh @ 788:abfa4f7e89a0 pyntnclick

Update scripts to handle moved po directory
author Neil Muller <neil@dip.sun.ac.za>
date Sat, 26 Jan 2013 20:09:49 +0200
parents 087d3ff0aa08
children 42cfafa20437
comparison
equal deleted inserted replaced
787:f46c3197e887 788:abfa4f7e89a0
2 2
3 # Updates translation catalogs 3 # Updates translation catalogs
4 4
5 set -eu 5 set -eu
6 6
7 xgettext -f po/POTFILES -o po/suspended-sentence.pot 7 xgettext -f data/po/POTFILES -o data/po/suspended-sentence.pot
8 8
9 for f in po/*.po; do 9 for f in data/po/*.po; do
10 msgmerge -U $f po/suspended-sentence.pot; 10 msgmerge -U $f data/po/suspended-sentence.pot;
11 done 11 done