summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-05-02 19:19:29 +0200
committerAleksander Machniak <alec@alec.pl>2014-05-02 19:38:52 +0200
commit9b0173c8812b144399e11cea5c6536f4950c993b (patch)
tree43fe1aa43626d75416b5ae0b27376c5498f1ebd2
parentac828b735b9b4b0c969d59c60dcb17034202063f (diff)
Improve spellcheck_engine hint about 'googie' option
-rw-r--r--installer/config.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/installer/config.php b/installer/config.php
index a1f76d860..b46d32bfa 100644
--- a/installer/config.php
+++ b/installer/config.php
@@ -152,7 +152,7 @@ echo $check_spell->show(intval($RCI->getprop('enable_spellcheck')), array('value
<?php
$select_spell = new html_select(array('name' => '_spellcheck_engine', 'id' => "cfgspellcheckengine"));
if (extension_loaded('pspell'))
- $select_spell->add('pspell', 'pspell');
+ $select_spell->add('Pspell', 'pspell');
if (extension_loaded('enchant'))
$select_spell->add('Enchant', 'enchant');
$select_spell->add('Googie', 'googie');
@@ -163,7 +163,7 @@ echo $select_spell->show($RCI->is_post ? $_POST['_spellcheck_engine'] : 'pspell'
?>
<label for="cfgspellcheckengine">Which spell checker to use</label><br />
-<p class="hint">GoogieSpell implies that the message content will be sent to Google in order to check the spelling.</p>
+<p class="hint">Googie implies that the message content will be sent to external server to check the spelling.</p>
</dd>
<dt class="propname">identities_level</dt>