{{ '{field} is required.' | translate: { field: config.placeholder } }}
{{
'The length of {field} should be at least {minLength}.' | translate
: {
field: config.placeholder,
minLength: control.errors.minlength.requiredLength
}
}}
{{
'The length of {field} should be no more than {maxLength}.' | translate
: {
field: config.placeholder,
maxLength: control.errors.maxlength.requiredLength
}
}}
{{ 'Minimum value is {value}.' | translate: { value: control.errors.min.min } }}
{{
'{this} and {that}. At least one is required' | translate
: { this: control.errors.fields[0], that: control.errors.fields[1] }
}}
{{ 'Value must be greater than {value}.' | translate: { value: control.errors.fields[0] } }}
{{ 'The name "{value}" is already in use.' | translate: { value: control.errors.value } }}
{{
'The value is out of range. Enter a value between {min} and {max}.' | translate
: {
min: control.errors.rangeValue.min,
max: control.errors.rangeValue.max
}
}}
{{ 'Invalid format or character.' | translate }}
{{
'Select {this} to include all {these} addresses. When this has been chosen, additional addresses cannot be selected.' | translate
: { this: control.errors.info[1], these: control.errors.info[0] }
}}
{{ 'Invalid IP address' | translate }}
{{ 'The passwords do not match.' | translate }}
{{ control.errors.manualValidateErrorMsg | translate }}
{{ 'Invalid option selected' | translate }}
{{ 'Value must be a valid email address' | translate }}