#!/bin/sh
for i in *.po
  do
  if [ "$i" = "messages.po" ]
    then
    continue
  fi
  intltool-update "${i%*.po}"
done
