Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I specify the interface language for CKEditor (jquery version)?

My code atm is this simple:

$(document).ready(function(){
   $('textarea').ckeditor();
});

It works flawlessly, I just need to add one more thing: I need to specify the interface language (localisation). I tried reading the CKEditor help site, but it isn't very helpful.

Can anyone tell me where and how do I add any code to specify the language?

like image 719
Frantisek Avatar asked May 18 '11 18:05

Frantisek


2 Answers

I found an easy way to set up your language to CKE 4 editor :

 1. Go to config.js -> 
 2. Then change this line in config.js ->
 3. config.language = "en"
like image 52
amir biabi Avatar answered Nov 02 '22 07:11

amir biabi


Try this:

$('textarea').ckeditor({language: 'de'});
like image 37
ThiefMaster Avatar answered Nov 02 '22 07:11

ThiefMaster