comparison scripts/update-po.sh @ 779:087d3ff0aa08 pyntnclick

Move po scripts into scripts. Bundle msgfmt.py from cpython too
author Stefano Rivera <stefano@rivera.za.net>
date Sat, 26 Jan 2013 18:38:27 +0200
parents update-po.sh@4ea237bbcef8
children abfa4f7e89a0
comparison
equal deleted inserted replaced
778:98cdb7458225 779:087d3ff0aa08
1 #!/bin/sh
2
3 # Updates translation catalogs
4
5 set -eu
6
7 xgettext -f po/POTFILES -o po/suspended-sentence.pot
8
9 for f in po/*.po; do
10 msgmerge -U $f po/suspended-sentence.pot;
11 done