> On Nov 4, 2015, at 2:12 AM, [email protected] wrote: > > Hello, > I've modified the config.js, because the spelling language is american > english, I want german. Please look above, where is my mistake? > > > > > /** > * @license Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights > reserved. > * For licensing, see LICENSE.html or http://ckeditor.com/license > */ > > CKEDITOR.editorConfig = function( config ) { > // For the complete reference: > // http://docs.ckeditor.com/#!/api/CKEDITOR.config > config.toolbarGroups = [ > { name: 'basicstyles', groups: [ 'basicstyles' ] }, > { name: 'colors' }, > { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', > 'align' ] }, > { name: 'links' }, > { name: 'insert' }, > { name: 'editing', groups: [ 'spellchecker' ] }, > { name: 'styles' } > ]; > > config.removeButtons = > 'Strike,Subscript,Superscript,BGColor,Anchor,Format'; > config.removeDialogTabs = 'link:advanced;image:advanced'; > config.enterMode = CKEDITOR.ENTER_BR; > config.tabSpaces = 4; > config.defaultLanguage = 'de'; > config.scayt_sLang = 'de_DE'; > config.allowedContent = true; // don't filter tags > > > // Disables the built-in words spell checker if browser provides one. > Defaults to true. > // > http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-disableNativeSpellChecker > //config.disableNativeSpellChecker = false; > > // Whether to show the browser native context menu when the Ctrl or Meta > (Mac) key is pressed on opening the context > // menu with the right mouse button click or the Menu key. Defaults to > true. > // > http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-browserContextMenuOnCtrl > //config.browserContextMenuOnCtrl = false; > > // If enabled, turns on SCAYT automatically after loading the editor. > Defaults to false. > // http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-scayt_autoStartup > config.scayt_autoStartup = true; > };
We overwrite the language with the current user's locale: https://github.com/inverse-inc/sogo/blob/v2/UI/WebServerResources/UIxMailEditor.js#L536 Is the spell checker properly in German when your user's language is in German? Francis-- [email protected] https://inverse.ca/sogo/lists
