]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-includes/js/tinymce/plugins/spellchecker/config.php
Wordpress 2.3.2
[autoinstalls/wordpress.git] / wp-includes / js / tinymce / plugins / spellchecker / config.php
1 <?php
2         $spellCheckerConfig = array();
3
4         // Spellchecker class use
5         // require_once("classes/TinyPspellShell.class.php"); // Command line pspell
6         require_once("classes/TinyGoogleSpell.class.php"); // Google web service
7         // require_once("classes/TinyPspell.class.php"); // Internal PHP version
8
9         // General settings
10         $spellCheckerConfig['enabled'] = true;
11
12         // Default settings
13         $spellCheckerConfig['default.language'] = 'en';
14         $spellCheckerConfig['default.mode'] = PSPELL_FAST;
15
16         // Normaly not required to configure
17         $spellCheckerConfig['default.spelling'] = "";
18         $spellCheckerConfig['default.jargon'] = "";
19         $spellCheckerConfig['default.encoding'] = "";
20
21         // Pspell shell specific settings
22         $spellCheckerConfig['tinypspellshell.aspell'] = '/usr/bin/aspell';
23         $spellCheckerConfig['tinypspellshell.tmp'] = '/tmp';
24 ?>