diff --git a/core/modules/field_layout/field_layout.module b/core/modules/field_layout/field_layout.module index aed55dd..84e6423 100644 --- a/core/modules/field_layout/field_layout.module +++ b/core/modules/field_layout/field_layout.module @@ -22,8 +22,8 @@ function field_layout_help($route_name, RouteMatchInterface $route_match) { switch ($route_name) { case 'help.page.field_layout': $output = '

' . t('About') . '

'; - $output .= '

' . t('Field Layout allows you to arrange fields into regions for content forms and displays.') . '

'; - $output .= '

' . t('For more information, see the help page for Field UI.', [':field-ui-help' => Url::fromRoute('help.page', ['name' => 'field_ui'])->toString()]) . '

'; + $output .= '

' . t('The Field Layout module allows you to arrange fields into regions for content forms and displays.') . '

'; + $output .= '

' . t('For more information, see the help page for Field UI or the online documentation for the Field Layout module.', [':field-ui-help' => Url::fromRoute('help.page', ['name' => 'field_ui'])->toString(), ':field-layout-documentation' => 'https://www.drupal.org/documentation/modules/@todo_once_module_name_is_decided_upon']) . '

'; return $output; } }