diff --git a/src/settings_type.h b/src/settings_type.h --- a/src/settings_type.h +++ b/src/settings_type.h @@ -222,10 +222,6 @@ struct GUISettings { bool scale_bevels; ///< bevels are scaled with GUI scale. - std::string number_format; ///< formatting string for numbers (like "thousands" grouping) - std::string number_abbreviations; ///< mapping to number formats for different powers of ten/thresholds - std::string digit_decimal_separator; ///< decimal separator - /** * Returns true when the user has sufficient privileges to edit newgrfs on a running game * @return whether the user has sufficient privileges to edit newgrfs in an existing game @@ -269,6 +265,9 @@ struct LocaleSettings { byte units_volume; ///< unit system for volume byte units_force; ///< unit system for force byte units_height; ///< unit system for height + std::string digit_group_separator; ///< thousand separator for non-currencies + std::string digit_group_separator_currency; ///< thousand separator for currencies + std::string digit_decimal_separator; ///< decimal separator }; /** Settings related to news */