#!/bin/sh
for dir in `ls -1 ../locale/`
do
	mv ../locale/$dir/LC_MESSAGES/twc_weather.po ../locale/$dir/LC_MESSAGES/twc_weather.po.bak
	echo "Executing: msgmerge ../locale/$dir/LC_MESSAGES/twc_weather.po.bak twc_weather.pot > ../locale/$dir/LC_MESSAGES/twc_weather.po";
	msgmerge ../locale/$dir/LC_MESSAGES/twc_weather.po.bak twc_weather.pot > ../locale/$dir/LC_MESSAGES/twc_weather.po
done

     
