mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-10 02:05:46 +00:00
* Allow pokemon name translation * Improve Pokemon localization --------- Co-authored-by: Flashfyre <flashfireex@gmail.com>
10 lines
315 B
TypeScript
10 lines
315 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const pokeball: SimpleTranslationEntries = {
|
|
"pokeBall": "Poké Ball",
|
|
"greatBall": "Great Ball",
|
|
"ultraBall": "Ultra Ball",
|
|
"rogueBall": "Rogue Ball",
|
|
"masterBall": "Master Ball",
|
|
"luxuryBall": "Luxury Ball",
|
|
} as const; |