Index: modules/shortcut/shortcut.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/shortcut/shortcut.module,v
retrieving revision 1.17
diff -u -p -r1.17 shortcut.module
--- modules/shortcut/shortcut.module	11 Jan 2010 00:06:58 -0000	1.17
+++ modules/shortcut/shortcut.module	11 Jan 2010 23:40:28 -0000
@@ -31,6 +31,9 @@ function shortcut_help($path, $arg) {
       $output .= '<dd>' . t('You can display your shortcuts by enabling the Shortcuts block on the <a href="@blocks">Blocks administration page</a>. Certain administrative modules also display your shortcuts; for example, the core <a href="@toolbar-help">Toolbar module</a> displays them near the top of the page, along with an <em>Edit shortcuts</em> link.', array('@blocks' => url('admin/structure/block'), '@toolbar-help' => url('admin/help/toolbar'))) . '</dd>';
       $output .= '</dl>';
       return $output;
+			case 'admin/config/system/shortcut':
+			  $shortcut_set = shortcut_current_displayed_set();
+			  return t('<p>On this page you can:</p><ul><li>Choose a set of shortcuts for current use.</li><li>Create a new set of shortcuts.</li></ul><p>Elsewhere you can:</p><ul><li><a href="@editshortcuts">Edit the current set of shortcuts</a>.</li><li><a href="@shortcutshelp">Learn more about shortcuts</a>.</li></ul>', array('@editshortcuts' => url('admin/config/system/shortcut/' . $shortcut_set->set_name), '@shortcutshelp' => url('admin/help/shortcut'))) . '</p>';
   }
 }
 
