Index: compact_forms.admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/compact_forms/compact_forms.admin.inc,v
retrieving revision 1.3
diff -u -p -r1.3 compact_forms.admin.inc
--- compact_forms.admin.inc	3 May 2009 20:08:05 -0000	1.3
+++ compact_forms.admin.inc	5 Sep 2010 02:15:11 -0000
@@ -12,41 +12,39 @@
 function compact_forms_admin_form() {
   $form['compact_forms_ids'] = array(
     '#type' => 'textarea',
-    '#title' => t('Form CSS ids'),
+    '#title' => t('Form CSS IDs'),
     '#rows' => 3,
     '#cols' => 40,
     '#default_value' => variable_get('compact_forms_ids', 'user-login-form'),
-    '#description' => t('The CSS ids of forms that shall be displayed compact. One per line.'),
+    '#description' => t('Enter the CSS IDs of the forms to display compact. One per line.'),
   );
   $form['compact_forms_colons'] = array(
     '#type' => 'checkbox',
-    '#title' => t('Keep trailing colons in labels'),
+    '#title' => t('Keep trailing colons after field labels'),
     '#default_value' => variable_get('compact_forms_colons', 0),
-    '#description' => t('When enabled, trailing colons after the field label will be removed.'),
+  );
+  $form['compact_forms_descriptions'] = array(
+    '#type' => 'checkbox',
+    '#title' => t('Hide field descriptions'),
+    '#default_value' => variable_get('compact_forms_descriptions', 1),
   );
   $form['compact_forms_stars'] = array(
     '#type' => 'radios',
-    '#title' => t('Required field handling'),
+    '#title' => t('Required field marker'),
     '#options' => array(
       0 => t('Remove star'),
-      1 => t('Leave star attached to label'),
-      2 => t('Append star after the field'),
+      1 => t('Leave star after the label'),
+      2 => t('Append star after the form element'),
     ),
     '#default_value' => variable_get('compact_forms_stars', 2),
-    '#description' => t('Defines how required field indicators should be altered.'),
   );
   $form['compact_forms_field_size'] = array(
     '#type' => 'textfield',
-    '#title' => t('Textfield size'),
+    '#title' => t('Enforced text field size'),
     '#size' => 3,
     '#default_value' => variable_get('compact_forms_field_size', ''),
-    '#description' => t("Optionally override the 'size' attribute (width) of all text fields in compact forms. Leave empty to use the default sizes defined by the original forms."),
-  );
-  $form['compact_forms_descriptions'] = array(
-    '#type' => 'checkbox',
-    '#title' => t('Show field descriptions'),
-    '#default_value' => variable_get('compact_forms_descriptions', 1),
-    '#description' => t('When enabled, form element descriptions will be hidden.'),
+    '#field_suffix' => t('characters'),
+    '#description' => t("If not empty, the size of all text fields in compact forms will be set to the entered size."),
   );
 
   return system_settings_form($form);
