I use Ubuntu 12.04 with Polish localization. If I start: "quickly design", Glade shows up with Polish interface. I don't like that, I'd like Glade to be in English. How can I achieve that?
Asked
Active
Viewed 1,099 times
2 Answers
3
This is actually simple. Instead of
quickly design
run:
LANG=en quickly design
.
This trick works for almost every application, since they all determine your language settings on the basis of LANG (sometimes LANGUAGE or LC_MESSAGES are also significant).

Rafał Cieślak
- 20,494
2
You can start Glade in English by giving
env LANG="en_US.UTF-8" quickly design
or
LC_ALL=C quickly design
or
export LANG="en_US.UTF-8"; quickly design
commands in terminal. If you want to set permanently Glade's language to English, you can edit the launcher of Glade with the help of this. You have to change 'Exec' line like this:
Exec=env LC_ALL=C quickly design
I hope this will help you.
-
Thanks. Although the first command gives me an error message, the rest are fine. – mivoligo Jun 18 '12 at 08:23
LANG
environment variable you'll have to specify a fully qualified locale name (e.g.en_US.UTF-8
). If you want to simply specifyen
, you should be using theLANGUAGE
variable – David Planella Jun 18 '12 at 11:39