chore: improve the check time of variable name (#7569)

This commit is contained in:
Joel
2024-08-23 14:30:26 +08:00
committed by GitHub
parent 0a7ab9a47d
commit 399d7cd596
18 changed files with 105 additions and 104 deletions

View File

@@ -287,11 +287,11 @@ const translation = {
typeSelect: '下拉选项',
},
varKeyError: {
canNoBeEmpty: '变量不能为空',
tooLong: '变量: {{key}} 长度太长。不能超过 30 个字符',
notValid: '变量: {{key}} 非法。只能包含英文字符,数字和下划线',
notStartWithNumber: '变量: {{key}} 不能以数字开头',
keyAlreadyExists: '变量:{{key}} 已存在',
canNoBeEmpty: '{{key}}必填',
tooLong: '{{key}} 长度太长。不能超过 30 个字符',
notValid: '{{key}} 非法。只能包含英文字符,数字和下划线',
notStartWithNumber: '{{key}} 不能以数字开头',
keyAlreadyExists: '{{key}} 已存在',
},
otherError: {
promptNoBeEmpty: '提示词不能为空',
@@ -320,7 +320,6 @@ const translation = {
'required': '必填',
'content': '内容',
'errorMsg': {
varNameRequired: '变量名称必填',
labelNameRequired: '显示名称必填',
varNameCanBeRepeat: '变量名称不能重复',
atLeastOneOption: '至少需要一个选项',