diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 4983ca7db0d11af56234d9b3ab5c00282add7eac..16996f6ddc1868090bafcb5c24bf743f6959fd43 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -2143,7 +2143,7 @@ function comment_unpublish_by_keyword_action_form($context) { $form['keywords'] = array( '#title' => t('Keywords'), '#type' => 'textarea', - '#description' => t('The comment will be unpublished if it contains any of the character sequences above. Use a comma-separated list of character sequences. Example: funny, bungee jumping, "Company, Inc." . Character sequences are case-sensitive.'), + '#description' => t('The comment will be unpublished if it contains any of the phrases above. Use a case-sensitive, comma-separated list of phrases. Example: funny, bungee jumping, "Company, Inc."'), '#default_value' => isset($context['keywords']) ? drupal_implode_tags($context['keywords']) : '', ); diff --git a/modules/node/node.module b/modules/node/node.module index 1e73c195871cbd229d5e467c6618b9086ebf7be3..a509762877e6ed1eb5688512d0a41802f32e5dce 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -3066,7 +3066,7 @@ function node_unpublish_by_keyword_action_form($context) { $form['keywords'] = array( '#title' => t('Keywords'), '#type' => 'textarea', - '#description' => t('The post will be unpublished if it contains any of the character sequences above. Use a comma-separated list of character sequences. Example: funny, bungee jumping, "Company, Inc." . Character sequences are case-sensitive.'), + '#description' => t('The post will be unpublished if it contains any of the phrases above. Use a case-sensitive, comma-separated list of phrases. Example: funny, bungee jumping, "Company, Inc."'), '#default_value' => isset($context['keywords']) ? drupal_implode_tags($context['keywords']) : '', ); return $form; diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index cb9db61c359abb8514946d2f965a2a91be1f9257..7cb22aa793df773ddb28f162e6234e21642b12fb 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -518,7 +518,7 @@ function taxonomy_form_alter(&$form, $form_state, $form_id) { $help = $vocabulary->help; } else { - $help = t('A comma-separated list of terms describing this content. Example: funny, bungee jumping, "Company, Inc.".'); + $help = t('A comma-separated list of terms describing this content. Example: funny, bungee jumping, "Company, Inc."'); } $form['taxonomy']['tags'][$vocabulary->vid] = array('#type' => 'textfield', '#title' => $vocabulary->name,