diff --git a/data/language/en-GB.txt b/data/language/en-GB.txt index 7197fa7db6..976b814871 100644 --- a/data/language/en-GB.txt +++ b/data/language/en-GB.txt @@ -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 # diff --git a/src/openrct2/localisation/StringIds.h b/src/openrct2/localisation/StringIds.h index 53f3b3c700..e1c8bf952d 100644 --- a/src/openrct2/localisation/StringIds.h +++ b/src/openrct2/localisation/StringIds.h @@ -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 };