diff -u b/core/modules/views_ui/views_ui.module b/core/modules/views_ui/views_ui.module --- b/core/modules/views_ui/views_ui.module +++ b/core/modules/views_ui/views_ui.module @@ -21,7 +21,7 @@ case 'admin/help#views_ui': $output = ''; $output .= '

' . t('About') . '

'; - $output .= '

' . t('The Views UI module provides users an interface for managing views for the Views module. For more information, see the online handbook entry for Views module.', array('@views' => \Drupal::url('help.page', array('name' => 'views')), '@handbook' => 'https://drupal.org/documentation/modules/views')) . '

'; + $output .= '

' . t('The Views UI module provides users an interface for managing views for the Views module. For more information, see the online handbook entry for Views UI module.', array('@views' => \Drupal::url('help.page', array('name' => 'views')), '@handbook' => 'https://drupal.org/documentation/modules/views_ui')) . '

'; $output .= '

' . t('Uses') . '

'; $output .= '
'; $output .= '
' . t('Creating and managing views.') . '
'; @@ -31,7 +31,7 @@ $output .= '
' . t('Exporting and importing views.') . '
'; $output .= '
' . t('Views can be exported and imported as configuration files by using the Configuration Manager module.', array('@config' => \Drupal::url('help.page', array('name' => 'config')))) . '
'; $output .= '
' . t('Theming views.') . '
'; - $output .= '
' . t('The template files used by views can be overridden from a custom theme. When editing a view, you can see the templates that are used and alternatives for overriding them by clicking on the "Templates" link, found in the Advanced > Other section under "Output".') . '
'; + $output .= '
' . t('The template files used by views can be overridden from a custom theme. When editing a view, you can see the templates that are used and alternatives for overriding them by clicking on the "Templates" link, found in the Advanced > Other section under "Output".') . '
'; $output .= '
'; return $output; }