Index: README.txt
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/switchtheme/README.txt,v
retrieving revision 1.10
diff -u -p -r1.10 README.txt
--- README.txt	7 Jan 2011 23:51:19 -0000	1.10
+++ README.txt	8 Jan 2011 00:51:11 -0000
@@ -34,11 +34,8 @@ None.
   To permanently store the chosen theme for registered users, grant the
   "Permanently use a custom theme" permission to selected user roles.
 
-* Customize the settings in Administration » Configuration » User interface »
-  Switchtheme.
-
-  The theme names may not be very meaningful to regular users, so the settings
-  page allows you to create custom labels to show for each theme.
+* Optionally customize the settings in Administration » Configuration »
+  User interface » Switchtheme.
 
 * Go to Administration » Structure » Blocks and enable the desired Switchtheme
   block(s), if any. Make sure that it is enabled in all enabled themes.
Index: switchtheme.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/switchtheme/switchtheme.module,v
retrieving revision 1.20
diff -u -p -r1.20 switchtheme.module
--- switchtheme.module	8 Jan 2011 00:21:16 -0000	1.20
+++ switchtheme.module	8 Jan 2011 00:52:21 -0000
@@ -22,7 +22,11 @@ function switchtheme_help($path, $arg) {
 
     case 'admin/config/user-interface/switchtheme':
     case 'admin/config/user-interface/switchtheme/themes':
-      return t('Set a label for each enabled theme. This is what will be displayed to the user in the selection box.');
+      $output = '';
+      $output .= t('The names of <a href="@themes-url">enabled themes</a> may not be meaningful to users. Use these settings to customize the labels in the theme selection.', array(
+        '@themes-url' => url('admin/appearance'),
+      ));
+      return $output;
   }
 }
 
