Click here to Skip to main content
16,013,516 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more: (untagged)
Can any One just help me How to add our own Plugins like Virtual Keyboard? or How to type different language from Keyboard within CKEditor?
Posted
Updated 2-Aug-16 21:20pm
v2
Comments
abbaspirmoradi 17-Sep-13 6:44am    
first clear what you want?
AnsumanSahoo 17-Sep-13 6:54am    
I want to type different languages into CKEditor from through keyboard? It is possible in other editor like TinyMCE but not working in CKEditor
Richard MacCutchan 17-Sep-13 6:49am    
Try the documentation.
AnsumanSahoo 17-Sep-13 6:57am    
I have checked it but unable to get any solution
AnsumanSahoo 17-Sep-13 8:08am    
Sory bt the code u have send that for only changing the lang. of CKEditor. for eg. I want french lang. typing from my keyboard when i enter some txt from my keyboard it should be in french lang. entering in the editor

not problem ,go to ../ckeditor/config.js and change your language like this:


JavaScript
CKEDITOR.editorConfig = function( config )
   {

    config.language = 'fr';
   };
 
Share this answer
 
v4
CKEDITOR.editorConfig = function( config )
{

config.language = 'fr';
};


Its Not Work....
Only Change UI language .

How to Write Content In Multiple language .??
Like (Gujarati,hindi,English,Arabic) ???
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900