mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-03 14:47:12 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
11 lines
302 B
TypeScript
11 lines
302 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const pokeball: SimpleTranslationEntries = {
|
|
"pokeBall": "精灵球",
|
|
"greatBall": "超级球",
|
|
"ultraBall": "高级球",
|
|
"rogueBall": "肉鸽球",
|
|
"masterBall": "大师球",
|
|
"luxuryBall": "豪华球",
|
|
} as const;
|