summaryrefslogtreecommitdiffstats
path: root/wp-includes/js/tinymce/plugins/spellchecker/config.php
blob: 96f273a8d60efbc1164c5f959e88838735150dcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
	// General settings

	$config['general.engine'] = 'GoogleSpell';
	//$config['general.engine'] = 'PSpell';

	//$config['general.engine'] = 'PSpellShell';


	// PSpell settings

	$config['PSpell.mode'] = PSPELL_FAST;
	$config['PSpell.spelling'] = "";
	$config['PSpell.jargon'] = "";
	$config['PSpell.encoding'] = "";

	// PSpellShell settings

	$config['PSpellShell.mode'] = PSPELL_FAST;
	$config['PSpellShell.aspell'] = '/usr/bin/aspell';
	$config['PSpellShell.tmp'] = '/tmp';

	// Windows PSpellShell settings

	//$config['PSpellShell.aspell'] = '"c:\Program Files\Aspell\bin\aspell.exe"';

	//$config['PSpellShell.tmp'] = 'c:/temp';

?>