Internationalization
[squirrelmail.git] / plugins / squirrelspell / sqspell_config.php
CommitLineData
849bdf42 1<?php
849bdf42 2
9804bcde 3 /**
4 ** sqspell_config.php -- SquirrelSpell Configuration file.
5 **
6 ** Copyright (c) 1999-2001 The SquirrelMail development team
7 ** Licensed under the GNU GPL. For full terms see the file COPYING.
8 **
9 **
10 **
11 ** $Id$
12 **/
849bdf42 13
9804bcde 14 /* Just for poor wretched souls with E_ALL. :) */
15 global $username, $data_dir;
849bdf42 16
849bdf42 17
2b5a7157 18 $SQSPELL_APP = array( 'English' => 'ispell -a',
19 'Spanish' => 'ispell -d spanish -a' );
9804bcde 20 $SQSPELL_APP_DEFAULT = 'English';
21 $SQSPELL_WORDS_FILE = "$data_dir/$username.words";
22 $SQSPELL_EREG = 'ereg';
23 $SQSPELL_SOUP_NAZI = 'Mozilla/3, Mozilla/2, Opera 4, Opera/4, Macintosh';
849bdf42 24
9804bcde 25?>