mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-12 00:26:15 +00:00
10 lines
317 B
TypeScript
10 lines
317 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
|
||
|
export const pokeball: SimpleTranslationEntries = {
|
||
|
"pokeBall": "Poké Bola",
|
||
|
"greatBall": "Grande Bola",
|
||
|
"ultraBall": "Ultra Bola",
|
||
|
"rogueBall": "Rogue Bola",
|
||
|
"masterBall": "Master Bola",
|
||
|
"luxuryBall": "Bola de Luxo",
|
||
|
} as const;
|