1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:37:35 +00:00

LibUnicode: Parse and generate standard accounting formatting rules

Also known as "currency-accounting" in some CLDR documentation.
This commit is contained in:
Timothy Flynn 2021-11-10 11:24:26 -05:00 committed by Linus Groh
parent 967afc1b84
commit 1244ebcd4f
2 changed files with 10 additions and 0 deletions

View file

@ -81,6 +81,7 @@ struct LocaleID {
enum class StandardNumberFormatType : u8 {
Decimal,
Currency,
Accounting,
Percent,
};