#! /bin/sh
# Author Todd Brandt <todd.e.brandt@intel.com>

LC_ALL=C
export LC_ALL

cp -f ../po_orig/*.po .
../intltool-update -p
LIST=`ls -1 *.po | sed -e "s/.po//"`
for i in $LIST; do
	../intltool-update -x -d $i
done
