diff --git a/core/modules/inline_form_errors/inline_form_errors.module b/core/modules/inline_form_errors/inline_form_errors.module index 61deb7d..0c4bc88 100644 --- a/core/modules/inline_form_errors/inline_form_errors.module +++ b/core/modules/inline_form_errors/inline_form_errors.module @@ -19,7 +19,7 @@ function inline_form_errors_help($route_name, RouteMatchInterface $route_match) $output .= '

' . t('Uses') . '

'; $output .= '
'; $output .= '
' . t('Displaying error messages') . '
'; - $output .= '
' . t('If a user wrongly fills in form elements (for example by forgetting required fields), then a warning message with links to each individual form element is displayed at the top of the form. The individual error messages are displayed next to each form element.') . '
'; + $output .= '
' . t('If not all form elements are filled in correctly (for example if a required field is left blank), then a warning message with links to each individual form element is displayed at the top of the form. The individual error messages are displayed next to each form element.') . '
'; $output .= '
' . t('Displaying error messages in browsers with HTML5 form validation') . '
'; $output .= '
' . t('In browsers that support HTML5 form validation, users will first see the error messages generated by their browser. In this case, the inline form error messages are only displayed after the HTML5 validation errors have been resolved.') . '
'; return $output;