JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.5
[ckeditor.git] / _source / plugins / table / dialogs / table.js
index 7cb2708..00ebf15 100644 (file)
@@ -167,7 +167,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
                                                {\r
                                                        var th = theRow.getChild( i );\r
                                                        // Skip bookmark nodes. (#6155)\r
-                                                       if ( th.type == CKEDITOR.NODE_ELEMENT && !th.hasAttribute( '_cke_bookmark' ) )\r
+                                                       if ( th.type == CKEDITOR.NODE_ELEMENT && !th.data( 'cke-bookmark' ) )\r
                                                        {\r
                                                                th.renameNode( 'th' );\r
                                                                th.setAttribute( 'scope', 'col' );\r
@@ -387,13 +387,13 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
                                                                                        id : 'cmbAlign',\r
                                                                                        type : 'select',\r
                                                                                        'default' : '',\r
-                                                                                       label : editor.lang.table.align,\r
+                                                                                       label : editor.lang.common.align,\r
                                                                                        items :\r
                                                                                        [\r
                                                                                                [ editor.lang.common.notSet , ''],\r
-                                                                                               [ editor.lang.table.alignLeft , 'left'],\r
-                                                                                               [ editor.lang.table.alignCenter , 'center'],\r
-                                                                                               [ editor.lang.table.alignRight , 'right']\r
+                                                                                               [ editor.lang.common.alignLeft , 'left'],\r
+                                                                                               [ editor.lang.common.alignCenter , 'center'],\r
+                                                                                               [ editor.lang.common.alignRight , 'right']\r
                                                                                        ],\r
                                                                                        setup : function( selectedTable )\r
                                                                                        {\r
@@ -423,7 +423,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
                                                                                                        type : 'text',\r
                                                                                                        id : 'txtWidth',\r
                                                                                                        style : 'width:5em',\r
-                                                                                                       label : editor.lang.table.width,\r
+                                                                                                       label : editor.lang.common.width,\r
                                                                                                        'default' : 500,\r
                                                                                                        validate : CKEDITOR.dialog.validate['number']( editor.lang.table.invalidWidth ),\r
 \r
@@ -497,7 +497,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
                                                                                                        type : 'text',\r
                                                                                                        id : 'txtHeight',\r
                                                                                                        style : 'width:5em',\r
-                                                                                                       label : editor.lang.table.height,\r
+                                                                                                       label : editor.lang.common.height,\r
                                                                                                        'default' : '',\r
                                                                                                        validate : CKEDITOR.dialog.validate['number']( editor.lang.table.invalidHeight ),\r
 \r