diff --git a/client/shared/i18n/langs/en-US/translation.json b/client/shared/i18n/langs/en-US/translation.json index aa01f9bb..91560911 100644 --- a/client/shared/i18n/langs/en-US/translation.json +++ b/client/shared/i18n/langs/en-US/translation.json @@ -341,6 +341,7 @@ "kceea83fc": "Join Group", "kcefdbe2d": "Modify avatar success", "kd0690a45": "Allow management of identity groups", + "kd080f2d7": "Reload", "kd0d594e4": "Distributed deployment can be used at any scale", "kd1af615e": "Panel not found", "kd28c05df": "Create Success", diff --git a/client/shared/i18n/langs/zh-CN/translation.json b/client/shared/i18n/langs/zh-CN/translation.json index 4cc67190..149f3069 100644 --- a/client/shared/i18n/langs/zh-CN/translation.json +++ b/client/shared/i18n/langs/zh-CN/translation.json @@ -341,6 +341,7 @@ "kceea83fc": "加入群组", "kcefdbe2d": "修改头像成功", "kd0690a45": "允许管理身份组", + "kd080f2d7": "重新加载", "kd0d594e4": "分布式部署可供任意规模的使用需求", "kd1af615e": "面板不存在", "kd28c05df": "创建成功", diff --git a/client/web/src/components/modals/SettingsView/System.tsx b/client/web/src/components/modals/SettingsView/System.tsx index 2d2f9769..65e3f12d 100644 --- a/client/web/src/components/modals/SettingsView/System.tsx +++ b/client/web/src/components/modals/SettingsView/System.tsx @@ -2,7 +2,7 @@ import { FullModalFactory } from '@/components/FullModal/Factory'; import { FullModalField } from '@/components/FullModal/Field'; import { LanguageSelect } from '@/components/LanguageSelect'; import { pluginColorScheme, pluginSettings } from '@/plugin/common'; -import { Select, Switch } from 'antd'; +import { Select, Switch, Button } from 'antd'; import React from 'react'; import { t, @@ -89,6 +89,9 @@ export const SettingsSystem: React.FC = React.memo(() => { } /> )} + ); });