diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-11-21 17:44:51 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-11-21 17:44:51 +0000 |
commit | fc50814e7813d0b3ef20533a8c5b804d4eed2a64 (patch) | |
tree | 3679ec886953b98e1661ad25602cfdf98c199fcd | |
parent | 414dccc598f50019cc574bf85f39789026b8b3cc (diff) | |
download | brdo-fc50814e7813d0b3ef20533a8c5b804d4eed2a64.tar.gz brdo-fc50814e7813d0b3ef20533a8c5b804d4eed2a64.tar.bz2 |
#614324 by heather, lisarex, redndahead, and Bojhan: UI text improvements on node author display settings. (UXSprint)
-rw-r--r-- | modules/node/content_types.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/node/content_types.inc b/modules/node/content_types.inc index e088d33fa..5b2b1c11d 100644 --- a/modules/node/content_types.inc +++ b/modules/node/content_types.inc @@ -205,9 +205,9 @@ function node_type_form($form, &$form_state, $type = NULL) { ); $form['display']['node_submitted'] = array( '#type' => 'checkbox', - '#title' => t('Display post information'), + '#title' => t('Display author and date information.'), '#default_value' => variable_get('node_submitted_' . $type->type, TRUE), - '#description' => t('Enable the <em>submitted by Username on date</em> text.'), + '#description' => t('Author username and publish date will be displayed.'), ); $form['display']['teaser_length'] = array( '#type' => 'select', |