mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-12 08:36:09 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
12 lines
302 B
TypeScript
12 lines
302 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const partyUiHandler: SimpleTranslationEntries = {
|
|
"ALL": "Tout",
|
|
"SEND_OUT": "Envoyer",
|
|
"SUMMARY": "Résumé",
|
|
"CANCEL": "Annuler",
|
|
"RELEASE": "Relâcher",
|
|
"APPLY": "Appliquer",
|
|
"TEACH": "Apprendre"
|
|
} as const;
|