mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-24 18:01:05 +00:00
d743f7ba7a
* Corrected all English punctuation into Chinese in zh_TW * Merged battle.ts and biome.ts translations into this branch * abilitiy-trigger.ts and achv.ts * battle.ts egg.ts fight-ui-handler.ts game-mode.ts * a bunch of minor changes
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;
|