mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
修改插件语言包,同步 ckeditor
This commit is contained in:
parent
5530384e49
commit
6e73105af4
@ -1,22 +0,0 @@
|
|||||||
The MIT License (MIT)
|
|
||||||
|
|
||||||
Copyright (c) 2015 Kamlesh Kushwaha
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE.
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
|||||||
# lineheight
|
|
||||||
Ckeditor lineheight plugin repository
|
|
@ -1,3 +0,0 @@
|
|||||||
CKEDITOR.plugins.setLang('lineheight','{LANGUAGE_CODE}', {
|
|
||||||
title: '{LINE-HEIGHT}'
|
|
||||||
} );
|
|
@ -1,3 +0,0 @@
|
|||||||
CKEDITOR.plugins.setLang('lineheight','ar', {
|
|
||||||
title: 'خط الطول'
|
|
||||||
} );
|
|
@ -1,3 +0,0 @@
|
|||||||
CKEDITOR.plugins.setLang('lineheight','de', {
|
|
||||||
title: 'Zeilenhöhe'
|
|
||||||
} );
|
|
@ -1,3 +1,3 @@
|
|||||||
CKEDITOR.plugins.setLang('lineheight','en', {
|
CKEDITOR.plugins.setLang('lineheight', 'en', {
|
||||||
title: '行间距'
|
title: 'Line Height'
|
||||||
} );
|
});
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
CKEDITOR.plugins.setLang('lineheight','es', {
|
|
||||||
title: 'Altura de Línea'
|
|
||||||
} );
|
|
@ -1,3 +0,0 @@
|
|||||||
CKEDITOR.plugins.setLang('lineheight','fr', {
|
|
||||||
title: 'Hauteur de Ligne'
|
|
||||||
} );
|
|
@ -1,3 +0,0 @@
|
|||||||
CKEDITOR.plugins.setLang('lineheight','ko', {
|
|
||||||
title: '줄 높이'
|
|
||||||
} );
|
|
@ -1,3 +0,0 @@
|
|||||||
CKEDITOR.plugins.setLang('lineheight','af', {
|
|
||||||
title: 'linha Altura'
|
|
||||||
} );
|
|
@ -0,0 +1,3 @@
|
|||||||
|
CKEDITOR.plugins.setLang('lineheight', 'zh-cn', {
|
||||||
|
title: '行间距'
|
||||||
|
});
|
@ -0,0 +1,3 @@
|
|||||||
|
CKEDITOR.plugins.setLang('lineheight', 'zh-cn', {
|
||||||
|
title: '行间距'
|
||||||
|
});
|
@ -1,81 +1,82 @@
|
|||||||
( function() {
|
(function () {
|
||||||
function addCombo( editor, comboName, styleType, lang, entries, defaultLabel, styleDefinition, order ) {
|
function addCombo(editor, comboName, styleType, lang, entries, defaultLabel, styleDefinition, order) {
|
||||||
var config = editor.config,style = new CKEDITOR.style( styleDefinition );
|
var config = editor.config, style = new CKEDITOR.style(styleDefinition);
|
||||||
var names = entries.split( ';' ),values = [];
|
var names = entries.split(';'), values = [];
|
||||||
var styles = {};
|
var styles = {};
|
||||||
for ( var i = 0; i < names.length; i++ ) {
|
for (var i = 0; i < names.length; i++) {
|
||||||
var parts = names[ i ];
|
var parts = names[i];
|
||||||
if ( parts ) {
|
if (parts) {
|
||||||
parts = parts.split( '/' );
|
parts = parts.split('/');
|
||||||
var vars = {},name = names[ i ] = parts[ 0 ];
|
var vars = {}, name = names[i] = parts[0];
|
||||||
vars[ styleType ] = values[ i ] = parts[ 1 ] || name;
|
vars[styleType] = values[i] = parts[1] || name;
|
||||||
styles[ name ] = new CKEDITOR.style( styleDefinition, vars );
|
styles[name] = new CKEDITOR.style(styleDefinition, vars);
|
||||||
styles[ name ]._.definition.name = name;
|
styles[name]._.definition.name = name;
|
||||||
} else
|
} else
|
||||||
names.splice( i--, 1 );
|
names.splice(i--, 1);
|
||||||
}
|
}
|
||||||
editor.ui.addRichCombo( comboName, {
|
editor.ui.addRichCombo(comboName, {
|
||||||
label: editor.lang.lineheight.title,
|
label: editor.lang.lineheight.title,
|
||||||
title: editor.lang.lineheight.title,
|
title: editor.lang.lineheight.title,
|
||||||
toolbar: 'styles,' + order,
|
toolbar: 'styles,' + order,
|
||||||
allowedContent: style,
|
allowedContent: style,
|
||||||
requiredContent: style,
|
requiredContent: style,
|
||||||
panel: {
|
panel: {
|
||||||
css: [ CKEDITOR.skin.getPath( 'editor' ) ].concat( config.contentsCss ),
|
css: [CKEDITOR.skin.getPath('editor')].concat(config.contentsCss),
|
||||||
multiSelect: false,
|
multiSelect: false,
|
||||||
attributes: { 'aria-label': editor.lang.lineheight.title }
|
attributes: {'aria-label': editor.lang.lineheight.title}
|
||||||
},
|
},
|
||||||
init: function() {
|
init: function () {
|
||||||
this.startGroup(editor.lang.lineheight.title);
|
this.startGroup(editor.lang.lineheight.title);
|
||||||
for ( var i = 0; i < names.length; i++ ) {
|
for (var i = 0; i < names.length; i++) {
|
||||||
var name = names[ i ];
|
var name = names[i];
|
||||||
this.add( name, styles[ name ].buildPreview(), name );
|
this.add(name, styles[name].buildPreview(), name);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onClick: function( value ) {
|
onClick: function (value) {
|
||||||
editor.focus();
|
editor.focus();
|
||||||
editor.fire( 'saveSnapshot' );
|
editor.fire('saveSnapshot');
|
||||||
var style = styles[ value ];
|
var style = styles[value];
|
||||||
editor[ this.getValue() == value ? 'removeStyle' : 'applyStyle' ]( style );
|
editor[this.getValue() == value ? 'removeStyle' : 'applyStyle'](style);
|
||||||
editor.fire( 'saveSnapshot' );
|
editor.fire('saveSnapshot');
|
||||||
},
|
},
|
||||||
onRender: function() {
|
onRender: function () {
|
||||||
editor.on( 'selectionChange', function( ev ) {
|
editor.on('selectionChange', function (ev) {
|
||||||
var currentValue = this.getValue();
|
var currentValue = this.getValue();
|
||||||
var elementPath = ev.data.path,elements = elementPath.elements;
|
var elementPath = ev.data.path, elements = elementPath.elements;
|
||||||
for ( var i = 0, element; i < elements.length; i++ ) {
|
for (var i = 0, element; i < elements.length; i++) {
|
||||||
element = elements[ i ];
|
element = elements[i];
|
||||||
for ( var value in styles ) {
|
for (var value in styles) {
|
||||||
if ( styles[ value ].checkElementMatch( element, true, editor ) ) {
|
if (styles[value].checkElementMatch(element, true, editor)) {
|
||||||
if ( value != currentValue )
|
if (value != currentValue)
|
||||||
this.setValue( value );
|
this.setValue(value);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.setValue( '', defaultLabel );
|
this.setValue('', defaultLabel);
|
||||||
}, this );
|
}, this);
|
||||||
},
|
},
|
||||||
refresh: function() {
|
refresh: function () {
|
||||||
if ( !editor.activeFilter.check( style ) )
|
if (!editor.activeFilter.check(style))
|
||||||
this.setState( CKEDITOR.TRISTATE_DISABLED );
|
this.setState(CKEDITOR.TRISTATE_DISABLED);
|
||||||
}
|
}
|
||||||
} );
|
});
|
||||||
}
|
}
|
||||||
CKEDITOR.plugins.add( 'lineheight', {
|
|
||||||
requires: 'richcombo',
|
CKEDITOR.plugins.add('lineheight', {
|
||||||
lang: 'ar,de,en,es,fr,ko,pt',
|
lang: 'en,zh,zh-cn',
|
||||||
init: function( editor ) {
|
requires: 'richcombo',
|
||||||
var config = editor.config;
|
init: function (editor) {
|
||||||
addCombo( editor, 'lineheight', 'size', editor.lang.lineheight.title, config.line_height, editor.lang.lineheight.title, config.lineHeight_style, 40 );
|
var config = editor.config;
|
||||||
}
|
addCombo(editor, 'lineheight', 'size', editor.lang.lineheight.title, config.line_height, editor.lang.lineheight.title, config.lineHeight_style, 40);
|
||||||
} );
|
}
|
||||||
} )();
|
});
|
||||||
|
})();
|
||||||
CKEDITOR.config.line_height = '1;2;3;4;5;6;7;8;9;10;11;12;13;14;15;16;17;18;19;20;21;22;23;24;25;26;27;28;29;30;31;32;33;34;35;36;37;38;39;40;41;42;43;44;45;46;47;48;49;50;51;52;53;54;55;56;57;58;59;60;61;62;63;64;65;66;67;68;69;70;71;72';
|
CKEDITOR.config.line_height = '1;2;3;4;5;6;7;8;9;10;11;12;13;14;15;16;17;18;19;20;21;22;23;24;25;26;27;28;29;30;31;32;33;34;35;36;37;38;39;40;41;42;43;44;45;46;47;48;49;50;51;52;53;54;55;56;57;58;59;60;61;62;63;64;65;66;67;68;69;70;71;72';
|
||||||
CKEDITOR.config.lineHeight_style = {
|
CKEDITOR.config.lineHeight_style = {
|
||||||
element: 'span',
|
element: 'span',
|
||||||
styles: { 'line-height': '#(size)' },
|
styles: {'line-height': '#(size)'},
|
||||||
overrides: [ {
|
overrides: [{
|
||||||
element: 'line-height', attributes: { 'size': null }
|
element: 'line-height', attributes: {'size': null}
|
||||||
} ]
|
}]
|
||||||
};
|
};
|
||||||
|
@ -1,30 +0,0 @@
|
|||||||
lineheight
|
|
||||||
==========
|
|
||||||
|
|
||||||
CKEDITOR Line-height plugin documentation
|
|
||||||
----------------------------------------------
|
|
||||||
|
|
||||||
Installation Notes:
|
|
||||||
|
|
||||||
Adding plugin into the toolbar:
|
|
||||||
Using CKBuilder is a recommended solution, however, if you have plugins developed by yourself or by third parties, you can add plugins to your local installation manually by following the steps described below:
|
|
||||||
Extract the plugin .zip archive.
|
|
||||||
Copy the plugin files to the plugins folder of your CKEditor installation. Each plugin must be placed in a sub-folder that matches its "technical" name.
|
|
||||||
|
|
||||||
For example, the lineheight plugin would be installed into this folder: <CKEditor folder>/plugins/lineheight.
|
|
||||||
Check and resolve plugin dependencies. If a plugin needs others to work, you will need to add these manually as well.
|
|
||||||
Enable the plugin. Use the extraPlugins setting to add the plugin to your confiuration:
|
|
||||||
|
|
||||||
config.extraPlugins = 'lineheight';
|
|
||||||
|
|
||||||
Refer this link for configuring the toolbar: http://docs.ckeditor.com/#!/guide/dev_toolbar
|
|
||||||
|
|
||||||
|
|
||||||
Customizing the lineheight values in the dropdown
|
|
||||||
-------------------------------------------------------
|
|
||||||
In order to have custom values of line-height instead of the default, you can add following line in the config.js file:
|
|
||||||
|
|
||||||
config.line_height="1em;1.1em;1.2em;1.3em;1.4em;1.5em";
|
|
||||||
|
|
||||||
Here, "em" is the unit of line-height which you can change to "px","%" or any other allowed unit for line-height.
|
|
||||||
You can also change the numbers based on your requirements. You can have more range or low range , it all depends on your requirements.
|
|
Loading…
x
Reference in New Issue
Block a user