This commit is contained in:
liuhanhua
2025-09-26 17:25:54 +08:00
parent 5a38b8624e
commit 4e03ba571c
28 changed files with 1042 additions and 0 deletions

14
src/locales/index.ts Normal file
View File

@@ -0,0 +1,14 @@
import en from './en.json';
import zh from './zh.json';
import th from './th.json';
export interface Messages {
[key: string]: any;
}
const messages: Messages = {
en,
zh,
th
};
export default messages;