Skip to content

Commit 83dc5b1

Browse files
CLDR 47 (#6062)
1 parent af50a2f commit 83dc5b1

File tree

228 files changed

+7046
-5435
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

228 files changed

+7046
-5435
lines changed

components/experimental/src/dimension/currency/compact_format.rs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -149,14 +149,13 @@ mod tests {
149149
// Positive case
150150
let positive_value = "12345.67".parse().unwrap();
151151
let formatted_currency = fmt.format_fixed_decimal(&positive_value, currency_code);
152-
assert_writeable_eq!(formatted_currency, "\u{200f}١٢\u{a0}ألف\u{a0}ج.م.\u{200f}"); // "١٢ ألف ج.م."
152+
// TODO(#6064)
153+
assert_writeable_eq!(formatted_currency, "ج.م.\u{200f}\u{a0}١٢\u{a0}ألف"); // "ج.م.١٢ألف"
153154

154155
// Negative case
155156
let negative_value = "-12345.67".parse().unwrap();
156157
let formatted_currency = fmt.format_fixed_decimal(&negative_value, currency_code);
157-
assert_writeable_eq!(
158-
formatted_currency,
159-
"\u{200f}\u{61c}-١٢\u{a0}ألف\u{a0}ج.م.\u{200f}"
160-
);
158+
// TODO(#6064)
159+
assert_writeable_eq!(formatted_currency, "ج.م.\u{200f}\u{a0}\u{61c}-١٢\u{a0}ألف");
161160
}
162161
}

components/experimental/src/dimension/currency/format.rs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -123,14 +123,13 @@ mod tests {
123123
// Positive case
124124
let positive_value = "12345.67".parse().unwrap();
125125
let formatted_currency = fmt.format_fixed_decimal(&positive_value, currency_code);
126-
assert_writeable_eq!(formatted_currency, "\u{200f}١٢٬٣٤٥٫٦٧\u{a0}ج.م.\u{200f}");
126+
// TODO(#6064)
127+
assert_writeable_eq!(formatted_currency, "ج.م.\u{200f}\u{a0}١٢٬٣٤٥٫٦٧");
127128

128129
// Negative case
129130
let negative_value = "-12345.67".parse().unwrap();
130131
let formatted_currency = fmt.format_fixed_decimal(&negative_value, currency_code);
131-
assert_writeable_eq!(
132-
formatted_currency,
133-
"\u{200f}\u{61c}-١٢٬٣٤٥٫٦٧\u{a0}ج.م.\u{200f}"
134-
);
132+
// TODO(#6064)
133+
assert_writeable_eq!(formatted_currency, "ج.م.\u{200f}\u{a0}\u{61c}-١٢٬٣٤٥٫٦٧");
135134
}
136135
}

provider/data/calendar/Cargo.toml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

provider/data/calendar/README.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

provider/data/calendar/src/lib.rs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

provider/data/casemap/Cargo.toml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

provider/data/casemap/README.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

provider/data/casemap/src/lib.rs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

provider/data/collator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

provider/data/collator/README.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

provider/data/collator/src/lib.rs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

provider/data/datetime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

provider/data/datetime/README.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

provider/data/datetime/data/buddhist_month_names_v1_marker.rs.data

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

provider/data/datetime/data/exemplar_cities_root_v1_marker.rs.data

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)