-
+ 5D27AC31B4C3C6FCE0342B07EC2C24CA111E562D19548746B0E9524CD103879F8135C0899A05B0B3729A5D646C4071441719A7863DB812A8639DBE11882C1051
mp-wp/wp-includes/js/tinymce/plugins/spellchecker/config.php
(0 . 0)(1 . 27)
123815 <?php
123816 /**
123817 * config.php
123818 * @package MCManager.includes
123819 * @author Moxiecode
123820 */
123821 // General settings
123822 $config['general.engine'] = 'GoogleSpell';
123823 //$config['general.engine'] = 'PSpell';
123824 //$config['general.engine'] = 'PSpellShell';
123825 //$config['general.remote_rpc_url'] = 'http://some.other.site/some/url/rpc.php';
123826
123827 // PSpell settings
123828 $config['PSpell.mode'] = PSPELL_FAST;
123829 $config['PSpell.spelling'] = "";
123830 $config['PSpell.jargon'] = "";
123831 $config['PSpell.encoding'] = "";
123832
123833 // PSpellShell settings
123834 $config['PSpellShell.mode'] = PSPELL_FAST;
123835 $config['PSpellShell.aspell'] = '/usr/bin/aspell';
123836 $config['PSpellShell.tmp'] = '/tmp';
123837
123838 // Windows PSpellShell settings
123839 //$config['PSpellShell.aspell'] = '"c:\Program Files\Aspell\bin\aspell.exe"';
123840 //$config['PSpellShell.tmp'] = 'c:/temp';
123841 ?>