Skip to content

Commit

Permalink
Fixed #140 wrong name for japanese name
Browse files Browse the repository at this point in the history
  • Loading branch information
w8tcha committed Dec 10, 2016
1 parent 8470d8a commit 236cf02
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion wordcount/lang/ja.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('wordcount', 'jp', {
CKEDITOR.plugins.setLang('wordcount', 'ja', {
WordCount: '単語数:',
CharCount: '文字数:',
CharCountWithHTML: '文字数 (with HTML):',
Expand Down
6 changes: 3 additions & 3 deletions wordcount/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

CKEDITOR.plugins.add("wordcount", {
lang: "ar,ca,da,de,el,en,es,eu,fa,fi,fr,he,hr,hu,it,jp,nl,no,pl,pt,pt-br,ru,sk,sv,tr,zh-cn", // %REMOVE_LINE_CORE%
lang: "ar,ca,da,de,el,en,es,eu,fa,fi,fr,he,hr,hu,it,ja,nl,no,pl,pt,pt-br,ru,sk,sv,tr,zh-cn", // %REMOVE_LINE_CORE%
version: 1.15,
requires: 'htmlwriter,notification,undo',
bbcodePluginLoaded: false,
Expand Down Expand Up @@ -396,8 +396,8 @@ CKEDITOR.plugins.add("wordcount", {
if(notification === null) {
notification = new CKEDITOR.plugins.notification(event.editor, {
message: event.editor.lang.wordcount.pasteWarning,
type: 'warning',
duration: config.pasteWarningDuration
type: 'warning',
duration: config.pasteWarningDuration
});
}

Expand Down

0 comments on commit 236cf02

Please sign in to comment.