--- ed_readmore_old.module	2008-08-13 17:13:11.000000000 +0200
+++ ed_readmore.module	2009-02-11 10:01:35.000000000 +0100
@@ -180,39 +180,41 @@ function ed_readmore_menu() {
  */
 function ed_readmore_admin_settings() {
   $form = array();
-  $form['readmore'] = array(
-    '#type' => 'fieldset',
-    '#collapsible' => TRUE,
-    '#collapsed' => FALSE,
-    '#title' => t('Teaser "Read more" handling'),
-  );
-
-  $form['readmore']['ed_readmore_readmore_tweak'] =
+  $form['ed_readmore_readmore_tweak'] =
     array('#type' => 'checkbox',
-          '#title' =>  t('Relocate <strong>Read more</strong> link from links section?'),
+          '#title' =>  t('Move <strong>Read more</strong> from the node links section to the end of the teaser'),
           '#default_value' => variable_get('ed_readmore_readmore_tweak', 1),
-          '#description' => t('Move Read More from links to end of teaser?  See <a target="_blank" href="http://www.angrydonuts.com/the_nuisance_of_the_read_more_fl">AngryDonuts.com</a> for details.'),
+          '#description' => t('See <a target="_blank" href="http://www.angrydonuts.com/the_nuisance_of_the_read_more_fl">AngryDonuts.com</a> for details.'),
           '#required' => FALSE);
 
-  $form['readmore']['ed_readmore_readmore_inline'] =
+  $form['ed_readmore_readmore_inline'] =
     array('#type' => 'checkbox',
-          '#title' =>  t('Put <strong>Read more</strong> inline in teaser?'),
+          '#title' =>  t('Put <strong>Read more</strong> inline in teaser'),
           '#default_value' => variable_get('ed_readmore_readmore_inline', 1),
           '#description' => t('If relocation is enabled, and this option is set, place "read more" text on last line of teaser text using a &lt;span&gt; element.'),
           '#required' => FALSE);
 
-  $form['readmore']['ed_readmore_text'] =
+  $form['ed_readmore_text'] =
     array('#type' => 'textfield',
-          '#title' =>  t('The "read more" text to display in the teaser'),
+          '#title' =>  t('The <strong>Read more</strong> text to display in the teaser'),
           '#default_value' => variable_get('ed_readmore_text', t(ED_READMORE_TEXT_DEFAULT)),
           '#description' => t('Enter the text you wish to display in the read more link.  May contain HTML.'),
           '#required' => TRUE);
 
-  $form['readmore']['ed_readmore_readmore_strong'] =
+  $form['ed_readmore_formatting'] = array(
+    '#type' => 'fieldset',
+    '#collapsible' => TRUE,
+    '#collapsed' => FALSE,
+    '#title' => t('Link formatting'),
+  );
+
+  $form['ed_readmore_formatting']['ed_readmore_readmore_strong'] =
     array('#type' => 'checkbox',
-          '#title' =>  t('bold this text'),
+          '#title' =>  t('Bold this text'),
           '#default_value' => variable_get('ed_readmore_readmore_strong', 1),
-          '#required' => FALSE);
+          '#required' => FALSE,
+          '#description' => t('Adds a &lt;strong&gt; element around the text.'),
+          );
 
 
   return system_settings_form($form);
