upgrade to tinymce 2.1.1.1
This commit is contained in:
parent
f36ba1b268
commit
e75b689857
847 changed files with 34500 additions and 7692 deletions
|
|
@ -32,7 +32,6 @@ select, #block_text_indent, #box_width, #box_height, #box_padding_top, #box_padd
|
|||
}
|
||||
|
||||
.delim {
|
||||
b2ackground-color: #DDDDDD;
|
||||
border-left: 1px solid gray;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
tinyMCE.importPluginLanguagePack('style','en');var TinyMCE_StylePlugin={getInfo:function(){return{longname:'Style',author:'Moxiecode Systems',authorurl:'http://tinymce.moxiecode.com',infourl:'http://tinymce.moxiecode.com/tinymce/docs/plugin_style.html',version:tinyMCE.majorVersion+"."+tinyMCE.minorVersion};},getControlHTML:function(cn){switch(cn){case"styleprops":return tinyMCE.getButtonHTML(cn,'lang_style_styleinfo_desc','{$pluginurl}/images/style_info.gif','mceStyleProps',true);}return"";},execCommand:function(editor_id,element,command,user_interface,value){var e,inst;switch(command){case"mceStyleProps":TinyMCE_StylePlugin._styleProps();return true;case"mceSetElementStyle":inst=tinyMCE.getInstanceById(editor_id);e=inst.selection.getFocusElement();if(e){e.style.cssText=value;inst.repaint();}return true;}return false;},handleNodeChange:function(editor_id,node,undo_index,undo_levels,visual_aid,any_selection){},_styleProps:function(){var e=tinyMCE.selectedInstance.selection.getFocusElement();if(!e)return;tinyMCE.openWindow({file:'../../plugins/style/props.htm',width:480+tinyMCE.getLang('lang_style_props_delta_width',0),height:320+tinyMCE.getLang('lang_style_props_delta_height',0)},{editor_id:tinyMCE.selectedInstance.editorId,inline:"yes",style_text:e.style.cssText});}};tinyMCE.addPlugin("style",TinyMCE_StylePlugin);
|
||||
tinyMCE.importPluginLanguagePack('style');var TinyMCE_StylePlugin={getInfo:function(){return{longname:'Style',author:'Moxiecode Systems AB',authorurl:'http://tinymce.moxiecode.com',infourl:'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/style',version:tinyMCE.majorVersion+"."+tinyMCE.minorVersion}},getControlHTML:function(cn){switch(cn){case"styleprops":return tinyMCE.getButtonHTML(cn,'lang_style_styleinfo_desc','{$pluginurl}/images/styleprops.gif','mceStyleProps',true)}return""},execCommand:function(editor_id,element,command,user_interface,value){var e,inst;switch(command){case"mceStyleProps":TinyMCE_StylePlugin._styleProps();return true;case"mceSetElementStyle":inst=tinyMCE.getInstanceById(editor_id);e=inst.selection.getFocusElement();if(e){e.style.cssText=value;inst.repaint()}return true}return false},handleNodeChange:function(editor_id,node,undo_index,undo_levels,visual_aid,any_selection){if(node.nodeName=='BODY')tinyMCE.switchClass(editor_id+'_styleprops','mceButtonDisabled');else tinyMCE.switchClass(editor_id+'_styleprops','mceButtonNormal')},_styleProps:function(){var e=tinyMCE.selectedInstance.selection.getFocusElement();if(!e||e.nodeName=='BODY')return;tinyMCE.openWindow({file:'../../plugins/style/props.htm',width:480+tinyMCE.getLang('lang_style_props_delta_width',0),height:320+tinyMCE.getLang('lang_style_props_delta_height',0)},{editor_id:tinyMCE.selectedInstance.editorId,inline:"yes",style_text:e.style.cssText})}};tinyMCE.addPlugin("style",TinyMCE_StylePlugin);
|
||||
|
|
@ -1,22 +1,20 @@
|
|||
/**
|
||||
* $RCSfile: editor_plugin_src.js,v $
|
||||
* $Revision: 1.1 $
|
||||
* $Date: 2006/05/03 10:46:42 $
|
||||
* $Id: editor_plugin_src.js 201 2007-02-12 15:56:56Z spocke $
|
||||
*
|
||||
* @author Moxiecode
|
||||
* @copyright Copyright © 2004-2006, Moxiecode Systems AB, All rights reserved.
|
||||
* @copyright Copyright © 2004-2007, Moxiecode Systems AB, All rights reserved.
|
||||
*/
|
||||
|
||||
/* Import plugin specific language pack */
|
||||
tinyMCE.importPluginLanguagePack('style', 'en');
|
||||
tinyMCE.importPluginLanguagePack('style');
|
||||
|
||||
var TinyMCE_StylePlugin = {
|
||||
getInfo : function() {
|
||||
return {
|
||||
longname : 'Style',
|
||||
author : 'Moxiecode Systems',
|
||||
author : 'Moxiecode Systems AB',
|
||||
authorurl : 'http://tinymce.moxiecode.com',
|
||||
infourl : 'http://tinymce.moxiecode.com/tinymce/docs/plugin_style.html',
|
||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/style',
|
||||
version : tinyMCE.majorVersion + "." + tinyMCE.minorVersion
|
||||
};
|
||||
},
|
||||
|
|
@ -24,7 +22,7 @@ var TinyMCE_StylePlugin = {
|
|||
getControlHTML : function(cn) {
|
||||
switch (cn) {
|
||||
case "styleprops":
|
||||
return tinyMCE.getButtonHTML(cn, 'lang_style_styleinfo_desc', '{$pluginurl}/images/style_info.gif', 'mceStyleProps', true);
|
||||
return tinyMCE.getButtonHTML(cn, 'lang_style_styleinfo_desc', '{$pluginurl}/images/styleprops.gif', 'mceStyleProps', true);
|
||||
}
|
||||
|
||||
return "";
|
||||
|
|
@ -56,6 +54,10 @@ var TinyMCE_StylePlugin = {
|
|||
},
|
||||
|
||||
handleNodeChange : function(editor_id, node, undo_index, undo_levels, visual_aid, any_selection) {
|
||||
if (node.nodeName == 'BODY')
|
||||
tinyMCE.switchClass(editor_id + '_styleprops', 'mceButtonDisabled');
|
||||
else
|
||||
tinyMCE.switchClass(editor_id + '_styleprops', 'mceButtonNormal');
|
||||
},
|
||||
|
||||
// Private plugin specific methods
|
||||
|
|
@ -63,7 +65,7 @@ var TinyMCE_StylePlugin = {
|
|||
_styleProps : function() {
|
||||
var e = tinyMCE.selectedInstance.selection.getFocusElement();
|
||||
|
||||
if (!e)
|
||||
if (!e || e.nodeName == 'BODY')
|
||||
return;
|
||||
|
||||
tinyMCE.openWindow({
|
||||
|
|
|
|||
BIN
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/images/styleprops.gif
vendored
Executable file
BIN
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/images/styleprops.gif
vendored
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 562 B |
|
|
@ -26,10 +26,13 @@ var defaultBorderWidth = "thin;medium;thick";
|
|||
var defaultListType = "disc;circle;square;decimal;lower-roman;upper-roman;lower-alpha;upper-alpha;none";
|
||||
|
||||
function init() {
|
||||
var ce = document.getElementById('container');
|
||||
var ce = document.getElementById('container'), h;
|
||||
|
||||
ce.style.cssText = tinyMCEPopup.getWindowArg('style_text');
|
||||
|
||||
h = getBrowserHTML('background_image_browser','background_image','image','advimage');
|
||||
document.getElementById("background_image_browser").innerHTML = h;
|
||||
|
||||
tinyMCEPopup.resizeToInnerSize();
|
||||
|
||||
document.getElementById('text_color_pickcontainer').innerHTML = getColorPickerHTML('text_color_pick','text_color');
|
||||
|
|
|
|||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/ca.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/ca.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/cs.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/cs.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/cy.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/cy.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/da.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/da.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// DK lang variables - Transl.:John Dalsgaard, Bo Frederiksen, Ronny Buelund - Corr.:
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Rediger CSS Style',
|
||||
styleinfo_desc : 'Rediger CSS Style',
|
||||
apply : 'Anvend',
|
||||
text_tab : 'Tekst',
|
||||
background_tab : 'Baggrund',
|
||||
block_tab : 'Blok',
|
||||
box_tab : 'Boks',
|
||||
border_tab : 'Ramme',
|
||||
list_tab : 'Liste',
|
||||
positioning_tab : 'Positionering',
|
||||
text_props : 'Tekst',
|
||||
text_font : 'Skrifttype',
|
||||
text_size : 'Størrelse',
|
||||
text_weight : 'Vægtning',
|
||||
text_style : 'Stil',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Linje højde',
|
||||
text_case : 'Store-små',
|
||||
text_color : 'Farve',
|
||||
text_decoration : 'Dekoration',
|
||||
text_overline : 'Overstreg',
|
||||
text_underline : 'Understreg',
|
||||
text_striketrough : 'Gennemstreg',
|
||||
text_blink : 'blink',
|
||||
text_none : 'ingen',
|
||||
background_color : 'Baggrundsfarve',
|
||||
background_image : 'Baggrundsbillede',
|
||||
background_repeat : 'Gentag',
|
||||
background_attachment : 'Vedhæftning',
|
||||
background_hpos : 'Vandret position',
|
||||
background_vpos : 'Lodret position',
|
||||
block_wordspacing : 'Ord afstand',
|
||||
block_letterspacing : 'Tegn afstand',
|
||||
block_vertical_alignment : 'Vertikal justering',
|
||||
block_text_align : 'Tekstjustering',
|
||||
block_text_indent : 'Tekstindrykning',
|
||||
block_whitespace : 'Hvid afstand',
|
||||
block_display : 'Display',
|
||||
box_width : 'Bredde',
|
||||
box_height : 'Højde',
|
||||
box_float : 'Flyd',
|
||||
box_clear : 'Ryd',
|
||||
padding : 'Fyld',
|
||||
same : 'Ens for alle',
|
||||
top : 'Top',
|
||||
right : 'Højre',
|
||||
bottom : 'Bund',
|
||||
left : 'Venstre',
|
||||
margin : 'Margin',
|
||||
style : 'Stil',
|
||||
width : 'Bredde',
|
||||
height : 'Højde',
|
||||
color : 'Farve',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Punkttegnsbillede',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Synlighed',
|
||||
zindex : 'Z-indeks',
|
||||
overflow : 'Overløb',
|
||||
placement : 'Placering',
|
||||
clip : 'Klip'
|
||||
});
|
||||
|
|
@ -1,8 +1,9 @@
|
|||
// UK lang variables
|
||||
// DE lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'CSS Stil editieren',
|
||||
styleinfo_desc : 'CSS Stil editieren',
|
||||
title : 'CSS Stil bearbeiten',
|
||||
styleinfo_desc : 'CSS Stil bearbeiten',
|
||||
apply : 'Anwenden',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Hintergrund',
|
||||
block_tab : 'Block',
|
||||
|
|
@ -12,14 +13,19 @@ list_tab : 'Liste',
|
|||
positioning_tab : 'Positionierung',
|
||||
text_props : 'Text',
|
||||
text_font : 'Schriftart',
|
||||
text_size : 'Grösse',
|
||||
text_size : 'Größe',
|
||||
text_weight : 'Dicke',
|
||||
text_style : 'Stil',
|
||||
text_variant : 'Variante',
|
||||
text_lineheight : 'Linienhöhe',
|
||||
text_case : 'Gross-/Kleinbuchstaben',
|
||||
text_lineheight : 'Linienhöhe',
|
||||
text_case : 'Groß-/Kleinbuchstaben',
|
||||
text_color : 'Farbe',
|
||||
text_decoration : 'Dekoration',
|
||||
text_overline : 'Oberlinie',
|
||||
text_underline : 'Unterstrichen',
|
||||
text_striketrough : 'Durchgestrichen',
|
||||
text_blink : 'blinken',
|
||||
text_none : 'nichts',
|
||||
background_color : 'Hintergrundfarbe',
|
||||
background_image : 'Hintergrundfoto',
|
||||
background_repeat : 'Wiederholen',
|
||||
|
|
@ -30,15 +36,15 @@ block_wordspacing : 'Wortabstand',
|
|||
block_letterspacing : 'Zeichenabstand',
|
||||
block_vertical_alignment : 'Vertikale Ausrichtung',
|
||||
block_text_align : 'Horizontale Ausrichtung',
|
||||
block_text_indent : 'Texteinrückung',
|
||||
block_text_indent : 'Texteinrückung',
|
||||
block_whitespace : 'Textumbruch',
|
||||
block_display : 'Anzeigeart',
|
||||
box_width : 'Breite',
|
||||
box_height : 'Höhe',
|
||||
box_float : 'Text umfliessen',
|
||||
box_clear : 'Text umfliessen beenden',
|
||||
box_height : 'Höhe',
|
||||
box_float : 'Text umfließen',
|
||||
box_clear : 'Text umfließen beenden',
|
||||
padding : 'Innenabstand',
|
||||
same : 'Das gleiche für alle',
|
||||
same : 'Das gleiche für alle',
|
||||
top : 'Oben',
|
||||
right : 'Rechts',
|
||||
bottom : 'Unten',
|
||||
|
|
@ -46,7 +52,7 @@ left : 'Links',
|
|||
margin : 'Aussenabstand',
|
||||
style : 'Stil',
|
||||
width : 'Breite',
|
||||
height : 'Höhe',
|
||||
height : 'Höhe',
|
||||
color : 'Farbe',
|
||||
list_type : 'Listentyp',
|
||||
bullet_image : 'Grafik',
|
||||
|
|
@ -54,7 +60,7 @@ position : 'Position',
|
|||
positioning_type : 'Typ',
|
||||
visibility : 'Sichtbarkeit',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Überfluss',
|
||||
overflow : 'Überfluss',
|
||||
placement : 'Plazierung',
|
||||
clip : 'Abschneiden'
|
||||
});
|
||||
|
|
|
|||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/el.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/el.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/es.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/es.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
/**
|
||||
* ES lang variables
|
||||
*
|
||||
* Authors : Eneko Castresana Vara
|
||||
* Last Updated : July 14, 2006
|
||||
* TinyMCE Version : 2.0.6.1
|
||||
*/
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Editar estilo CSS',
|
||||
styleinfo_desc : 'Editar estilo CSS',
|
||||
text_tab : 'Texto',
|
||||
background_tab : 'Fondo',
|
||||
block_tab : 'Bloque',
|
||||
box_tab : 'Cuadro',
|
||||
border_tab : 'Borde',
|
||||
list_tab : 'Lista',
|
||||
positioning_tab : 'Posicionamiento',
|
||||
text_props : 'Texto',
|
||||
text_font : 'Fuente',
|
||||
text_size : 'Tamaño',
|
||||
text_weight : 'Peso',
|
||||
text_style : 'Estilo',
|
||||
text_variant : 'Variante',
|
||||
text_lineheight : 'Altura de línea',
|
||||
text_case : 'Caso',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoración',
|
||||
background_color : 'Color de fondo',
|
||||
background_image : 'Imagen de fondo',
|
||||
background_repeat : 'Repetir',
|
||||
background_attachment : 'Agregado',
|
||||
background_hpos : 'Posición horizontal',
|
||||
background_vpos : 'Posición vertical',
|
||||
block_wordspacing : 'Espaciado de palabras',
|
||||
block_letterspacing : 'Espaciado de letras',
|
||||
block_vertical_alignment : 'Alineación vertical',
|
||||
block_text_align : 'Alineación del texto',
|
||||
block_text_indent : 'Indentación del texto',
|
||||
block_whitespace : 'Espacio',
|
||||
block_display : 'Mostrar',
|
||||
box_width : 'Ancho',
|
||||
box_height : 'Alto',
|
||||
box_float : 'Flotante',
|
||||
box_clear : 'Borrar',
|
||||
padding : 'Espaciado',
|
||||
same : 'Igual para todo',
|
||||
top : 'Arriba',
|
||||
right : 'Derecha',
|
||||
bottom : 'Abajo',
|
||||
left : 'Izquierda',
|
||||
margin : 'Margen',
|
||||
style : 'Estilo',
|
||||
width : 'Ancho',
|
||||
height : 'Alto',
|
||||
color : 'Color',
|
||||
list_type : 'Tipo',
|
||||
bullet_image : 'Imagen de viñeta',
|
||||
position : 'Posición',
|
||||
positioning_type : 'Tipo',
|
||||
visibility : 'Visibilidad',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Desbordamiento',
|
||||
placement : 'Emplazamiento',
|
||||
clip : 'Recortar'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/fa.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/fa.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
|
|
@ -1,37 +1,38 @@
|
|||
// FR lang variables
|
||||
// Modified by keyko-web.net, last updated 2007-03-08
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edtiteur de style CSS',
|
||||
styleinfo_desc : 'Edtiteur de style CSS',
|
||||
apply : 'Appliquer',
|
||||
text_tab : 'Texte',
|
||||
background_tab : 'Fond',
|
||||
background_tab : 'Arrière-plan',
|
||||
block_tab : 'Bloc',
|
||||
box_tab : 'Boite',
|
||||
border_tab : 'Bord',
|
||||
list_tab : 'Liste',
|
||||
positioning_tab : 'Positionnement',
|
||||
text_props : 'Texte',
|
||||
text_font : 'Fonte',
|
||||
text_font : 'Police',
|
||||
text_size : 'Taille',
|
||||
text_weight : 'Poid',
|
||||
text_weight : 'Poids',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Hauteur de ligne',
|
||||
text_case : 'Casse',
|
||||
text_color : 'Couleur',
|
||||
text_decoration : 'Décoration',
|
||||
text_overline : 'surligné',
|
||||
text_underline : 'souligné',
|
||||
text_striketrough : 'barré',
|
||||
text_decoration : 'Décoration',
|
||||
text_overline : 'surligné',
|
||||
text_underline : 'souligné',
|
||||
text_striketrough : 'barré',
|
||||
text_blink : 'clignotant',
|
||||
text_none : 'aucun',
|
||||
background_color : 'Couleur de fond',
|
||||
background_image : 'Image de fond',
|
||||
background_repeat : 'Répéter',
|
||||
background_color : 'Couleur d\'arrière-plan',
|
||||
background_image : 'Image d\'arrière-plan',
|
||||
background_repeat : 'Répéter',
|
||||
background_attachment : 'Attacher',
|
||||
background_hpos : 'Position horizontal',
|
||||
background_vpos : 'Position vertical',
|
||||
background_hpos : 'Position horizontale',
|
||||
background_vpos : 'Position verticale',
|
||||
block_wordspacing : 'Espace entre les mots',
|
||||
block_letterspacing : 'Espace entre les lettres',
|
||||
block_vertical_alignment : 'Aligenement vertical',
|
||||
|
|
@ -42,7 +43,7 @@ block_display : 'Afficher',
|
|||
box_width : 'Largeur',
|
||||
box_height : 'Hauteur',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
box_clear : 'Effacer',
|
||||
padding : 'Padding',
|
||||
same : 'Identique pour tous',
|
||||
top : 'Haut',
|
||||
|
|
@ -58,7 +59,7 @@ list_type : 'Type',
|
|||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibilité',
|
||||
visibility : 'Visibilité',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
|
|
|
|||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/fr_ca.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/fr_ca.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/he.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/he.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/hu.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/hu.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/is.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/is.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
|
|
@ -1,60 +1,72 @@
|
|||
// IT lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Modifica stile CSS',
|
||||
styleinfo_desc : 'Modifica stile CSS',
|
||||
text_tab : 'Testo',
|
||||
background_tab : 'Sfondo',
|
||||
block_tab : 'Blocco',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Bordo',
|
||||
list_tab : 'Lista',
|
||||
positioning_tab : 'Posizionamento',
|
||||
text_props : 'Testo',
|
||||
text_font : 'Font',
|
||||
text_size : 'Dimensione',
|
||||
text_weight : 'Peso',
|
||||
text_style : 'Stile',
|
||||
text_variant : 'Variante',
|
||||
text_lineheight : 'Altezza linea',
|
||||
text_case : 'Caso',
|
||||
text_color : 'Colore',
|
||||
text_decoration : 'Decorazione',
|
||||
background_color : 'Colore di sfondo',
|
||||
background_image : 'Immagine di sfondo',
|
||||
background_repeat : 'Ripeti',
|
||||
background_attachment : 'Ancoraggio',
|
||||
background_hpos : 'Posizione orizzontale',
|
||||
background_vpos : 'Posizione verticale',
|
||||
block_wordspacing : 'Spaziatura parole',
|
||||
block_letterspacing : 'Spaziatura lettere',
|
||||
block_vertical_alignment : 'Allineamento verticale',
|
||||
block_text_align : 'Allineamento del testo',
|
||||
block_text_indent : 'Indentazione del testo',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Larghezza',
|
||||
box_height : 'Altezza',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Spaziatura interna',
|
||||
same : 'Uguale per tutti',
|
||||
top : 'Alto',
|
||||
right : 'Destra',
|
||||
bottom : 'Basso',
|
||||
left : 'Sinistra',
|
||||
margin : 'Margine esterno',
|
||||
style : 'Stile',
|
||||
width : 'Larghezza',
|
||||
height : 'Altezza',
|
||||
color : 'Colore',
|
||||
list_type : 'Tipo',
|
||||
bullet_image : 'Immagine punto elenco',
|
||||
position : 'Posizionamento',
|
||||
positioning_type : 'Tipo',
|
||||
visibility : 'Visibilità',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Piazzamento',
|
||||
clip : 'Clip'
|
||||
});
|
||||
/**
|
||||
* IT lang variables
|
||||
*
|
||||
* Author : Luciano Vernaschi <luciano@virgilio.it>
|
||||
* Last Updated : Mar. 1st, 2007
|
||||
* TinyMCE Version : 2.1.0
|
||||
*/
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Modifica stile CSS',
|
||||
styleinfo_desc : 'Modifica stile CSS',
|
||||
apply : 'Applica',
|
||||
text_tab : 'Testo',
|
||||
background_tab : 'Sfondo',
|
||||
block_tab : 'Blocco',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Bordo',
|
||||
list_tab : 'Lista',
|
||||
positioning_tab : 'Posizionamento',
|
||||
text_props : 'Testo',
|
||||
text_font : 'Font',
|
||||
text_size : 'Dimensione',
|
||||
text_weight : 'Peso',
|
||||
text_style : 'Stile',
|
||||
text_variant : 'Variante',
|
||||
text_lineheight : 'Altezza linea',
|
||||
text_case : 'Caso',
|
||||
text_color : 'Colore',
|
||||
text_decoration : 'Decorazione',
|
||||
text_overline : 'Linea sopra',
|
||||
text_underline : 'Sottolinea',
|
||||
text_striketrough : 'Linea sovrapposta',
|
||||
text_blink : 'Lampeggia',
|
||||
text_none : 'Nessuno',
|
||||
background_color : 'Colore di sfondo',
|
||||
background_image : 'Immagine di sfondo',
|
||||
background_repeat : 'Ripeti',
|
||||
background_attachment : 'Ancoraggio',
|
||||
background_hpos : 'Posizione orizzontale',
|
||||
background_vpos : 'Posizione verticale',
|
||||
block_wordspacing : 'Spaziatura parole',
|
||||
block_letterspacing : 'Spaziatura lettere',
|
||||
block_vertical_alignment : 'Allineamento verticale',
|
||||
block_text_align : 'Allineamento del testo',
|
||||
block_text_indent : 'Indentazione del testo',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Larghezza',
|
||||
box_height : 'Altezza',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Spaziatura interna',
|
||||
same : 'Uguale per tutti',
|
||||
top : 'Alto',
|
||||
right : 'Destra',
|
||||
bottom : 'Basso',
|
||||
left : 'Sinistra',
|
||||
margin : 'Margine esterno',
|
||||
style : 'Stile',
|
||||
width : 'Larghezza',
|
||||
height : 'Altezza',
|
||||
color : 'Colore',
|
||||
list_type : 'Tipo',
|
||||
bullet_image : 'Immagine punto elenco',
|
||||
position : 'Posizionamento',
|
||||
positioning_type : 'Tipo',
|
||||
visibility : 'Visibilità',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Piazzamento',
|
||||
clip : 'Clip'
|
||||
});
|
||||
|
|
|
|||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/ja.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/ja.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'スタイルの編集',
|
||||
styleinfo_desc : 'スタイルの編集',
|
||||
apply : '適用',
|
||||
text_tab : 'テキスト',
|
||||
background_tab : '背景',
|
||||
block_tab : 'ブロック',
|
||||
box_tab : 'ボックス',
|
||||
border_tab : 'ボーダー',
|
||||
list_tab : 'リスト',
|
||||
positioning_tab : 'ポジション',
|
||||
text_props : 'テキスト',
|
||||
text_font : 'font-family',
|
||||
text_size : 'font-size',
|
||||
text_weight : 'font-weight',
|
||||
text_style : 'font-style',
|
||||
text_variant : 'font-variant',
|
||||
text_lineheight : 'line-height',
|
||||
text_case : 'text-transform',
|
||||
text_color : 'color',
|
||||
text_decoration : 'text-decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'line-through',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'background-color',
|
||||
background_image : 'background-image',
|
||||
background_repeat : 'background-repeat',
|
||||
background_attachment : 'background-attachment',
|
||||
background_hpos : 'background-position(水平方向)',
|
||||
background_vpos : 'background-position(垂直方向)',
|
||||
block_wordspacing : 'word-spacing',
|
||||
block_letterspacing : 'letter-spacing',
|
||||
block_vertical_alignment : 'vertical-align',
|
||||
block_text_align : 'text-align',
|
||||
block_text_indent : 'text-indent',
|
||||
block_whitespace : 'white-space',
|
||||
block_display : 'display',
|
||||
box_width : 'width',
|
||||
box_height : 'height',
|
||||
box_float : 'float',
|
||||
box_clear : 'clear',
|
||||
padding : 'padding',
|
||||
same : 'すべて同じ',
|
||||
top : '上',
|
||||
right : '右',
|
||||
bottom : '下',
|
||||
left : '左',
|
||||
margin : 'margin',
|
||||
style : 'style',
|
||||
width : 'width',
|
||||
height : 'height',
|
||||
color : 'color',
|
||||
list_type : 'list-style-type',
|
||||
bullet_image : 'list-style-image',
|
||||
position : 'list-style-position',
|
||||
positioning_type : 'position',
|
||||
visibility : 'visibility',
|
||||
zindex : 'z-index',
|
||||
overflow : 'overflow',
|
||||
placement : 'placement',
|
||||
clip : 'clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/ja_euc-jp.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/ja_euc-jp.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/ja_shift_jis.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/ja_shift_jis.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/ja_utf-8.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/ja_utf-8.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/ko.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/ko.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/nb.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/nb.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/nl.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/nl.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/nn.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/nn.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/pl.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/pl.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
73
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/pt_br.js
vendored
Executable file
73
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/pt_br.js
vendored
Executable file
|
|
@ -0,0 +1,73 @@
|
|||
/**
|
||||
* pt_br lang variables
|
||||
* Brazilian Portuguese
|
||||
*
|
||||
* Author
|
||||
* Revision and modifications:
|
||||
* Marcio Barbosa (mpg) <mpg@mpg.com.br>
|
||||
* First Release : November 20, 2006 - TinyMCE Version : 2.0.8
|
||||
*/
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Editar folha de estilo CSS',
|
||||
styleinfo_desc : 'Editar estilo CSS',
|
||||
apply : 'Aplicar',
|
||||
text_tab : 'Texto',
|
||||
background_tab : 'Fundo',
|
||||
block_tab : 'Bloco',
|
||||
box_tab : 'Caixa',
|
||||
border_tab : 'Borda',
|
||||
list_tab : 'Lista',
|
||||
positioning_tab : 'Posicionamento',
|
||||
text_props : 'Texto',
|
||||
text_font : 'Fonte',
|
||||
text_size : 'Tamanho',
|
||||
text_weight : 'Largura',
|
||||
text_style : 'Estilo',
|
||||
text_variant : 'Variação',
|
||||
text_lineheight : 'Altura da linha',
|
||||
text_case : 'Caso',
|
||||
text_color : 'Cor',
|
||||
text_decoration : 'Decoração',
|
||||
text_overline : 'Sobrescrito',
|
||||
text_underline : 'Subscrito',
|
||||
text_striketrough : 'Tachado',
|
||||
text_blink : 'Piscante',
|
||||
text_none : 'nenhum',
|
||||
background_color : 'Cor do fundo',
|
||||
background_image : 'Fundo da imagem',
|
||||
background_repeat : 'Repetir',
|
||||
background_attachment : 'Anexo',
|
||||
background_hpos : 'Posição horizontal',
|
||||
background_vpos : 'Posição vertical',
|
||||
block_wordspacing : 'Espaçamento de palavras',
|
||||
block_letterspacing : 'Espaçamento de letras',
|
||||
block_vertical_alignment : 'Alinhamento vertical',
|
||||
block_text_align : 'Alinhamento do texto',
|
||||
block_text_indent : 'Identação do texto',
|
||||
block_whitespace : 'Espaços em branco',
|
||||
block_display : 'Visualização',
|
||||
box_width : 'Largura',
|
||||
box_height : 'Altura',
|
||||
box_float : 'Flutuante',
|
||||
box_clear : 'Limpar',
|
||||
padding : 'Espaçamento',
|
||||
same : 'Igual para todos',
|
||||
top : 'Superior',
|
||||
right : 'Direita',
|
||||
bottom : 'Inferior',
|
||||
left : 'Esquerda',
|
||||
margin : 'Margem',
|
||||
style : 'Estilo',
|
||||
width : 'Largura',
|
||||
height : 'Altura',
|
||||
color : 'Cor',
|
||||
list_type : 'Tipo',
|
||||
bullet_image : 'Imagem tipo Bullet',
|
||||
position : 'Posicionamento',
|
||||
positioning_type : 'Tipo',
|
||||
visibility : 'Visibilidade',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Sobrescrever',
|
||||
placement : 'Localização',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/ro.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/ro.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// RO lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Editare stil CSS',
|
||||
styleinfo_desc : 'Editare stil CSS',
|
||||
apply : 'Aplică',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Fundal',
|
||||
block_tab : 'Bloc',
|
||||
box_tab : 'Cutie',
|
||||
border_tab : 'Chenar',
|
||||
list_tab : 'Listă',
|
||||
positioning_tab : 'Poziţionare',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Dimensiune',
|
||||
text_weight : 'Greutate',
|
||||
text_style : 'Stil',
|
||||
text_variant : 'Variantă',
|
||||
text_lineheight : 'Înălţime linie',
|
||||
text_case : 'Minuscule/majuscule',
|
||||
text_color : 'Culoare',
|
||||
text_decoration : 'Decoraÿie',
|
||||
text_overline : 'tăiat',
|
||||
text_underline : 'subliniat',
|
||||
text_striketrough : 'tăiat',
|
||||
text_blink : 'clipeşte',
|
||||
text_none : 'nimic',
|
||||
background_color : 'Culoare fundal',
|
||||
background_image : 'Imagine fundal',
|
||||
background_repeat : 'Repetă',
|
||||
background_attachment : 'Ataşament',
|
||||
background_hpos : 'Poziÿia pa orizontală',
|
||||
background_vpos : 'Poziţia pe verticală',
|
||||
block_wordspacing : 'Spaţierea cuvintelor',
|
||||
block_letterspacing : 'Spaţerea literelor',
|
||||
block_vertical_alignment : 'Aliniere verticală',
|
||||
block_text_align : 'Aliniere text',
|
||||
block_text_indent : 'Indentare text',
|
||||
block_whitespace : 'Spaţiu alb',
|
||||
block_display : 'Afişare',
|
||||
box_width : 'Lăţime',
|
||||
box_height : 'Înălţime',
|
||||
box_float : 'Plutitor',
|
||||
box_clear : 'Curat',
|
||||
padding : 'Umplere (padding)',
|
||||
same : 'La fel peste tot',
|
||||
top : 'Sus',
|
||||
right : 'Dreapta',
|
||||
bottom : 'Jos',
|
||||
left : 'Stânga',
|
||||
margin : 'Margine',
|
||||
style : 'Stil',
|
||||
width : 'Lăţime',
|
||||
height : 'Înălţime',
|
||||
color : 'Culoare',
|
||||
list_type : 'Tip',
|
||||
bullet_image : 'Imagine bullet',
|
||||
position : 'Poziţia',
|
||||
positioning_type : 'Tip',
|
||||
visibility : 'Vizibilitate',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Depăşire (overflow)',
|
||||
placement : 'Plasare',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/ru.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/ru.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// RU lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Редактировать CSS Стиль',
|
||||
styleinfo_desc : 'Редактировать CSS Стиль',
|
||||
apply : 'Принять',
|
||||
text_tab : 'Текст',
|
||||
background_tab : 'Фон',
|
||||
block_tab : 'Блок',
|
||||
box_tab : 'Бокс',
|
||||
border_tab : 'Граница',
|
||||
list_tab : 'Список',
|
||||
positioning_tab : 'Позиционирование',
|
||||
text_props : 'Текст',
|
||||
text_font : 'Шрифт',
|
||||
text_size : 'Размер',
|
||||
text_weight : 'Ширина',
|
||||
text_style : 'Стиль',
|
||||
text_variant : 'Вариант',
|
||||
text_lineheight : 'Высота строки',
|
||||
text_case : 'Регистр',
|
||||
text_color : 'Цвет',
|
||||
text_decoration : 'Оформление',
|
||||
text_overline : 'Надчеркивание',
|
||||
text_underline : 'Подчеркивание',
|
||||
text_striketrough : 'Зачеркивание',
|
||||
text_blink : 'Мерцание',
|
||||
text_none : 'нет',
|
||||
background_color : 'Цвет фона',
|
||||
background_image : 'Фоновое изображение',
|
||||
background_repeat : 'Повторить',
|
||||
background_attachment : 'Прокрутка фонового изображения',
|
||||
background_hpos : 'Горизонтальная позиция',
|
||||
background_vpos : 'Вертикальная позиция',
|
||||
block_wordspacing : 'Расстояние между словами',
|
||||
block_letterspacing : 'Расстояние между буквами',
|
||||
block_vertical_alignment : 'Выравнивание по вертикали',
|
||||
block_text_align : 'Выравнивание текста',
|
||||
block_text_indent : 'Отступ первой строки',
|
||||
block_whitespace : 'Пробелы',
|
||||
block_display : 'Отображение',
|
||||
box_width : 'Ширина',
|
||||
box_height : 'Высота',
|
||||
box_float : 'Выравнивание с обтеканием',
|
||||
box_clear : 'Запрет обтекания',
|
||||
padding : 'Поля',
|
||||
same : 'Тоже для остальных',
|
||||
top : 'Верх',
|
||||
right : 'Право',
|
||||
bottom : 'Низ',
|
||||
left : 'Лево',
|
||||
margin : 'Отступ',
|
||||
style : 'Стиль',
|
||||
width : 'Ширина',
|
||||
height : 'Высота',
|
||||
color : 'Цвет',
|
||||
list_type : 'Тип',
|
||||
bullet_image : 'Маркер абзаца',
|
||||
position : 'Позиция',
|
||||
positioning_type : 'Тип',
|
||||
visibility : 'Видимость',
|
||||
zindex : 'Наложение',
|
||||
overflow : 'Переполнение',
|
||||
placement : 'Размещение',
|
||||
clip : 'Позиционирование'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/ru_CP1251.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/ru_CP1251.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// RU lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Редактировать CSS Стиль',
|
||||
styleinfo_desc : 'Редактировать CSS Стиль',
|
||||
apply : 'Принять',
|
||||
text_tab : 'Текст',
|
||||
background_tab : 'Фон',
|
||||
block_tab : 'Блок',
|
||||
box_tab : 'Бокс',
|
||||
border_tab : 'Граница',
|
||||
list_tab : 'Список',
|
||||
positioning_tab : 'Позиционирование',
|
||||
text_props : 'Текст',
|
||||
text_font : 'Шрифт',
|
||||
text_size : 'Размер',
|
||||
text_weight : 'Ширина',
|
||||
text_style : 'Стиль',
|
||||
text_variant : 'Вариант',
|
||||
text_lineheight : 'Высота строки',
|
||||
text_case : 'Регистр',
|
||||
text_color : 'Цвет',
|
||||
text_decoration : 'Оформление',
|
||||
text_overline : 'Надчеркивание',
|
||||
text_underline : 'Подчеркивание',
|
||||
text_striketrough : 'Зачеркивание',
|
||||
text_blink : 'Мерцание',
|
||||
text_none : 'нет',
|
||||
background_color : 'Цвет фона',
|
||||
background_image : 'Фоновое изображение',
|
||||
background_repeat : 'Повторить',
|
||||
background_attachment : 'Прокрутка фонового изображения',
|
||||
background_hpos : 'Горизонтальная позиция',
|
||||
background_vpos : 'Вертикальная позиция',
|
||||
block_wordspacing : 'Расстояние между словами',
|
||||
block_letterspacing : 'Расстояние между буквами',
|
||||
block_vertical_alignment : 'Выравнивание по вертикали',
|
||||
block_text_align : 'Выравнивание текста',
|
||||
block_text_indent : 'Отступ первой строки',
|
||||
block_whitespace : 'Пробелы',
|
||||
block_display : 'Отображение',
|
||||
box_width : 'Ширина',
|
||||
box_height : 'Высота',
|
||||
box_float : 'Выравнивание с обтеканием',
|
||||
box_clear : 'Запрет обтекания',
|
||||
padding : 'Поля',
|
||||
same : 'Тоже для остальных',
|
||||
top : 'Верх',
|
||||
right : 'Право',
|
||||
bottom : 'Низ',
|
||||
left : 'Лево',
|
||||
margin : 'Отступ',
|
||||
style : 'Стиль',
|
||||
width : 'Ширина',
|
||||
height : 'Высота',
|
||||
color : 'Цвет',
|
||||
list_type : 'Тип',
|
||||
bullet_image : 'Маркер абзаца',
|
||||
position : 'Позиция',
|
||||
positioning_type : 'Тип',
|
||||
visibility : 'Видимость',
|
||||
zindex : 'Наложение',
|
||||
overflow : 'Переполнение',
|
||||
placement : 'Размещение',
|
||||
clip : 'Позиционирование'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/ru_KOI8-R.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/ru_KOI8-R.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// RU lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Редактировать CSS Стиль',
|
||||
styleinfo_desc : 'Редактировать CSS Стиль',
|
||||
apply : 'Принять',
|
||||
text_tab : 'Текст',
|
||||
background_tab : 'Фон',
|
||||
block_tab : 'Блок',
|
||||
box_tab : 'Бокс',
|
||||
border_tab : 'Граница',
|
||||
list_tab : 'Список',
|
||||
positioning_tab : 'Позиционирование',
|
||||
text_props : 'Текст',
|
||||
text_font : 'Шрифт',
|
||||
text_size : 'Размер',
|
||||
text_weight : 'Ширина',
|
||||
text_style : 'Стиль',
|
||||
text_variant : 'Вариант',
|
||||
text_lineheight : 'Высота строки',
|
||||
text_case : 'Регистр',
|
||||
text_color : 'Цвет',
|
||||
text_decoration : 'Оформление',
|
||||
text_overline : 'Надчеркивание',
|
||||
text_underline : 'Подчеркивание',
|
||||
text_striketrough : 'Зачеркивание',
|
||||
text_blink : 'Мерцание',
|
||||
text_none : 'нет',
|
||||
background_color : 'Цвет фона',
|
||||
background_image : 'Фоновое изображение',
|
||||
background_repeat : 'Повторить',
|
||||
background_attachment : 'Прокрутка фонового изображения',
|
||||
background_hpos : 'Горизонтальная позиция',
|
||||
background_vpos : 'Вертикальная позиция',
|
||||
block_wordspacing : 'Расстояние между словами',
|
||||
block_letterspacing : 'Расстояние между буквами',
|
||||
block_vertical_alignment : 'Выравнивание по вертикали',
|
||||
block_text_align : 'Выравнивание текста',
|
||||
block_text_indent : 'Отступ первой строки',
|
||||
block_whitespace : 'Пробелы',
|
||||
block_display : 'Отображение',
|
||||
box_width : 'Ширина',
|
||||
box_height : 'Высота',
|
||||
box_float : 'Выравнивание с обтеканием',
|
||||
box_clear : 'Запрет обтекания',
|
||||
padding : 'Поля',
|
||||
same : 'Тоже для остальных',
|
||||
top : 'Верх',
|
||||
right : 'Право',
|
||||
bottom : 'Низ',
|
||||
left : 'Лево',
|
||||
margin : 'Отступ',
|
||||
style : 'Стиль',
|
||||
width : 'Ширина',
|
||||
height : 'Высота',
|
||||
color : 'Цвет',
|
||||
list_type : 'Тип',
|
||||
bullet_image : 'Маркер абзаца',
|
||||
position : 'Позиция',
|
||||
positioning_type : 'Тип',
|
||||
visibility : 'Видимость',
|
||||
zindex : 'Наложение',
|
||||
overflow : 'Переполнение',
|
||||
placement : 'Размещение',
|
||||
clip : 'Позиционирование'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/si.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/si.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/sk.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/sk.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
60
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/sq.js
vendored
Executable file
60
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/sq.js
vendored
Executable file
|
|
@ -0,0 +1,60 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Ndrysho stilin CSS',
|
||||
styleinfo_desc : 'Ndrysho stilin CSS',
|
||||
text_tab : 'Teksti',
|
||||
background_tab : 'Sfondi',
|
||||
block_tab : 'Blloku',
|
||||
box_tab : 'Kutia',
|
||||
border_tab : 'Kufiri',
|
||||
list_tab : 'Lista',
|
||||
positioning_tab : 'Pozicionimi',
|
||||
text_props : 'Teksti',
|
||||
text_font : 'Fonti',
|
||||
text_size : 'Madhesia',
|
||||
text_weight : 'Tipi',
|
||||
text_style : 'Stili',
|
||||
text_variant : 'Varianti',
|
||||
text_lineheight : 'Trashesia e linjes',
|
||||
text_case : 'E madhe/vogel',
|
||||
text_color : 'Ngjyra',
|
||||
text_decoration : 'Dekorimi',
|
||||
background_color : 'Ngjyra e sfondit',
|
||||
background_image : 'Imazhi ne sfond',
|
||||
background_repeat : 'Perserit',
|
||||
background_attachment : 'Bashkangjitur',
|
||||
background_hpos : 'Pozicioni horizontal',
|
||||
background_vpos : 'Pozicioni vertikal',
|
||||
block_wordspacing : 'Hapesira e fjaleve',
|
||||
block_letterspacing : 'Hapesira e germave',
|
||||
block_vertical_alignment : 'Dreitimi vertikal',
|
||||
block_text_align : 'Drejtimi i tekstit',
|
||||
block_text_indent : 'Hapesira e tekstit',
|
||||
block_whitespace : 'Hpaseira e bardhe',
|
||||
block_display : 'Pamja',
|
||||
box_width : 'Gjersia',
|
||||
box_height : 'Lartesia',
|
||||
box_float : 'Noto',
|
||||
box_clear : 'Bosh',
|
||||
padding : 'Vend bosh',
|
||||
same : 'Te gjithe njesoj',
|
||||
top : 'Siper',
|
||||
right : 'Djathtas',
|
||||
bottom : 'Poshte',
|
||||
left : 'Majtas',
|
||||
margin : 'Buzet',
|
||||
style : 'Stili',
|
||||
width : 'Gjeresia',
|
||||
height : 'Lartesia',
|
||||
color : 'Ngjyra',
|
||||
list_type : 'Tipi',
|
||||
bullet_image : 'Imazhi i pikes',
|
||||
position : 'Pozicioni',
|
||||
positioning_type : 'Tipi',
|
||||
visibility : 'Dukshmeria',
|
||||
zindex : 'Indeksi-Z',
|
||||
overflow : 'Mbiderdhje',
|
||||
placement : 'Vendosja',
|
||||
clip : 'Klipi'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/sr.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/sr.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/sv.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/sv.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/sv_utf8.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/sv_utf8.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/tr.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/tr.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/uk.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/uk.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Редагувати CSS Стиль',
|
||||
styleinfo_desc : 'Редагувати CSS Стиль',
|
||||
apply : 'Прийняти',
|
||||
text_tab : 'Текст',
|
||||
background_tab : 'Фон',
|
||||
block_tab : 'Блок',
|
||||
box_tab : 'Бокс',
|
||||
border_tab : 'Край',
|
||||
list_tab : 'Список',
|
||||
positioning_tab : 'Позиціонування',
|
||||
text_props : 'Текст',
|
||||
text_font : 'Шрифт',
|
||||
text_size : 'Розмір',
|
||||
text_weight : 'Ширина',
|
||||
text_style : 'Стиль',
|
||||
text_variant : 'Варіант',
|
||||
text_lineheight : 'Висота рядка',
|
||||
text_case : 'Регістр',
|
||||
text_color : 'Колір',
|
||||
text_decoration : 'Оформлення',
|
||||
text_overline : 'Надкреслення',
|
||||
text_underline : 'Підкреслення',
|
||||
text_striketrough : 'Перекреслення',
|
||||
text_blink : 'Мерехтіння',
|
||||
text_none : 'немає',
|
||||
background_color : 'Колір фону',
|
||||
background_image : 'Фонове зображення',
|
||||
background_repeat : 'Повторити',
|
||||
background_attachment : 'Прокручування фонового зображення',
|
||||
background_hpos : 'Горизонтальна позиція',
|
||||
background_vpos : 'Вертикальна позиція',
|
||||
block_wordspacing : 'Відстань між словами',
|
||||
block_letterspacing : 'Відстань між літерами',
|
||||
block_vertical_alignment : 'Вирівнювання за вертикаллю',
|
||||
block_text_align : 'Вирівнювання тексту',
|
||||
block_text_indent : 'Відступ першого рядка',
|
||||
block_whitespace : 'Пробіли',
|
||||
block_display : 'Відображення',
|
||||
box_width : 'Ширина',
|
||||
box_height : 'Висота',
|
||||
box_float : 'Вирівнювання з обтіканням',
|
||||
box_clear : 'Заборона обтікання',
|
||||
padding : 'Поля',
|
||||
same : 'Те ж для інших',
|
||||
top : 'Зверху',
|
||||
right : 'Справа',
|
||||
bottom : 'Знизу',
|
||||
left : 'Зліва',
|
||||
margin : 'Відступ',
|
||||
style : 'Стиль',
|
||||
width : 'Ширина',
|
||||
height : 'Висота',
|
||||
color : 'Колір',
|
||||
list_type : 'Тип',
|
||||
bullet_image : 'Маркер абзацу',
|
||||
position : 'Позиція',
|
||||
positioning_type : 'Тип',
|
||||
visibility : 'Видимість',
|
||||
zindex : 'Накладення',
|
||||
overflow : 'Переповнення',
|
||||
placement : 'Розміщення',
|
||||
clip : 'Позиціонування'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/uk_CP1251.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/uk_CP1251.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Ðåäàãóâàòè CSS Ñòèëü',
|
||||
styleinfo_desc : 'Ðåäàãóâàòè CSS Ñòèëü',
|
||||
apply : 'Ïðèéíÿòè',
|
||||
text_tab : 'Òåêñò',
|
||||
background_tab : 'Ôîí',
|
||||
block_tab : 'Áëîê',
|
||||
box_tab : 'Áîêñ',
|
||||
border_tab : 'Êðàé',
|
||||
list_tab : 'Ñïèñîê',
|
||||
positioning_tab : 'Ïîçèö³îíóâàííÿ',
|
||||
text_props : 'Òåêñò',
|
||||
text_font : 'Øðèôò',
|
||||
text_size : 'Ðîçì³ð',
|
||||
text_weight : 'Øèðèíà',
|
||||
text_style : 'Ñòèëü',
|
||||
text_variant : 'Âàð³àíò',
|
||||
text_lineheight : 'Âèñîòà ðÿäêà',
|
||||
text_case : 'Ðåã³ñòð',
|
||||
text_color : 'Êîë³ð',
|
||||
text_decoration : 'Îôîðìëåííÿ',
|
||||
text_overline : 'Íàäêðåñëåííÿ',
|
||||
text_underline : 'ϳäêðåñëåííÿ',
|
||||
text_striketrough : 'Ïåðåêðåñëåííÿ',
|
||||
text_blink : 'Ìåðåõò³ííÿ',
|
||||
text_none : 'íåìàº',
|
||||
background_color : 'Êîë³ð ôîíó',
|
||||
background_image : 'Ôîíîâå çîáðàæåííÿ',
|
||||
background_repeat : 'Ïîâòîðèòè',
|
||||
background_attachment : 'Ïðîêðó÷óâàííÿ ôîíîâîãî çîáðàæåííÿ',
|
||||
background_hpos : 'Ãîðèçîíòàëüíà ïîçèö³ÿ',
|
||||
background_vpos : 'Âåðòèêàëüíà ïîçèö³ÿ',
|
||||
block_wordspacing : '³äñòàíü ì³æ ñëîâàìè',
|
||||
block_letterspacing : '³äñòàíü ì³æ ë³òåðàìè',
|
||||
block_vertical_alignment : 'Âèð³âíþâàííÿ çà âåðòèêàëëþ',
|
||||
block_text_align : 'Âèð³âíþâàííÿ òåêñòó',
|
||||
block_text_indent : '³äñòóï ïåðøîãî ðÿäêà',
|
||||
block_whitespace : 'Ïðîá³ëè',
|
||||
block_display : '³äîáðàæåííÿ',
|
||||
box_width : 'Øèðèíà',
|
||||
box_height : 'Âèñîòà',
|
||||
box_float : 'Âèð³âíþâàííÿ ç îáò³êàííÿì',
|
||||
box_clear : 'Çàáîðîíà îáò³êàííÿ',
|
||||
padding : 'Ïîëÿ',
|
||||
same : 'Òå æ äëÿ ³íøèõ',
|
||||
top : 'Çâåðõó',
|
||||
right : 'Ñïðàâà',
|
||||
bottom : 'Çíèçó',
|
||||
left : 'Çë³âà',
|
||||
margin : '³äñòóï',
|
||||
style : 'Ñòèëü',
|
||||
width : 'Øèðèíà',
|
||||
height : 'Âèñîòà',
|
||||
color : 'Êîë³ð',
|
||||
list_type : 'Òèï',
|
||||
bullet_image : 'Ìàðêåð àáçàöó',
|
||||
position : 'Ïîçèö³ÿ',
|
||||
positioning_type : 'Òèï',
|
||||
visibility : 'Âèäèì³ñòü',
|
||||
zindex : 'Íàêëàäåííÿ',
|
||||
overflow : 'Ïåðåïîâíåííÿ',
|
||||
placement : 'Ðîçì³ùåííÿ',
|
||||
clip : 'Ïîçèö³îíóâàííÿ'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/uk_KOI8-U.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/uk_KOI8-U.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'òÅÄÁÇÕ×ÁÔÉ CSS óÔÉÌØ',
|
||||
styleinfo_desc : 'òÅÄÁÇÕ×ÁÔÉ CSS óÔÉÌØ',
|
||||
apply : 'ðÒÉÊÎÑÔÉ',
|
||||
text_tab : 'ôÅËÓÔ',
|
||||
background_tab : 'æÏÎ',
|
||||
block_tab : 'âÌÏË',
|
||||
box_tab : 'âÏËÓ',
|
||||
border_tab : 'ëÒÁÊ',
|
||||
list_tab : 'óÐÉÓÏË',
|
||||
positioning_tab : 'ðÏÚÉæÏÎÕ×ÁÎÎÑ',
|
||||
text_props : 'ôÅËÓÔ',
|
||||
text_font : 'ûÒÉÆÔ',
|
||||
text_size : 'òÏÚͦÒ',
|
||||
text_weight : 'ûÉÒÉÎÁ',
|
||||
text_style : 'óÔÉÌØ',
|
||||
text_variant : '÷ÁÒ¦ÁÎÔ',
|
||||
text_lineheight : '÷ÉÓÏÔÁ ÒÑÄËÁ',
|
||||
text_case : 'òÅǦÓÔÒ',
|
||||
text_color : 'ëÏ̦Ò',
|
||||
text_decoration : 'ïÆÏÒÍÌÅÎÎÑ',
|
||||
text_overline : 'îÁÄËÒÅÓÌÅÎÎÑ',
|
||||
text_underline : 'ð¦ÄËÒÅÓÌÅÎÎÑ',
|
||||
text_striketrough : 'ðÅÒÅËÒÅÓÌÅÎÎÑ',
|
||||
text_blink : 'íÅÒÅÈÔ¦ÎÎÑ',
|
||||
text_none : 'ÎÅÍÁ¤',
|
||||
background_color : 'ëÏÌ¦Ò ÆÏÎÕ',
|
||||
background_image : 'æÏÎÏ×Å ÚÏÂÒÁÖÅÎÎÑ',
|
||||
background_repeat : 'ðÏ×ÔÏÒÉÔÉ',
|
||||
background_attachment : 'ðÒÏËÒÕÞÕ×ÁÎÎÑ ÆÏÎÏ×ÏÇÏ ÚÏÂÒÁÖÅÎÎÑ',
|
||||
background_hpos : 'çÏÒÉÚÏÎÔÁÌØÎÁ ÐÏÚÉæÑ',
|
||||
background_vpos : '÷ÅÒÔÉËÁÌØÎÁ ÐÏÚÉæÑ',
|
||||
block_wordspacing : '÷¦ÄÓÔÁÎØ Í¦Ö ÓÌÏ×ÁÍÉ',
|
||||
block_letterspacing : '÷¦ÄÓÔÁÎØ Í¦Ö Ì¦ÔÅÒÁÍÉ',
|
||||
block_vertical_alignment : '÷ÉÒ¦×ÎÀ×ÁÎÎÑ ÚÁ ×ÅÒÔÉËÁÌÌÀ',
|
||||
block_text_align : '÷ÉÒ¦×ÎÀ×ÁÎÎÑ ÔÅËÓÔÕ',
|
||||
block_text_indent : '÷¦ÄÓÔÕÐ ÐÅÒÛÏÇÏ ÒÑÄËÁ',
|
||||
block_whitespace : 'ðÒϦÌÉ',
|
||||
block_display : '÷¦ÄÏÂÒÁÖÅÎÎÑ',
|
||||
box_width : 'ûÉÒÉÎÁ',
|
||||
box_height : '÷ÉÓÏÔÁ',
|
||||
box_float : '÷ÉÒ¦×ÎÀ×ÁÎÎÑ Ú ÏÂÔ¦ËÁÎÎÑÍ',
|
||||
box_clear : 'úÁÂÏÒÏÎÁ ÏÂÔ¦ËÁÎÎÑ',
|
||||
padding : 'ðÏÌÑ',
|
||||
same : 'ôÅ Ö ÄÌÑ ¦ÎÛÉÈ',
|
||||
top : 'ú×ÅÒÈÕ',
|
||||
right : 'óÐÒÁ×Á',
|
||||
bottom : 'úÎÉÚÕ',
|
||||
left : 'ú̦×Á',
|
||||
margin : '÷¦ÄÓÔÕÐ',
|
||||
style : 'óÔÉÌØ',
|
||||
width : 'ûÉÒÉÎÁ',
|
||||
height : '÷ÉÓÏÔÁ',
|
||||
color : 'ëÏ̦Ò',
|
||||
list_type : 'ôÉÐ',
|
||||
bullet_image : 'íÁÒËÅÒ ÁÂÚÁÃÕ',
|
||||
position : 'ðÏÚÉæÑ',
|
||||
positioning_type : 'ôÉÐ',
|
||||
visibility : '÷ÉÄÉͦÓÔØ',
|
||||
zindex : 'îÁËÌÁÄÅÎÎÑ',
|
||||
overflow : 'ðÅÒÅÐÏ×ÎÅÎÎÑ',
|
||||
placement : 'òÏÚͦÝÅÎÎÑ',
|
||||
clip : 'ðÏÚÉæÏÎÕ×ÁÎÎÑ'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/vi.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/vi.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// Vietnamese lang variables - Đỗ Xuân Tiến - tiendx2002@yahoo.com Việt hóa
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Sửa phong cách - CSS',
|
||||
styleinfo_desc : 'Sửa phong cách - CSS',
|
||||
apply : 'Áp dụng',
|
||||
text_tab : 'Chữ',
|
||||
background_tab : 'Nền',
|
||||
block_tab : 'Khối',
|
||||
box_tab : 'Hộp',
|
||||
border_tab : 'Khung bao quanh',
|
||||
list_tab : 'Danh sách',
|
||||
positioning_tab : 'Vị trí',
|
||||
text_props : 'Chữ',
|
||||
text_font : 'Font',
|
||||
text_size : 'Cỡ',
|
||||
text_weight : 'Độ đậm',
|
||||
text_style : 'Kiểu',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Khoảng cách dòng',
|
||||
text_case : 'Case',
|
||||
text_color : 'Màu',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'gạch chân',
|
||||
text_striketrough : 'gạch ngang qua',
|
||||
text_blink : 'nhấp nháy',
|
||||
text_none : 'không có gì',
|
||||
background_color : 'Màu nền',
|
||||
background_image : 'Ảnh nền',
|
||||
background_repeat : 'Lặp lại',
|
||||
background_attachment : 'Đính kèm',
|
||||
background_hpos : 'Vị trí nằm ngang',
|
||||
background_vpos : 'Vị trí nằm dọc',
|
||||
block_wordspacing : 'Khoảng cách từ',
|
||||
block_letterspacing : 'Khoảng cách chữ',
|
||||
block_vertical_alignment : 'Căn lề chiều dọc',
|
||||
block_text_align : 'Căn lề chữ',
|
||||
block_text_indent : 'Thụt lề chữ',
|
||||
block_whitespace : 'Khoảng trắng',
|
||||
block_display : 'Hiển thị',
|
||||
box_width : 'Chiều rộng',
|
||||
box_height : 'Chiều cao',
|
||||
box_float : 'Lơ lửng',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Áp dụng cho tất cả',
|
||||
top : 'Trên',
|
||||
right : 'Phải',
|
||||
bottom : 'Dưới',
|
||||
left : 'Trái',
|
||||
margin : 'Lề',
|
||||
style : 'Kiểu',
|
||||
width : 'Độ rộng',
|
||||
height : 'Chiều cao',
|
||||
color : 'Màu',
|
||||
list_type : 'Kiểu',
|
||||
bullet_image : 'Ảnh danh sách',
|
||||
position : 'Vị trí',
|
||||
positioning_type : 'Kiểu',
|
||||
visibility : 'Nhìn thấy được',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Vị trí',
|
||||
clip : 'Cắt'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/zh_cn.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/zh_cn.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/zh_cn_utf8.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/zh_cn_utf8.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/zh_tw.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/zh_tw.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/zh_tw_utf8.js
vendored
Executable file
66
www/extras/tinymce2/jscripts/tiny_mce/plugins/style/langs/zh_tw_utf8.js
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('style',{
|
||||
title : 'Edit CSS Style',
|
||||
styleinfo_desc : 'Edit CSS Style',
|
||||
apply : 'Apply',
|
||||
text_tab : 'Text',
|
||||
background_tab : 'Background',
|
||||
block_tab : 'Block',
|
||||
box_tab : 'Box',
|
||||
border_tab : 'Border',
|
||||
list_tab : 'List',
|
||||
positioning_tab : 'Positioning',
|
||||
text_props : 'Text',
|
||||
text_font : 'Font',
|
||||
text_size : 'Size',
|
||||
text_weight : 'Weight',
|
||||
text_style : 'Style',
|
||||
text_variant : 'Variant',
|
||||
text_lineheight : 'Line height',
|
||||
text_case : 'Case',
|
||||
text_color : 'Color',
|
||||
text_decoration : 'Decoration',
|
||||
text_overline : 'overline',
|
||||
text_underline : 'underline',
|
||||
text_striketrough : 'strikethrough',
|
||||
text_blink : 'blink',
|
||||
text_none : 'none',
|
||||
background_color : 'Background color',
|
||||
background_image : 'Background image',
|
||||
background_repeat : 'Repeat',
|
||||
background_attachment : 'Attachment',
|
||||
background_hpos : 'Horizontal position',
|
||||
background_vpos : 'Vertical position',
|
||||
block_wordspacing : 'Word spacing',
|
||||
block_letterspacing : 'Letter spacing',
|
||||
block_vertical_alignment : 'Vertical alignment',
|
||||
block_text_align : 'Text align',
|
||||
block_text_indent : 'Text indent',
|
||||
block_whitespace : 'Whitespace',
|
||||
block_display : 'Display',
|
||||
box_width : 'Width',
|
||||
box_height : 'Height',
|
||||
box_float : 'Float',
|
||||
box_clear : 'Clear',
|
||||
padding : 'Padding',
|
||||
same : 'Same for all',
|
||||
top : 'Top',
|
||||
right : 'Right',
|
||||
bottom : 'Bottom',
|
||||
left : 'Left',
|
||||
margin : 'Margin',
|
||||
style : 'Style',
|
||||
width : 'Width',
|
||||
height : 'Height',
|
||||
color : 'Color',
|
||||
list_type : 'Type',
|
||||
bullet_image : 'Bullet image',
|
||||
position : 'Position',
|
||||
positioning_type : 'Type',
|
||||
visibility : 'Visibility',
|
||||
zindex : 'Z-index',
|
||||
overflow : 'Overflow',
|
||||
placement : 'Placement',
|
||||
clip : 'Clip'
|
||||
});
|
||||
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue