I'm setting up a test environment with Cucumber, Sikuli and Eclipse in my company. I've managed to get everything working just fine, but now I need to make the .feature files work in portuguese.
As far as I know, all I had to do was put the comment #language: pt
at the beginning of the .feature file, but it's not working.
I also ran the commands cucumber --i18n help
and cucumber --i18n pt
to check if the language is really there, and it is.
Is there another configuration I'm not aware of?
I'm using these jars:
First of all, thanks to everyone who helped me.
After quite some time I finally found out the problem.
Sébastien Le Callonnec's answer on this thread made it clear to me. The problem was with the Natural plugin.
Everything was working correctly from the start but it turns out that Natural only supports english. Thats why it was throwing errors but the test was executing. After uninstalling the plugin the errors disappeared.