diff -u b/core/modules/toolbar/toolbar.module b/core/modules/toolbar/toolbar.module --- b/core/modules/toolbar/toolbar.module +++ b/core/modules/toolbar/toolbar.module @@ -23,18 +23,13 @@ switch ($route_name) { case 'help.page.toolbar': $output = '

' . t('About') . '

'; - $output .= '

' . t('The Toolbar module displays a bar containing top-level administrative components across the top of the screen. For more information, see the online documentation for the Toolbar module.', array('!toolbar_docs' => 'https://drupal.org/documentation/modules/toolbar')) . '

'; + $output .= '

' . t('The Toolbar module provides a toolbar for site administrators, which displays tabs and trays provided by the Toolbar module itself and other modules. For more information, see the online documentation for the Toolbar module.', array('!toolbar_docs' => 'https://drupal.org/documentation/modules/toolbar')) . '

'; $output .= '

' . t('Terminology') . '

'; $output .= '
'; $output .= '
' . t('Tabs') . '
'; $output .= '
' . t('Tabs are usually buttons, and are displayed in a bar across the top of the screen. Some tabs are simple buttons that execute an action (such as starting Edit mode); other tabs toggle which tray is open.') . '
'; $output .= '
' . t('Trays') . '
'; $output .= '
' . t('Trays are usually lists of links, which can be hierarchical like a menu. If a tray has been toggled open, it is displayed either vertically or horizontally below the tab bar, depending on the browser width. In wide browser widths, the user has the ability to toggle from vertical to horizontal, using a link at the bottom or right of the tray; hierarchical menus only have open/close behavior in vertical mode.') . '
'; - $output .= '
'; - $output .= '

' . t('Uses') . '

'; - $output .= '
'; - $output .= '
' . t('Displaying administrative links') . '
'; - $output .= '
' . t('The Toolbar module displays "tab" and "tray" content from other modules. Core modules such as Shortcut, Edit, and Menu Link provide tabs and trays. ', array('!shortcut-help' => \Drupal::url('help.page', array('name' => 'shortcut')), '!edit-help' => \Drupal::url('help.page', array('name' => 'quickedit')), '!menu-help' => \Drupal::url('help.page', array('name' => 'menu_link')))) . '
'; $output .= '
'; return $output; }