1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +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

@@ -3841,3 +3841,4 @@ STR_7008 :Unknown ride type ({INT32})
STR_7009 :Receiving scripts…
STR_7010 :Could not start replay, file {STRING} doesnt exist or isnt valid
STR_7011 :Could not start replay
STR_7012 :Polish Złoty (PLN)

View File

@@ -4,6 +4,7 @@
- Improved: [#25529] The map selection grid no longer redraws every frame if it has not changed.
- Improved: [#25530] Wall dragging can now be cancelled without closing the Scenery window.
- Improved: [#25575] Updated the network protocol to a new format that supports larger packets, allowing clients to connect reliably to servers with many objects or large maps.
- Improved: [#25621] Added the Polish Złoty (PLN) to the list of available currencies.
- Improved: [#25625] Renewing and refurbishing rides now also resets the downtime.
- Change: [#25485] Make the enlarged pressed swatch sprite more pronounced.
- Fix: [#9895] Stand-up coaster gets wrong intensity boost from the synchronisation bonus.

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,