mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-27 11:17:19 +00:00
11 lines
295 B
TypeScript
11 lines
295 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
|
||
|
export const gameMode: SimpleTranslationEntries = {
|
||
|
"classic": "Classic",
|
||
|
"endless": "Endless",
|
||
|
"endlessSpliced": "Endless (Spliced)",
|
||
|
"dailyRun": "Daily Run",
|
||
|
"unknown": "Unknown",
|
||
|
"challenge": "Challenge",
|
||
|
} as const;
|