One more. I wasn't done.
[squirrelmail.git] / plugins / translate / config_default.php
index b922bcf9cc8fedf2931f7e0218573e5b72551fa0..f31ca98537d68875c1b4c24f65161bddc6705a9b 100644 (file)
@@ -1,63 +1,76 @@
 <?php
+
 /**
  * Default SquirrelMail translate plugin configuration
  *
- * Copyright (c) 2004 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
+ * @copyright &copy; 2004-2007 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  * @version $Id$
  * @package plugins
  * @subpackage translate
  */
 
-/** */
+/**
+ * Default translation engine
+ * @global string $translate_default_engine
+ */
 global $translate_default_engine;
 $translate_default_engine='babelfish';
 
 /**
- *
+ * Babelfish translation engine controls
+ * @global boolean $translate_babelfish_enabled
  */
 global $translate_babelfish_enabled;
 $translate_babelfish_enabled=true;
 
 /**
+ * Go.com translation engine controls
  *
+ * Translation is no longer available
+ * @global boolean $translate_go_enabled
  */
 global $translate_go_enabled;
 $translate_go_enabled=false;
 
 /**
- *
+ * Dictionary.com translation engine controls
+ * @global boolean $translate_dictionary_enabled
  */
 global $translate_dictionary_enabled;
 $translate_dictionary_enabled=true;
 
 /**
- *
+ * Google translation engine controls
+ * @global boolean $translate_google_enabled
  */
 global $translate_google_enabled;
 $translate_google_enabled=true;
 
 /**
- *
+ * Intertran translation engine controls
+ * @global boolean $translate_intertran_enabled
  */
 global $translate_intertran_enabled;
 $translate_intertran_enabled=true;
 
 /**
- *
+ * Promt translation engine controls
+ * @global boolean $translate_promt_enabled
  */
 global $translate_promt_enabled;
 $translate_promt_enabled=true;
 
 /**
- *
+ * Otenet translation engine controls
+ * @global boolean $translate_otenet_enabled
  */
 global $translate_otenet_enabled;
 $translate_otenet_enabled=true;
 
 /**
- *
+ * Gpltrans translation engine controls
+ * @global boolean $translate_gpltrans_enabled
  */
 global $translate_gpltrans_enabled;
 $translate_gpltrans_enabled=true;
@@ -74,7 +87,10 @@ global $translate_gpltrans_url;
 $translate_gpltrans_url='';
 
 /**
+ * Translation in compose controls
  *
+ * Currently unimplemened and disabled
+ * @global boolean $disable_compose_translate
  */
 global $disable_compose_translate;
 $disable_compose_translate=true;
@@ -82,14 +98,13 @@ $disable_compose_translate=true;
 /** Custom translation engine setup */
 
 /**
- * Controls inclusion of custom translation engines.
+ * Controls inclusion of custom translation engine.
  *
- * If you enable custon translation engines, you must include
- * translate_custom(), translate_custom_showtrad() and
+ * If you enable custom translation engines, you must include
+ * translate_form_custom(), translate_custom_showtrad() and
  * $translate_custom_showoption() functions in your config.
- * @example config-sample.php
+ * @example plugins/translate/config_sample.php
  * @global bool $translate_custom_enabled
  */
 global $translate_custom_enabled;
 $translate_custom_enabled=false;
-?>
\ No newline at end of file