﻿/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/

CKEDITOR.editorConfig = function( config )
{
	// Define changes to default configuration here. For example:
	// config.language = 'fr';
	// config.uiColor = '#AADC6E';
	
	config.font_names = 'Trebuchet MS';
	config.fontSize_defaultLabel = '12pt';
	config.defaultLanguage = 'de';
	config.docType = '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">';
	config.contentsCss = ['http://www.one-radio.tk/scripts/ckeditor/contents.css', 'http://www.one-radio.tk/css/orange.css'];
	config.enterMode = CKEDITOR.ENTER_BR;
	config.toolbar_stand =
	[
		{ name: 'clipboard', items: [ 'Cut','Copy','Paste','PasteText','-','Undo','Redo' ] },
		{ name: 'editing', items: [ 'Find','Replace','-','SelectAll','-','SpellChecker' ] },
		{ name: 'insert', items: [ 'Image','Table','HorizontalRule','Smiley','SpecialChar','Source' ] },
		'/',
		{ name: 'basicstyles', items: [ 'Bold','Italic','Underline','Strike','Subscript','Superscript','-','RemoveFormat' ] },
		{ name: 'paragraph', items: [ 'NumberedList','BulletedList','-','Outdent','Indent','-','Blockquote','-','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock' ] },
		{ name: 'links', items: [ 'Link','Unlink' ] },
		{ name: 'styles', items: [ 'Format','FontSize' ] },
		{ name: 'colors', items: [ 'TextColor','BGColor' ] },
	];
	config.toolbar = 'stand';
};

