comparison scripts/update-po.sh @ 854:3577c51029f1 default tip

Remove Suspended Sentence. pyntnclick is the library we extracted from it
author Stefano Rivera <stefano@rivera.za.net>
date Sat, 21 Jun 2014 22:15:54 +0200
parents f95830b58336
children
comparison
equal deleted inserted replaced
853:f95830b58336 854:3577c51029f1
1 #!/bin/sh
2
3 # Updates translation catalogs
4
5 set -eu
6
7 xgettext -f data/po/POTFILES -o data/po/suspended-sentence.pot
8
9 for f in data/po/*.po; do
10 msgmerge -U $f data/po/suspended-sentence.pot;
11 done
12
13 xgettext -f pyntnclick/data/po/POTFILES -o pyntnclick/data/po/pyntnclick-tools.pot
14
15 for f in pyntnclick/data/po/*.po; do
16 msgmerge -U $f pyntnclick/data/po/pyntnclick-tools.pot;
17 done