chore: optimize translation (#5092)

This commit is contained in:
chenos 2024-08-21 16:21:35 +08:00 committed by GitHub
parent 8d29a6ee81
commit acccd81395
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 13 additions and 9 deletions

View File

@ -35,7 +35,7 @@ export const array = [
},
},
{
label: '{{t("contains")}}',
label: '{{t("is any of")}}',
value: '$anyOf',
schema: {
'x-component': 'Select',
@ -43,7 +43,7 @@ export const array = [
},
},
{
label: '{{t("does not contain")}}',
label: '{{t("is none of")}}',
value: '$noneOf',
schema: {
'x-component': 'Select',
@ -102,7 +102,7 @@ export const enumType = [
schema: { 'x-component': 'Select' },
},
{
label: '{{t("contains")}}',
label: '{{t("is any of")}}',
value: '$in',
schema: {
'x-component': 'Select',
@ -110,7 +110,7 @@ export const enumType = [
},
},
{
label: '{{t("does not contain")}}',
label: '{{t("is none of")}}',
value: '$notIn',
schema: {
'x-component': 'Select',
@ -135,7 +135,7 @@ export const boolean = [
export const tableoid = [
{
label: '{{t("contains")}}',
label: '{{t("is any of")}}',
value: '$childIn',
schema: {
'x-component': 'CollectionSelect',
@ -143,7 +143,7 @@ export const tableoid = [
},
},
{
label: '{{t("does not contain")}}',
label: '{{t("is none of")}}',
value: '$childNotIn',
schema: {
'x-component': 'CollectionSelect',
@ -165,7 +165,7 @@ export const collection = [
schema: { 'x-component': 'CollectionSelect' },
},
{
label: '{{t("contains")}}',
label: '{{t("is any of")}}',
value: '$in',
schema: {
'x-component': 'CollectionSelect',
@ -173,7 +173,7 @@ export const collection = [
},
},
{
label: '{{t("does not contain")}}',
label: '{{t("is none of")}}',
value: '$notIn',
schema: {
'x-component': 'CollectionSelect',

View File

@ -833,5 +833,7 @@
"Expand All": "Expand All",
"Search": "Search",
"Clear default value": "Clear default value",
"Open in new window": "Open in new window"
"Open in new window": "Open in new window",
"is none of": "is none of",
"is any of": "is any of"
}

View File

@ -965,6 +965,8 @@
"Search": "搜索",
"Clear default value": "清除默认值",
"Open in new window": "新窗口打开",
"is none of": "不包含任何一个",
"is any of": "包含任何一个",
"Paging mode": "分页模式",
"Simple Paginate": "简单分页"
}