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