Velvet Star Monitor

Standout celebrity highlights with iconic style.

updates

How to change locale for Wine only?

Writer Mia Lopez

(Note this is a different question from this one)

This is the output of the "locale" command on my machine:

LANG=en_GB.UTF-8
LANGUAGE=
LC_CTYPE="en_GB.UTF-8"
LC_NUMERIC=en_US.UTF-8
LC_TIME=en_US.UTF-8
LC_COLLATE="en_GB.UTF-8"
LC_MONETARY=en_US.UTF-8
LC_MESSAGES="en_GB.UTF-8"
LC_PAPER=en_US.UTF-8
LC_NAME=en_US.UTF-8
LC_ADDRESS=en_US.UTF-8
LC_TELEPHONE=en_US.UTF-8
LC_MEASUREMENT=en_US.UTF-8
LC_IDENTIFICATION=en_US.UTF-8
LC_ALL=

I am happy with these settings and would like them to stay. But whenever I open a Wine application, I would like it to open with pl_PL.utf8 locale. In the terminal I can do this by typing

LC_ALL=pl_PL.utf8 wine myapp.exe

Is there a way to permanently change the default locale for Wine only?

1 Answer

  • Winecfg does not have any option to change the language. The normal way is the method you posted.

  • You will need to change the executable that you start and add the locale in front of it just like you do from command line.

Besides that ...

  • it is old but winelocale might still work.

    WineLocale clones the functionality of Microsoft AppLocale in Wine. It is used to manage locale and font settings in the Wine registry to ensure proper display of non-Latin type in pre-Unicode portable executables.

enter image description here

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy