1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-21 05:53:02 +01:00

Add support for Polish Złoty (PLN)

This commit is contained in:
Patrxgt
2025-12-12 09:54:57 +01:00
committed by GitHub
parent 31344adc61
commit e40eab16ee
5 changed files with 5 additions and 0 deletions

View File

@@ -39,6 +39,7 @@ namespace OpenRCT2
{ "TWD", 1000, CurrencyAffix::prefix, u8"NT$", CurrencyAffix::prefix, "NT$", STR_NEW_TAIWAN_DOLLAR}, // New Taiwan Dollar
{ "CNY", 100, CurrencyAffix::prefix, u8"CN¥", CurrencyAffix::prefix, "CNY", STR_CHINESE_YUAN }, // Chinese Yuan
{ "HUF", 1000, CurrencyAffix::suffix, u8" Ft", CurrencyAffix::suffix, " Ft", STR_HUNGARIAN_FORINT}, // Hungarian Forint
{ "PLN", 100, CurrencyAffix::suffix, u8" ", CurrencyAffix::suffix, " ", STR_POLISH_ZLOTY}, // Polish Złoty
{ "CTM", 10, CurrencyAffix::prefix, u8"Ctm", CurrencyAffix::prefix, "Ctm", STR_CUSTOM_CURRENCY }, // Customizable currency
};
// clang-format on

View File

@@ -33,6 +33,7 @@ namespace OpenRCT2
newTaiwanDollar, // New Taiwan Dollar
yuan, // Chinese Yuan
forint, // Hungarian Forint
zloty, // Polish Złoty
custom, // Custom currency

View File

@@ -1405,6 +1405,7 @@ enum : StringId
STR_INVALID_RIDE_TYPE = 5764,
STR_CANT_EDIT_INVALID_RIDE_TYPE = 5765,
STR_HUNGARIAN_FORINT = 5766,
STR_POLISH_ZLOTY = 7012,
STR_MULTIPLAYER_CONNECTED_CHAT_HINT = 5782,
STR_CANT_RENAME_GROUP = 5785,
STR_INVALID_GROUP_NAME = 5786,