summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-12-18 21:29:43 +0000
committerDries Buytaert <dries@buytaert.net>2007-12-18 21:29:43 +0000
commitae8a4c184efddac4e7834e947a87ceba41fe71fc (patch)
tree8abe08b31b4d304aee35da08b25a54656ec13fb9
parent051e48296ba952155413c74db1669449f1ea9e07 (diff)
downloadbrdo-ae8a4c184efddac4e7834e947a87ceba41fe71fc.tar.gz
brdo-ae8a4c184efddac4e7834e947a87ceba41fe71fc.tar.bz2
- Patch #201437 by keith.smith: further massaging of the help texts.
-rw-r--r--modules/color/color.module3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/color/color.module b/modules/color/color.module
index 4cd887dcf..666c2f102 100644
--- a/modules/color/color.module
+++ b/modules/color/color.module
@@ -7,8 +7,9 @@
function color_help($path, $arg) {
switch ($path) {
case 'admin/help#color':
- $output = '<p>'. t('The color module allows a site administrator to quickly and easily change the color scheme of certain themes. Although all themes do not support color module, both Garland, the default theme, and Minnelli, its fixed width counterpart, were designed to take advantage of its features. By using color module with a compatible theme, you can easily change the color of links, backgrounds, text, and other theme elements. Color module requires that your <a href="@url">file download method</a> be set to public.', array('@url' => url('admin/settings/file-system'))) .'</p>';
+ $output = '<p>'. t('The color module allows a site administrator to quickly and easily change the color scheme of certain themes. Although not all themes support color module, both Garland (the default theme) and Minnelli were designed to take advantage of its features. By using color module with a compatible theme, you can easily change the color of links, backgrounds, text, and other theme elements. Color module requires that your <a href="@url">file download method</a> be set to public.', array('@url' => url('admin/settings/file-system'))) .'</p>';
$output .= '<p>'. t("It is important to remember that color module saves a modified copy of the theme's specified stylesheets in the files directory. This means that if you make any manual changes to your theme's stylesheet, you must save your color settings again, even if they haven't changed. This causes the color module generated version of the stylesheets in the files directory to be recreated using the new version of the original file.") .'</p>';
+ $output .= '<p>'. t('To change the color settings for a compatible theme, select the "configure" link for the theme on the <a href="@themes">themes administration page</a>.', array('@themes' => url('admin/build/themes'))) .'</p>';
$output .= '<p>'. t('For more information, see the online handbook entry for <a href="@color">Color module</a>.', array('@color' => 'http://drupal.org/handbook/modules/color/')) .'</p>';
return $output;
}