[jdk19u] Integrated: 8293834: Update CLDR data following tzdata 2022c update

Andrew John Hughes andrew at openjdk.org
Wed Sep 28 00:55:43 UTC 2022


On Fri, 16 Sep 2022 17:16:33 GMT, Andrew John Hughes <andrew at openjdk.org> wrote:

> This adds the alias for `Europe/Kyiv` to the CLDR translation data, following the tzdata update which introduces this zone.
> 
> This is unnecessary for trunk, as it will be added by an update to CLDR v42, but such updates are not backported.
> 
> Without patch (from https://github.com/openjdk/jdk/pull/10012#issuecomment-1247209990):
> 
> ~~~
> jshell> ZoneId.of("Europe/Kyiv").getDisplayName(TextStyle.FULL, Locale.US)
> $178 ==> "Kyiv Time"
> 
> jshell> ZoneId.of("Europe/Kiev").getDisplayName(TextStyle.FULL, Locale.US)
> $179 ==> "Eastern European Time"
> ~~~
> 
> With patch:
> 
> ~~~
> jshell> ZoneId.of("Europe/Kyiv").getDisplayName(TextStyle.FULL, Locale.US)
> $178 ==> "Eastern European Time"
> 
> jshell> ZoneId.of("Europe/Kiev").getDisplayName(TextStyle.FULL, Locale.US)
> $179 ==> "Eastern European Time"
> ~~~

This pull request has now been integrated.

Changeset: e1023124
Author:    Andrew John Hughes <andrew at openjdk.org>
URL:       https://git.openjdk.org/jdk19u/commit/e10231248fc100f9dfa08468ac897f60b843857f
Stats:     20 lines in 2 files changed: 18 ins; 0 del; 2 mod

8293834: Update CLDR data following tzdata 2022c update

Reviewed-by: naoto

-------------

PR: https://git.openjdk.org/jdk19u/pull/26


More information about the jdk-updates-dev mailing list