We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
numberSystem
Cldr::Export::Data::Numbers#symbols ignores the distinguishing attribute numberSystem:
Cldr::Export::Data::Numbers#symbols
In the bn locale, there are data for two number systems. However, Cldr::Export::Data::Numbers#symbols merges them all together:
bn
(byebug) select('numbers/symbols/*').size 23
23 = 11 from the beng numberSystem, and 12 from the latn numberSystem (CLDR v34)
beng
latn
The result is a set of symbols that combine bits of both numberSystems.
numberSystems
bn: numbers: symbols: alias: '' decimal: "." group: "," list: ";" percent_sign: "%" plus_sign: "+" minus_sign: "-" exponential: E superscripting_exponent: "×" per_mille: "‰" infinity: "∞" nan: NaN time_separator: ":"
Distinguishing attributes are used to distinguish multiple elements at the same level.
I expected different numberSystem elements to be kept separate during the export, since that's what the spec calls for. Something like:
bn: numbers: symbols: beng: .... latn: ....
The text was updated successfully, but these errors were encountered:
<alias>
numbers.rb
No branches or pull requests
Cldr::Export::Data::Numbers#symbols
ignores the distinguishing attributenumberSystem
:Example
In the
bn
locale, there are data for two number systems. However,Cldr::Export::Data::Numbers#symbols
merges them all together:23 = 11 from the
beng
numberSystem
, and 12 from thelatn
numberSystem
(CLDR v34)The result is a set of symbols that combine bits of both
numberSystems
.Distinguishing attributes are used to distinguish multiple elements at the same level.
I expected different
numberSystem
elements to be kept separate during the export, since that's what the spec calls for. Something like:The text was updated successfully, but these errors were encountered: