2024-06-17 17:05:33 -04:00
|
|
|
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
2024-04-25 19:38:33 +02:00
|
|
|
|
|
|
|
export const menuUiHandler: SimpleTranslationEntries = {
|
2024-05-23 17:03:10 +02:00
|
|
|
"GAME_SETTINGS": "Game Settings",
|
|
|
|
"ACHIEVEMENTS": "Achievements",
|
|
|
|
"STATS": "Stats",
|
|
|
|
"VOUCHERS": "Vouchers",
|
|
|
|
"EGG_LIST": "Egg List",
|
|
|
|
"EGG_GACHA": "Egg Gacha",
|
|
|
|
"MANAGE_DATA": "Manage Data",
|
|
|
|
"COMMUNITY": "Community",
|
|
|
|
"SAVE_AND_QUIT": "Save and Quit",
|
|
|
|
"LOG_OUT": "Log Out",
|
|
|
|
"slot": "Slot {{slotNumber}}",
|
|
|
|
"importSession": "Import Session",
|
|
|
|
"importSlotSelect": "Select a slot to import to.",
|
|
|
|
"exportSession": "Export Session",
|
|
|
|
"exportSlotSelect": "Select a slot to export from.",
|
|
|
|
"importData": "Import Data",
|
|
|
|
"exportData": "Export Data",
|
|
|
|
"cancel": "Cancel",
|
2024-06-24 11:21:42 -05:00
|
|
|
"losingProgressionWarning": "You will lose any progress since the beginning of the battle. Proceed?",
|
|
|
|
"noEggs": "You are not hatching\nany eggs at the moment!"
|
2024-05-23 17:03:10 +02:00
|
|
|
} as const;
|