"Andreas Mohr" <[EMAIL PROTECTED]> wrote:
+LANGID WINAPI SetThreadUILanguage(WORD wReserved) +{ + FIXME("SetThreadUILanguage(0x%04x), semi-stub! (defaulting to english)\n", wReserved); + return MAKELANGID(LANG_ENGLISH, SUBLANG_DEFAULT); +}
Why are you returning english here? Wine should display UI according to current user locale, so GetUserDefaultUILanguage() would be more appropriate here. -- Dmitry.