mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-17 23:35:16 +00:00
13 lines
435 B
TypeScript
13 lines
435 B
TypeScript
|
/**
|
||
|
* The menu namespace holds most miscellaneous text that isn't directly part of the game's
|
||
|
* contents or directly related to Pokemon. This includes menu navigation, settings,
|
||
|
* account interactions, etc.
|
||
|
*/
|
||
|
export const menu = {
|
||
|
"cancel": "Cancel",
|
||
|
"continue": "Continue",
|
||
|
"dailyRun": "Daily Run (Beta)",
|
||
|
"loadGame": "Load Game",
|
||
|
"newGame": "New Game",
|
||
|
"selectGameMode": "Select a game mode."
|
||
|
} as const;
|