Ticket #5485: 5485.patch
File 5485.patch, 1.3 KB (added by , 15 years ago) |
---|
-
_source/plugins/wysiwygarea/plugin.js
655 655 { 656 656 data = 657 657 config.docType + 658 '<html dir="' + config.contentsLangDirection + '" >' +658 '<html dir="' + config.contentsLangDirection + '" lang="' + ( config.contentsLanguage || editor.langCode ) + '">' + 659 659 '<title>' + frameLabel + '</title>' + 660 660 '<head>' + 661 661 baseTag + -
_source/core/config.js
86 86 contentsLangDirection : 'ltr', 87 87 88 88 /** 89 * Language code of the writting language which is used to author the editor 90 * contents. 91 * @default Same value with editor's UI language. 92 * @type String 93 * @example 94 * config.contentsLanguage = 'fr'; 95 */ 96 contentsLanguage : '', 97 98 /** 89 99 * The user interface language localization to use. If empty, the editor 90 100 * automatically localize the editor to the user language, if supported, 91 101 * otherwise the {@link CKEDITOR.config.defaultLanguage} language is used.