mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-11 16:16:15 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
10 lines
335 B
TypeScript
10 lines
335 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const fightUiHandler: SimpleTranslationEntries = {
|
|
"pp": "PP",
|
|
"power": "Poder",
|
|
"accuracy": "Precisão",
|
|
"abilityFlyInText": " {{passive}}{{pokemonName}}\n{{abilityName}}",
|
|
"passive": "Passiva de ", // The space at the end is important
|
|
} as const;
|