I am translating some po-files and I would like to run a spell checker over them. I have Ubuntu 10.10 and use gtranslator. As far as I know, gtranslator can't spellcheck the whole file.

I tried ispell: $ ispell lordsawar-0.2.0-pre4.de.po - this doesn't work, as English and German strings, as well as some programming-relevant comments appear in the .po-file.

Do you know any program running on Ubuntu which can spell check po-files?

link|improve this question

67% accept rate
feedback

1 Answer

I've just pushed a po file spell checker to github: https://github.com/holygeek/pospelchek

The behavior imitates aspell wherein it shows you the mispelled word and suggests corrections.

Run it like this:

$ pospelchek -l de_DE lordsawar-0.2.0-pre4.de.po

or to get the man page:

$ pospelchek -h
link|improve this answer
You'll have to install the relevant dictionaries for the languages that you want to spellcheck. These are the same dictionaries that aspell uses. – holygeek Aug 16 '11 at 15:20
feedback

Your Answer

 
or
required, but never shown

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