ubuntuusers.de

Sprache der Manueanzeige

Status: Gelöst | Ubuntu-Version: Ubuntu 12.04 (Precise Pangolin)
Antworten |

RainerW

Anmeldungsdatum:
12. Juli 2007

Beiträge: 194

Wohnort: 25856 Wobbenbüll

Moin moin, ein neues Problem. Nach dem Einschalten heute sind alle Manueanzeigen in englisch. In den - System Settings - Language Support ist Language for menues and windows auf English gesetzt. Alle weitere installierte Sprachen sind auf grau gesetzt und nicht zu aktivieren. Was ist passiert bzw. wie kann ich die Anzeige wieder auf Deutsch setzen?? vg Rainer

tomtomtom Team-Icon

Supporter
Avatar von tomtomtom

Anmeldungsdatum:
22. August 2008

Beiträge: 54786

Wohnort: Berlin

Hallo,

verschiebe eine evtl. verhandene Datei ~/.profile mittels

mv ~/.profile ~/.profile.bak

und erstelle eine neue

gedit ~/.profile

diese mit folgendem Inhalt befüllen:

# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.

# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022

# if running bash
if [ -n "$BASH_VERSION" ]; then
    # include .bashrc if it exists
    if [ -f "$HOME/.bashrc" ]; then
	. "$HOME/.bashrc"
    fi
fi

# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
    PATH="$HOME/bin:$PATH"
fi
export LANGUAGE="de"
export LC_MESSAGES="de_DE.UTF-8"
export LC_CTYPE="de_DE.UTF-8"
export LC_COLLATE="de_DE.UTF-8"
export LANG="de_DE.UTF-8"

Danach von der Sitzung abmelden und neu anmelden.

(Das ist übrigens 952185.)

Antworten |