It is only working for en_us but it is not working for other language like en_gb.
Steps that I had tried to solve the problem:
1. Added custom servlet SpellCheckServlet.java to my code.
2. Added spellcheck plugin in RTE.
3. Added “spellcheckerUrl” property to spellcheck plugin in the rte of my custom component with custom servlet path as its value.
E.g.: “/bin/en_gb/spellcheck”
[Reference: http://dev.day.com/docs/en/cq/5-4/widgets-api/index.html?class=CQ.form.rte.plugins.SpellCheckerPlugi...]
4. I am not able to call my custom servlet.
Every time default spellchecker servlet of Cq5 is called (e.g. "/libs/cq/ui/rte/spellcheck").
Question 1: How can i bypass this default OOB servlet call and call my servlet?
Question 2: Any other solution to fix this issue?