Index: apachesolr.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/apachesolr/apachesolr.module,v
retrieving revision 1.1.2.12.2.91
diff -u -p -r1.1.2.12.2.91 apachesolr.module
--- apachesolr.module	24 Jan 2009 00:34:55 -0000	1.1.2.12.2.91
+++ apachesolr.module	25 Jan 2009 17:23:57 -0000
@@ -84,7 +84,7 @@ function apachesolr_settings() {
   $form['apachesolr_failure'] = array(
     '#type' => 'select',
     '#title' => t('On failure'),
-    '#options' => array('show_error' => t('Show error'),
+    '#options' => array('show_error' => t('Show error message'),
       'show_drupal_results' => t('Show core Drupal results'),
       'show_no_results' => t('Show no results')
     ),
@@ -142,7 +142,7 @@ function apachesolr_requirements($phase)
     catch (Exception $e) {
       watchdog('Apache Solr', $e->getMessage(), NULL, WATCHDOG_ERROR);
     }
-    $value =  $ping ? $t('Solr can be pinged.') : $t('No Solr instance is available.');
+    $value =  $ping ? $t('Your site has contacted the ApacheSolr indexing server.') : $t('Your site was unable to contact the ApacheSolr indexing server.');
     $severity = $ping ? 0: 2;
     $description = theme('item_list', array($t('Host: %host', array('%host' => $host)),
                         $t('Port: %port', array('%port' => $port)),
@@ -878,17 +878,17 @@ function apachesolr_facetcount_form($del
   // display facet limit option.
   $form['apachesolr_facet_query_initial_limit'] = array(
     '#type' => 'textfield',
-    '#title' => t('Initial filter terms to show'),
+    '#title' => t('Initial filter terms to display'),
     '#required' => TRUE,
-    '#description' => t('The initial number of filter links to show in this block. Set to -1 for unlimited. Default is 10.'),
+    '#description' => t('The initial number of filter links to display in this block. Set to -1 for unlimited. The default is 10.'),
     '#default_value' => isset($facet_query_initial_limits[$delta]) ? $facet_query_initial_limits[$delta] : variable_get('apachesolr_facet_query_initial_limit_default', 10),
   );
   
   $form['apachesolr_facet_query_limit'] = array(
     '#type' => 'textfield',
-    '#title' => t('Maximum filter terms to show'),
+    '#title' => t('Maximum filter terms to display'),
     '#required' => TRUE,
-    '#description' => t('The maximum number of filter links to show in this block. Set to -1 for unlimited. Default is 20.'),
+    '#description' => t('The maximum number of filter links to display in this block. Set to -1 for unlimited. The default is 20.'),
     '#default_value' => isset($facet_query_limits[$delta]) ? $facet_query_limits[$delta] : variable_get('apachesolr_facet_query_limit_default', 20),
   );
   
Index: apachesolr_search.admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/apachesolr/Attic/apachesolr_search.admin.inc,v
retrieving revision 1.1.2.7
diff -u -p -r1.1.2.7 apachesolr_search.admin.inc
--- apachesolr_search.admin.inc	19 Dec 2008 01:23:09 -0000	1.1.2.7
+++ apachesolr_search.admin.inc	25 Jan 2009 17:23:57 -0000
@@ -53,21 +53,21 @@ function apachesolr_search_bias_form($fo
     '#title' => t('Result biasing'),
     '#collapsible' => TRUE,
     '#collapsed' => FALSE,
-    '#description' => t('Specify here biasing for different node properties when ordering the search results. Choose <em>Omit</em> to ignore this property.'),
+    '#description' => t('Give bias to certain node properties when ordering the search results. Choose <em>Omit</em> to ignore this for any given property.'),
   );
   $form['biasing']['apacehsolr_search_date_boost'] = array(
     '#type' => 'select',
     '#options' => $options,
-    '#title' => t("More recent change bias"),
+    '#title' => t("'More recent change' bias"),
     '#default_value' => $date_settings,
-    '#description' => t('This setting will change the scoring so that more recent results may appear before those with higher keyword matching.'),
+    '#description' => t('This setting will change the result-scoring so that results changed more recently may appear before those with higher keyword matching.'),
   );
   $form['biasing']['apacehsolr_search_comment_boost'] = array(
     '#type' => 'select',
     '#options' => $options,
-    '#title' => t("More comments bias"),
+    '#title' => t("'More comments' bias"),
     '#default_value' => $comment_settings,
-    '#description' => t('This setting will change the scoring so that nodes with more comments may appear before those with higher keyword matching.'),
+    '#description' => t('This setting will change the result-scoring so that nodes with more comments may appear before those with higher keyword matching.'),
   );
 
   return system_settings_form($form);
@@ -108,7 +108,7 @@ function apachesolr_search_settings_form
       '#collapsible' => TRUE,
       '#collapsed' => FALSE,
       '#tree' => TRUE,
-      '#description' => t('Specify here which fields are more important when searching. Give a field a bigger numeric value to make it more important.  If you omit a field, it will not be searched for keywords.'),
+      '#description' => t('Specify here which fields are more important when searching. Give a field a greater numeric value to make it more important. If you omit a field, it will not be searched for search terms.'),
     );
     foreach ($fields as $field_name => $field) {
       $form['apachesolr_search_query_fields'][$field_name] = array(
Index: apachesolr_search.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/apachesolr/apachesolr_search.module,v
retrieving revision 1.1.2.6.2.59
diff -u -p -r1.1.2.6.2.59 apachesolr_search.module
--- apachesolr_search.module	16 Jan 2009 20:03:40 -0000	1.1.2.6.2.59
+++ apachesolr_search.module	25 Jan 2009 17:23:58 -0000
@@ -20,7 +20,7 @@ function apachesolr_search_help($section
       $remaining += $status['remaining'];
       $total += $status['total'];
 
-      return t('Apache Solr search index is generated by !cron. %percentage of the site has been indexed. There @items left to index.', array(
+      return t('The Apache Solr search index is generated by !cron. %percentage of the site has been indexed. There @items left to index.', array(
         '!cron' => l(t('running cron'), 'admin/reports/status/run-cron', array('query' => array('destination' => 'admin/settings/apachesolr/index'))),
         '%percentage' => ((int)min(100, 100 * ($total - $remaining) / max(1, $total))) .'%',
         '@items' => format_plural($remaining, t('is 1 item'), t('are @count items')
@@ -482,9 +482,9 @@ function apachesolr_search_form_search_f
 function apachesolr_search_form_apachesolr_settings_alter(&$form, $form_state) {
   $form['apachesolr_search_spellcheck'] = array(
     '#type' => 'checkbox',
-    '#title' => t('Enable Spellchecker and suggestions'),
+    '#title' => t('Enable spellchecker and suggestions'),
     '#default_value' => variable_get('apachesolr_search_spellcheck', FALSE),
-    '#description' => t('Enable spellchecker and get word suggestions. Also known as the "Did you mean" feature.'),
+    '#description' => t('Enable spellchecker and get word suggestions. Also known as the "Did you mean ... ?" feature.'),
   );
 
   $form['#submit'][] = 'apachesolr_search_build_spellcheck';
Index: contrib/apachesolr_attachments/apachesolr_attachments.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/apachesolr/contrib/apachesolr_attachments/apachesolr_attachments.info,v
retrieving revision 1.1.2.2
diff -u -p -r1.1.2.2 apachesolr_attachments.info
--- contrib/apachesolr_attachments/apachesolr_attachments.info	4 Nov 2008 14:32:27 -0000	1.1.2.2
+++ contrib/apachesolr_attachments/apachesolr_attachments.info	25 Jan 2009 17:23:58 -0000
@@ -1,4 +1,4 @@
-name = ApacheSolr for Attachments
+name = ApacheSolr for attachments
 description = Searching file attachments with Solr
 dependencies[] = apachesolr
 package = ApacheSolr
Index: contrib/apachesolr_image/apachesolr_image.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/apachesolr/contrib/apachesolr_image/apachesolr_image.info,v
retrieving revision 1.1.2.1.2.1
diff -u -p -r1.1.2.1.2.1 apachesolr_image.info
--- contrib/apachesolr_image/apachesolr_image.info	4 May 2008 19:54:02 -0000	1.1.2.1.2.1
+++ contrib/apachesolr_image/apachesolr_image.info	25 Jan 2009 17:23:58 -0000
@@ -1,5 +1,5 @@
 ; $Id$
-name = ApacheSolr Image integration
+name = ApacheSolr image module integration
 description = Integrates the ApacheSolr and Image modules
 dependencies[] = image
 dependencies[] = apachesolr
Index: contrib/apachesolr_mlt/apachesolr_mlt.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/apachesolr/contrib/apachesolr_mlt/Attic/apachesolr_mlt.info,v
retrieving revision 1.1.4.3
diff -u -p -r1.1.4.3 apachesolr_mlt.info
--- contrib/apachesolr_mlt/apachesolr_mlt.info	4 Nov 2008 14:32:27 -0000	1.1.4.3
+++ contrib/apachesolr_mlt/apachesolr_mlt.info	25 Jan 2009 17:23:58 -0000
@@ -1,5 +1,5 @@
 ; $Id: apachesolr_mlt.info,v 1.1.4.3 2008/11/04 14:32:27 robertDouglass Exp $
-name = ApacheSolr More Like This
+name = ApacheSolr more like this
 description = Use Solr to make content recommendations
 dependencies[] = apachesolr
 package = ApacheSolr
Index: contrib/apachesolr_mlt/apachesolr_mlt.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/apachesolr/contrib/apachesolr_mlt/Attic/apachesolr_mlt.module,v
retrieving revision 1.1.4.17
diff -u -p -r1.1.4.17 apachesolr_mlt.module
--- contrib/apachesolr_mlt/apachesolr_mlt.module	19 Dec 2008 04:14:06 -0000	1.1.4.17
+++ contrib/apachesolr_mlt/apachesolr_mlt.module	25 Jan 2009 17:23:59 -0000
@@ -8,7 +8,7 @@ function apachesolr_mlt_menu() {
   $items = array();
 
   $items['admin/settings/apachesolr_mlt'] = array(
-    'title' => 'Apache Solr More Like This',
+    'title' => 'Apache Solr - More Like This',
     'description' => 'Configure content recommendation blocks using the ApacheSolr "More Like This" handler.',
     'page callback' => 'apachesolr_mlt_settings',
     'access arguments' => array('administer search'),
@@ -170,7 +170,7 @@ function apachesolr_mlt_block_form(&$for
   $form['name'] = array(
     '#type' => 'textfield',
     '#title' => t('Block Name'),
-    '#description' => t('Please enter the block name. This will be displayed to site users'),
+    '#description' => t('The block name displayed to site users.'),
     '#default_value' => isset($block['name']) ? check_plain($block['name']) : '',
     '#weight' => '-2',
   );
@@ -183,7 +183,7 @@ function apachesolr_mlt_block_form(&$for
 
   $form['comparison'] = array(
     '#type' => 'fieldset',
-    '#title' => t('Comparison settings'),
+    '#title' => t('Comparison fields'),
     '#weight' => 0,
     '#collapsible' => TRUE,
     '#collapsed' => FALSE,
@@ -191,7 +191,7 @@ function apachesolr_mlt_block_form(&$for
   $form['comparison']['mlt_fl'] = array(
     '#type' => 'checkboxes',
     '#title' => t('Fields for comparison'),
-    '#description' => t('The fields to be used in caclulating similarity.'),
+    '#description' => t('Select fields to be used in calculating similarity. The default combination of "taxonomy_names" and "title" has been shown to provide very relevant results.'),
     '#options' => apachesolr_mlt_get_fields(),
     '#default_value' => isset($block['mlt_fl']) ? $block['mlt_fl'] : array('title', 'taxonomy_names'),
   );
@@ -206,31 +206,31 @@ function apachesolr_mlt_block_form(&$for
   $form['advanced']['mlt_mintf'] = array(
     '#type' => 'textfield',
     '#title' => t('Minimum Term Frequency'),
-    '#description' => t('The frequency below which terms will be ignored in the source document.'),
+    '#description' => t('A word must appear this many times in any given document before the document is considered relevant for comparison.'),
     '#default_value' => isset($block['mlt_mintf']) ? (int) $block['mlt_mintf'] : 1,
   );
   $form['advanced']['mlt_mindf'] = array(
     '#type' => 'textfield',
     '#title' => t('Minimum Document Frequency'),
-    '#description' => t('The frequency at which words will be ignored which do not occur in at least this many documents.'),
+    '#description' => t('A word must occur in at least this many documents before it will be used for similarity comparison.'),
     '#default_value' => isset($block['mlt_mindf']) ? (int) $block['mlt_mindf'] : 1,
   );
   $form['advanced']['mlt_minwl'] = array(
     '#type' => 'textfield',
     '#title' => t('Minimum Word Length'),
-    '#description' => 'Words must be at least this long or they will be ignored.',
+    '#description' => 'You can use this to eliminate short words such as "the" and "it" from similarity comparisons. Words must be at least this long or they will be ignored.',
     '#default_value' => isset($block['mlt_minwl']) ? (int) $block['mlt_minwl'] : 3,
   );
   $form['advanced']['mlt_maxwl'] = array(
     '#type' => 'textfield',
     '#title' => t('Maximum World Length'),
-    '#description' => t('Words above this length will be ignored.'),
+    '#description' => t('You can use this to eliminate very long words from similarity comparisons. Words above this length will be ignored.'),
     '#default_value' => isset($block['mlt_maxwl']) ? (int) $block['mlt_maxwl'] : 15,
   );
   $form['advanced']['mlt_maxqt'] = array(
     '#type' => 'textfield',
     '#title' => t('Maximum number of query terms'),
-    '#description' => t('The maximum number of query terms that will be included in any generated query. Lower numbers will result in fewer recommendations but perform better.'),
+    '#description' => t('The maximum number of query terms that will be included in any query. Lower numbers will result in fewer recommendations. If a content recommendation is not returning any recommendations, you can either check more "Comparison fields" checkboxes or increase the maximum number of query terms here.'),
     '#default_value' => isset($block['mlt_maxqt']) ? (int) $block['mlt_maxqt'] : 30,
   );
 
Index: contrib/apachesolr_nodeaccess/apachesolr_nodeaccess.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/apachesolr/contrib/apachesolr_nodeaccess/Attic/apachesolr_nodeaccess.info,v
retrieving revision 1.1.2.3
diff -u -p -r1.1.2.3 apachesolr_nodeaccess.info
--- contrib/apachesolr_nodeaccess/apachesolr_nodeaccess.info	17 Dec 2008 18:35:04 -0000	1.1.2.3
+++ contrib/apachesolr_nodeaccess/apachesolr_nodeaccess.info	25 Jan 2009 17:23:59 -0000
@@ -1,5 +1,5 @@
 ; $Id: apachesolr_nodeaccess.info,v 1.1.2.3 2008/12/17 18:35:04 pwolanin Exp $
-name = ApacheSolr Node Access
+name = ApacheSolr node access
 description = Integrates Node Access and ApacheSolr
 dependencies[] = apachesolr
 package = ApacheSolr
