mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-24 18:01:05 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
10 lines
341 B
TypeScript
10 lines
341 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;
|