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

@@ -237,11 +237,11 @@ const translation = {
typeSelect: 'Auswählen',
},
varKeyError: {
canNoBeEmpty: 'Variablenschlüssel darf nicht leer sein',
tooLong: 'Variablenschlüssel: {{key}} zu lang. Darf nicht länger als 30 Zeichen sein',
notValid: 'Variablenschlüssel: {{key}} ist ungültig. Darf nur Buchstaben, Zahlen und Unterstriche enthalten',
notStartWithNumber: 'Variablenschlüssel: {{key}} darf nicht mit einer Zahl beginnen',
keyAlreadyExists: 'Variablenschlüssel: :{{key}} existiert bereits',
canNoBeEmpty: '{{key}} ist erforderlich',
tooLong: '{{key}} zu lang. Darf nicht länger als 30 Zeichen sein',
notValid: '{{key}} ist ungültig. Darf nur Buchstaben, Zahlen und Unterstriche enthalten',
notStartWithNumber: '{{key}} darf nicht mit einer Zahl beginnen',
keyAlreadyExists: '{{key}} existiert bereits',
},
otherError: {
promptNoBeEmpty: 'Prompt darf nicht leer sein',