Skip to content

Commit 368923a

Browse files
fix: 修复翻译问题
1 parent bb2768a commit 368923a

File tree

1 file changed

+18
-5
lines changed

1 file changed

+18
-5
lines changed

ui/src/views/application-overview/component/EmbedDialog.vue

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
11
<template>
2-
<el-dialog :title="$t('views.applicationOverview.appInfo.EmbedDialog.embedDialogTitle')" v-model="dialogVisible" width="900" class="embed-dialog">
2+
<el-dialog
3+
:title="$t('views.applicationOverview.appInfo.EmbedDialog.embedDialogTitle')"
4+
v-model="dialogVisible"
5+
width="900"
6+
class="embed-dialog"
7+
>
38
<el-row :gutter="12">
49
<el-col :span="12">
510
<div class="border">
6-
<p class="title p-16 bold">{{$t('views.applicationOverview.appInfo.EmbedDialog.embedDialogTitle')}}</p>
11+
<p class="title p-16 bold">
12+
{{ $t('views.applicationOverview.appInfo.EmbedDialog.fullscreenModeTitle') }}
13+
</p>
714
<img src="@/assets/window1.png" alt="" class="ml-8" />
815
<div class="code border-t p-16">
916
<div class="flex-between">
10-
<span class="bold">{{$t('views.applicationOverview.appInfo.EmbedDialog.fullscreenModeTitle')}}</span>
17+
<span class="bold">{{
18+
$t('views.applicationOverview.appInfo.EmbedDialog.copyInstructions')
19+
}}</span>
1120
<el-button text @click="copyClick(source1)">
1221
<AppIcon iconName="app-copy"></AppIcon>
1322
</el-button>
@@ -20,11 +29,15 @@
2029
</el-col>
2130
<el-col :span="12">
2231
<div class="border">
23-
<p class="title p-16 bold">{{$t('views.applicationOverview.appInfo.EmbedDialog.floatingModeTitle')}}</p>
32+
<p class="title p-16 bold">
33+
{{ $t('views.applicationOverview.appInfo.EmbedDialog.floatingModeTitle') }}
34+
</p>
2435
<img src="@/assets/window2.png" alt="" class="ml-8" />
2536
<div class="code border-t p-16">
2637
<div class="flex-between">
27-
<span class="bold">{{$t('views.applicationOverview.appInfo.EmbedDialog.copyInstructions')}}</span>
38+
<span class="bold">{{
39+
$t('views.applicationOverview.appInfo.EmbedDialog.copyInstructions')
40+
}}</span>
2841
<el-button text @click="copyClick(source2)">
2942
<AppIcon iconName="app-copy"></AppIcon>
3043
</el-button>

0 commit comments

Comments
 (0)