mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-11 08:07:15 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
11 lines
274 B
TypeScript
11 lines
274 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const partyUiHandler: SimpleTranslationEntries = {
|
|
"SEND_OUT": "Send Out",
|
|
"SUMMARY": "Summary",
|
|
"CANCEL": "Cancel",
|
|
"RELEASE": "Release",
|
|
"APPLY": "Apply",
|
|
"TEACH": "Teach"
|
|
} as const;
|