I had language problems before, but they were resolved by setting /etc/default/locale
$ cat /etc/default/locale
LANG="en_US.UTF-8"
Now most messages are in english:
$ ls lkjlkj
ls: cannot access lkjlkj: No such file or directory
$ ls -ld jon-files/
drwxr-xr-x 47 jon sjuser 4096 Nov 13 14:52 jon-files/
so error messages and dates, for instance, are in english.
But when I fire up certain applications, say pidgin, it immediately starts talking french. Also, I have seen at least one application which displays the "Save" dialog in french. For info,
$ locale
LANG=en_US.UTF-8
LANGUAGE=en_US
LC_CTYPE="en_US.UTF-8"
LC_NUMERIC=en_US.UTF-8
LC_TIME=en_US.UTF-8
LC_COLLATE="en_US.UTF-8"
LC_MONETARY=en_US.UTF-8
LC_MESSAGES="en_US.UTF-8"
LC_PAPER=en_US.UTF-8
LC_NAME=en_US.UTF-8
LC_ADDRESS=en_US.UTF-8
LC_TELEPHONE=en_US.UTF-8
LC_MEASUREMENT=en_US.UTF-8
LC_IDENTIFICATION=en_US.UTF-8
LC_ALL=
No french in there. System settings > Locale shows american english as the preferred language with french second.
Any ideas?
$ cat /etc/default/locale
LANG="en_US.UTF-8"
Now most messages are in english:
$ ls lkjlkj
ls: cannot access lkjlkj: No such file or directory
$ ls -ld jon-files/
drwxr-xr-x 47 jon sjuser 4096 Nov 13 14:52 jon-files/
so error messages and dates, for instance, are in english.
But when I fire up certain applications, say pidgin, it immediately starts talking french. Also, I have seen at least one application which displays the "Save" dialog in french. For info,
$ locale
LANG=en_US.UTF-8
LANGUAGE=en_US
LC_CTYPE="en_US.UTF-8"
LC_NUMERIC=en_US.UTF-8
LC_TIME=en_US.UTF-8
LC_COLLATE="en_US.UTF-8"
LC_MONETARY=en_US.UTF-8
LC_MESSAGES="en_US.UTF-8"
LC_PAPER=en_US.UTF-8
LC_NAME=en_US.UTF-8
LC_ADDRESS=en_US.UTF-8
LC_TELEPHONE=en_US.UTF-8
LC_MEASUREMENT=en_US.UTF-8
LC_IDENTIFICATION=en_US.UTF-8
LC_ALL=
No french in there. System settings > Locale shows american english as the preferred language with french second.
Any ideas?
Comment