Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Accessibility improvement - Descriptive postcode field error message #4780

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class WebformBuilder extends WebformBuilderFormio {
value = false;
}
component.validate = {
...componentSchema.validate,
...component.validate,
required: value,
};
}
Expand Down
1 change: 1 addition & 0 deletions src/openforms/js/lang/formio/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,6 @@
"invalid_time": "Only times between {{ minTime }} and {{ maxTime }} are allowed.",
"You must select at least {{minCount}} items.": "Ensure this field has at least {{minCount}} checked options.",
"Empty fields": "Fields without a value",
"Invalid Postcode": "The submitted value does not match the postcode pattern: 1234 AB",
"": ""
}
2 changes: 1 addition & 1 deletion src/openforms/js/lang/formio/nl.json
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@
"Form fields": "Formuliervelden",
"Presets": "Voorgedefinieerd",
"Deprecated": "Verouderd",
"Invalid Postcode": "Ongeldige Postcode",
"Invalid Postcode": "De opgegeven waarde voldoet niet aan het postcode formaat: 1234 AB",
"Clear on hide": "Wissen als veld verborgen is",
"Remove the value of this field from the submission if it is hidden. Note: the value of this field is then also not used in logic rules!": "Verwijder de waarde van dit veld van de inzending als dit veld verborgen is. Let op: De waarde van dit veld wordt dan ook niet gebruikt in logica regels!",
"Column sizes": "Grootte van de kolommen",
Expand Down
Loading