diff --git a/common/dtd/ldml.dtd b/common/dtd/ldml.dtd
index 4a8c70e6780..7e263e7378a 100644
--- a/common/dtd/ldml.dtd
+++ b/common/dtd/ldml.dtd
@@ -1441,6 +1441,8 @@ CLDR data files are interpreted according to the LDML specification (http://unic
+
+
@@ -2062,7 +2064,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
-
+
@@ -2073,7 +2075,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
-
+
diff --git a/common/main/ca.xml b/common/main/ca.xml
index be196a1607e..e03f99be7ca 100644
--- a/common/main/ca.xml
+++ b/common/main/ca.xml
@@ -6509,13 +6509,13 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
↑↑↑
- ¤ #,##0.00
+ ¤ #,##0.00
pesseta espanyola
pesseta espanyola
pessetes espanyoles
₧
- ,
- .
+ ,
+ .
birr etíop
diff --git a/common/main/el.xml b/common/main/el.xml
index 57f8858dd15..51261cc8906 100644
--- a/common/main/el.xml
+++ b/common/main/el.xml
@@ -6581,13 +6581,13 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
εκουέλε Ισημερινής Γουινέας
- #,##0.00 ¤
+ #,##0.00 ¤
Δραχμή Ελλάδας
δραχμή Ελλάδας
δραχμές Ελλάδας
Δρχ
- ,
- .
+ ,
+ .
Κουετσάλ Γουατεμάλας
diff --git a/common/main/en_150.xml b/common/main/en_150.xml
index 1bd1324fb61..b0d03094670 100755
--- a/common/main/en_150.xml
+++ b/common/main/en_150.xml
@@ -83,7 +83,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
- ¤#,##0.00
+ ¤#,##0.00
diff --git a/common/main/en_AT.xml b/common/main/en_AT.xml
index 10704a052d9..1cdc88eb845 100755
--- a/common/main/en_AT.xml
+++ b/common/main/en_AT.xml
@@ -40,7 +40,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
- ¤ #,##0.00
+ ¤ #,##0.00
diff --git a/common/main/eu.xml b/common/main/eu.xml
index 8156d12e21a..efd0f75b0fd 100644
--- a/common/main/eu.xml
+++ b/common/main/eu.xml
@@ -13967,14 +13967,14 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
↑↑↑
- ¤ #,##0.00
+ ¤ #,##0.00
pezeta espainiarra
↑↑↑
pezeta espainiar
₧
↑↑↑
- ,
- .
+ ,
+ .
birr etiopiarra
diff --git a/common/main/gl.xml b/common/main/gl.xml
index 8278f400f5c..4239f2eb310 100644
--- a/common/main/gl.xml
+++ b/common/main/gl.xml
@@ -5385,13 +5385,13 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
Peseta española (conta convertible)
- #,##0.00 ¤
+ #,##0.00 ¤
Peseta española
peseta
pesetas
₧
- ,
- ❰NBTSP❱
+ ,
+ ❰NBTSP❱
birr etíope
diff --git a/common/main/it.xml b/common/main/it.xml
index 01040d600f9..ac69e816674 100644
--- a/common/main/it.xml
+++ b/common/main/it.xml
@@ -6095,13 +6095,13 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
↑↑↑
- ¤ #,##0.00
+ ¤ #,##0.00
lira italiana
↑↑↑
lire italiane
↑↑↑
- ,
- .
+ ,
+ .
dollaro giamaicano
diff --git a/common/main/tr.xml b/common/main/tr.xml
index e6a3366f4c7..e55f623d275 100644
--- a/common/main/tr.xml
+++ b/common/main/tr.xml
@@ -7655,7 +7655,7 @@ Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/
↑↑↑
- ¤#,##0.00
+ ¤#,##0.00
Türk lirası
↑↑↑
↑↑↑
diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/test/CheckNumbers.java b/tools/cldr-code/src/main/java/org/unicode/cldr/test/CheckNumbers.java
index c25dbb66730..b9706ab40ac 100644
--- a/tools/cldr-code/src/main/java/org/unicode/cldr/test/CheckNumbers.java
+++ b/tools/cldr-code/src/main/java/org/unicode/cldr/test/CheckNumbers.java
@@ -259,12 +259,8 @@ public CheckCLDR handleCheck(
}
XPathParts parts = XPathParts.getFrozenInstance(path);
- // TODO: re-enable this commented-out check
- // Reference: https://unicode-org.atlassian.net/browse/CLDR-18722
- /*
// Check that number formats are for an explicit number system.
- String numberSystem = parts.getAttributeValue(2, "numberSystem");
- if (numberSystem == null) {
+ if (!parts.containsAttribute("numberSystem")) {
result.add(
new CheckStatus()
.setCause(this)
@@ -273,7 +269,6 @@ public CheckCLDR handleCheck(
.setMessage(
"Number formats must have an explicit numberSystem attribute."));
}
- */
// Do tests that need to split the values
diff --git a/tools/cldr-code/src/test/resources/org/unicode/cldr/unittest/data/common/dtd/ldml.dtd b/tools/cldr-code/src/test/resources/org/unicode/cldr/unittest/data/common/dtd/ldml.dtd
index 1ef9bfdb1e7..9155d14f7cb 100644
--- a/tools/cldr-code/src/test/resources/org/unicode/cldr/unittest/data/common/dtd/ldml.dtd
+++ b/tools/cldr-code/src/test/resources/org/unicode/cldr/unittest/data/common/dtd/ldml.dtd
@@ -2051,7 +2051,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
-
+
@@ -2062,7 +2062,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
-
+