diff --git a/core/modules/toolbar/toolbar.module b/core/modules/toolbar/toolbar.module index 3599c59..d8560ce 100644 --- a/core/modules/toolbar/toolbar.module +++ b/core/modules/toolbar/toolbar.module @@ -23,11 +23,13 @@ function toolbar_help($route_name, Request $request) { switch ($route_name) { case 'help.page.toolbar': $output = '

' . t('About') . '

'; - $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 handbook entry for Toolbar module.', array('@toolbar' => '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. The drawer can be hidden/shown by clicking on its corresponding tab.', array('@shortcuts-help' => url('admin/help/shortcut'))) . '
'; + $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 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; }