Cyrillic characters in Wine

Questions about Wine on Linux
Locked
webcapcha
Newbie
Newbie
Posts: 1
Joined: Tue Mar 26, 2019 12:55 am

Cyrillic characters in Wine

Post by webcapcha »

It's my first time using a Wine.
Can't figure out how to properly handle cyrillic characters.

I'm trying to follow this page https://wiki.winehq.org/Testing_Languages

Here is my locale command output

Code: Select all

LANG=en_US.UTF-8
LC_CTYPE="en_US.UTF-8"
LC_NUMERIC="en_US.UTF-8"
LC_TIME="en_US.UTF-8"
LC_COLLATE="en_US.UTF-8"
LC_MONETARY="en_US.UTF-8"
LC_MESSAGES="en_US.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=
https://imgur.com/BeYX497
lahmbi5678
Level 7
Level 7
Posts: 823
Joined: Thu Aug 27, 2009 6:23 am

Re: Cyrillic characters in Wine

Post by lahmbi5678 »

Looks like your whole system is very "American". First you should make sure, that you can use cyrillic characters in linux applications. You may have to install some locale stuff in linux.

If you want to use e.g. Russian letters with a specific wine application, you'd run it like this:
LANG="ru_RU.UTF-8" wine yourapp.exe
or simpler
LANG="ru_RU" wine yourapp.exe
where the string "yourapp.exe" is to be replaced with the actual name of the .exe. In most cases it may not be necessary to enforce UTF-8.

In some cases, you may want to enforce russian date formats, currency symbols etc, in this case you'd issue a command like
LC_ALL="ru_RU.UTF-8" wine yourapp.exe

If you want Ukrainian, the commands would be
LANG="uk_UA.UTF-8" wine yourapp.exe
LC_ALL="uk_UA.UTF-8" wine yourapp.exe
muza7799
Newbie
Newbie
Posts: 2
Joined: Sun Dec 20, 2020 7:09 pm

Re: Cyrillic characters in Wine

Post by muza7799 »

Im new user of wine so I need help how to run it LANG="ru_RU.UTF-8" wine yourapp.exe
I have iMac running Big Sur
please help me with the instructions
muza7799
Newbie
Newbie
Posts: 2
Joined: Sun Dec 20, 2020 7:09 pm

Re: Cyrillic characters in Wine

Post by muza7799 »

could you please explain how to do it?
fargodwe

Re: Cyrillic characters in Wine

Post by fargodwe »

I don't know a thing about a Mac, so I don't know how/if things are done a little differently. There is a separate MacOS subforum on Winehq Wine Help main forums page. It is intended for Mac users running Wine. You might be better served by posting there: viewforum.php?f=9
Locked