From 5306eb48ce33f0f0f295720cf932365c977257f2 Mon Sep 17 00:00:00 2001
From: Marco Villegas <marvil07@gmail.com>
Date: Fri, 28 May 2010 17:43:23 -0500
Subject: [PATCH] #690316: Better option names

---
 xapian.module |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git xapian.module xapian.module
index 3a9ada7..8d5ddb8 100644
--- xapian.module
+++ xapian.module
@@ -136,7 +136,7 @@ function xapian_admin() {
     '#type' => 'fieldset',
     '#collapsed' => ($database_type ? FALSE : TRUE),
     '#collapsible' => TRUE,
-    '#title' => t('Xapian database')
+    '#title' => t('Database')
   );
 
   // Database type
@@ -158,7 +158,7 @@ function xapian_admin() {
   );
   $form['xapian']['database']['local_database']['xapian_database_path'] = array(
     '#type' => 'textfield',
-    '#title' => t('Path to Xapian database'),
+    '#title' => t('Path to database'),
     '#default_value' => variable_get('xapian_database_path', file_directory_path() .'/xapian_database'),
     '#required' => ($database_type == XAPIAN_LOCAL),
     '#description' => t('Directory where your local Xapian database will be created.  Specify a directory writable by your web server process.'),
@@ -215,7 +215,7 @@ function xapian_admin() {
     '#type' => 'fieldset',
     '#collapsible' => TRUE,
     '#collapsed' => TRUE,
-    '#title' => t('Xapian Performance')
+    '#title' => t('Performance')
   );
   $form['xapian']['performance']['xapian_index_immediately'] = array(
     '#type' => 'checkbox',
@@ -229,7 +229,7 @@ function xapian_admin() {
     '#type'  => 'fieldset',
     '#collapsible' => TRUE,
     '#collapsed' => TRUE,
-    '#title' => t('Xapian Display')
+    '#title' => t('Display')
   );
   $form['xapian']['display']['xapian_node_count_type'] = array(
     '#type' => 'radios',
@@ -248,7 +248,7 @@ function xapian_admin() {
     '#type' => 'fieldset',
     '#collapsible' => TRUE,
     '#collapsed' => TRUE,
-    '#title' => t('Xapain Logging')
+    '#title' => t('Logging')
   );
   $form['xapian']['diagnostic']['xapian_log_queries'] = array(
     '#type' => 'checkbox',
@@ -262,7 +262,7 @@ function xapian_admin() {
     '#type' => 'fieldset',
     '#collapsible' => TRUE,
     '#collapsed' => TRUE,
-    '#title' => t('Xapian Node types')
+    '#title' => t('Excluded node types')
   );
   $form['xapian']['node_types']['markup'] = array(
     '#value' => t("<p>Select the node types to <strong>EXCLUDE</strong> from Xapian's indexing</p>"),
@@ -284,7 +284,7 @@ function xapian_admin() {
     '#type' => 'fieldset',
     '#collapsible' => TRUE,
     '#collapsed' => TRUE,
-    '#title' => t('Xapian Algorithms')
+    '#title' => t('Algorithms')
   );
   $languages = _xapian_languages();
   // See http://xapian.org/docs/stemming.html
-- 
1.7.1

