Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ currency | NOK | Norwegian Krone | BV | BOUVET ISLAND | C
currency | BRL | Brazilian Real | BR | BRAZIL | C
currency | USD | US Dollar | IO | BRITISH INDIAN OCEAN TERRITORY | C
currency | BND | Brunei Dollar | BN | BRUNEI DARUSSALAM | C
currency | BGN | Bulgarian Lev | BG | BULGARIA | C
# C (current) was changed to O (obsolete) 2026-01 in the following line; Bulgaria changed from BGN to EUR
currency | BGN | Bulgarian Lev | BG | BULGARIA | O
currency | XOF | CFA Franc BCEAO † | BF | BURKINA FASO | C
currency | BIF | Burundi Franc | BI | BURUNDI | C
currency | KHR | Riel | KH | CAMBODIA | C
Expand Down Expand Up @@ -407,3 +408,5 @@ currency | VED | Bolívar Soberano | VE | VENEZUALA | F
currency | XCG | Caribbean Guilder | CW | CURAÇAO | P
currency | XCG | Caribbean Guilder | SX | SINT MAARTEN | P
currency | ZWG | Zimbabwean Gold | ZW | ZIMBABWE | P
# the following line was added 2026-01; Bulgaria changed from BGN to EUR
currency | EUR | Euro | BG | BULGARIA | C
Original file line number Diff line number Diff line change
Expand Up @@ -1609,12 +1609,6 @@ public void TestSupplementalCurrency() {
}
}
}
if (currency.equals("EUR")
&& logKnownIssue(
"CLDR-19174",
"ISO4217 data in CLDR does not yet reflect BG use of EUR")) {
isoCountries.add("BG");
}

TreeSet<String> cldrCountries = new TreeSet<>();
for (Pair<String, CurrencyDateInfo> x : data) {
Expand Down
Loading