#! /bin/sh

gconftool-2 -t bool -s /apps/osso/inputmethod/hildon-im-languages/he_IL/next-word-prediction false
gconftool-2 -t bool -s /apps/osso/inputmethod/hildon-im-languages/he_IL/auto-capitalisation false
gconftool-2 -t bool -s /apps/osso/inputmethod/hildon-im-languages/he_IL/word-completion false
gconftool-2 -t bool -s /apps/osso/inputmethod/hildon-im-languages/he_IL/insert-space-after-word false

if [ -x "/etc/init.d/hebrew" ]; then
        update-rc.d hebrew defaults >/dev/null
        if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
                invoke-rc.d hebrew start || exit $?
        else
                /etc/init.d/hebrew start || exit $?
        fi
fi

