dziki wrote:
PaulVriens wrote:
Try:
export LANG=pl_PL.UTF-8
winecfg (or whatever).
Nothing changes :(
Code:
$ export LANG=pl_PL.UTF-8
$ mkdir /tmp/l
$ export WINEPREFIX=/tmp/l
$ wine notepad.exe
I've checked codepage in registry, it's wrong one.
Maybe some of this will help:
Code:
You are selecting US_English before you select Polish. Can you either
remove US_English or reverse the selection?
$ locale -a
C
en_US
en_US.iso88591
en_US.utf8
pl_PL
pl_PL.iso88592
pl_PL.utf8
polish
POSIX
ru_RU.utf8
ru_UA.utf8
Code:
$ WINEDEBUG=warn+keyboard wine notepad.exe
warn:keyboard:X11DRV_KEYBOARD_DetectLayout 6 keysyms per keycode not supported, set to 4
warn:keyboard:X11DRV_KEYBOARD_DetectLayout Using closest match (Polish (programmer's) keyboard layout) for scan/virtual codes mapping.
warn:keyboard:X11DRV_InitKeyboard vkey 010D is being used by more than one keycode
Looks like the use of Polish and Cyrillic is causing problems here, but
I'm not certain.
James McKenzie