mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-09 09:45:38 +00:00
10 lines
337 B
TypeScript
10 lines
337 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const fightUiHandler: SimpleTranslationEntries = {
|
|
"pp": "PP",
|
|
"power": "Potenza",
|
|
"accuracy": "Precisione",
|
|
"abilityFlyInText": "{{passive}} {{pokemonName}} {{abilityName}}",
|
|
"passive": "Passiva di ", // The space at the end is important
|
|
} as const;
|