Creating an polish.dic for IntelliJ IDEA

Posted by Ktoso on 28/08/2010 – 15:01

I’ve been coding a lot GWT/Android lately, and was using IntelliJ IDEA for this – a very nice IDE. (Yup, I’ve even got an personal license now). That said, the spellchecking is really important to me, sadly I couldnt find an ready do download polish.dic file which IntelliJ would then use to spellcheck our i18n strings – bur fear not, hese is an cool one liner that will create such polish dictionary:

aspell --lang pl dump master | aspell --lang pl expand | tr ' ' '\n' > polish.dic

You’ll have to install the polish aspell package of your distro of course before you launch this command ;-) Then just create an dedicated folder dor *.dic files and show IntelliJ to use it. Done – perfect spell checking in your IDE… and even while committing changes: http://blogs.jetbrains.com/idea/2010/08/no-more-misspellings-in-your-vcs-commit-comments/



This post is under “coding, english, java, polish, terminal heroes” and has 3 respond so far.

3 Responds so far- Add one»

  1. 1. Seban Said:

    Hey! Thanks for tip to do create polish dictionary. Tomorrow I’ll test it in work!

  2. 2. Your name Said:

    Thx!

  3. 3. Przemek Said:

    Nice !

    ps.Szkoda że nie dołączyłeś gotowego pliczku (nie każdy roboli na uniksie z zainstalowanym aspelem)

Post a reply