Two localization questions
-
1.) Is
GetSystemDefaultLangID()
the best way to detect which language version of the OS is running? OrGetUserDefaultLangID()
? Or something else? 2.) Is there a way to temporarily trick the US version of XP into thinking it's in another language? I tried changing the "Default input language" in the "Regional and Language Options" control panel, along with bothGetSystemDefaultLangID()
andGetUserDefaultLangID()
in my code, but they both return English regardless of what I set for the default input language. Do I need localized installs of XP to test my localizations? -
1.) Is
GetSystemDefaultLangID()
the best way to detect which language version of the OS is running? OrGetUserDefaultLangID()
? Or something else? 2.) Is there a way to temporarily trick the US version of XP into thinking it's in another language? I tried changing the "Default input language" in the "Regional and Language Options" control panel, along with bothGetSystemDefaultLangID()
andGetUserDefaultLangID()
in my code, but they both return English regardless of what I set for the default input language. Do I need localized installs of XP to test my localizations?Do I need localized installs of XP to test my localizations? No. Instead you can change the language in "Regional and Language Options" -> "Advanced" tab.
-
Do I need localized installs of XP to test my localizations? No. Instead you can change the language in "Regional and Language Options" -> "Advanced" tab.