diff --git a/entityform_type.admin.inc b/entityform_type.admin.inc
index c10a1a1..a418426 100644
--- a/entityform_type.admin.inc
+++ b/entityform_type.admin.inc
@@ -48,10 +48,10 @@ function entityform_type_form($form, &$form_state, $entityform_type, $op = 'edit
   $form = _entityform_type_setttings_elements($entityform_type, $op);
   $form['#entityform_type'] = $entityform_type;
   $form['label'] = array(
-    '#title' => t('Label'),
+    '#title' => t('Name'),
     '#type' => 'textfield',
     '#default_value' => $entityform_type->label,
-    '#description' => t('The human-readable name of this entityform type.'),
+    '#description' => t('The human-readable name of this entityform.  This text will be displayed as part of the list in the Add entityform type page.  This name must be unqiue.'),
     '#required' => TRUE,
     '#size' => 30,
     '#weight' => -50,
@@ -75,12 +75,13 @@ function entityform_type_form($form, &$form_state, $entityform_type, $op = 'edit
     '#type' => 'textfield',
     '#title' => t('Redirect Path'),
     '#default_value' => empty($entityform_type->data['redirect_path']) ? '' : $entityform_type->data['redirect_path'],
-    '#description' => t('What path should the user be redirected to on correct submission?  Leave blank for default action'),
+    '#description' => t('What relative path should the user be redirected to on a correct submission?  Leave blank for default action.'),
   );
   $form['data']['instruction_pre'] = array(
     '#type' => 'textarea',
     '#title' => t('Intro Form instructions'),
     '#default_value' => empty($entityform_type->data['instruction_pre']) ? '' : $entityform_type->data['instruction_pre'],
+    '#description' => t('These user instructions will appear at the top of every page within this form.'),
   );
   _entityform_remove_fieldsets_from_tree($form['data'], array('data'));
 
@@ -201,7 +202,7 @@ function _entityform_type_setttings_elements($entityform_type, $op) {
       '#type' => 'fieldset',
       '#title' => t('Draft settings'),
       '#collapsible' => TRUE,
-      '#group' => 'additional_settings',
+      '#group' => 'additional_settings',  
       '#weight' => 20,
   );
   $form['data']['draft_set']['draftable'] = array(
@@ -220,7 +221,7 @@ function _entityform_type_setttings_elements($entityform_type, $op) {
       '#type' => 'textarea',
       '#title' => t('Draft save text'),
       '#default_value' => empty($entityform_type->data['draft_save_text']) ? '' : $entityform_type->data['draft_save_text'],
-      '#description' => t('Text to dispaly to the user when the form is saved as a draft'),
+      '#description' => t('This text will be displayed to the user when the form is saved as a draft.'),
   );
   //****************FORM OVERRIDE FIELDSET SETTINGS *********************//
   $form['data']['formoverride_set'] = array(
@@ -256,7 +257,7 @@ function _entityform_type_setttings_elements($entityform_type, $op) {
       '#type' => 'textarea',
       '#title' => t('Submission Reply'),
       '#default_value' => empty($entityform_type->data['submission_text']) ? '' : $entityform_type->data['submission_text'],
-      '#description' => t('Text for correct submission'),
+      '#description' => t('This text will be displayed to the user when a correct form is submitted.'),
   );
   $form['data']['submission_page_set']['submission_show_submitted'] = array(
       '#type' => 'checkbox',
@@ -303,7 +304,7 @@ function _entityform_type_setttings_elements($entityform_type, $op) {
           ENTITYFORM_STATUS_CLOSED => t('Closed form new form submissions'),
       ),
       '#default_value' => empty($entityform_type->data['form_status']) ? 'open' : $entityform_type->data['form_status'],
-      '#description' => t('Can users submit this form?'),
+      '#description' => t('Can users submit this form?  Open means the users can submit this form.  Closed means the user can not submit the form.'),
   );
   $form['data']['access_set']['roles'] = array(
       '#type' => 'checkboxes',
