]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-includes/js/tinymce/plugins/spellchecker/config.php
Wordpress 3.1.4-scripts
[autoinstalls/wordpress.git] / wp-includes / js / tinymce / plugins / spellchecker / config.php
1 <?php
2 /**
3  * config.php
4  *
5  * @package MCManager.includes
6  */
7         // General settings
8         $config['general.engine'] = 'GoogleSpell';
9         //$config['general.engine'] = 'PSpell';
10         //$config['general.engine'] = 'PSpellShell';
11         //$config['general.remote_rpc_url'] = 'http://some.other.site/some/url/rpc.php';
12
13         // PSpell settings
14         $config['PSpell.mode'] = PSPELL_FAST;
15         $config['PSpell.spelling'] = "";
16         $config['PSpell.jargon'] = "";
17         $config['PSpell.encoding'] = "";
18
19         // PSpellShell settings
20         $config['PSpellShell.mode'] = PSPELL_FAST;
21         $config['PSpellShell.aspell'] = '/usr/bin/aspell';
22         $config['PSpellShell.tmp'] = '/tmp';
23
24         // Windows PSpellShell settings
25         //$config['PSpellShell.aspell'] = '"c:\Program Files\Aspell\bin\aspell.exe"';
26         //$config['PSpellShell.tmp'] = 'c:/temp';
27 ?>