Roundcube Community Forum

Release Support => Older Versions => Release Candidate 1 => Topic started by: web4you on June 13, 2007, 05:49:42 PM

Title: Spellcheck
Post by: web4you on June 13, 2007, 05:49:42 PM
Is it possible to remove spellcheck link and icon from Roundcube, since it is not working when I use languages other than English?
Thanks  
Title: Re: Spellcheck
Post by: Jo_shi on June 21, 2007, 10:19:47 AM
I am using German and it's working fine! Look at the main.inc.php there are two options you have to edit.
Code: [Select]
// the default locale setting
$rcmail_config['locale_string'] = 'de';
and
Code: [Select]
// 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
$rcmail_config['spellcheck_languages'] = NULL;

Greetings Jo_shi
Title: Re: Spellcheck
Post by: SKaero on June 21, 2007, 01:34:46 PM
If that don't work and you still want to remove it then go to skins/default/templates/compose.html then remove
Code: [Select]
<roundcube:button command=&quot;spellcheck&quot; imageSel=&quot;/images/buttons/spellcheck_sel.png&quot; imageAct=&quot;/images/buttons/spellcheck_act.png&quot; imagePas=&quot;/images/buttons/spellcheck_pas.png&quot; width=&quot;32&quot; height=&quot;32&quot; title=&quot;checkspelling&quot; />
Title: Re: Spellcheck
Post by: web4you on June 22, 2007, 12:39:36 PM
I have tried to remove it but it is still there.