--- weblinks.admin.inc 2009-07-29 08:32:13.000000000 +0100 +++ weblinks.admin.inc 2009-07-29 08:50:04.000000000 +0100 @@ -187,14 +187,14 @@ function weblinks_admin_settings() { '#type' => 'textfield', '#title' => t('Title for unclassified links'), '#default_value' => variable_get('weblinks_unclassified_title', t('Unclassified')), - '#description' => t('This will be used to describe the unclassified links. You may leave it blank for no title. It will not be translated.'), + '#description' => t('This will be used as the group title for unclassified links. You may leave it blank for no title.'), ); $form['group']['weblinks_unclassified_desc'] = array( '#type' => 'textfield', '#title' => t('Description for unclassified links'), '#default_value' => variable_get('weblinks_unclassified_desc', t('These links have not been assigned a group.')), - '#description' => t('This will be used as the description for the unclassified links group. If this group has no title, this text will not be shown either. It will not be translated.'), + '#description' => t('This will be used as the description for the unclassified links group. It can be blank.'), ); $form['group']['weblinks_unpublished_title'] = array( @@ -202,14 +202,14 @@ function weblinks_admin_settings() { '#required' => TRUE, '#title' => t('Title for unpublished links'), '#default_value' => variable_get('weblinks_unpublished_title', t('Unpublished')), - '#description' => t('This will be used to describe the unclassified links. You may leave it blank for no title. It will not be translated.'), + '#description' => t('This will be used as the group title for unpublished links. It cannot be blank.'), ); $form['group']['weblinks_unpublished_desc'] = array( '#type' => 'textfield', '#title' => t('Description for unpublished links'), '#default_value' => variable_get('weblinks_unpublished_desc', t('These links are not published and need to be reviewed.')), - '#description' => t('This will be used as the description for the unpublished links group. If this group has no title, this text will not be shown either. It will not be translated.'), + '#description' => t('This will be used as the description for the unpublished links group. It can be blank.'), ); /**