"; } if($spell_chk_lang) { echo "Currently Selected Spell-check Language: $spell_chk_lang
"; } ?>
Choose Language
Either no language dictionaries are installed or the aspell binary was not found
'; if($retv) { echo '
On some systems aspell may not be in a path accessible to the server
'; } echo "You currently have aspell set to
$aspell_prog
in $iswindowsScript"; } $count =1; $next = ""; echo '
'; foreach ($dicts as $dict) { if(preg_match('/^([a-z]+)\-?.*$/', $dict, $matches)) { if($matches[1] != $next) { $count =1; $next=$matches[1]; if(isset($langs[$next])) { echo '
' . $langs[$next] . '
'; } } } $selected = ''; if($dict == $spell_chk_lang) $selected = 'checked'; echo "
$dict "; $count++; if($count %4 == 0) { $count =1; echo "
"; } } echo '
'; ?>