5

i installed Ubuntu in italian language. Now I would like to see the error commands in english.

For example if i write:

$ mmmm

This is showed:

mmmm: comando non trovato

I would like that

mmmmm: command was not found

is showed.

Any idea?

Regards

Javi

tirenweb
  • 1,347
  • 2
  • 14
  • 22
  • 2
    To get the error messages in English, install the English version. –  Jan 20 '11 at 18:41

2 Answers2

8

The language used by most applications uses the LC_LANG or LANG environment variables to find your language.

You can override it by adding a line

LANG=en_US.UTF-8
  • to the file ~/.profile if you want it to be changed for all applications (including GUI applications)

  • to the file ~/.bashrc for only applications you launch from inside the terminal (assuming your shell is bash).

You can also override it on a per-application basis by prefixing your command with that definition, e.g.

$ LANG=en_US.UTF-8 ls
Benjamin Bannier
  • 16,044
  • 3
  • 43
  • 41
5

not always working. you may have locale lang set in LANG variable overridden by LANGUAGE variable should use then LANGUAGE=en_US:en in the end of ~/.bashrc

user277755
  • 51
  • 1
  • 1