mirror of
https://gitee.com/nocobase/nocobase.git
synced 2024-12-02 12:18:15 +08:00
chore: optimize translation (#5092)
This commit is contained in:
parent
8d29a6ee81
commit
acccd81395
@ -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',
|
||||
|
@ -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"
|
||||
}
|
||||
|
@ -965,6 +965,8 @@
|
||||
"Search": "搜索",
|
||||
"Clear default value": "清除默认值",
|
||||
"Open in new window": "新窗口打开",
|
||||
"is none of": "不包含任何一个",
|
||||
"is any of": "包含任何一个",
|
||||
"Paging mode": "分页模式",
|
||||
"Simple Paginate": "简单分页"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user