#!/bin/bash

#EduLinux 2004
DIR=/usr/lib/mozilla-thunderbird-0.5/components/myspell
if [ -d $DIR ]; then
  TB=$DIR
fi
DIR=/usr/share/dict/ooo
if [ -d $DIR ]; then
  OO=$DIR
fi

#Installation manuelle
DIR=/opt/thunderbird/components/myspell
if [ -d $DIR ]; then
  TB=$DIR
fi
DIR=/opt/openoffice.org2.0/share/dict/ooo
if [ -d $DIR ]; then
  OO=$DIR
fi

ln -sf $OO/fr_FR.aff $TB/fr-CA.aff
ln -sf $OO/fr_FR.dic $TB/fr-CA.dic
