Add the Hungarian Forint (HUF) to the list of available currencies. (#9017)

This commit is contained in:
hokasha2016 2019-04-02 18:04:22 -04:00 committed by Aaron van Geffen
parent 2fb31910ca
commit 1ff1f6d126
5 changed files with 5 additions and 1 deletions

View File

@ -3214,6 +3214,7 @@ STR_5762 :Chinese Yuan (CN¥)
STR_5763 :All files
STR_5764 :Invalid ride type
STR_5765 :Cannot edit rides of invalid type
STR_5766 :Hungarian Forint (Ft)
STR_5767 :Income
STR_5768 :Total customers
STR_5769 :Total profit

View File

@ -1,6 +1,7 @@
0.2.2+ (in development)
------------------------------------------------------------------------
- Feature: [#7296] Allow assigning a keyboard shortcut for the scenery picker.
- Feature: [#8029] Add the Hungarian Forint (HUF) to the list of available currencies.
- Feature: [#8481] Multi-threaded rendering.
- Feature: [#8919] Allow setting ride price from console.
- Feature: [#8963] Add missing Czech letters to sprite font, use sprite font for Czech.

View File

@ -31,6 +31,7 @@ currency_descriptor CurrencyDescriptors[CURRENCY_END] = {
{ "HKD", 100, CURRENCY_PREFIX, "$", CURRENCY_PREFIX, "HKD", STR_HONG_KONG_DOLLAR}, // Hong Kong Dollar
{ "TWD", 1000, CURRENCY_PREFIX, "NT$", CURRENCY_PREFIX, "NT$", STR_NEW_TAIWAN_DOLLAR}, // New Taiwan Dollar
{ "CNY", 100, CURRENCY_PREFIX, "CN\xC2\xA5", CURRENCY_PREFIX, "CNY", STR_CHINESE_YUAN }, // Chinese Yuan
{ "HUF", 1000, CURRENCY_PREFIX, "Ft", CURRENCY_PREFIX, "Ft", STR_HUNGARIAN_FORINT}, // Hungarian Forint
{ "CTM", 10, CURRENCY_PREFIX, "Ctm", CURRENCY_PREFIX, "Ctm", STR_CUSTOM_CURRENCY }, // Customizable currency
};
// clang-format on

View File

@ -31,6 +31,7 @@ enum CURRENCY_TYPE
CURRENCY_HKD, // Hong Kong Dollar
CURRENCY_TWD, // New Taiwan Dollar
CURRENCY_YUAN, // Chinese Yuan
CURRENCY_FORINT, // Hungarian Forint
CURRENCY_CUSTOM, // Custom currency

View File

@ -3311,7 +3311,7 @@ enum
STR_ALL_FILES = 5763,
STR_INVALID_RIDE_TYPE = 5764,
STR_CANT_EDIT_INVALID_RIDE_TYPE = 5765,
STR_HUNGARIAN_FORINT = 5766,
STR_RIDE_LIST_INCOME = 5767,
STR_RIDE_LIST_TOTAL_CUSTOMERS = 5768,
STR_RIDE_LIST_TOTAL_PROFIT = 5769,