diff options
author | asmodai <asmodai@FreeBSD.org> | 2000-07-27 11:39:33 +0000 |
---|---|---|
committer | asmodai <asmodai@FreeBSD.org> | 2000-07-27 11:39:33 +0000 |
commit | cd36f05b5112b9c761e4441fddbe32799d3ed879 (patch) | |
tree | 6fe2f8c7e46bdc304e8520f078bb7ce0b4244aca /etc | |
parent | df096faedaa116575fa0252b146ace7bf3655a79 (diff) | |
download | FreeBSD-src-cd36f05b5112b9c761e4441fddbe32799d3ed879.zip FreeBSD-src-cd36f05b5112b9c761e4441fddbe32799d3ed879.tar.gz |
Remove all mention of LANG and MM_CHARSET.
Add hints towards login.conf(5), which should be the preferred way
to set this systemwide without having to worry about the shell used.
PR: 9245
Submitted by: martin Kammerhofer <dada@sbox.tu-graz.ac.at>
Diffstat (limited to 'etc')
-rw-r--r-- | etc/csh.login | 10 | ||||
-rw-r--r-- | etc/profile | 13 |
2 files changed, 9 insertions, 14 deletions
diff --git a/etc/csh.login b/etc/csh.login index dd60349..7d70f93 100644 --- a/etc/csh.login +++ b/etc/csh.login @@ -4,13 +4,11 @@ # Uncomment this to give you the default 4.2 behavior, where disk # information is shown in K-Blocks # setenv BLOCKSIZE K -# Uncomment this two lines to activate Russian locale -# setenv LANG ru_RU.KOI8-R -# setenv MM_CHARSET KOI8-R -# Uncomment this two lines to activate Italian locale -# setenv LANG it_IT.ISO_8859-1 -# setenv MM_CHARSET ISO-8859-1 +# +# For the setting of languages and character sets please see +# login.conf(5) and in particular the charset and lang options. # For full locales list check /usr/share/locale/* +# # Read system messages # msgs -f # Allow terminal messages diff --git a/etc/profile b/etc/profile index 7695875..4705247 100644 --- a/etc/profile +++ b/etc/profile @@ -1,20 +1,17 @@ # $FreeBSD$ # # System-wide .profile file for sh(1). +# # Uncomment this to give you the default 4.2 behavior, where disk # information is shown in K-Blocks # BLOCKSIZE=K; export BLOCKSIZE -# Uncomment next three lines to activate Russian locale -# LANG=ru_RU.KOI8-R; export LANG -# MM_CHARSET=KOI8-R; export MM_CHARSET -# LC_ALL=ru_RU.KOI8-R; export LC_ALL -# Uncomment next three lines to activate Italian locale -# LANG=it_IT.ISO_8859-1; export LANG -# MM_CHARSET=ISO-8859-1; export MM_CHARSET -# LC_ALL=it_IT.ISO_8859-1; export LC_ALL +# +# For the setting of languages and character sets please see +# login.conf(5) and in particular the charset and lang options. # For full locales list check /usr/share/locale/* # You should also read the setlocale(3) man page for information # on how to achieve more precise control of locale settings. +# # Read system messages # msgs -f # Allow terminal messages |