fpdb/pyfpdb/locale/update-po-files.sh

13 lines
202 B
Bash
Raw Normal View History

#!/bin/sh
# Our master file
REFERENCE_PO=fpdb-en_GB.po
# Update all .po files
for po in *.po; do
if [ ${po} != ${REFERENCE_PO} ]; then
msgmerge --update ${po} ${REFERENCE_PO}
fi
done
2010-08-17 20:13:56 +02:00