mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-24 09:51:04 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
11 lines
317 B
TypeScript
11 lines
317 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const gameMode: SimpleTranslationEntries = {
|
|
"classic": "经典模式",
|
|
"endless": "无尽模式",
|
|
"endlessSpliced": "融合无尽模式",
|
|
"dailyRun": "每日挑战",
|
|
"unknown": "未知",
|
|
"challenge": "挑战模式",
|
|
} as const;
|