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

@@ -254,11 +254,11 @@ const translation = {
typeSelect: 'Selecionar',
},
varKeyError: {
canNoBeEmpty: 'A chave da variável não pode estar vazia',
tooLong: 'A chave da variável: {{key}} é muito longa. Não pode ter mais de 30 caracteres',
notValid: 'A chave da variável: {{key}} é inválida. Pode conter apenas letras, números e sublinhados',
notStartWithNumber: 'A chave da variável: {{key}} não pode começar com um número',
keyAlreadyExists: 'A chave da variável: :{{key}} já existe',
canNoBeEmpty: '{{key}} é obrigatório',
tooLong: '{{key}} é muito longa. Não pode ter mais de 30 caracteres',
notValid: '{{key}} é inválida. Pode conter apenas letras, números e sublinhados',
notStartWithNumber: '{{key}} não pode começar com um número',
keyAlreadyExists: '{{key}} já existe',
},
otherError: {
promptNoBeEmpty: 'A solicitação não pode estar vazia',