This is an automated email from the ASF dual-hosted git repository.
dockerzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/inlong.git
The following commit(s) were added to refs/heads/master by this push:
new 5425551ced [INLONG-8384][Dashboard] Data Integration ---> Data
Ingestion (#8387)
5425551ced is described below
commit 5425551ced3cf12dd5c3ec874c3e7ef2c8ed0c30
Author: Lizhen <[email protected]>
AuthorDate: Fri Jun 30 20:52:01 2023 +0800
[INLONG-8384][Dashboard] Data Integration ---> Data Ingestion (#8387)
---
inlong-dashboard/src/i18n.ts | 4 ++--
inlong-dashboard/src/ui/locales/cn.json | 2 +-
inlong-dashboard/src/ui/locales/en.json | 2 +-
inlong-dashboard/src/ui/pages/Process/Approvals/config.tsx | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/inlong-dashboard/src/i18n.ts b/inlong-dashboard/src/i18n.ts
index 87cb479a18..61d06fe5fa 100644
--- a/inlong-dashboard/src/i18n.ts
+++ b/inlong-dashboard/src/i18n.ts
@@ -26,7 +26,7 @@ const resources = {
en: {
translation: {
'configs.menus.Process': 'Approval',
- 'configs.menus.Groups': 'Integration',
+ 'configs.menus.Groups': 'Ingestion',
'configs.menus.Subscribe': 'Subscription',
'configs.menus.Clusters': 'Clusters',
'configs.menus.ClusterTags': 'ClusterTags',
@@ -40,7 +40,7 @@ const resources = {
cn: {
translation: {
'configs.menus.Process': '审批管理',
- 'configs.menus.Groups': '数据集成',
+ 'configs.menus.Groups': '数据接入',
'configs.menus.Subscribe': '数据订阅',
'configs.menus.Clusters': '集群管理',
'configs.menus.ClusterTags': '标签管理',
diff --git a/inlong-dashboard/src/ui/locales/cn.json
b/inlong-dashboard/src/ui/locales/cn.json
index 5668d2079d..9e8ea47348 100644
--- a/inlong-dashboard/src/ui/locales/cn.json
+++ b/inlong-dashboard/src/ui/locales/cn.json
@@ -674,7 +674,7 @@
"pages.Approvals.ProcessID": "流程单 ID",
"pages.Approvals.GroupId": "数据流组 ID",
"pages.Approvals.GroupMode": "数据流类型",
- "pages.Approvals.GroupMode.Integration": "数据集成",
+ "pages.Approvals.GroupMode.Ingestion": "数据接入",
"pages.Approvals.GroupMode.DataSync": "数据同步",
"pages.Approvals.MyApplication": "我的申请",
"pages.Approvals.MyApproval": "我的审批",
diff --git a/inlong-dashboard/src/ui/locales/en.json
b/inlong-dashboard/src/ui/locales/en.json
index 40e71f8cbe..977f0c1696 100644
--- a/inlong-dashboard/src/ui/locales/en.json
+++ b/inlong-dashboard/src/ui/locales/en.json
@@ -674,7 +674,7 @@
"pages.Approvals.ProcessID": "Process ID",
"pages.Approvals.GroupId": "Inlong Group ID",
"pages.Approvals.GroupMode": "Inlong Group Mode",
- "pages.Approvals.GroupMode.Integration": "Integration",
+ "pages.Approvals.GroupMode.Ingestion": "Ingestion",
"pages.Approvals.GroupMode.DataSync": "Synchronization",
"pages.Approvals.MyApplication": "My Application",
"pages.Approvals.MyApproval": "My Approval",
diff --git a/inlong-dashboard/src/ui/pages/Process/Approvals/config.tsx
b/inlong-dashboard/src/ui/pages/Process/Approvals/config.tsx
index 224aae9b74..cf6fb09397 100644
--- a/inlong-dashboard/src/ui/pages/Process/Approvals/config.tsx
+++ b/inlong-dashboard/src/ui/pages/Process/Approvals/config.tsx
@@ -81,7 +81,7 @@ export const getColumns = activedName => [
return record.showInList?.inlongGroupMode === 1 ? (
<StatusTag type={'success'}
title={i18n.t('pages.Approvals.GroupMode.DataSync')} />
) : (
- <StatusTag type={'primary'}
title={i18n.t('pages.Approvals.GroupMode.Integration')} />
+ <StatusTag type={'primary'}
title={i18n.t('pages.Approvals.GroupMode.Ingestion')} />
);
},
},