diff --git a/core/core-frontend/src/components/data-visualization/canvas/LinkOptBar.vue b/core/core-frontend/src/components/data-visualization/canvas/LinkOptBar.vue
index cb75b4f42f..27c4832a4e 100644
--- a/core/core-frontend/src/components/data-visualization/canvas/LinkOptBar.vue
+++ b/core/core-frontend/src/components/data-visualization/canvas/LinkOptBar.vue
@@ -25,7 +25,7 @@
-
+
@@ -34,7 +34,7 @@
-
+
@@ -43,7 +43,11 @@
-
+
@@ -72,6 +76,7 @@ import icon_magnify_outlined from '@/assets/svg/icon_magnify_outlined.svg'
import { useEmitt } from '@/hooks/web/useEmitt'
import { dvMainStoreWithOut } from '@/store/modules/data-visualization/dvMain'
import { storeToRefs } from 'pinia'
+import { useI18n } from '@/hooks/web/useI18n'
const dvMainStore = dvMainStoreWithOut()
const props = defineProps({
canvasStyleData: {
@@ -82,6 +87,7 @@ const props = defineProps({
const { canvasStyleData } = toRefs(props)
const { fullscreenFlag } = storeToRefs(dvMainStore)
+const { t } = useI18n()
const state = reactive({
fullscreenElement: null,
diff --git a/core/core-frontend/src/locales/en.ts b/core/core-frontend/src/locales/en.ts
index 6b388e6e90..93c58b39ec 100644
--- a/core/core-frontend/src/locales/en.ts
+++ b/core/core-frontend/src/locales/en.ts
@@ -2650,6 +2650,8 @@ Scatter chart (bubble) chart: {a} (series name), {b} (data name), {c} (value arr
column_name: 'Field name'
},
visualization: {
+ back_parent: 'Back to Parent',
+ ext_fullscreen: 'Exit Fullscreen',
no_edit_auth: 'No edit permissions for the target resource, please contact the administrator!',
select_target_dashboard_tips: 'Please select the target dashboard',
select_target_screen_tips: 'Please select the target data screen',
diff --git a/core/core-frontend/src/locales/tw.ts b/core/core-frontend/src/locales/tw.ts
index 439a21c146..d3bd5b7a60 100644
--- a/core/core-frontend/src/locales/tw.ts
+++ b/core/core-frontend/src/locales/tw.ts
@@ -2588,6 +2588,8 @@ export default {
column_name: '欄位名稱'
},
visualization: {
+ back_parent: '返回上一級',
+ ext_fullscreen: '退出全屏',
no_edit_auth: '目標資源沒有編輯權限,請聯繫管理員!',
select_target_dashboard_tips: '請選擇目標儀表板',
select_target_screen_tips: '請選擇目標數據大屏',
diff --git a/core/core-frontend/src/locales/zh-CN.ts b/core/core-frontend/src/locales/zh-CN.ts
index 2f94defae4..a4c9e2f6cb 100644
--- a/core/core-frontend/src/locales/zh-CN.ts
+++ b/core/core-frontend/src/locales/zh-CN.ts
@@ -2591,6 +2591,8 @@ export default {
column_name: '字段名称'
},
visualization: {
+ back_parent: '返回上一级',
+ ext_fullscreen: '退出全屏',
no_edit_auth: '目标资源没有编辑权限,请联系管理员!',
select_target_dashboard_tips: '请选择目标仪表板',
select_target_screen_tips: '请选择目标数据大屏',