Fix WorldRotated enum value to match lang key 🌐 (#3553)

Fixes this display bug, says "WORLD ROTATED" now

<img width="235" height="140" alt="image"
src="https://github.com/user-attachments/assets/dc8bb97d-350a-4ced-a63d-f3564479ba41"
/>

- [X] I have added screenshots for all UI updates
- [X] I process any text displayed to the user through translateText()
and I've added it to the en.json file
- [X] I have added relevant tests to the test directory
- [X] I confirm I have thoroughly tested these changes and take full
responsibility for any bugs introduced
regression is found:

FloPinguin
This commit is contained in:
FloPinguin
2026-04-01 02:04:18 +02:00
committed by evanpelle
parent bfb8a9447c
commit 4fef27d014
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -350,7 +350,7 @@
"amazonriverwide": "Amazon River Wide",
"reglaciatedantarctica": "Reglaciated Antarctica",
"theboxplus": "The Box PLUS",
"worldrotated": "World for Mobile",
"worldrotated": "World Rotated",
"mediterranean": "Mediterranean"
},
"map_categories": {
+1 -1
View File
@@ -143,7 +143,7 @@ export enum GameMapType {
AmazonRiverWide = "Amazon River Wide",
ReglaciatedAntarctica = "Reglaciated Antarctica",
TheBoxPlus = "The Box Plus",
WorldRotated = "World for Mobile",
WorldRotated = "World Rotated",
}
export type GameMapName = keyof typeof GameMapType;