Thanks for the reply.
I already solved the problem. I got help from an ubuntu forum.
I changed this in initialize.py file:
ef initialize_gtkspell(self):
global spell_support
if self.posix and spell_support:
if self.config.get('use_gtkspell', False) == 'False':
if self.config.get('spell_notes', True) == 'False':
self.obs_spell = gtkspell.Spell(self.e_obs)
try:
self.obs_spell.set_language(self.config.get('spell_lang', 'en'))
except:
self.obs_spell.set_language('en')
gutils.info(self, _("Language not available. Defaulting to english."), self.w_preferences)
self.config['spell_lang'] = 'en'
self.config.save()
if self.config.get('spell_plot', True)=='False':
self.plot_spell = gtkspell.Spell(self.e_plot)
try:
self.plot_spell.set_language(self.config.get('spell_lang', 'en'))
except:
self.plot_spell.set_language('en')
else:
gdebug.debug("Spellchecker is not available")
Where is now " =='False' ", it was " =='True' "
But I've got another question:
When I export the database to html, griffith creates two .xml files and a dir with the movie covers, but when I try to open the .xml firefox gives this error:
XML Parsing Error: not well-formed
Location: file:///home/insomnia/Desktop/page_1.xml
Line Number 20, Column 20: <seen>Sim</seen><@classification>
Is this normal?
