1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:38:11 +00:00

LibUnicode: Parse number system digits from the CLDR

We had a hard-coded table of number system digits copied from ECMA-402.
Turns out these digits are in the CLDR, so let's parse the digits from
there instead of hard-coding them.
This commit is contained in:
Timothy Flynn 2022-01-11 18:42:07 -05:00 committed by Linus Groh
parent 05ed8d1738
commit c5138f0f2b
5 changed files with 112 additions and 86 deletions

View file

@ -28,6 +28,7 @@ enum class ListPatternStyle : u8;
enum class ListPatternType : u8;
enum class Locale : u16;
enum class Month : u8;
enum class NumberSystem : u8;
enum class NumericSymbol : u8;
enum class Property : u8;
enum class Script : u8;