I am using CKEditor in my project and I need to set its input language as Farsi.
I already done this with some textboxes and textareas with a .js file named "FarsiType.js".
FarsiType.js is here : http://www.farsitype.ir/FarsiType.js
When we add an attribute lang="fa" with textbox control its input will be change to Farsi language.
like this :
<asp:TextBox runat="server" ID="tr" lang="fa" dir="rtl"/>
I need to set Farsi in put for CKEditor too. So how do i set its text input to Farsi language ?
Please help me