I'd like to know how I can change my shell language (not the OS) to english. The language I have in my OS windows is German (Switzerland).
Answer: I've put export LC_ALL=C
into the hidden ~/.bashrc
file as some suggested. This solved my problem.
export LC_ALL=C
at the bottom of.bashrc
file – Alex Jones Dec 25 '15 at 10:57export LC_ALL=C
at the end of~/.bashrc
, which is a hidden text file named.bashrc
in your home directory. To see it, open your home directory in Files and hit CTRL+H. Save, exit and then fire up a terminal. Everything should be in English. After that, if that solved your problem, please agree with the closure of the question by clicking the button "Yes, that solved my problem!". – kos Dec 25 '15 at 11:12git
. Maybe also change the title to explain that the problem is mostly related togit
sinceexport LC_ALL=C
at least partially solved the problem. – kos Dec 25 '15 at 11:21git
, the second one applies to all executables relying onLANG
(hence also e.g. todate
). – kos Dec 25 '15 at 11:30