You are not logged in.
Pages: 1
Hello all,
how do I change the standard language setting to use British English (en_GB)?? I do not want to use american English.
Regards,
J.
Offline
That's not a Xfce thing. You have to change the system settings.
Offline
Set the environment variable LC_ALL="en_GB" (maybe with or without utf8) before starting the desktop.
Offline
This setting is really very system and distro-specific. If you do have a folder called '/etc/env.d/' just add a file called something like 02language and put your locale in it. Then update the environment and do a reboot or just source
if [ -d /etc/env.d ]; then
echo "LC_ALL=en_GB.UTF-8" >> /etc/env.d/02language
env-update
source /etc/profile
fi
echo $LC_ALL
that's how one would do it on a normal Gentoo system. So you have to find out how you would do that on your system if it works differently. Be sure to also have compiled the locales.
Please ask the guys from your distro about it, since it's not an Xfce issue
Offline
Pages: 1
[ Generated in 0.012 seconds, 7 queries executed - Memory usage: 523.25 KiB (Peak: 529.66 KiB) ]