From f840f07e24f402664a496df0f4be760506c0f9ab Mon Sep 17 00:00:00 2001 From: sun Date: Tue, 2 Apr 2013 11:52:33 +0200 Subject: [PATCH] - #1801220 by sun, Cottser, TravisCarden: Clarified text analysis strictness configuration option. --- mollom.admin.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mollom.admin.inc b/mollom.admin.inc index ca77782..41a50b5 100644 --- a/mollom.admin.inc +++ b/mollom.admin.inc @@ -275,11 +275,11 @@ function mollom_admin_configure_form(&$form_state, $mollom_form = NULL) { $form['mollom']['strictness'] = array( '#type' => 'radios', - '#title' => t('Text analysis accuracy'), + '#title' => t('Text analysis strictness'), '#options' => array( - 'strict' => t('Strict'), + 'strict' => t('Strict: Posts are more likely classified as spam'), 'normal' => t('Normal'), - 'relaxed' => t('Relaxed'), + 'relaxed' => t('Relaxed: Posts are more likely classified as ham'), ), '#default_value' => $mollom_form['strictness'], // Only possible for forms protected via text analysis. -- 1.7.11.msysgit.1