Codechange: Add support for number format and abbreviations pragmas/attributes to strgen

This commit is contained in:
Rubidium
2024-02-08 21:28:36 +01:00
committed by rubidium42
parent fca8166087
commit 819c6c756e
5 changed files with 158 additions and 1 deletions

View File

@@ -1884,6 +1884,8 @@ bool LanguagePackHeader::IsValid() const
StrValid(this->name, lastof(this->name)) &&
StrValid(this->own_name, lastof(this->own_name)) &&
StrValid(this->isocode, lastof(this->isocode)) &&
StrValid(this->number_format, lastof(this->number_format)) &&
StrValid(this->number_abbreviations, lastof(this->number_abbreviations)) &&
StrValid(this->digit_group_separator, lastof(this->digit_group_separator)) &&
StrValid(this->digit_group_separator_currency, lastof(this->digit_group_separator_currency)) &&
StrValid(this->digit_decimal_separator, lastof(this->digit_decimal_separator));