From 01a8c54f76dcbbf4da4be7471dbe04ba7401bec8 Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Fri, 01 May 2009 11:57:33 -0400
Subject: [PATCH] Applied patch for pspell language configuration (#1485822)
---
installer/rcube_install.php | 8 +++++---
config/main.inc.php.dist | 3 +--
2 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist
index 8bb68cb..e890ef3 100644
--- a/config/main.inc.php.dist
+++ b/config/main.inc.php.dist
@@ -219,8 +219,7 @@
// These languages can be selected for spell checking.
// Configure as a PHP style hash array: array('en'=>'English', 'de'=>'Deutsch');
-// Leave empty for default set of Google spell check languages, should be defined
-// when using local Pspell extension
+// Leave empty for default set of available language.
$rcmail_config['spellcheck_languages'] = NULL;
// path to a text file which will be added to each sent message
diff --git a/installer/rcube_install.php b/installer/rcube_install.php
index b2b8257..14fe5ee 100644
--- a/installer/rcube_install.php
+++ b/installer/rcube_install.php
@@ -244,9 +244,11 @@
$out['dependencies'][] = array('prop' => 'spellcheck_engine',
'explain' => 'This requires the <tt>pspell</tt> extension which could not be loaded.');
}
- if (empty($this->config['spellcheck_languages'])) {
- $out['dependencies'][] = array('prop' => 'spellcheck_languages',
- 'explain' => 'You should specify the list of languages supported by your local pspell installation.');
+ if (!empty($this->config['spellcheck_languages'])) {
+ foreach ($this->config['spellcheck_languages'] as $lang => $descr)
+ if (!pspell_new($lang))
+ $out['dependencies'][] = array('prop' => 'spellcheck_languages',
+ 'explain' => "You are missing pspell support for language $lang ($descr)");
}
}
--
Gitblit v1.9.1