# This patch file was generated by NetBeans IDE
# This patch can be applied using context Tools: Apply Diff Patch action on respective folder.
# It uses platform neutral UTF-8 encoding.
# Above lines and this line are ignored by the patching process.
Index: contributions/modules/image/contrib/image_gallery/image_gallery.install
--- contributions/modules/image/contrib/image_gallery/image_gallery.install Base (1.10)
+++ contributions/modules/image/contrib/image_gallery/image_gallery.install Locally Modified (Based On 1.10)
@@ -2,7 +2,8 @@
 // $Id: image_gallery.install,v 1.10 2009/01/22 12:17:20 sun Exp $
 
 function image_gallery_install() {
-  // Nothing to do.
+  // Notify the user of the existence of the suggested menu item.
+  drupal_set_message(t('Image gallery has been installed. You may want to enable the <a href="@navigation-menu-url">Image galleries menu item</a>.', array('@navigation-menu-url' => url('admin/build/menu-customize/navigation'))));
 }
 
 /**
Index: contributions/modules/image/contrib/image_gallery/image_gallery.module
--- contributions/modules/image/contrib/image_gallery/image_gallery.module Base (1.36)
+++ contributions/modules/image/contrib/image_gallery/image_gallery.module Locally Modified (Based On 1.36)
@@ -8,8 +8,19 @@
 
 function image_gallery_help($path, $arg) {
   switch ($path) {
+    case 'admin/help#image_gallery':
+      $output = '<p>' . t('The Image gallery module allows you to organize your image nodes into galleries. Images are placed into galleries in the same way as nodes are given taxonomy terms.') . '</p>';
+      $output .= '<p>' . t('You can:') . '</p>';
+      $output .= '<ul>';
+      $output .= '<li>' . t('View your <a href="@image-gallery-url">galleries</a>.', array('@image-gallery-url' => url('image'))) . '</li>';
+      $output .= '<li>' . t('Add or change galleries at <a href="@image-gallery-admin-url">Administer &raquo; Content &raquo; Image galleries</a>.', array('@image-gallery-admin-url' => url('admin/content/image'))) . '</li>';
+      $output .= '<li>' . t('Configure gallery settings at <a href="@image-gallery-settings-url">Administer &raquo; Site configuration &raquo; Image &raquo; Image gallery</a>.', array('@image-gallery-settings-url' => url('admin/settings/image/image_gallery'))) . '</li>';
+      $output .= '</ul>';
+      $output .= '<p>' . t('For more information, see the online handbook entry for <a href="@image-url">Image module</a> and its related submodules.', array('@image-url' => 'http://drupal.org/handbook/modules/image')) . '</p>';
+      return $output;
     case 'admin/content/image':
-      return '<p>'. t('Image galleries can be used to organize and present groups of images. Galleries may be nested. To add a new gallery click the "add gallery" tab.') .'</p>';
+      $output = '<p>'. t('<a href="@image-gallery-url">Image galleries</a> can be used to organize and present groups of images. Galleries may be nested. To add a new gallery click the "add gallery" tab.', array('@image-gallery-url' => url('image'))) .'</p>';
+      return $output;
   }
 }
 
