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
309 B
TypeScript
11 lines
309 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const partyUiHandler: SimpleTranslationEntries = {
|
|
"SEND_OUT": "교체한다",
|
|
"SUMMARY": "능력치를 본다",
|
|
"CANCEL": "그만둔다",
|
|
"RELEASE": "놓아준다",
|
|
"APPLY": "사용한다",
|
|
"TEACH": "가르친다"
|
|
} as const;
|