#!/bin/sh 
# This file was installed by the package user-de and contains the
# settings for German speaking users

# If you just want Umlauts and accents (also in Mutt), but anything
# else in English then uncomment the following two entries, and
# comment out the LANG=de_DE@euro setting below.
#LANG=C
#export LANG
#LC_CTYPE=de_DE@euro
#export LC_CTYPE

# If you want everything in German, then just keep the following entry 
# as it is.
LANG=de_DE@euro
export LANG
# If you want a German GNOME Desktop as well, you also have to set
# LANG=de_DE@euro in /etc/environment, which is a good idea anyway!!!

# The following alias makes sure that Umlauts are correctly displayed
# in German manpages (together with the setting LESSCHARSET=iso8859
# in bash_aliases, which is also the default for less).
alias man='man -P less'

# Alternatively you could use this for a more general approach:
#PAGER=less
#export PAGER

# If you should prefer English manpages
# and uncomment the following two lines.
#MANOPT='-L english'
#export MANOPT


if [ -d /usr/X11R6/lib/X11/nls ]; then
    XNLSPATH=/usr/X11R6/lib/X11/nls
    export XNLSPATH
fi

