#! /bin/bash

# get the first he locale you find
he_locale=`locale -a | grep he | head -n1`

# check for he locale
if [ x"$he_locale" = x ]; then
	echo "sorry no hebrew locale found on your system."
	echo "use locale -a to get a list of your installed locales."
	echo ""
fi

# run the program
LANGUAGE=$he_locale LANG=$he_locale ghcal
