It seems that the alert strings in this file (or more) model/src/validator/variable-name-validator.ts have not been converted using context.i18n:
export function variableNameValidator(name: string): string | null {
if (!name) {
return 'Variable name is required.';
}
if (name.length > MAX_LENGTH) {
return `Variable name must be ${MAX_LENGTH} characters or less.`;
}
if (!/^[A-Za-z][a-zA-Z_0-9-]*$/.test(name)) {
return 'Variable name contains invalid characters.';
}
return null;
}
It seems that the alert strings in this file (or more)
model/src/validator/variable-name-validator.ts
have not been converted using context.i18n:Could you please provide support for this?