langname="Unknown"

cfname=lang.config

if [ -r $cfname ]; then
    source $cfname
elif [ -r $lcode/$cfname ]; then
    source $lcode/$cfname
else
    echo "Configuration for $lcode not found"
    exit 15
fi

