Repro:
`new DateFormatSymbols(Locale.GERMAN).getAmPmStrings()`
For Java 11:
String[2] { "vorm.", "nachm." }
For Java 17:
`{ "AM", "PM" }`
The locale date still includes the strings - https://github.com/openjdk/jdk17/blob/master/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_de.java#L84
Same for ES
Is this expected? Tried to figure out from https://www.oracle.com/java/technologies/javase/jdk17-suported-locales.html but was not clear
`new DateFormatSymbols(Locale.GERMAN).getAmPmStrings()`
For Java 11:
String[2] { "vorm.", "nachm." }
For Java 17:
`{ "AM", "PM" }`
The locale date still includes the strings - https://github.com/openjdk/jdk17/blob/master/src/jdk.localedata/share/classes/sun/text/resources/ext/JavaTimeSupplementary_de.java#L84
Same for ES
Is this expected? Tried to figure out from https://www.oracle.com/java/technologies/javase/jdk17-suported-locales.html but was not clear