Thunderbird-从菜单中删除未使用的字典


9

我将Thunderbird与两组字典结合使用:英语和西班牙语。在拼写检查器菜单中,我找到约30个本地化词典(所有西班牙语国家,英语:美国,英格兰,加拿大)。

十分烦人的是,每当我需要查找单个适当的字典时,我都会看到所有其他字典堆(对我来说毫无用处)。

有什么方法可以从菜单中删除未使用的字典,并保留我真正使用的2或3个字典?

Answers:


4

我找到的解决方案是从/ usr / share / myspell / dicts中删除未使用的字典。

* .dic和* .aff文件,仅保留我使用的三种语言:en-US.dic,en-US.aff,es.dic,es-ES.dic,es-ES.aff。

删除任何内容之前,请备份整个目录。


4

我做了什么:

  1. 删除/ usr / lib / thunderbird /中的词典符号链接
  2. 手动安装词典(“工具”>“选项”或“编辑”>“首选项”,然后是“合成”,然后单击“下载更多词典”)。
  3. 添加dpkg-divert规则以防止每次更新Thunderbird时都恢复链接。

在命令行中输入:

sudo rm /usr/lib/thunderbird/dictionaries
sudo dpkg-divert --add /usr/lib/thunderbird/dictionaries

然后按照上面的说明在Thunderbird中安装所需的词典。



1

在我的系统上,我安装了一堆hunspell-en- *软件包。以下命令摆脱了这些命令,这些字典从菜单中消失了:

sudo apt purge hunspell-en-ca hunspell-en-gb hunspell-en-za

这在这里不起作用,因为这些软件包名称不存在,只有hunspell-en只是在/ usr / share / hunspell /中指向一个.dic和.aff文件的符号链接。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.