jdk/src/windows/native/java/lang/java_props_md.c
changeset 10338 ffaa7122547c
parent 9027 540bd52f1881
child 11906 dc984e35d8a6
--- a/jdk/src/windows/native/java/lang/java_props_md.c	Tue Aug 16 08:53:03 2011 +0800
+++ b/jdk/src/windows/native/java/lang/java_props_md.c	Wed Aug 17 11:09:06 2011 -0700
@@ -563,6 +563,18 @@
         {
             char * display_encoding;
 
+            // Windows UI Language selection list only cares "language"
+            // information of the UI Language. For example, the list
+            // just lists "English" but it actually means "en_US", and
+            // the user cannot select "en_GB" (if exists) in the list.
+            // So, this hack is to use the user LCID region information
+            // for the UI Language, if the "language" portion of those
+            // two locales are the same.
+            if (PRIMARYLANGID(LANGIDFROMLCID(userDefaultLCID)) ==
+                PRIMARYLANGID(LANGIDFROMLCID(userDefaultUILang))) {
+                userDefaultUILang = userDefaultLCID;
+            }
+
             SetupI18nProps(userDefaultUILang,
                            &sprops.language,
                            &sprops.script,