Can't see russian letters in installer.

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
demontager
Level 2
Level 2
Posts: 27
Joined: Thu Nov 13, 2008 2:09 pm

Can't see russian letters in installer.

Post by demontager »

I'm a russian speaker so I got some games in russian, and as usual installer in russian as well. When i try to install got this on screen:

Image

How can I fix that?
Das Letzte Einhorn
Level 4
Level 4
Posts: 194
Joined: Thu Jun 12, 2008 12:40 pm

Post by Das Letzte Einhorn »

Try this

Code: Select all

LANG=ru_RU.UTF-8 wine program.exe
demontager
Level 2
Level 2
Posts: 27
Joined: Thu Nov 13, 2008 2:09 pm

Post by demontager »

Tried, got same wrong letters.
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Post by vitamin »

demontager wrote:Tried, got same wrong letters.
Show the exact command you used to start your program. Also what distro?
DaVince
Level 8
Level 8
Posts: 1099
Joined: Wed Oct 29, 2008 4:53 pm

Post by DaVince »

demontager wrote:Tried, got same wrong letters.
If you type locale -a, do you see ru_RU.utf8 in the list? If not, you need to type this:

Code: Select all

sudo locale-gen ru_RU.UTF-8
Then try again (using LANG=ru_RU.UTF-8 wine appname.exe)
demontager
Level 2
Level 2
Posts: 27
Joined: Thu Nov 13, 2008 2:09 pm

Post by demontager »

Thanks guys it works! First I did
sudo locale-gen ru_RU.UTF-8
then
LANG=ru_RU.UTF-8 wine program.exe
Good thing will keep it in my notes.
DaVince
Level 8
Level 8
Posts: 1099
Joined: Wed Oct 29, 2008 4:53 pm

Post by DaVince »

Good to hear that worked. Note that you should only have to do a locale-gen once, ever (unless of course (re)installing the OS).
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Post by vitamin »

DaVince wrote:Good to hear that worked. Note that you should only have to do a locale-gen once, ever (unless of course (re)installing the OS).
On binary distros you don't need to do that, it should be part of one of packages.
Locked