How can I merge two spell checker dictionaries?

Sadaharu Wakisaka

I'm not a native English speaker, some words are remembered as English(UK), most of the words are remembered as English(US)

Sometimes I feel very much annoying "favourite" and "favorite are counted as a wrong spelling for each other. But I need a spell checker for my careless mistakes. I know one way, to add the words each time I saw it into the dictionary, I'm too lazy for that and it only apply for one machine, I'd like to have this for several different machines.

EDIT: I really hope the spell checker accept both UK and US spelling in one dictionary, so I can type "favourite" or "favorite" up to my mood. I appreciate you are telling me the way to do this, especially on Firefox and Google chrome browser, or the system-wide.

David Ljung Madison Stellar

In Chrome it's very simple - go to "chrome://settings/languages" and click on "Add"

In Firefox it's easy to select and add single dictionaries by right clicking on a textarea field (text input with multiple lines) by selecting "Check Spelling" and under "Languages" click on "Add Dictionaries". Unfortunately it won't allow you to select more than one language. But you can hack together a new dictionary yourself if you're comfortable with editing files. You can find the dictionaries by running this from your home directory:

% find ~/.mozilla/firefox -iname *.dic

Then you want to combine the contents of the .dic and the .aff files into one of the dictionaries (save a backup). The first line of the .dic file is a count of all the words (# lines minus 1), so you need to update that in the new file. Note that you won't want to update the modified dictionary in the future (unless you made a mistake and need to fix it) and if your default dictionary doesn't show up in that list, then just add it as you would any other language so you can get the dictionary files.

For "system-wide" it really depends on what dictionary the application is using. Larger apps like Chrome and Firefox tend to maintain their own dictionaries.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I merge two nested dictionaries together?

From Dev

How can I merge two dictionaries with multiple key value pairs

From Dev

How to disable the spell checker on an AutoSuggestBox

From Dev

How to change spell checker language

From Dev

How do I merge two dictionaries in C#

From Dev

How to merge two dictionaries in javascript

From Java

How do I merge two dictionaries in a single expression in Python (taking union of dictionaries)?

From Dev

How do I merge two dictionaries in a single expression (taking union of dictionaries)?

From Dev

How do I merge two dictionaries in a single expression (taking union of dictionaries)?

From Dev

CKEditor: How to hide the spell checker button

From Dev

How to implement Solr Spell Checker for compound words?

From Dev

How can I merge two JObject?

From Dev

How can I efficiently merge these two datasets?

From Dev

How can I merge two vectors?

From Dev

How can I merge two arrays into a dictionary?

From Dev

How can I merge two shapes in svg?

From Dev

How can I merge two folders in Windows?

From Dev

How can I Merge two JavaScript objects?

From Dev

How can I use spell check in Rmarkdown?

From Dev

How do I remove/ignore words from gedit's spell checker dictionary?

From Dev

How to merge two dictionaries with same key names

From Dev

How can I create a lowercase checker?

From Dev

How can I speed up a primality checker?

From Dev

merge two dictionaries by key

From Dev

merge two dictionaries by key

From Dev

Merge two dictionaries

From Dev

How to install spell check dictionaries in Gedit on Windows

From Dev

How can I merge multiple dictionaries and add the values of the same key? (Python)

From Dev

Spell checker in android

Related Related

HotTag

Archive