1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Add constants to StringIds.h and en-GB.txt

This commit is contained in:
Peter Froud
2024-01-22 01:47:14 -08:00
parent 7903845eae
commit 648941aa11
2 changed files with 33 additions and 0 deletions

View File

@@ -3699,6 +3699,22 @@ STR_6593 :Remove park fences
STR_6594 :Tile Inspector: Toggle wall slope
STR_6595 :{WINDOW_COLOUR_2}Author: {BLACK}{STRING}
STR_6596 :{WINDOW_COLOUR_2}Authors: {BLACK}{STRING}
STR_6597 :Invalid parameter
STR_6598 :Value out of range
STR_6599 :Ghost element not found
STR_6600 :Balloon not found
STR_6601 :Staff not found
STR_6602 :Ride not found
STR_6603 :Ride object entry not found
STR_6604 :Player not found
STR_6605 :Entrance element not found
STR_6606 :Surface element not found
STR_6607 :Tile element not found
STR_6608 :Track element not found
STR_6609 :Track block not found
STR_6610 :Path element not found
STR_6611 :Wall element not found
STR_6612 :Banner element not found
#############
# Scenarios #

View File

@@ -4007,6 +4007,23 @@ enum : uint16_t
STR_SCENERY_AUTHOR = 6595,
STR_SCENERY_AUTHOR_PLURAL = 6596,
STR_ERR_INVALID_PARAMETER = 6597,
STR_ERR_VALUE_OUT_OF_RANGE = 6598,
STR_ERR_GHOST_ELEMENT_NOT_FOUND = 6599,
STR_ERR_BALLOON_NOT_FOUND = 6600,
STR_ERR_STAFF_NOT_FOUND = 6601,
STR_ERR_RIDE_NOT_FOUND = 6602,
STR_ERR_RIDE_OBJECT_ENTRY_NOT_FOUND = 6603,
STR_ERR_PLAYER_NOT_FOUND = 6604,
STR_ERR_ENTRANCE_ELEMENT_NOT_FOUND = 6605,
STR_ERR_SURFACE_ELEMENT_NOT_FOUND = 6606,
STR_ERR_TILE_ELEMENT_NOT_FOUND = 6607,
STR_ERR_TRACK_ELEMENT_NOT_FOUND = 6608,
STR_ERR_TRACK_BLOCK_NOT_FOUND = 6609,
STR_ERR_PATH_ELEMENT_NOT_FOUND = 6610,
STR_ERR_WALL_ELEMENT_NOT_FOUND = 6611,
STR_ERR_BANNER_ELEMENT_NOT_FOUND = 6612,
// Have to include resource strings (from scenarios and objects) for the time being now that language is partially working
/* MAX_STR_COUNT = 32768 */ // MAX_STR_COUNT - upper limit for number of strings, not the current count strings
};