Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Atom: Cannot load the system dictionary for en_IN. Checked the following paths for dictionary files:

When I open Atom editor it shows the following error message. How to resolve the same?

enter image description here

like image 449
KARTHIKEYAN.A Avatar asked Jun 21 '18 07:06

KARTHIKEYAN.A


2 Answers

I have resolved this problem using language update in editor following way:

1) Atom → Edit → Preferences → Packages

2) search for "spell check" and deselect Use Locales button and mention en-US (editor support language) in custom bar.

3) After restart the editor.

enter image description here

like image 169
KARTHIKEYAN.A Avatar answered Sep 23 '22 08:09

KARTHIKEYAN.A


You might be missing the system dictionaries.

Go to settings with ctrl-, and look in Packages for the package spell-check. Enter its settings.

  1. Make sure Use Locales is selected (default, I believe).
  2. Write the necessary locales in the Locales box, for example en_US, pt_PT would work for both American English and European Portuguese. This is useful for those who write in multiple languages.
  3. Install the necessary dictionaries on your system. In this case that would be:

    $ sudo apt install hunspell-pt-pt hunspell-en-us`
    
like image 38
Daniel Avatar answered Sep 23 '22 08:09

Daniel