dumping translate plugin changes into cvs.
[squirrelmail.git] / plugins / translate / config_default.php
CommitLineData
20bc790c 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/** */
14global $translate_default_engine;
15$translate_default_engine='babelfish';
16
17/**
18 *
19 */
20global $translate_babelfish_enabled;
21$translate_babelfish_enabled=true;
22
23/**
24 *
25 */
26global $translate_go_enabled;
27$translate_go_enabled=false;
28
29/**
30 *
31 */
32global $translate_dictionary_enabled;
33$translate_dictionary_enabled=true;
34
35/**
36 *
37 */
38global $translate_google_enabled;
39$translate_google_enabled=true;
40
41/**
42 *
43 */
44global $translate_intertran_enabled;
45$translate_intertran_enabled=true;
46
47/**
48 *
49 */
50global $translate_promt_enabled;
51$translate_promt_enabled=true;
52
53/**
54 *
55 */
56global $translate_otenet_enabled;
57$translate_otenet_enabled=true;
58
59/**
60 *
61 */
62global $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 */
73global $translate_gpltrans_url;
74$translate_gpltrans_url='';
75
76/**
77 *
78 */
79global $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 */
93global $translate_custom_enabled;
94$translate_custom_enabled=false;
95?>