view scripts/update-po.sh @ 787:f46c3197e887 pyntnclick

Clear the event queue regularly in GameLogicTestCase
author Stefano Rivera <stefano@rivera.za.net>
date Sat, 26 Jan 2013 20:06:29 +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