summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-06-20 16:45:27 +0000
committerDries Buytaert <dries@buytaert.net>2008-06-20 16:45:27 +0000
commit95c66fa9fb8c2eacf9993d0c3f3b077898981ce0 (patch)
treef127862dad4ac20b3d5888f146585ca7babc4f0d /modules
parent1963021d120657347844145953c7a2169c1ede82 (diff)
downloadbrdo-95c66fa9fb8c2eacf9993d0c3f3b077898981ce0.tar.gz
brdo-95c66fa9fb8c2eacf9993d0c3f3b077898981ce0.tar.bz2
- Patch #272848 by catch: update comment settings form help text.
Diffstat (limited to 'modules')
-rw-r--r--modules/comment/comment.module10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module
index 7e261b52a..26a03ca28 100644
--- a/modules/comment/comment.module
+++ b/modules/comment/comment.module
@@ -509,21 +509,21 @@ function comment_form_alter(&$form, $form_state, $form_id) {
'#title' => t('Default display mode'),
'#default_value' => variable_get('comment_default_mode_' . $form['#node_type']->type, COMMENT_MODE_THREADED_EXPANDED),
'#options' => _comment_get_modes(),
- '#description' => t('The default view for comments. Expanded views display the body of the comment. Threaded views keep replies together.'),
+ '#description' => t('Expanded views display the body of the comment. Threaded views keep replies together.'),
);
$form['comment']['comment_default_order'] = array(
'#type' => 'radios',
- '#title' => t('Default display order'),
+ '#title' => t('Display order'),
'#default_value' => variable_get('comment_default_order_' . $form['#node_type']->type, COMMENT_ORDER_NEWEST_FIRST),
'#options' => _comment_get_orders(),
- '#description' => t('The default sorting for new users and anonymous users while viewing comments. These users may change their view using the comment control panel. For registered users, this change is remembered as a persistent user preference.'),
+ '#description' => t('Comments are displayed in ascending or descending order.'),
);
$form['comment']['comment_default_per_page'] = array(
'#type' => 'select',
- '#title' => t('Default comments per page'),
+ '#title' => t('Comments per page'),
'#default_value' => variable_get('comment_default_per_page_' . $form['#node_type']->type, 50),
'#options' => _comment_per_page(),
- '#description' => t('Default number of comments for each page: more comments are distributed in several pages.'),
+ '#description' => t('Additional comments will be displayed on separate pages.'),
);
$form['comment']['comment_anonymous'] = array(
'#type' => 'radios',