mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-02 11:46:11 +00:00
d592187f2c
* [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
268 B
TypeScript
11 lines
268 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const partyUiHandler: SimpleTranslationEntries = {
|
|
"SEND_OUT": "Send Out",
|
|
"SUMMARY": "Summary",
|
|
"CANCEL": "Cancel",
|
|
"RELEASE": "Release",
|
|
"APPLY": "Apply",
|
|
"TEACH": "Teach"
|
|
} as const;
|