{{ '{0} should be at least {1} characters'.replace('{0}', itemAttribute.Description).replace('{1}', itemAttribute.MinLength) }}
{{ '{0} can be at most {1} characters'.replace('{0}', itemAttribute.Description).replace('{1}', itemAttribute.MaxLength) }}
{{ '{0} must be between {1} and {2}'.replace('{0}', itemAttribute.Description).replace('{1}', itemAttribute.MinLength ? itemAttribute.MinLength : 0).replace('{2}', itemAttribute.MaxLength) }}
{{ '{0} contains too many decimals'.replace('{0}', itemAttribute.Description) }}
Option is required