Skip to content

Commit

Permalink
Strikethrough button tooltip spelling fixed (#12601).
Browse files Browse the repository at this point in the history
  • Loading branch information
AnnaTomanek committed Oct 28, 2014
1 parent eb8e9b0 commit cc89ae3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -12,6 +12,7 @@ Fixed Issues:
* [#12506](http://dev.ckeditor.com/ticket/12506): [Safari] Fixed: Can't paste into inline editor if page has `user-select: none` style. Thanks to [shaohua](https://github.com/shaohua)!
* [#12489](http://dev.ckeditor.com/ticket/12423) and [#12491](http://dev.ckeditor.com/ticket/12423): Fixed: Various issues related to restoring selection after making operations on filler char. See the [fixed cases](http://dev.ckeditor.com/ticket/12491#comment:4).
* [#11647](http://dev.ckeditor.com/ticket/11647): Fixed: The [`editor.blur`](http://docs.ckeditor.com/#!/api/CKEDITOR.editor-event-blur) event is not fired on first blur after initializing the inline editor on already focused element.
* [#12601](http://dev.ckeditor.com/ticket/12601): Fixed: [Strikethrough](http://ckeditor.com/addon/basicstyles) button tooltip spelling.

## CKEditor 4.4.5

Expand Down
4 changes: 2 additions & 2 deletions plugins/basicstyles/lang/en.js
@@ -1,11 +1,11 @@
/*
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'basicstyles', 'en', {
bold: 'Bold',
italic: 'Italic',
strike: 'Strike Through',
strike: 'Strikethrough',
subscript: 'Subscript',
superscript: 'Superscript',
underline: 'Underline'
Expand Down
6 changes: 3 additions & 3 deletions plugins/basicstyles/plugin.js
@@ -1,4 +1,4 @@
/**
/**
* @license Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or http://ckeditor.com/license
*/
Expand Down Expand Up @@ -147,11 +147,11 @@ CKEDITOR.config.coreStyles_italic = { element: 'em', overrides: 'i' };
CKEDITOR.config.coreStyles_underline = { element: 'u' };

/**
* The style definition that applies the <strike>strike-through</strike> style to the text.
* The style definition that applies the <strike>strikethrough</strike> style to the text.
*
* CKEDITOR.config.coreStyles_strike = {
* element: 'span',
* attributes: { 'class': 'StrikeThrough' },
* attributes: { 'class': 'Strikethrough' },
* overrides: 'strike'
* };
*
Expand Down

0 comments on commit cc89ae3

Please sign in to comment.