mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-28 12:39:32 +01:00
* [Localization] Add localization in party-ui-handler * [Localization] Add "Release", "Apply", "Teach" localization, changed translation of Korean * [Localization] Translated party-ui-handler's localization to Deutsch
11 lines
283 B
TypeScript
11 lines
283 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const partyUiHandler: SimpleTranslationEntries = {
|
|
"SEND_OUT": "Einwechseln",
|
|
"SUMMARY": "Bericht",
|
|
"CANCEL": "Abbrechen",
|
|
"RELEASE": "Freilassen",
|
|
"APPLY": "Anwenden",
|
|
"TEACH": "Erlernen"
|
|
} as const;
|