Solved Change language of Gnome Desktop

No. I have changed it from gnome settings, etc. Restart and nothing. still in english.
Are other Gnome settings applied? And which part are you talking about? The system's language or the Gnome desktop? These are different and one has no influence on the other.

 
Maybe the sampled here https://forums.freebsd.org/threads/slim-xorg-fr.58380/, and changed for Spanish language
my /usr/local/etc/X11/xorg.conf.d/10-keyboard.conf:
Code:
Section "InputClass"
        Identifier "Keyboard0"
        MatchIsKeyboard "on"
        Option "XkbModel" "pc105"
        Option "XkbLayout" "fr"
        Option "xkb_rules" "evdev"
    Option "XkbVariant" "oss"
    Option "XkbOptions" "terminate:ctrl_alt_bksp,ctrl:nocaps"
EndSection
 
Solved, editing:
/usr/local/etc/gdm/locale.conf

LANG="es_AR.UTF-8"
LC_CTYPE="es_AR.UTF-8"
LC_MESSAGES="es_AR.UTF-8"

and gnome is in spanish.
 
Solved, editing:
/usr/local/etc/gdm/locale.conf

LANG="es_AR.UTF-8"
LC_CTYPE="es_AR.UTF-8"
LC_MESSAGES="es_AR.UTF-8"

and gnome is in spanish.
Thanks for your help Spity. It was such a pain to fix this !;)
I add set a french keyboard directly to X11 with configuration in /usr/local/etc/X11/xorg.conf.d/keyboard-fr.conf:
Section "InputClass"
Identifier "KeyboardDefaults"
MatchIsKeyboard "on"
Option "XkbLayout" "fr"
EndSection

Worked perfectly on everything excepts this damn GDM !
I did the same with fr_FR.UTF-8 and now everything is good :cool:
 
Back
Top