mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-13 09:06:07 +00:00
6e52bc7980
* Ability Bar can now be localized. In a way that pokemonName abilityName and passive string can be ordered freely * Update src/locales/ko/fight-ui-handler.ts Co-authored-by: returntoice <dieandbecome@gmail.com> * Update src/locales/de/fight-ui-handler.ts * Update src/locales/de/fight-ui-handler.ts --------- Co-authored-by: returntoice <dieandbecome@gmail.com>
10 lines
331 B
TypeScript
10 lines
331 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const fightUiHandler: SimpleTranslationEntries = {
|
|
"pp": "PP",
|
|
"power": "Potencia",
|
|
"accuracy": "Precisión",
|
|
"abilityFlyInText": " {{pokemonName}}'s {{passive}}{{abilityName}}",
|
|
"passive": "Passive ", // The space at the end is important
|
|
} as const;
|