home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Blogs / wordpress2.6.exe / wordpress2.6 / wp-includes / js / tinymce / plugins / spellchecker / config.php next >
Encoding:
PHP Script  |  2008-01-17  |  637 b   |  22 lines

  1. <?php
  2.     // General settings
  3.     $config['general.engine'] = 'GoogleSpell';
  4.     //$config['general.engine'] = 'PSpell';
  5.     //$config['general.engine'] = 'PSpellShell';
  6.  
  7.     // PSpell settings
  8.     $config['PSpell.mode'] = PSPELL_FAST;
  9.     $config['PSpell.spelling'] = "";
  10.     $config['PSpell.jargon'] = "";
  11.     $config['PSpell.encoding'] = "";
  12.  
  13.     // PSpellShell settings
  14.     $config['PSpellShell.mode'] = PSPELL_FAST;
  15.     $config['PSpellShell.aspell'] = '/usr/bin/aspell';
  16.     $config['PSpellShell.tmp'] = '/tmp';
  17.  
  18.     // Windows PSpellShell settings
  19.     //$config['PSpellShell.aspell'] = '"c:\Program Files\Aspell\bin\aspell.exe"';
  20.     //$config['PSpellShell.tmp'] = 'c:/temp';
  21. ?>
  22.