30 Jul
2005
30 Jul
'05
2:37 a.m.
"Andreas Mohr" <andi(a)rhlx01.fht-esslingen.de> 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.