mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2026-01-01 06:28:54 +01:00
* Updating locale folder from ca-ES to ca_ES * Updated the i18n config file to include ca_ES instead of ca-ES
10 lines
332 B
TypeScript
10 lines
332 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const fightUiHandler: SimpleTranslationEntries = {
|
|
"pp": "PP",
|
|
"power": "Power",
|
|
"accuracy": "Accuracy",
|
|
"abilityFlyInText": " {{pokemonName}}'s {{passive}}{{abilityName}}",
|
|
"passive": "Passive ", // The space at the end is important
|
|
} as const;
|