2b0713315f
git-svn-id: https://develop.svn.wordpress.org/trunk@6632 602fd350-edb4-49c9-b593-d223f7449a82
22 lines
637 B
PHP
22 lines
637 B
PHP
<?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';
|
|
?>
|