Author Topic: Spellcheck  (Read 6436 times)

Offline web4you

  • Newbie
  • *
  • Posts: 8
Spellcheck
« 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  

Offline Jo_shi

  • Jr. Member
  • **
  • Posts: 10
Re: Spellcheck
« Reply #1 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

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,873
    • SKaero - Custom Roundcube development
Re: Spellcheck
« Reply #2 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; />

Offline web4you

  • Newbie
  • *
  • Posts: 8
Re: Spellcheck
« Reply #3 on: June 22, 2007, 12:39:36 PM »
I have tried to remove it but it is still there.