Index: scripturefilter/scripturefilter.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/scripturefilter/scripturefilter.module,v
retrieving revision 1.8
diff -u -r1.8 scripturefilter.module
--- scripturefilter/scripturefilter.module	1 Aug 2006 20:54:56 -0000	1.8
+++ scripturefilter/scripturefilter.module	18 Feb 2007 19:43:07 -0000
@@ -25,36 +25,39 @@
       return scripturize($text, variable_get("scripturefilter_default_translation_$format", DEFAULT_BIBLE_TRANSLATION));
      
     case 'settings':
-      $form['filter_scripturefilter'] = array('#type' => 'fieldset',
-					      '#title' => 'Scripture filter',
-					      '#collapsible' => TRUE,
-					      '#description' => t('This filter enables content that has a reference to Scripture to be linked to one of several online Bibles, such as BibleGateway, the ESV online Bible and the NET Bible.'));
+      $form['filter_scripturefilter'] = array(
+        '#type' => 'fieldset',
+        '#title' => 'Scripture filter',
+        '#collapsible' => TRUE,
+        '#description' => t('This filter enables content that has a reference to Scripture to be linked to one of several online Bibles, such as BibleGateway, the ESV online Bible and the NET Bible.')
+      );
 
-      $form['filter_scripturefilter']["scripturefilter_default_translation_$format"] =
-	array('#type' => 'select',
-	      '#title' => t('Default Bible translation'),
-	      '#default_value' => variable_get("scripturefilter_default_translation_$format", DEFAULT_BIBLE_TRANSLATION),
-	      '#options' => array("KJ21" => t("21st Century King James Version"),
-				  "ASV" => t("American Standard Version"),
-				  "AMP" => t("Amplified Bible"),
-				  "CEV" => t("Contemporary English Version"),
-				  "DARBY" => t("Darby Translation"),
-				  "ESV" => t("English Standard Version"),
-				  "KJV" => t("King James Version"),
-				  "MSG" => t("The Message"),
-				  "NASB" => t("New American Standard Bible"),
-				  "NET" => t("New English Translation"),
-				  "NIRV" => t("New International Reader's Version"),
-				  "NIV" => t("New International Version"),
-				  "NIV-UK" => t("New International Version - UK"),
-				  "NKJV" => t("New King James Version"),
-				  "NLT" => t("New Living Translation"),
-				  "TNIV" => t("Today's New International Version"),
-				  "WE" => t("Worldwide English New Testament"),
-				  "WYC" => t("Wycliffe New Testament"),
-				  "YLT" => t("Young's Literal Translation"),
-				  ),
-	      );
+      $form['filter_scripturefilter']["scripturefilter_default_translation_$format"] = array(
+        '#type' => 'select',
+        '#title' => t('Default Bible translation'),
+        '#default_value' => variable_get("scripturefilter_default_translation_$format", DEFAULT_BIBLE_TRANSLATION),
+        '#options' => array(
+          "KJ21" => t("21st Century King James Version"),
+          "ASV" => t("American Standard Version"),
+          "AMP" => t("Amplified Bible"),
+          "CEV" => t("Contemporary English Version"),
+          "DARBY" => t("Darby Translation"),
+          "ESV" => t("English Standard Version"),
+          "KJV" => t("King James Version"),
+          "MSG" => t("The Message"),
+          "NASB" => t("New American Standard Bible"),
+          "NET" => t("New English Translation"),
+          "NIRV" => t("New International Reader's Version"),
+          "NIV" => t("New International Version"),
+          "NIV-UK" => t("New International Version - UK"),
+          "NKJV" => t("New King James Version"),
+          "NLT" => t("New Living Translation"),
+          "TNIV" => t("Today's New International Version"),
+          "WE" => t("Worldwide English New Testament"),
+          "WYC" => t("Wycliffe New Testament"),
+          "YLT" => t("Young's Literal Translation"),
+        ),
+      );
       return $form;
 
     default:
