Hi Daniel,

On Tue, Aug 31, 2004 at 01:35:34PM +0300, Daniel Balan wrote:
> Is the Spanish spell check available in OTRS 1.2.3 ?
> If so how can I enable it ?
> Are there any other spell checkers available ?

OTRS can use ispell (http://ficus-www.cs.ucla.edu/geoff/ispell.html) 
or aspell (http://aspell.net/) and many dictionaries in many 
languages are avialable.

See: http://ficus-www.cs.ucla.edu/geoff/ispell-dictionaries.html

You need to install ispell and the dictionaries. Then you have
for configure Kernel/Config.pm and add your new dictionaries to
PreferencesGroups->SpellDict->Data:

[Kernel/Config.pm]

    $Self->{SpellChecker} = '/usr/bin/ispell';
    $Self->{SpellCheckerDictDefault} = 'english';

    $Self->{PreferencesGroups}->{SpellDict} = {
        Colum => 'Other Options',
        Label => 'Spelling Dictionary',
        Desc => 'Select your default spelling dictionary.',
        Type => 'Generic',
        Data => {
            # installed dict catalog (check your insalled catalogues, e. g. deutsch 
-=> german!)
            # dict => frontend (ispell)
            'english' => 'English',
            'deutsch' => 'Deutsch',
            # dict => frontend (aspell)
#            'english' => 'English',
#            'german' => 'Deutsch',
        },
        PrefKey => 'UserSpellDict',
        Activ => 1,
    };
[...]

> Cheers
> Daniel

  Martin Edenhofer

--
((otrs.de)) :: OTRS GmbH :: Norsk-Data-Str. 1 :: 61352 Bad Homburg
        http://www.otrs.de/ :: Manage your communication! 

_______________________________________________
OTRS mailing list: otrs - Webpage: http://otrs.org/
Archive: http://lists.otrs.org/pipermail/otrs
To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/otrs
Support oder Consulting f�r Ihr OTRS System?
=> http://www.otrs.de/

Reply via email to