Skip to content

Commit

Permalink
ICU-22723 Integrate CLDR 46 release m0, part 3, source files
Browse files Browse the repository at this point in the history
  • Loading branch information
DraganBesevic committed May 24, 2024
1 parent d6657ad commit 699fb1d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion icu4c/source/test/intltest/dtptngts.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1384,7 +1384,8 @@ void IntlTestDateTimePatternGeneratorAPI::testJjMapping() {
continue;
}
// Now check that shortPattern and jPattern use the same hour cycle
if ((uprv_strncmp(localeID, "csw", 3) == 0 || uprv_strncmp(localeID, "kxv_", 4) == 0) && logKnownIssue("CLDR-17199", "Need timeFormats with h for csw, kxv_Xxxx")) {
if ((uprv_strncmp(localeID, "csw", 3) == 0 || uprv_strncmp(localeID, "kxv_", 4) == 0 || uprv_strncmp(localeID, "zh_Hans_MY", 10) == 0)
&& logKnownIssue("CLDR-17199", "Need timeFormats with h for csw, kxv_Xxxx, zh_Hans_MY")) {
continue;
}
UnicodeString jPatSkeleton = DateTimePatternGenerator::staticGetSkeleton(jPattern, status);
Expand Down
2 changes: 1 addition & 1 deletion icu4c/source/test/intltest/numbertest_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3011,7 +3011,7 @@ void NumberFormatterApiTest::unitLocaleTags() {
{"Test the region of `de` --> region should be DE", "de", "celsius", 1, "default", "celsius",
1.0, u"1 Grad Celsius"},
{"Test the region of `ar` --> region should be EG", "ar", "celsius", 1, "default", "celsius",
1.0, u"١ درجة مئوية"},
1.0, u"1 درجة مئوية"},
};

for (const auto &testCase : cases) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ public void unitWithLocaleTags() {
// Test the liklihood of the languages
{"Test the region of `en` --> region should be US", "en", "celsius", "1", "default", "fahrenheit", "34.0", "34 degrees Fahrenheit"},
{"Test the region of `de` --> region should be DE", "de", "celsius", "1", "default", "celsius", "1.0", "1 Grad Celsius"},
{"Test the region of `ar` --> region should be EG", "ar", "celsius", "1", "default", "celsius", "1.0", "١ درجة مئوية"},
{"Test the region of `ar` --> region should be EG", "ar", "celsius", "1", "default", "celsius", "1.0", "1 درجة مئوية"},
};

int testIndex = 0;
Expand Down
2 changes: 1 addition & 1 deletion tools/cldr/cldr-to-icu/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
<dependency>
<groupId>com.ibm.icu</groupId>
<artifactId>icu4j</artifactId>
<version>75.0.1-SNAPSHOT</version>
<version>76.0.1-SNAPSHOT</version>
<!-- Note: see https://github.com/unicode-org/icu/packages/1954682/versions
for the icu4j.version tag to use. In general we should just use the latest
SNAPSHOT for the ICU version that we want, so this should only need updating
Expand Down

0 comments on commit 699fb1d

Please sign in to comment.