diff --git a/src/layouts/defaultProps.tsx b/src/layouts/defaultProps.tsx
index 67a70c58..4636a5bb 100644
--- a/src/layouts/defaultProps.tsx
+++ b/src/layouts/defaultProps.tsx
@@ -26,7 +26,7 @@ export default {
},
{
path: '/dashboard',
- name: intl.get('统计面板'),
+ name: intl.get('仪表盘'),
icon: ,
component: '@/pages/dashboard/index',
},
diff --git a/src/locales/en-US.json b/src/locales/en-US.json
index b570244f..d727cab8 100644
--- a/src/locales/en-US.json
+++ b/src/locales/en-US.json
@@ -560,7 +560,7 @@
"全局SSH私钥": "Global SSH Private Key",
"用于访问所有私有仓库的全局SSH私钥": "Global SSH private key for accessing all private repositories",
"请输入完整的SSH私钥内容": "Please enter the complete SSH private key content",
- "统计面板": "Dashboard",
+ "仪表盘": "Dashboard",
"总任务": "Total Tasks",
"今日执行": "Today Runs",
"今日成功": "Success",
diff --git a/src/locales/zh-CN.json b/src/locales/zh-CN.json
index 7ac4daa8..5ac2a89c 100644
--- a/src/locales/zh-CN.json
+++ b/src/locales/zh-CN.json
@@ -560,7 +560,7 @@
"全局SSH私钥": "全局SSH私钥",
"用于访问所有私有仓库的全局SSH私钥": "用于访问所有私有仓库的全局SSH私钥",
"请输入完整的SSH私钥内容": "请输入完整的SSH私钥内容",
- "统计面板": "统计面板",
+ "仪表盘": "仪表盘",
"总任务": "总任务",
"今日执行": "今日执行",
"今日成功": "今日成功",
diff --git a/src/pages/dashboard/index.tsx b/src/pages/dashboard/index.tsx
index 3ad966a6..f2aa9afe 100644
--- a/src/pages/dashboard/index.tsx
+++ b/src/pages/dashboard/index.tsx
@@ -171,7 +171,7 @@ const Dashboard = () => {
return (
diff --git a/src/utils/config.ts b/src/utils/config.ts
index 3249f67c..89c3fcab 100644
--- a/src/utils/config.ts
+++ b/src/utils/config.ts
@@ -512,6 +512,7 @@ export default {
'/setting': intl.get('系统设置'),
'/error': intl.get('错误日志'),
'/dependence': intl.get('依赖管理'),
+ '/dashboard': intl.get('仪表盘'),
},
dependenceTypes: ['nodejs', 'python3', 'linux'],
};