Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

For spell checking purpose I would like to install an addictional "platform dictionary" in my Eclipse IDE.

You can see the list of platform dictionaries installed in Window > Preferences > General > Editors > Text Editors > Spelling, in the field "Platform dictionary". In my Helios Service Release 1 there are only english of UK or USA. I would to put the language of my country, so I can write comments in my language and have spell check. Eclipse help doesn't explain how.

share|improve this question

2 Answers

up vote 4 down vote accepted

I am not sure you can add a "Platform dictionary", so that leaves you with a "user defined" one:

alt text

Eclipse supports a standard one-word-per-line format for the 'dictionary' file.
You can have several of those at Kevin's Word List on Sourceforge.net, including links to other sites.

share|improve this answer
1  
Even if it seems a strange design choice in Eclipse, it works! Thanks! To find the wordlist for my language I found usefull searching the internet for "<language> wordlist". – bluish Dec 7 '10 at 9:15

If you can't find your language word list you can generate one using aspell.

aspell --lang=pl dump master | aspell --lang=pl expand | tr ' ' '\n' > pl.dict

In Ubuntu aspell generates list in UTF-8 in other systems you can add encoding option.

--encoding=utf-8
share|improve this answer
1  
it slows down eclipse too much. my cpu stays running at 100% and eclipse freezes with any open text-file – Miguel Jul 26 '12 at 19:59
Easy way to get a large word list. You have to install the Aspell language package first. – Lii Nov 15 '12 at 11:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.