mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-29 13:09:17 +01:00
11 lines
310 B
TypeScript
11 lines
310 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const gameMode: SimpleTranslationEntries = {
|
|
"classic": "Classica",
|
|
"endless": "Infinita",
|
|
"endlessSpliced": "Infinita (fusioni)",
|
|
"dailyRun": "Run giornaliera",
|
|
"unknown": "Sconosciuta",
|
|
"challenge": "Sfida",
|
|
} as const;
|