diff --git a/Meta/Lagom/Tools/CodeGenerators/LibUnicode/GenerateUnicodeNumberFormat.cpp b/Meta/Lagom/Tools/CodeGenerators/LibUnicode/GenerateUnicodeNumberFormat.cpp index d94e4b6dbc..7f211bdf95 100644 --- a/Meta/Lagom/Tools/CodeGenerators/LibUnicode/GenerateUnicodeNumberFormat.cpp +++ b/Meta/Lagom/Tools/CodeGenerators/LibUnicode/GenerateUnicodeNumberFormat.cpp @@ -523,6 +523,8 @@ static ErrorOr parse_number_systems(String locale_numbers_path, UnicodeLoc return Unicode::NumericSymbol::PercentSign; if (numeric_symbol == "plusSign"sv) return Unicode::NumericSymbol::PlusSign; + if (numeric_symbol == "timeSeparator"sv) + return Unicode::NumericSymbol::TimeSeparator; return {}; }; diff --git a/Userland/Libraries/LibUnicode/NumberFormat.h b/Userland/Libraries/LibUnicode/NumberFormat.h index 6246a46c62..1504ac8ea7 100644 --- a/Userland/Libraries/LibUnicode/NumberFormat.h +++ b/Userland/Libraries/LibUnicode/NumberFormat.h @@ -64,6 +64,7 @@ enum class NumericSymbol : u8 { NaN, PercentSign, PlusSign, + TimeSeparator, }; Optional get_default_number_system(StringView locale);