#!/bin/sh
set -e

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

case "$1" in
	configure)
		update-mozilla-thunderbird-chrome 
	;;
	abort-upgrade|abort-remove|abort-deconfigure)
        ;;
        *)
	        echo "postinst called with unknown argument \`$1'" >&2
	        exit 0
	;;
esac

echo "es:ES" > /var/lib/mozilla-thunderbird/locales.d/50_locale-es-ES

exit 0
