diff --git a/src/locales/lang/en_US/home.json b/src/locales/lang/en_US/home.json new file mode 100644 index 0000000..6ce5f6c --- /dev/null +++ b/src/locales/lang/en_US/home.json @@ -0,0 +1,5 @@ +{ + "home": { + "menu": "home" + } +} diff --git a/src/locales/lang/en_US/index.ts b/src/locales/lang/en_US/index.ts index ebc57c5..ec9ad89 100644 --- a/src/locales/lang/en_US/index.ts +++ b/src/locales/lang/en_US/index.ts @@ -1,7 +1,9 @@ import common from './common.json'; +import home from './home.json'; import sys from './sys.json'; export default { ...common, ...sys, + ...home, }; diff --git a/src/locales/lang/en_US/sys.json b/src/locales/lang/en_US/sys.json index 1db08c3..5dc8bb3 100644 --- a/src/locales/lang/en_US/sys.json +++ b/src/locales/lang/en_US/sys.json @@ -138,6 +138,20 @@ "404": "404", "500": "500" } + }, + "menu2": { + "setting": { + "index": "Setting", + "menu": "Menu", + "dictionary": "Dictionary", + "parameter": "Parameter" + }, + "org": { + "index": "Org", + "org": "Institution", + "station": "Station", + "user": "User" + } } } } diff --git a/src/locales/lang/zh_CN/home.json b/src/locales/lang/zh_CN/home.json new file mode 100644 index 0000000..6826f8b --- /dev/null +++ b/src/locales/lang/zh_CN/home.json @@ -0,0 +1,5 @@ +{ + "home": { + "menu": "个人主页" + } +} diff --git a/src/locales/lang/zh_CN/index.ts b/src/locales/lang/zh_CN/index.ts index ebc57c5..ec9ad89 100644 --- a/src/locales/lang/zh_CN/index.ts +++ b/src/locales/lang/zh_CN/index.ts @@ -1,7 +1,9 @@ import common from './common.json'; +import home from './home.json'; import sys from './sys.json'; export default { ...common, ...sys, + ...home, }; diff --git a/src/locales/lang/zh_CN/sys.json b/src/locales/lang/zh_CN/sys.json index 0f53630..541887e 100644 --- a/src/locales/lang/zh_CN/sys.json +++ b/src/locales/lang/zh_CN/sys.json @@ -137,6 +137,20 @@ "404": "404", "500": "500" } + }, + "menu2": { + "setting": { + "index": "系统设置", + "menu": "菜单管理", + "dictionary": "字典管理", + "parameter": "参数管理" + }, + "org": { + "index": "组织机构", + "org": "机构管理", + "station": "岗位管理", + "user": "用户管理" + } } } }