diff --git a/modules/image/image.module b/modules/image/image.module
index 64ada5b84d53..c443ff1852cf 100644
--- a/modules/image/image.module
+++ b/modules/image/image.module
@@ -40,17 +40,19 @@ require_once DRUPAL_ROOT . '/modules/image/image.field.inc';
function image_help($path, $arg) {
switch ($path) {
case 'admin/help#image':
- $naming_approaches = array();
- $naming_approaches[] = t('Based on where it will be used: !name', array('!name' => 'profile-picture'));
- $naming_approaches[] = t('Describing its appearance: !name', array('!name' => 'square-85x85'));
$output = '';
- $output .= '
' . t('The Image module provides functionality for displaying images on your site though image styles.', array('!url' => url('admin/config/media/image-styles'))) .'
'; - $output .= '' . t('Image styles allow your site to output an image in several different ways without affecting the original image. Any created images will automatically be refreshed if any changes are made to the image style.') .'
'; - $output .= '' . t('Every image style must have a name, which will be used in the URL of generated images. There are two common approaches to naming image styles:') . '
'; - $output .= theme('item_list', array('items' => $naming_approaches)); - $output .= '' . t('Both approaches are common and which you choose depends on how you use the image style.') . '
'; - $output .= '' . t('After creating an image style, effects may be added to the style. Image module comes with some basic effects such as crop, scale, desaturate, and rotate. In addition to the effects included with Image, other modules may provide additional effects. Multiple effects may be combined together, such as using the crop and scale effect and the desaturate effect, you could create square, grayscale thumbnails.'); + $output .= '
' . t('The Image module allows you to manipulate images on your website. It exposes a setting for using the Image toolkit, allows you to configure Image styles that can be used for resizing or adjusting images on display, and provides an Image field for attaching images to content. For more information, see the online handbook entry for Image module.', array('@image' => 'http://drupal.org/handbook/modules/image')) . '
'; + $output .= '' . t('Image styles commonly provide thumbnail sizes by scaling and cropping images, but can also add various effects before an image is displayed. When an image is displayed with a style, a new file is created and the original image is left unchanged.') . '
';