fpdb/pyfpdb/locale/update-po-files.sh
Mika Bostrom f27396ea12 Generalise .po file updates
This should catch all future translations too
2010-08-29 20:18:01 +03:00

13 lines
202 B
Bash
Executable File

#!/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