2

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?

mivoligo
  • 830

2 Answers2

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).

  • I believe for the LANG environment variable you'll have to specify a fully qualified locale name (e.g. en_US.UTF-8). If you want to simply specify en, you should be using the LANGUAGE variable – David Planella Jun 18 '12 at 11:39
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.

numand
  • 1,696