mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-06 09:58:10 +00:00
* 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
350 B
TypeScript
10 lines
350 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const fightUiHandler: SimpleTranslationEntries = {
|
|
"pp": "AP",
|
|
"power": "Stärke",
|
|
"accuracy": "Genauigkeit",
|
|
"abilityFlyInText": "{{passive}}{{abilityName}} von {{pokemonName}} wirkt!",
|
|
"passive": "Passive Fähigkeit ", // The space at the end is important
|
|
} as const;
|