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,11 +23,13 @@ switch ($route_name) { case 'help.page.toolbar': $output = '

' . t('About') . '

'; - $output .= '

' . t('The Toolbar module consists of two rows of links, one being top level menu entries and the second being the top level adminisitration items as we know them. The second bar can be toggled to be displayed vertically, where each item can be collapsed into lower level admin item (emulating contrib modules like admin_menu a bit). On narrow screens the second bar is displayed vertically by default. For more information, see the online handbook entry for the Toolbar module.', array('!toolbar_docs' => 'http://drupal.org/documentation/modules/toolbar')) . '

'; + $output .= '

' . t('The Toolbar module displays links to top-level administration menu items and links from other modules at the top of the screen. For more information, see the online documentation for the Toolbar module.', array('!toolbar_docs' => 'http://drupal.org/documentation/modules/toolbar')) . '

'; $output .= '

' . t('Uses') . '

'; $output .= '
'; + $output .= '
' . t('Displaying administrative links') . '
'; + $output .= '
' . t('The Toolbar module displays a bar containing top-level administrative components across the top of the screen. Below that, the Toolbar module has a drawer section where it displays links provided by other modules, such as the core Shortcut module. Each drawer can be hidden/shown by clicking on its corresponding tab.', array('!shortcuts-help' => \Drupal::url('help.page', array('name' => 'shortcut')))) . '
'; $output .= '
' . t('Configuring shortcuts') . '
'; - $output .= '
' . t('The Shortcut module provides an interface to manage shortcut set and links. You can also visit any admin page and click on star image, next to title in the header section, to add/remove the links from shortcut links.', array('!shortcuts-help' => url('admin/help/shortcut'), '!shortcuts-interface' => \Drupal::url('shortcut.set_admin'))) . '
'; + $output .= '
' . t('The Shortcut module is used to manage links under Shortcuts section on the toolbar. The Shortcuts links are displayed horizontally by default on desktop/laptop screens and can be toggled to display vertically, where each item collapses into lower level admin item. On narrow screens the second Shortcuts links are displayed vertically by default.', array('!shortcuts-help' => \Drupal::url('help.page', array('name' => 'shortcut')))) . '
'; $output .= '
'; return $output; }