#!/bin/sh
export TEXTDOMAIN=pgprs
export TEXTDOMAINDIR=/usr/share/locale
export OUTPUT_CHARSET=UTF-8
export LANGORG=$LANG
n="r"
while  [ "$n" = "r" ]
do
/usr/sbin/pppd call gprsmm
n="q"
echo "Exit status is $?"
echo "$(gettext 'DISCONNECTED')"
echo ""
echo "$(gettext 'Press ENTER to quit')"
echo "$(gettext 'Press r ENTER to reconnect/try again')"
read n
done
