diff --git a/modules/shortcut/shortcut.module b/modules/shortcut/shortcut.module index 37fb6251a9a..7aab087cacb 100644 --- a/modules/shortcut/shortcut.module +++ b/modules/shortcut/shortcut.module @@ -21,7 +21,7 @@ function shortcut_help($path, $arg) { switch ($path) { case 'admin/help#shortcut': $output = '

' . t('About') . '

'; - $output .= '

' . t('The Shortcut module allows users to create sets of shortcut links to commonly-visited pages of the site. Shortcuts are contained within sets, and each user with Select own shortcut set permission can select a preferred set of shortcuts. For more information, see the online handbook entry for Shortcut module.', array('@shortcut' => 'http://drupal.org/handbook/modules/shortcut/')) . '

'; + $output .= '

' . t('The Shortcut module allows users to create sets of shortcut links to commonly-visited pages of the site. Shortcuts are contained within sets. Each user with Select any shortcut set permission can select a shortcut set created by anyone at the site. For more information, see the online handbook entry for Shortcut module.', array('@shortcut' => 'http://drupal.org/handbook/modules/shortcut/')) . '

'; $output .= '

' . t('Uses') . '

'; $output .= '
' . t('Creating and modifying shortcuts and sets') . '
'; $output .= '
' . t('Users with the appropriate permissions can manage shortcut sets, choose a preferred shortcut set, and edit the shortcuts within sets from the Shortcuts administration page.', array('@shortcuts' => url('admin/config/user-interface/shortcut'))) . '
'; @@ -43,10 +43,12 @@ function shortcut_permission() { 'title' => t('Administer shortcuts'), ), 'customize shortcut links' => array( - 'title' => t('Edit own shortcuts'), + 'title' => t('Edit current shortcut set'), + 'description' => t('Editing the current shortcut set will affect other users if that set has been assigned to or selected by other users. Granting "Select any shortcut set" permission along with this permission will grant permission to edit any shortcut set.'), ), 'switch shortcut sets' => array( - 'title' => t('Select own shortcut set'), + 'title' => t('Select any shortcut set'), + 'description' => t('From all shortcut sets, select one to be own active set. Without this permission, an administrator selects shortcut sets for users.'), ), ); }