mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-13 00:56:08 +00:00
10 lines
332 B
TypeScript
10 lines
332 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const fightUiHandler: SimpleTranslationEntries = {
|
|
"pp": "PP",
|
|
"power": "Potencia",
|
|
"accuracy": "Precisión",
|
|
"abilityFlyInText": " {{passive}}{{pokemonName}}\n{{abilityName}}",
|
|
"passive": "Pasiva de ", // The space at the end is important
|
|
} as const;
|