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

@@ -278,14 +278,14 @@ const translation = {
typeSelect: 'Seleziona',
},
varKeyError: {
canNoBeEmpty: 'La chiave della variabile non può essere vuota',
canNoBeEmpty: '{{key}} è obbligatorio',
tooLong:
'La chiave della variabile: {{key}} è troppo lunga. Non può essere più lunga di 30 caratteri',
'{{key}} è troppo lunga. Non può essere più lunga di 30 caratteri',
notValid:
'La chiave della variabile: {{key}} non è valida. Può contenere solo lettere, numeri e underscore',
'{{key}} non è valida. Può contenere solo lettere, numeri e underscore',
notStartWithNumber:
'La chiave della variabile: {{key}} non può iniziare con un numero',
keyAlreadyExists: 'La chiave della variabile: {{key}} esiste già',
'{{key}} non può iniziare con un numero',
keyAlreadyExists: '{{key}} esiste già',
},
otherError: {
promptNoBeEmpty: 'Il prompt non può essere vuoto',