mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-03 12:16:22 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
11 lines
309 B
TypeScript
11 lines
309 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const pokeball: SimpleTranslationEntries = {
|
|
"pokeBall": "Poké Bola",
|
|
"greatBall": "Grande Bola",
|
|
"ultraBall": "Ultra Bola",
|
|
"rogueBall": "Bola Rogue",
|
|
"masterBall": "Bola Mestra",
|
|
"luxuryBall": "Bola Luxo",
|
|
} as const;
|