b922bcf9cc8fedf2931f7e0218573e5b72551fa0
[squirrelmail.git] / plugins / translate / config_default.php
1 <?php
2 /**
3 * Default SquirrelMail translate plugin configuration
4 *
5 * Copyright (c) 2004 The SquirrelMail Project Team
6 * Licensed under the GNU GPL. For full terms see the file COPYING.
7 *
8 * @version $Id$
9 * @package plugins
10 * @subpackage translate
11 */
12
13 /** */
14 global $translate_default_engine;
15 $translate_default_engine='babelfish';
16
17 /**
18 *
19 */
20 global $translate_babelfish_enabled;
21 $translate_babelfish_enabled=true;
22
23 /**
24 *
25 */
26 global $translate_go_enabled;
27 $translate_go_enabled=false;
28
29 /**
30 *
31 */
32 global $translate_dictionary_enabled;
33 $translate_dictionary_enabled=true;
34
35 /**
36 *
37 */
38 global $translate_google_enabled;
39 $translate_google_enabled=true;
40
41 /**
42 *
43 */
44 global $translate_intertran_enabled;
45 $translate_intertran_enabled=true;
46
47 /**
48 *
49 */
50 global $translate_promt_enabled;
51 $translate_promt_enabled=true;
52
53 /**
54 *
55 */
56 global $translate_otenet_enabled;
57 $translate_otenet_enabled=true;
58
59 /**
60 *
61 */
62 global $translate_gpltrans_enabled;
63 $translate_gpltrans_enabled=true;
64
65 /**
66 * Sets URL to custom GPLTrans server CGI.
67 *
68 * Original URL (http://www.translator.cx/cgi-bin/gplTrans)
69 * is no longer valid. If string is empty, GPLTrans is disabled
70 * regardless of $translate_gpltrans_enabled setting.
71 * @global string $translate_gpltrans_url
72 */
73 global $translate_gpltrans_url;
74 $translate_gpltrans_url='';
75
76 /**
77 *
78 */
79 global $disable_compose_translate;
80 $disable_compose_translate=true;
81
82 /** Custom translation engine setup */
83
84 /**
85 * Controls inclusion of custom translation engines.
86 *
87 * If you enable custon translation engines, you must include
88 * translate_custom(), translate_custom_showtrad() and
89 * $translate_custom_showoption() functions in your config.
90 * @example config-sample.php
91 * @global bool $translate_custom_enabled
92 */
93 global $translate_custom_enabled;
94 $translate_custom_enabled=false;
95 ?>