-
Bug
-
Resolution: Fixed
-
P2
-
7
-
b127
-
x86
-
windows
-
Verified
On Brazillian Portuguese windows, run JDK installer, there will be error dialog and the installation can not continue. Please refer to the attached snapshot.
The problem is actually in install/make/installer/bundles/windows/ishield/wrapper/common/WrapperUtils.cpp
if (langid == LANGID_PORTUGUESE_BRAZILIAN)
return LANGID_PORTUGUESE_BRAZILIAN;
The above code returns LANGID_PORTUGUESE_BRAZILIAN even it's the installation of JDK. It should be
if ((!IsThisJDK()) && (langid == LANGID_PORTUGUESE_BRAZILIAN)) {
return LANGID_PORTUGUESE_BRAZILIAN;
}
Actually above change is part of 6925851: Localize JRE into pt_BR. In this CR fix, the problem has been solved, but it seems that during the merge by Kelly in b123, the change was lost or covered by other changeset.
The changeset is 8e354299d95d.
It seems that the same change has to be integrated again to solve this CR.
The problem is actually in install/make/installer/bundles/windows/ishield/wrapper/common/WrapperUtils.cpp
if (langid == LANGID_PORTUGUESE_BRAZILIAN)
return LANGID_PORTUGUESE_BRAZILIAN;
The above code returns LANGID_PORTUGUESE_BRAZILIAN even it's the installation of JDK. It should be
if ((!IsThisJDK()) && (langid == LANGID_PORTUGUESE_BRAZILIAN)) {
return LANGID_PORTUGUESE_BRAZILIAN;
}
Actually above change is part of 6925851: Localize JRE into pt_BR. In this CR fix, the problem has been solved, but it seems that during the merge by Kelly in b123, the change was lost or covered by other changeset.
The changeset is 8e354299d95d.
It seems that the same change has to be integrated again to solve this CR.
- relates to
-
JDK-6925851 Localize JRE into pt_BR
-
- Closed
-