消息
This commit is contained in:
16
TUIKit/locales/index.ts
Normal file
16
TUIKit/locales/index.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
|
||||
import en from './en';
|
||||
import zh_cn from './zh_cn';
|
||||
import zh_tw from './zh_tw';
|
||||
|
||||
export interface ILanguageResources {
|
||||
[key: string]: string | ILanguageResources;
|
||||
}
|
||||
|
||||
const messages: Record<string, ILanguageResources> = {
|
||||
...en,
|
||||
...zh_cn,
|
||||
...zh_tw,
|
||||
};
|
||||
|
||||
export default messages;
|
||||
Reference in New Issue
Block a user