Skip to content
update.sh 244 B
Newer Older
#
# Update contents of PO file with new source strings from template.
# Ensure that the versions in the header are properly maintained.

for i in *.po; do
  msgmerge -U ${i} ../drupal-pot/${i}t
  php update.php ${i} ../drupal-pot/${i}t $1
done