mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-22464 Fix Java DateFormatSymbols to copy abbreviated day period names to the other sizes when appropriate.
This commit is contained in:
parent
87d606c39a
commit
2ca7c49662
2 changed files with 21 additions and 16 deletions
|
@ -5275,7 +5275,6 @@ public class DateFormatTest extends TestFmwk {
|
|||
assertEquals("hh:mm:ss bbbb | 12:00:00 | de", "12:00:00 PM", sdf.format(k120000));
|
||||
|
||||
// Locale ee has a rule that wraps around midnight (21h - 4h).
|
||||
if (!logKnownIssue("ICU-22464", "Wide time format BBBB is not formatting with night time for ee")) {
|
||||
sdf = new SimpleDateFormat("", new ULocale("ee"));
|
||||
sdf.setTimeZone(TimeZone.GMT_ZONE);
|
||||
|
||||
|
@ -5284,7 +5283,6 @@ public class DateFormatTest extends TestFmwk {
|
|||
assertEquals("hh:mm:ss BBBB | 22:00:00 | ee", "10:00:00 zã", sdf.format(k220000));
|
||||
assertEquals("hh:mm:ss BBBB | 00:00:00 | ee", "12:00:00 zã", sdf.format(k000000));
|
||||
assertEquals("hh:mm:ss BBBB | 01:00:00 | ee", "01:00:00 zã", sdf.format(k010000));
|
||||
}
|
||||
|
||||
// Locale root has rules for AM/PM only.
|
||||
sdf = new SimpleDateFormat("", new ULocale("root"));
|
||||
|
@ -5318,7 +5316,6 @@ public class DateFormatTest extends TestFmwk {
|
|||
// Locale es_CO should not fall back to es and should have a
|
||||
// different string for 1 in the morning.
|
||||
// (es_CO: "de la mañana" vs. es: "de la madrugada")
|
||||
if (!logKnownIssue("ICU-22464", "Wide time format BBBB is not formatting with night time for es and es_CO")) {
|
||||
sdf = new SimpleDateFormat("", new ULocale("es_CO"));
|
||||
sdf.setTimeZone(TimeZone.GMT_ZONE);
|
||||
|
||||
|
@ -5330,7 +5327,6 @@ public class DateFormatTest extends TestFmwk {
|
|||
|
||||
sdf.applyPattern("hh:mm:ss BBBB");
|
||||
assertEquals("hh:mm:ss BBBB | 01:00:00 | es", "01:00:00 de la madrugada", sdf.format(k010000));
|
||||
}
|
||||
|
||||
// #13215: for locales with keywords, check hang in DayPeriodRules.getInstance(ULocale),
|
||||
// which is called in SimpleDateFormat.format for patterns that include 'B'.
|
||||
|
|
|
@ -2004,12 +2004,12 @@ public class DateFormatSymbols implements Serializable, Cloneable {
|
|||
standaloneShortQuarters = arrays.get("quarters/stand-alone/abbreviated");
|
||||
standaloneNarrowQuarters = arrays.get("quarters/stand-alone/narrow");
|
||||
|
||||
abbreviatedDayPeriods = loadDayPeriodStrings(maps.get("dayPeriod/format/abbreviated"));
|
||||
wideDayPeriods = loadDayPeriodStrings(maps.get("dayPeriod/format/wide"));
|
||||
narrowDayPeriods = loadDayPeriodStrings(maps.get("dayPeriod/format/narrow"));
|
||||
standaloneAbbreviatedDayPeriods = loadDayPeriodStrings(maps.get("dayPeriod/stand-alone/abbreviated"));
|
||||
standaloneWideDayPeriods = loadDayPeriodStrings(maps.get("dayPeriod/stand-alone/wide"));
|
||||
standaloneNarrowDayPeriods = loadDayPeriodStrings(maps.get("dayPeriod/stand-alone/narrow"));
|
||||
abbreviatedDayPeriods = loadDayPeriodStrings(maps.get("dayPeriod/format/abbreviated"), null);
|
||||
wideDayPeriods = loadDayPeriodStrings(maps.get("dayPeriod/format/wide"), abbreviatedDayPeriods);
|
||||
narrowDayPeriods = loadDayPeriodStrings(maps.get("dayPeriod/format/narrow"), abbreviatedDayPeriods);
|
||||
standaloneAbbreviatedDayPeriods = loadDayPeriodStrings(maps.get("dayPeriod/stand-alone/abbreviated"), abbreviatedDayPeriods);
|
||||
standaloneWideDayPeriods = loadDayPeriodStrings(maps.get("dayPeriod/stand-alone/wide"), standaloneAbbreviatedDayPeriods);
|
||||
standaloneNarrowDayPeriods = loadDayPeriodStrings(maps.get("dayPeriod/stand-alone/narrow"), standaloneAbbreviatedDayPeriods);
|
||||
|
||||
for (int i = 0; i < DT_MONTH_PATTERN_COUNT; i++) {
|
||||
String monthPatternPath = LEAP_MONTH_PATTERNS_PATHS[i];
|
||||
|
@ -2129,15 +2129,24 @@ public class DateFormatSymbols implements Serializable, Cloneable {
|
|||
/**
|
||||
* Loads localized names for day periods in the requested format.
|
||||
* @param resourceMap Contains the dayPeriod resource to load
|
||||
* @param copyFrom If non-null, any values in the result that would otherwise be null are copied
|
||||
* from this array
|
||||
*/
|
||||
private String[] loadDayPeriodStrings(Map<String, String> resourceMap) {
|
||||
String strings[] = new String[DAY_PERIOD_KEYS.length];
|
||||
if (resourceMap != null) {
|
||||
for (int i = 0; i < DAY_PERIOD_KEYS.length; ++i) {
|
||||
strings[i] = resourceMap.get(DAY_PERIOD_KEYS[i]); // Null if string doesn't exist.
|
||||
private String[] loadDayPeriodStrings(Map<String, String> resourceMap, String[] copyFrom) {
|
||||
if (resourceMap == null && copyFrom != null) {
|
||||
return copyFrom;
|
||||
} else {
|
||||
String strings[] = new String[DAY_PERIOD_KEYS.length];
|
||||
if (resourceMap != null) {
|
||||
for (int i = 0; i < DAY_PERIOD_KEYS.length; ++i) {
|
||||
strings[i] = resourceMap.get(DAY_PERIOD_KEYS[i]); // Null if string doesn't exist.
|
||||
if (strings[i] == null && copyFrom != null) {
|
||||
strings[i] = copyFrom[i];
|
||||
}
|
||||
}
|
||||
}
|
||||
return strings;
|
||||
}
|
||||
return strings;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue