PDA

View Full Version : Change UI Language of Qt Tools



shentian
26th June 2009, 18:55
How can I change the UI language of the various Qt tools (creator, designer, linguist) without changing the regional settings of Windows?

wysota
26th June 2009, 19:36
You can try exporting the LC_ALL variable with a proper language id but I don't know if Windows respects it. It will definitely work on unices.

shentian
26th June 2009, 20:06
Thanks, but that doesn't seem to work on Windows. Here it's probably some weird API call.

Meanwhile I renamed the .qm files as a workaround, but I wonder if there isn't a better solution.

akshaysulakhe
9th July 2013, 19:44
Is it possible to change language of qt designer? I am using designer independetly. In the preferences/options, i can't find such an option. I don't have sudo or root permissions. Kindly let me know. Thank you very much.

anda_skoa
10th July 2013, 08:45
On Unix/Linux this is easy

LANG=<language-code> designer

e.g.

LANG=en designer
launching in English

LANG=de designer
launching in Geman

LANG=fr designer
launching in French

Cheers,
_