Skip to content

Commit

Permalink
fix(i18n): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ysfscream authored and Kinplemelon committed May 7, 2022
1 parent 400e445 commit 72f9fbd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/i18n/components.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,11 @@ export default {
},
alarm: {
zh: '告警',
en: 'Alarm',
en: 'Alarms',
},
plugins: {
zh: '插件',
en: 'Plugin',
en: 'Plugins',
},
modules: {
zh: '模块',
Expand Down Expand Up @@ -144,8 +144,8 @@ export default {
en: 'Application',
},
gateway: {
zh: 'Gateway',
en: 'Gateway',
zh: '网关',
en: 'Gateways',
},
exhook: {
zh: 'ExHook',
Expand Down
2 changes: 1 addition & 1 deletion src/views/Auth/Authn.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
v-loading.lock="isListLoading"
row-key="id"
>
<el-table-column prop="mechanism" :label="$t('Auth.mechanism')" :min-width="108" />
<el-table-column prop="backend" :label="$t('Auth.dataSource')" :min-width="140">
<template #default="{ row }">
<img class="auth-img" :src="row.img" width="48" />
<span>{{ getAuthnItemBackendForShow(row) }}</span>
</template>
</el-table-column>
<el-table-column prop="mechanism" :label="$t('Auth.mechanism')" :min-width="108" />
<el-table-column
:label="$t('RuleEngine.SuccessNum')"
prop="metrics.metrics.success"
Expand Down

0 comments on commit 72f9fbd

Please sign in to comment.