]> git.donarmstrong.com Git - roundcube.git/blob - program/js/tiny_mce/plugins/spellchecker/config.php
Imported Upstream version 0.1.1
[roundcube.git] / program / js / tiny_mce / plugins / spellchecker / config.php
1 <?php\r
2         $spellCheckerConfig = array();\r
3 \r
4         // Spellchecker class use\r
5         // require_once("classes/TinyPspellShell.class.php"); // Command line pspell\r
6         require_once("classes/TinyGoogleSpell.class.php"); // Google web service\r
7         // require_once("classes/TinyPspell.class.php"); // Internal PHP version\r
8 \r
9         // General settings\r
10         $spellCheckerConfig['enabled'] = true;\r
11 \r
12         // Default settings\r
13         $spellCheckerConfig['default.language'] = 'en';\r
14         $spellCheckerConfig['default.mode'] = PSPELL_FAST;\r
15 \r
16         // Normaly not required to configure\r
17         $spellCheckerConfig['default.spelling'] = "";\r
18         $spellCheckerConfig['default.jargon'] = "";\r
19         $spellCheckerConfig['default.encoding'] = "";\r
20 \r
21         // Pspell shell specific settings\r
22         $spellCheckerConfig['tinypspellshell.aspell'] = '/usr/bin/aspell';\r
23         $spellCheckerConfig['tinypspellshell.tmp'] = '/tmp';\r
24         \r
25         $spellCheckerConfig['googlespell.url'] = 'https://www.google.com/tbproxy/spell?hl=en'\r
26 ?>