Browse Source

add missing localer text

pull/725/head
cKey 3 years ago
parent
commit
74f844a7e2
  1. 3
      apps/vue/src/components/Table/src/types/table.ts
  2. 1
      apps/vue/src/locales/lang/en/component.ts
  3. 1
      apps/vue/src/locales/lang/zh-CN/component.ts

3
apps/vue/src/components/Table/src/types/table.ts

@ -1,7 +1,8 @@
import type { VNodeChild } from 'vue'; import type { VNodeChild } from 'vue';
import type { PaginationProps } from './pagination'; import type { PaginationProps } from './pagination';
import type { FormProps } from '/@/components/Form'; import type { FormProps } from '/@/components/Form';
import type { ColumnProps, TableRowSelection as ITableRowSelection } from 'ant-design-vue/lib/table/interface'; import type { ColumnProps } from 'ant-design-vue/lib/table';
import type { TableRowSelection as ITableRowSelection } from 'ant-design-vue/lib/table/interface';
import type { AdvanceSearchProps } from './advancedSearch'; import type { AdvanceSearchProps } from './advancedSearch';
import { ComponentType } from './componentType'; import { ComponentType } from './componentType';

1
apps/vue/src/locales/lang/en/component.ts

@ -75,6 +75,7 @@ export default {
conditions: 'Condition', conditions: 'Condition',
addCondition: 'Add Condition', addCondition: 'Add Condition',
delCondition: 'Del Condition', delCondition: 'Del Condition',
clearCondition: 'Clear Condition',
field: 'Field', field: 'Field',
logic: 'Logic', logic: 'Logic',
and: 'And', and: 'And',

1
apps/vue/src/locales/lang/zh-CN/component.ts

@ -77,6 +77,7 @@ export default {
conditions: '查询条件', conditions: '查询条件',
addCondition: '增加条件', addCondition: '增加条件',
delCondition: '删除条件', delCondition: '删除条件',
clearCondition: '清空条件',
field: '字段', field: '字段',
logic: '连接条件', logic: '连接条件',
and: '且', and: '且',

Loading…
Cancel
Save