﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
12661	"Table header drop down ""First column"" is incorrectly capitalised"	Mark Kenny		"When you create a new table, you are presented with a dialog with all the table properties. One of these is ""Headers"".

The options are:

None
First Row
First column
Both

The third option should be ""First Column"" not ""First column"".

Hacky workaround:


{{{

CKEDITOR.editorConfig = function( config ) {

    CKEDITOR.on('dialogDefinition', function(ev) {

            var dialogName = ev.data.name;
            var dialogDefinition = ev.data.definition;

            if (dialogName == 'table' || dialogName == 'tableProperties') {

            var infoTab = dialogDefinition.getContents('info');

            // hack to make the drop down element have proper capitals!
            infoTab.elements[0].children[0].children[3].items[2][0] = ""First Column"";

        }

    }

}

}}}"	Bug	closed	Normal		General		duplicate		
