view scripts/update-po.sh @ 782:6a3440c8be8d pyntnclick

The title needs to be lazily translated. It's evaluated before we set up gettext
author Stefano Rivera <stefano@rivera.za.net>
date Sat, 26 Jan 2013 19:13:07 +0200
parents 087d3ff0aa08
children abfa4f7e89a0
line wrap: on
line source

#!/bin/sh

# Updates translation catalogs

set -eu

xgettext -f po/POTFILES -o po/suspended-sentence.pot

for f in po/*.po; do
  msgmerge -U $f po/suspended-sentence.pot;
done