1/**
2 * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 * For licensing, see LICENSE.md or http://ckeditor.com/license
4 */
5
6CKEDITOR.plugins.add( 'about', {
7	requires: 'dialog',
8	// jscs:disable maximumLineLength
9	lang: 'af,ar,az,bg,bn,bs,ca,cs,cy,da,de,de-ch,el,en,en-au,en-ca,en-gb,eo,es,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,id,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,oc,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,tt,ug,uk,vi,zh,zh-cn', // %REMOVE_LINE_CORE%
10	// jscs:enable maximumLineLength
11	icons: 'about', // %REMOVE_LINE_CORE%
12	hidpi: true, // %REMOVE_LINE_CORE%
13	init: function( editor ) {
14		var command = editor.addCommand( 'about', new CKEDITOR.dialogCommand( 'about' ) );
15		command.modes = { wysiwyg: 1, source: 1 };
16		command.canUndo = false;
17		command.readOnly = 1;
18
19		editor.ui.addButton && editor.ui.addButton( 'About', {
20			label: editor.lang.about.title,
21			command: 'about',
22			toolbar: 'about'
23		} );
24
25		CKEDITOR.dialog.add( 'about', this.path + 'dialogs/about.js' );
26	}
27} );
28