Browse Source
Merge pull request #725 from colinin/6.0
add missing localer text
pull/731/head
yx lin
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
4 additions and
1 deletions
-
apps/vue/src/components/Table/src/types/table.ts
-
apps/vue/src/locales/lang/en/component.ts
-
apps/vue/src/locales/lang/zh-CN/component.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'; |
|
|
|
|
|
@ -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', |
|
|
|
|
|
@ -77,6 +77,7 @@ export default { |
|
|
conditions: '查询条件', |
|
|
conditions: '查询条件', |
|
|
addCondition: '增加条件', |
|
|
addCondition: '增加条件', |
|
|
delCondition: '删除条件', |
|
|
delCondition: '删除条件', |
|
|
|
|
|
clearCondition: '清空条件', |
|
|
field: '字段', |
|
|
field: '字段', |
|
|
logic: '连接条件', |
|
|
logic: '连接条件', |
|
|
and: '且', |
|
|
and: '且', |
|
|
|