diff --git a/core/core-frontend/src/components/filter-text/src/FilterText.vue b/core/core-frontend/src/components/filter-text/src/FilterText.vue index edd2f5b87c..4d6204d99e 100644 --- a/core/core-frontend/src/components/filter-text/src/FilterText.vue +++ b/core/core-frontend/src/components/filter-text/src/FilterText.vue @@ -7,6 +7,8 @@ import { nextTick, ref, watch } from 'vue' import { Icon } from '@/components/icon-custom' import { ElButton, ElDivider, ElIcon } from 'element-plus-secondary' import { propTypes } from '@/utils/propTypes' +import { useI18n } from '@/hooks/web/useI18n' +const { t } = useI18n() const props = defineProps({ filterTexts: propTypes.arrayOf(propTypes.string), total: propTypes.number.def(0) @@ -51,7 +53,7 @@ watch( - 清空条件 @@ -94,7 +96,7 @@ watch( > - 清空条件 diff --git a/core/core-frontend/src/locales/en.ts b/core/core-frontend/src/locales/en.ts index ec9f41da83..d087c2a8a4 100644 --- a/core/core-frontend/src/locales/en.ts +++ b/core/core-frontend/src/locales/en.ts @@ -2395,6 +2395,8 @@ Scatter chart (bubble) chart: {a} (series name), {b} (data name), {c} (value arr day_limit: 'Days cannot be less than 1 and greater than 31' }, commons: { + result_count: 'result', + clear_filter: 'Clear conditions', language: 'Language', help_center: 'Help Center', assistant: 'Assistant', diff --git a/core/core-frontend/src/locales/tw.ts b/core/core-frontend/src/locales/tw.ts index bcc7ec4ebe..12a64a89fc 100644 --- a/core/core-frontend/src/locales/tw.ts +++ b/core/core-frontend/src/locales/tw.ts @@ -2339,6 +2339,8 @@ export default { day_limit: '天不能小於1,大於31' }, commons: { + result_count: '個結果', + clear_filter: '清空條件', language: '語言', help_center: '幫助中心', assistant: '小助手', diff --git a/core/core-frontend/src/locales/zh-CN.ts b/core/core-frontend/src/locales/zh-CN.ts index 41c78942eb..3303d4050a 100644 --- a/core/core-frontend/src/locales/zh-CN.ts +++ b/core/core-frontend/src/locales/zh-CN.ts @@ -2341,6 +2341,8 @@ export default { day_limit: '天不能小于1,大于31' }, commons: { + result_count: '个结果', + clear_filter: '清空条件', language: '语言', help_center: '帮助中心', assistant: '小助手',