How can I change the UI language of Qt Creator 1.3.1?

Viewed 24834

I just downloaded and installed Qt Creator 1.3.1 on my English Windows 7 system from the english download site at http://qt.nokia.com/downloads Apparently, however, the UI of Qt Creator is in German language, although the help files are in English.

From the FAQ at http://www.qt.gitorious.org/qt-creator/pages/FrequentlyAskedQuestions I found the answer

Qt Creator uses the language setting of the system it runs on. On Linux systems you can also override that language by setting the LANG environment variable prior to starting Qt Creator, e.g. on the command line LANG=de ./qtcreator will run Qt Creator with german interface.

This, however, is apparently not correct, as I have an English Windows, and as system locale I have "English (United Kingdom)" set. Possibly Qt Creator interprets mistakenly the Windows settings for "current location", which I have set to "Germany" to mean that German would also be my language. However, changing that value had apparently no effect (maybe it should have been done before installing Qt Creator).

Is there any way to change the UI language of Qt creator to English after installing it, preferably without adjusting global system settings?

6 Answers

I managed to modify the language setting without reinstalling by adding an environment variable LANG with the value en_US (right click on "Computer", "Properties", "Advanced system settings", "Environment variables" on Windows 7).

Related