mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-03 14:47:12 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
10 lines
337 B
TypeScript
10 lines
337 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const fightUiHandler: SimpleTranslationEntries = {
|
|
"pp": "PP",
|
|
"power": "위력",
|
|
"accuracy": "명중률",
|
|
"abilityFlyInText": " {{pokemonName}}의 {{passive}}{{abilityName}}",
|
|
"passive": "패시브 ", // The space at the end is important
|
|
} as const;
|