JDK-2149456 : localized DateFormatSymbols for fr_FR is wrong
  • Type: Backport
  • Backport of: JDK-4225362
  • Component: globalization
  • Sub-Component: translation
  • Priority: P4
  • Status: Closed
  • Resolution: Fixed
  • Submitted: 2007-05-18
  • Updated: 2011-03-07
  • Resolved: 2011-03-07
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 6 JDK 7
6u10Fixed 7 b118Fixed
Comments
EVALUATION It's marked as fix failed in java 7 b18. Transfer to Masaki for evaluation.
26-10-2010

EVALUATION Submitters request as well as the CLDR wants YEAR_FIELD="a" MONTH_FIELD="M" DATE_FIELD="j" Fix the j2se:src/share/classes/sun/text/resources/FormatData_fr Affected are FormatData_fr.java FormatData_fr_BE.java FormatData_fr_CA.java FormatData_fr_CH.java Correct "DateTimePatternChars"="GaMjkHmsSEDFwWahKzZ" ------- FormatData_fr.java ------- 148c148 < { "DateTimePatternChars", "GyMdkHmsSEDFwWahKzZ" }, --- > { "DateTimePatternChars", "GaMjkHmsSEDFwWahKzZ" }, ------- FormatData_fr_BE.java ------- 79c79 < { "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" }, --- > { "DateTimePatternChars", "GaMjkHmsSEDFwWahKzZ" }, ------- FormatData_fr_CA.java ------- 71c71 < { "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" }, --- > { "DateTimePatternChars", "GaMjkHmsSEDFwWahKzZ" }, ------- FormatData_fr_CH.java ------- 86c86 < { "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" }, --- > { "DateTimePatternChars", "GaMjkHmsSEDFwWahKzZ" }, test: j2se:test/closed/sun/text/resources/LocaleDataTest.java j2se:test/closed/sun/text/resources/LocaleData add: # bug 4225362 FormatData/fr/DateTimePatternChars=GanjkHmsSEDFwWxhKzZ FormatData/fr_BE/DateTimePatternChars=GanjkHmsSEDFwWxhKzZ FormatData/fr_CA/DateTimePatternChars=GanjkHmsSEDFwWxhKzZ FormatData/fr_CH/DateTimePatternChars=GanjkHmsSEDFwWxhKzZ FormatData/fr_FR/DateTimePatternChars=GanjkHmsSEDFwWxhKzZ FormatData/fr_LU/DateTimePatternChars=GanjkHmsSEDFwWxhKzZ testing all french including derived locales.
21-05-2007