feat: Add SwitchOperatorOptions to Select of Switch #1739 (#2033)

### What problem does this PR solve?

feat: Add SwitchOperatorOptions to Select of Switch #1739
### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2024-08-21 15:01:11 +08:00
committed by GitHub
parent 17ada637db
commit 85247e6837
7 changed files with 110 additions and 10 deletions

View File

@ -815,6 +815,24 @@ The above is the content you need to summarize.`,
password: 'Password',
switch: 'Switch',
logicalOperator: 'Logical operator',
switchOperatorOptions: {
equal: 'equal',
notEqual: 'notEqual',
gt: 'Greater than',
ge: 'Greater equal',
lt: 'Less than',
le: 'Less equal',
contains: 'Contains',
notContains: 'Not contains',
startWith: 'Start with',
endWith: 'End with',
empty: 'Empty',
notEmpty: 'Not empty',
},
switchLogicOperatorOptions: {
and: 'And',
or: 'Or',
},
},
footer: {
profile: 'All rights reserved @ React',

View File

@ -773,6 +773,24 @@ export default {
password: '密碼',
switch: '條件',
logicalOperator: '操作符',
switchOperatorOptions: {
equal: '等於',
notEqual: '不等於',
gt: '大於',
ge: '大於等於',
lt: '小於',
le: '小於等於',
contains: '包含',
notContains: '不包含',
startWith: '開始是',
endWith: '結束是',
empty: '為空',
notEmpty: '不為空',
},
switchLogicOperatorOptions: {
and: '與',
or: '或',
},
},
footer: {
profile: '“保留所有權利 @ react”',

View File

@ -791,6 +791,24 @@ export default {
password: '密码',
switch: '条件',
logicalOperator: '操作符',
switchOperatorOptions: {
equal: '等于',
notEqual: '不等于',
gt: '大于',
ge: '大于等于',
lt: '小于',
le: '小于等于',
contains: '包含',
notContains: '不包含',
startWith: '开始是',
endWith: '结束是',
empty: '为空',
notEmpty: '不为空',
},
switchLogicOperatorOptions: {
and: '与',
or: '或',
},
},
footer: {
profile: 'All rights reserved @ React',