Index: modules/shortcut/shortcut.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/shortcut/shortcut.module,v
retrieving revision 1.5
diff -p -u -p -r1.5 shortcut.module
--- modules/shortcut/shortcut.module	11 Nov 2009 06:56:52 -0000	1.5
+++ modules/shortcut/shortcut.module	19 Nov 2009 00:42:31 -0000
@@ -15,6 +15,21 @@
 define('SHORTCUT_DEFAULT_SET_NAME', 'shortcut-set-1');
 
 /**
+ * Implement hook_help().
+ */
+function shortcut_help($path, $arg) {
+  switch ($path) {
+    case 'admin/help#shortcut':
+      $output = '<h3>' . t('About') . '</h3>';
+      $output = '<p>' . t('The shortcut module is a powerful tool for customizing the links that appear in the administrative navigation of a Drupal site. The default shortcut links are to "Add content," "Find content," and "Dashboard." Shortcuts can be used to add links to commonly visited pages on your site navigation for quick access. Shortcuts are contained within sets that are listed on the <a href="@shortcut-settings">shortcuts configuration page</a>. New shortcuts sets are created by copying the default set.', array('@shortcut-settings' => url('admin/config/system/shortcut/'))) . '</p>';
+      $output .= '<h3>' . t('Uses') . '</h3>';
+      $output .= '<dl><dt>' . t('Modifying shortcuts') . '</dt>';
+      $output .= '<dd>' . t('Add, edit, and delete shortcut links in the active shortcut set by selecting the edit shortcuts link.') . '</dd></dl>';
+      return $output;
+  }
+}
+  
+/**
  * Implement hook_permission().
  */
 function shortcut_permission() {
