Add lang button with 5 languages in ckeditor see BT#15166

pull/3063/head
Julio 7 years ago
parent c54685608f
commit bdd6728863
  1. 1
      main/template/rainbow/javascript/editor/ckeditor/config_js.tpl
  2. 2
      src/Chamilo/CoreBundle/Component/Editor/CkEditor/Toolbar/Documents.php

@ -145,6 +145,7 @@ CKEDITOR.editorConfig = function (config) {
'{{ font_awesome_css }}',
'{{ css_editor }}',
];
config.language_list = [ 'fr:French', 'es:Spanish', 'de:German', 'pl:Polish', 'it:Italian' ];
};
// Sets default target to "_blank" in link plugin

@ -79,6 +79,7 @@ class Documents extends Basic
'BulletedList',
'-',
api_get_setting('allow_spellcheck') === 'true' ? 'Scayt' : '',
'Language',
'Source',
],
'/',
@ -123,6 +124,7 @@ class Documents extends Basic
'BGColor',
],
[
'Language',
'ShowBlocks',
'Source',
],

Loading…
Cancel
Save