Search code examples
jqueryckeditor

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?


Solution

  • Try this:

    $('textarea').ckeditor({language: 'de'});