Updated TinyMCE to 3.2.1.1

This commit is contained in:
abacab
2009-01-01 11:44:00 -05:00
parent a7a76e9aee
commit 5c0ed5db40
1344 changed files with 74627 additions and 12975 deletions

View File

@@ -0,0 +1,13 @@
#text_font {width:250px;}
#text_size {width:70px;}
.mceAddSelectValue {background:#DDD;}
select, #block_text_indent, #box_width, #box_height, #box_padding_top, #box_padding_right, #box_padding_bottom, #box_padding_left {width:70px;}
#box_margin_top, #box_margin_right, #box_margin_bottom, #box_margin_left, #positioning_width, #positioning_height, #positioning_zindex {width:70px;}
#positioning_placement_top, #positioning_placement_right, #positioning_placement_bottom, #positioning_placement_left {width:70px;}
#positioning_clip_top, #positioning_clip_right, #positioning_clip_bottom, #positioning_clip_left {width:70px;}
.panel_wrapper div.current {padding-top:10px;height:230px;}
.delim {border-left:1px solid gray;}
.tdelim {border-bottom:1px solid gray;}
#block_display {width:145px;}
#list_type {width:115px;}
.disabled {background:#EEE;}

View File

@@ -0,0 +1 @@
(function(){tinymce.create('tinymce.plugins.StylePlugin',{init:function(ed,url){ed.addCommand('mceStyleProps',function(){ed.windowManager.open({file:url+'/props.htm',width:480+parseInt(ed.getLang('style.delta_width',0)),height:320+parseInt(ed.getLang('style.delta_height',0)),inline:1},{plugin_url:url,style_text:ed.selection.getNode().style.cssText});});ed.addCommand('mceSetElementStyle',function(ui,v){if(e=ed.selection.getNode()){ed.dom.setAttrib(e,'style',v);ed.execCommand('mceRepaint');}});ed.onNodeChange.add(function(ed,cm,n){cm.setDisabled('styleprops',n.nodeName==='BODY');});ed.addButton('styleprops',{title:'style.desc',cmd:'mceStyleProps'});},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};}});tinymce.PluginManager.add('style',tinymce.plugins.StylePlugin);})();

View File

@@ -0,0 +1,52 @@
/**
* $Id: editor_plugin_src.js 787 2008-04-10 11:40:57Z spocke $
*
* @author Moxiecode
* @copyright Copyright <20> 2004-2008, Moxiecode Systems AB, All rights reserved.
*/
(function() {
tinymce.create('tinymce.plugins.StylePlugin', {
init : function(ed, url) {
// Register commands
ed.addCommand('mceStyleProps', function() {
ed.windowManager.open({
file : url + '/props.htm',
width : 480 + parseInt(ed.getLang('style.delta_width', 0)),
height : 320 + parseInt(ed.getLang('style.delta_height', 0)),
inline : 1
}, {
plugin_url : url,
style_text : ed.selection.getNode().style.cssText
});
});
ed.addCommand('mceSetElementStyle', function(ui, v) {
if (e = ed.selection.getNode()) {
ed.dom.setAttrib(e, 'style', v);
ed.execCommand('mceRepaint');
}
});
ed.onNodeChange.add(function(ed, cm, n) {
cm.setDisabled('styleprops', n.nodeName === 'BODY');
});
// Register buttons
ed.addButton('styleprops', {title : 'style.desc', cmd : 'mceStyleProps'});
},
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
};
}
});
// Register plugin
tinymce.PluginManager.add('style', tinymce.plugins.StylePlugin);
})();

View File

@@ -0,0 +1,641 @@
tinyMCEPopup.requireLangPack();
var defaultFonts = "" +
"Arial, Helvetica, sans-serif=Arial, Helvetica, sans-serif;" +
"Times New Roman, Times, serif=Times New Roman, Times, serif;" +
"Courier New, Courier, mono=Courier New, Courier, mono;" +
"Times New Roman, Times, serif=Times New Roman, Times, serif;" +
"Georgia, Times New Roman, Times, serif=Georgia, Times New Roman, Times, serif;" +
"Verdana, Arial, Helvetica, sans-serif=Verdana, Arial, Helvetica, sans-serif;" +
"Geneva, Arial, Helvetica, sans-serif=Geneva, Arial, Helvetica, sans-serif";
var defaultSizes = "9;10;12;14;16;18;24;xx-small;x-small;small;medium;large;x-large;xx-large;smaller;larger";
var defaultMeasurement = "+pixels=px;points=pt;em;in;cm;mm;picas;ems;exs;%";
var defaultSpacingMeasurement = "pixels=px;points=pt;in;cm;mm;picas;+ems;exs;%";
var defaultIndentMeasurement = "pixels=px;+points=pt;in;cm;mm;picas;ems;exs;%";
var defaultWeight = "normal;bold;bolder;lighter;100;200;300;400;500;600;700;800;900";
var defaultTextStyle = "normal;italic;oblique";
var defaultVariant = "normal;small-caps";
var defaultLineHeight = "normal";
var defaultAttachment = "fixed;scroll";
var defaultRepeat = "no-repeat;repeat;repeat-x;repeat-y";
var defaultPosH = "left;center;right";
var defaultPosV = "top;center;bottom";
var defaultVAlign = "baseline;sub;super;top;text-top;middle;bottom;text-bottom";
var defaultDisplay = "inline;block;list-item;run-in;compact;marker;table;inline-table;table-row-group;table-header-group;table-footer-group;table-row;table-column-group;table-column;table-cell;table-caption;none";
var defaultBorderStyle = "none;solid;dashed;dotted;double;groove;ridge;inset;outset";
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'), h;
ce.style.cssText = tinyMCEPopup.getWindowArg('style_text');
h = getBrowserHTML('background_image_browser','background_image','image','advimage');
document.getElementById("background_image_browser").innerHTML = h;
document.getElementById('text_color_pickcontainer').innerHTML = getColorPickerHTML('text_color_pick','text_color');
document.getElementById('background_color_pickcontainer').innerHTML = getColorPickerHTML('background_color_pick','background_color');
document.getElementById('border_color_top_pickcontainer').innerHTML = getColorPickerHTML('border_color_top_pick','border_color_top');
document.getElementById('border_color_right_pickcontainer').innerHTML = getColorPickerHTML('border_color_right_pick','border_color_right');
document.getElementById('border_color_bottom_pickcontainer').innerHTML = getColorPickerHTML('border_color_bottom_pick','border_color_bottom');
document.getElementById('border_color_left_pickcontainer').innerHTML = getColorPickerHTML('border_color_left_pick','border_color_left');
fillSelect(0, 'text_font', 'style_font', defaultFonts, ';', true);
fillSelect(0, 'text_size', 'style_font_size', defaultSizes, ';', true);
fillSelect(0, 'text_size_measurement', 'style_font_size_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'text_case', 'style_text_case', "capitalize;uppercase;lowercase", ';', true);
fillSelect(0, 'text_weight', 'style_font_weight', defaultWeight, ';', true);
fillSelect(0, 'text_style', 'style_font_style', defaultTextStyle, ';', true);
fillSelect(0, 'text_variant', 'style_font_variant', defaultVariant, ';', true);
fillSelect(0, 'text_lineheight', 'style_font_line_height', defaultLineHeight, ';', true);
fillSelect(0, 'text_lineheight_measurement', 'style_font_line_height_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'background_attachment', 'style_background_attachment', defaultAttachment, ';', true);
fillSelect(0, 'background_repeat', 'style_background_repeat', defaultRepeat, ';', true);
fillSelect(0, 'background_hpos_measurement', 'style_background_hpos_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'background_vpos_measurement', 'style_background_vpos_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'background_hpos', 'style_background_hpos', defaultPosH, ';', true);
fillSelect(0, 'background_vpos', 'style_background_vpos', defaultPosV, ';', true);
fillSelect(0, 'block_wordspacing', 'style_wordspacing', 'normal', ';', true);
fillSelect(0, 'block_wordspacing_measurement', 'style_wordspacing_measurement', defaultSpacingMeasurement, ';', true);
fillSelect(0, 'block_letterspacing', 'style_letterspacing', 'normal', ';', true);
fillSelect(0, 'block_letterspacing_measurement', 'style_letterspacing_measurement', defaultSpacingMeasurement, ';', true);
fillSelect(0, 'block_vertical_alignment', 'style_vertical_alignment', defaultVAlign, ';', true);
fillSelect(0, 'block_text_align', 'style_text_align', "left;right;center;justify", ';', true);
fillSelect(0, 'block_whitespace', 'style_whitespace', "normal;pre;nowrap", ';', true);
fillSelect(0, 'block_display', 'style_display', defaultDisplay, ';', true);
fillSelect(0, 'block_text_indent_measurement', 'style_text_indent_measurement', defaultIndentMeasurement, ';', true);
fillSelect(0, 'box_width_measurement', 'style_box_width_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'box_height_measurement', 'style_box_height_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'box_float', 'style_float', 'left;right;none', ';', true);
fillSelect(0, 'box_clear', 'style_clear', 'left;right;both;none', ';', true);
fillSelect(0, 'box_padding_left_measurement', 'style_padding_left_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'box_padding_top_measurement', 'style_padding_top_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'box_padding_bottom_measurement', 'style_padding_bottom_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'box_padding_right_measurement', 'style_padding_right_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'box_margin_left_measurement', 'style_margin_left_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'box_margin_top_measurement', 'style_margin_top_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'box_margin_bottom_measurement', 'style_margin_bottom_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'box_margin_right_measurement', 'style_margin_right_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'border_style_top', 'style_border_style_top', defaultBorderStyle, ';', true);
fillSelect(0, 'border_style_right', 'style_border_style_right', defaultBorderStyle, ';', true);
fillSelect(0, 'border_style_bottom', 'style_border_style_bottom', defaultBorderStyle, ';', true);
fillSelect(0, 'border_style_left', 'style_border_style_left', defaultBorderStyle, ';', true);
fillSelect(0, 'border_width_top', 'style_border_width_top', defaultBorderWidth, ';', true);
fillSelect(0, 'border_width_right', 'style_border_width_right', defaultBorderWidth, ';', true);
fillSelect(0, 'border_width_bottom', 'style_border_width_bottom', defaultBorderWidth, ';', true);
fillSelect(0, 'border_width_left', 'style_border_width_left', defaultBorderWidth, ';', true);
fillSelect(0, 'border_width_top_measurement', 'style_border_width_top_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'border_width_right_measurement', 'style_border_width_right_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'border_width_bottom_measurement', 'style_border_width_bottom_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'border_width_left_measurement', 'style_border_width_left_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'list_type', 'style_list_type', defaultListType, ';', true);
fillSelect(0, 'list_position', 'style_list_position', "inside;outside", ';', true);
fillSelect(0, 'positioning_type', 'style_positioning_type', "absolute;relative;static", ';', true);
fillSelect(0, 'positioning_visibility', 'style_positioning_visibility', "inherit;visible;hidden", ';', true);
fillSelect(0, 'positioning_width_measurement', 'style_positioning_width_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'positioning_height_measurement', 'style_positioning_height_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'positioning_overflow', 'style_positioning_overflow', "visible;hidden;scroll;auto", ';', true);
fillSelect(0, 'positioning_placement_top_measurement', 'style_positioning_placement_top_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'positioning_placement_right_measurement', 'style_positioning_placement_right_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'positioning_placement_bottom_measurement', 'style_positioning_placement_bottom_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'positioning_placement_left_measurement', 'style_positioning_placement_left_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'positioning_clip_top_measurement', 'style_positioning_clip_top_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'positioning_clip_right_measurement', 'style_positioning_clip_right_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'positioning_clip_bottom_measurement', 'style_positioning_clip_bottom_measurement', defaultMeasurement, ';', true);
fillSelect(0, 'positioning_clip_left_measurement', 'style_positioning_clip_left_measurement', defaultMeasurement, ';', true);
TinyMCE_EditableSelects.init();
setupFormData();
showDisabledControls();
}
function setupFormData() {
var ce = document.getElementById('container'), f = document.forms[0], s, b, i;
// Setup text fields
selectByValue(f, 'text_font', ce.style.fontFamily, true, true);
selectByValue(f, 'text_size', getNum(ce.style.fontSize), true, true);
selectByValue(f, 'text_size_measurement', getMeasurement(ce.style.fontSize));
selectByValue(f, 'text_weight', ce.style.fontWeight, true, true);
selectByValue(f, 'text_style', ce.style.fontStyle, true, true);
selectByValue(f, 'text_lineheight', getNum(ce.style.lineHeight), true, true);
selectByValue(f, 'text_lineheight_measurement', getMeasurement(ce.style.lineHeight));
selectByValue(f, 'text_case', ce.style.textTransform, true, true);
selectByValue(f, 'text_variant', ce.style.fontVariant, true, true);
f.text_color.value = tinyMCEPopup.editor.dom.toHex(ce.style.color);
updateColor('text_color_pick', 'text_color');
f.text_underline.checked = inStr(ce.style.textDecoration, 'underline');
f.text_overline.checked = inStr(ce.style.textDecoration, 'overline');
f.text_linethrough.checked = inStr(ce.style.textDecoration, 'line-through');
f.text_blink.checked = inStr(ce.style.textDecoration, 'blink');
// Setup background fields
f.background_color.value = tinyMCEPopup.editor.dom.toHex(ce.style.backgroundColor);
updateColor('background_color_pick', 'background_color');
f.background_image.value = ce.style.backgroundImage.replace(new RegExp("url\\('?([^']*)'?\\)", 'gi'), "$1");
selectByValue(f, 'background_repeat', ce.style.backgroundRepeat, true, true);
selectByValue(f, 'background_attachment', ce.style.backgroundAttachment, true, true);
selectByValue(f, 'background_hpos', getNum(getVal(ce.style.backgroundPosition, 0)), true, true);
selectByValue(f, 'background_hpos_measurement', getMeasurement(getVal(ce.style.backgroundPosition, 0)));
selectByValue(f, 'background_vpos', getNum(getVal(ce.style.backgroundPosition, 1)), true, true);
selectByValue(f, 'background_vpos_measurement', getMeasurement(getVal(ce.style.backgroundPosition, 1)));
// Setup block fields
selectByValue(f, 'block_wordspacing', getNum(ce.style.wordSpacing), true, true);
selectByValue(f, 'block_wordspacing_measurement', getMeasurement(ce.style.wordSpacing));
selectByValue(f, 'block_letterspacing', getNum(ce.style.letterSpacing), true, true);
selectByValue(f, 'block_letterspacing_measurement', getMeasurement(ce.style.letterSpacing));
selectByValue(f, 'block_vertical_alignment', ce.style.verticalAlign, true, true);
selectByValue(f, 'block_text_align', ce.style.textAlign, true, true);
f.block_text_indent.value = getNum(ce.style.textIndent);
selectByValue(f, 'block_text_indent_measurement', getMeasurement(ce.style.textIndent));
selectByValue(f, 'block_whitespace', ce.style.whiteSpace, true, true);
selectByValue(f, 'block_display', ce.style.display, true, true);
// Setup box fields
f.box_width.value = getNum(ce.style.width);
selectByValue(f, 'box_width_measurement', getMeasurement(ce.style.width));
f.box_height.value = getNum(ce.style.height);
selectByValue(f, 'box_height_measurement', getMeasurement(ce.style.height));
if (tinymce.isGecko)
selectByValue(f, 'box_float', ce.style.cssFloat, true, true);
else
selectByValue(f, 'box_float', ce.style.styleFloat, true, true);
selectByValue(f, 'box_clear', ce.style.clear, true, true);
setupBox(f, ce, 'box_padding', 'padding', '');
setupBox(f, ce, 'box_margin', 'margin', '');
// Setup border fields
setupBox(f, ce, 'border_style', 'border', 'Style');
setupBox(f, ce, 'border_width', 'border', 'Width');
setupBox(f, ce, 'border_color', 'border', 'Color');
updateColor('border_color_top_pick', 'border_color_top');
updateColor('border_color_right_pick', 'border_color_right');
updateColor('border_color_bottom_pick', 'border_color_bottom');
updateColor('border_color_left_pick', 'border_color_left');
f.elements.border_color_top.value = tinyMCEPopup.editor.dom.toHex(f.elements.border_color_top.value);
f.elements.border_color_right.value = tinyMCEPopup.editor.dom.toHex(f.elements.border_color_right.value);
f.elements.border_color_bottom.value = tinyMCEPopup.editor.dom.toHex(f.elements.border_color_bottom.value);
f.elements.border_color_left.value = tinyMCEPopup.editor.dom.toHex(f.elements.border_color_left.value);
// Setup list fields
selectByValue(f, 'list_type', ce.style.listStyleType, true, true);
selectByValue(f, 'list_position', ce.style.listStylePosition, true, true);
f.list_bullet_image.value = ce.style.listStyleImage.replace(new RegExp("url\\('?([^']*)'?\\)", 'gi'), "$1");
// Setup box fields
selectByValue(f, 'positioning_type', ce.style.position, true, true);
selectByValue(f, 'positioning_visibility', ce.style.visibility, true, true);
selectByValue(f, 'positioning_overflow', ce.style.overflow, true, true);
f.positioning_zindex.value = ce.style.zIndex ? ce.style.zIndex : "";
f.positioning_width.value = getNum(ce.style.width);
selectByValue(f, 'positioning_width_measurement', getMeasurement(ce.style.width));
f.positioning_height.value = getNum(ce.style.height);
selectByValue(f, 'positioning_height_measurement', getMeasurement(ce.style.height));
setupBox(f, ce, 'positioning_placement', '', '', ['top', 'right', 'bottom', 'left']);
s = ce.style.clip.replace(new RegExp("rect\\('?([^']*)'?\\)", 'gi'), "$1");
s = s.replace(/,/g, ' ');
if (!hasEqualValues([getVal(s, 0), getVal(s, 1), getVal(s, 2), getVal(s, 3)])) {
f.positioning_clip_top.value = getNum(getVal(s, 0));
selectByValue(f, 'positioning_clip_top_measurement', getMeasurement(getVal(s, 0)));
f.positioning_clip_right.value = getNum(getVal(s, 1));
selectByValue(f, 'positioning_clip_right_measurement', getMeasurement(getVal(s, 1)));
f.positioning_clip_bottom.value = getNum(getVal(s, 2));
selectByValue(f, 'positioning_clip_bottom_measurement', getMeasurement(getVal(s, 2)));
f.positioning_clip_left.value = getNum(getVal(s, 3));
selectByValue(f, 'positioning_clip_left_measurement', getMeasurement(getVal(s, 3)));
} else {
f.positioning_clip_top.value = getNum(getVal(s, 0));
selectByValue(f, 'positioning_clip_top_measurement', getMeasurement(getVal(s, 0)));
f.positioning_clip_right.value = f.positioning_clip_bottom.value = f.positioning_clip_left.value;
}
// setupBox(f, ce, '', 'border', 'Color');
}
function getMeasurement(s) {
return s.replace(/^([0-9]+)(.*)$/, "$2");
}
function getNum(s) {
if (new RegExp('^[0-9]+[a-z%]+$', 'gi').test(s))
return s.replace(/[^0-9]/g, '');
return s;
}
function inStr(s, n) {
return new RegExp(n, 'gi').test(s);
}
function getVal(s, i) {
var a = s.split(' ');
if (a.length > 1)
return a[i];
return "";
}
function setValue(f, n, v) {
if (f.elements[n].type == "text")
f.elements[n].value = v;
else
selectByValue(f, n, v, true, true);
}
function setupBox(f, ce, fp, pr, sf, b) {
if (typeof(b) == "undefined")
b = ['Top', 'Right', 'Bottom', 'Left'];
if (isSame(ce, pr, sf, b)) {
f.elements[fp + "_same"].checked = true;
setValue(f, fp + "_top", getNum(ce.style[pr + b[0] + sf]));
f.elements[fp + "_top"].disabled = false;
f.elements[fp + "_right"].value = "";
f.elements[fp + "_right"].disabled = true;
f.elements[fp + "_bottom"].value = "";
f.elements[fp + "_bottom"].disabled = true;
f.elements[fp + "_left"].value = "";
f.elements[fp + "_left"].disabled = true;
if (f.elements[fp + "_top_measurement"]) {
selectByValue(f, fp + '_top_measurement', getMeasurement(ce.style[pr + b[0] + sf]));
f.elements[fp + "_left_measurement"].disabled = true;
f.elements[fp + "_bottom_measurement"].disabled = true;
f.elements[fp + "_right_measurement"].disabled = true;
}
} else {
f.elements[fp + "_same"].checked = false;
setValue(f, fp + "_top", getNum(ce.style[pr + b[0] + sf]));
f.elements[fp + "_top"].disabled = false;
setValue(f, fp + "_right", getNum(ce.style[pr + b[1] + sf]));
f.elements[fp + "_right"].disabled = false;
setValue(f, fp + "_bottom", getNum(ce.style[pr + b[2] + sf]));
f.elements[fp + "_bottom"].disabled = false;
setValue(f, fp + "_left", getNum(ce.style[pr + b[3] + sf]));
f.elements[fp + "_left"].disabled = false;
if (f.elements[fp + "_top_measurement"]) {
selectByValue(f, fp + '_top_measurement', getMeasurement(ce.style[pr + b[0] + sf]));
selectByValue(f, fp + '_right_measurement', getMeasurement(ce.style[pr + b[1] + sf]));
selectByValue(f, fp + '_bottom_measurement', getMeasurement(ce.style[pr + b[2] + sf]));
selectByValue(f, fp + '_left_measurement', getMeasurement(ce.style[pr + b[3] + sf]));
f.elements[fp + "_left_measurement"].disabled = false;
f.elements[fp + "_bottom_measurement"].disabled = false;
f.elements[fp + "_right_measurement"].disabled = false;
}
}
}
function isSame(e, pr, sf, b) {
var a = [], i, x;
if (typeof(b) == "undefined")
b = ['Top', 'Right', 'Bottom', 'Left'];
if (typeof(sf) == "undefined" || sf == null)
sf = "";
a[0] = e.style[pr + b[0] + sf];
a[1] = e.style[pr + b[1] + sf];
a[2] = e.style[pr + b[2] + sf];
a[3] = e.style[pr + b[3] + sf];
for (i=0; i<a.length; i++) {
if (a[i] == null)
return false;
for (x=0; x<a.length; x++) {
if (a[x] != a[i])
return false;
}
}
return true;
};
function hasEqualValues(a) {
var i, x;
for (i=0; i<a.length; i++) {
if (a[i] == null)
return false;
for (x=0; x<a.length; x++) {
if (a[x] != a[i])
return false;
}
}
return true;
}
function applyAction() {
var ce = document.getElementById('container'), ed = tinyMCEPopup.editor;
generateCSS();
tinyMCEPopup.restoreSelection();
ed.dom.setAttrib(ed.selection.getNode(), 'style', tinyMCEPopup.editor.dom.serializeStyle(tinyMCEPopup.editor.dom.parseStyle(ce.style.cssText)));
}
function updateAction() {
applyAction();
tinyMCEPopup.close();
}
function generateCSS() {
var ce = document.getElementById('container'), f = document.forms[0], num = new RegExp('[0-9]+', 'g'), s, t;
ce.style.cssText = "";
// Build text styles
ce.style.fontFamily = f.text_font.value;
ce.style.fontSize = f.text_size.value + (isNum(f.text_size.value) ? (f.text_size_measurement.value || 'px') : "");
ce.style.fontStyle = f.text_style.value;
ce.style.lineHeight = f.text_lineheight.value + (isNum(f.text_lineheight.value) ? f.text_lineheight_measurement.value : "");
ce.style.textTransform = f.text_case.value;
ce.style.fontWeight = f.text_weight.value;
ce.style.fontVariant = f.text_variant.value;
ce.style.color = f.text_color.value;
s = "";
s += f.text_underline.checked ? " underline" : "";
s += f.text_overline.checked ? " overline" : "";
s += f.text_linethrough.checked ? " line-through" : "";
s += f.text_blink.checked ? " blink" : "";
s = s.length > 0 ? s.substring(1) : s;
if (f.text_none.checked)
s = "none";
ce.style.textDecoration = s;
// Build background styles
ce.style.backgroundColor = f.background_color.value;
ce.style.backgroundImage = f.background_image.value != "" ? "url(" + f.background_image.value + ")" : "";
ce.style.backgroundRepeat = f.background_repeat.value;
ce.style.backgroundAttachment = f.background_attachment.value;
if (f.background_hpos.value != "") {
s = "";
s += f.background_hpos.value + (isNum(f.background_hpos.value) ? f.background_hpos_measurement.value : "") + " ";
s += f.background_vpos.value + (isNum(f.background_vpos.value) ? f.background_vpos_measurement.value : "");
ce.style.backgroundPosition = s;
}
// Build block styles
ce.style.wordSpacing = f.block_wordspacing.value + (isNum(f.block_wordspacing.value) ? f.block_wordspacing_measurement.value : "");
ce.style.letterSpacing = f.block_letterspacing.value + (isNum(f.block_letterspacing.value) ? f.block_letterspacing_measurement.value : "");
ce.style.verticalAlign = f.block_vertical_alignment.value;
ce.style.textAlign = f.block_text_align.value;
ce.style.textIndent = f.block_text_indent.value + (isNum(f.block_text_indent.value) ? f.block_text_indent_measurement.value : "");
ce.style.whiteSpace = f.block_whitespace.value;
ce.style.display = f.block_display.value;
// Build box styles
ce.style.width = f.box_width.value + (isNum(f.box_width.value) ? f.box_width_measurement.value : "");
ce.style.height = f.box_height.value + (isNum(f.box_height.value) ? f.box_height_measurement.value : "");
ce.style.styleFloat = f.box_float.value;
if (tinymce.isGecko)
ce.style.cssFloat = f.box_float.value;
ce.style.clear = f.box_clear.value;
if (!f.box_padding_same.checked) {
ce.style.paddingTop = f.box_padding_top.value + (isNum(f.box_padding_top.value) ? f.box_padding_top_measurement.value : "");
ce.style.paddingRight = f.box_padding_right.value + (isNum(f.box_padding_right.value) ? f.box_padding_right_measurement.value : "");
ce.style.paddingBottom = f.box_padding_bottom.value + (isNum(f.box_padding_bottom.value) ? f.box_padding_bottom_measurement.value : "");
ce.style.paddingLeft = f.box_padding_left.value + (isNum(f.box_padding_left.value) ? f.box_padding_left_measurement.value : "");
} else
ce.style.padding = f.box_padding_top.value + (isNum(f.box_padding_top.value) ? f.box_padding_top_measurement.value : "");
if (!f.box_margin_same.checked) {
ce.style.marginTop = f.box_margin_top.value + (isNum(f.box_margin_top.value) ? f.box_margin_top_measurement.value : "");
ce.style.marginRight = f.box_margin_right.value + (isNum(f.box_margin_right.value) ? f.box_margin_right_measurement.value : "");
ce.style.marginBottom = f.box_margin_bottom.value + (isNum(f.box_margin_bottom.value) ? f.box_margin_bottom_measurement.value : "");
ce.style.marginLeft = f.box_margin_left.value + (isNum(f.box_margin_left.value) ? f.box_margin_left_measurement.value : "");
} else
ce.style.margin = f.box_margin_top.value + (isNum(f.box_margin_top.value) ? f.box_margin_top_measurement.value : "");
// Build border styles
if (!f.border_style_same.checked) {
ce.style.borderTopStyle = f.border_style_top.value;
ce.style.borderRightStyle = f.border_style_right.value;
ce.style.borderBottomStyle = f.border_style_bottom.value;
ce.style.borderLeftStyle = f.border_style_left.value;
} else
ce.style.borderStyle = f.border_style_top.value;
if (!f.border_width_same.checked) {
ce.style.borderTopWidth = f.border_width_top.value + (isNum(f.border_width_top.value) ? f.border_width_top_measurement.value : "");
ce.style.borderRightWidth = f.border_width_right.value + (isNum(f.border_width_right.value) ? f.border_width_right_measurement.value : "");
ce.style.borderBottomWidth = f.border_width_bottom.value + (isNum(f.border_width_bottom.value) ? f.border_width_bottom_measurement.value : "");
ce.style.borderLeftWidth = f.border_width_left.value + (isNum(f.border_width_left.value) ? f.border_width_left_measurement.value : "");
} else
ce.style.borderWidth = f.border_width_top.value;
if (!f.border_color_same.checked) {
ce.style.borderTopColor = f.border_color_top.value;
ce.style.borderRightColor = f.border_color_right.value;
ce.style.borderBottomColor = f.border_color_bottom.value;
ce.style.borderLeftColor = f.border_color_left.value;
} else
ce.style.borderColor = f.border_color_top.value;
// Build list styles
ce.style.listStyleType = f.list_type.value;
ce.style.listStylePosition = f.list_position.value;
ce.style.listStyleImage = f.list_bullet_image.value != "" ? "url(" + f.list_bullet_image.value + ")" : "";
// Build positioning styles
ce.style.position = f.positioning_type.value;
ce.style.visibility = f.positioning_visibility.value;
if (ce.style.width == "")
ce.style.width = f.positioning_width.value + (isNum(f.positioning_width.value) ? f.positioning_width_measurement.value : "");
if (ce.style.height == "")
ce.style.height = f.positioning_height.value + (isNum(f.positioning_height.value) ? f.positioning_height_measurement.value : "");
ce.style.zIndex = f.positioning_zindex.value;
ce.style.overflow = f.positioning_overflow.value;
if (!f.positioning_placement_same.checked) {
ce.style.top = f.positioning_placement_top.value + (isNum(f.positioning_placement_top.value) ? f.positioning_placement_top_measurement.value : "");
ce.style.right = f.positioning_placement_right.value + (isNum(f.positioning_placement_right.value) ? f.positioning_placement_right_measurement.value : "");
ce.style.bottom = f.positioning_placement_bottom.value + (isNum(f.positioning_placement_bottom.value) ? f.positioning_placement_bottom_measurement.value : "");
ce.style.left = f.positioning_placement_left.value + (isNum(f.positioning_placement_left.value) ? f.positioning_placement_left_measurement.value : "");
} else {
s = f.positioning_placement_top.value + (isNum(f.positioning_placement_top.value) ? f.positioning_placement_top_measurement.value : "");
ce.style.top = s;
ce.style.right = s;
ce.style.bottom = s;
ce.style.left = s;
}
if (!f.positioning_clip_same.checked) {
s = "rect(";
s += (isNum(f.positioning_clip_top.value) ? f.positioning_clip_top.value + f.positioning_clip_top_measurement.value : "auto") + " ";
s += (isNum(f.positioning_clip_right.value) ? f.positioning_clip_right.value + f.positioning_clip_right_measurement.value : "auto") + " ";
s += (isNum(f.positioning_clip_bottom.value) ? f.positioning_clip_bottom.value + f.positioning_clip_bottom_measurement.value : "auto") + " ";
s += (isNum(f.positioning_clip_left.value) ? f.positioning_clip_left.value + f.positioning_clip_left_measurement.value : "auto");
s += ")";
if (s != "rect(auto auto auto auto)")
ce.style.clip = s;
} else {
s = "rect(";
t = isNum(f.positioning_clip_top.value) ? f.positioning_clip_top.value + f.positioning_clip_top_measurement.value : "auto";
s += t + " ";
s += t + " ";
s += t + " ";
s += t + ")";
if (s != "rect(auto auto auto auto)")
ce.style.clip = s;
}
ce.style.cssText = ce.style.cssText;
}
function isNum(s) {
return new RegExp('[0-9]+', 'g').test(s);
}
function showDisabledControls() {
var f = document.forms, i, a;
for (i=0; i<f.length; i++) {
for (a=0; a<f[i].elements.length; a++) {
if (f[i].elements[a].disabled)
tinyMCEPopup.editor.dom.addClass(f[i].elements[a], "disabled");
else
tinyMCEPopup.editor.dom.removeClass(f[i].elements[a], "disabled");
}
}
}
function fillSelect(f, s, param, dval, sep, em) {
var i, ar, p, se;
f = document.forms[f];
sep = typeof(sep) == "undefined" ? ";" : sep;
if (em)
addSelectValue(f, s, "", "");
ar = tinyMCEPopup.getParam(param, dval).split(sep);
for (i=0; i<ar.length; i++) {
se = false;
if (ar[i].charAt(0) == '+') {
ar[i] = ar[i].substring(1);
se = true;
}
p = ar[i].split('=');
if (p.length > 1) {
addSelectValue(f, s, p[0], p[1]);
if (se)
selectByValue(f, s, p[1]);
} else {
addSelectValue(f, s, p[0], p[0]);
if (se)
selectByValue(f, s, p[0]);
}
}
}
function toggleSame(ce, pre) {
var el = document.forms[0].elements, i;
if (ce.checked) {
el[pre + "_top"].disabled = false;
el[pre + "_right"].disabled = true;
el[pre + "_bottom"].disabled = true;
el[pre + "_left"].disabled = true;
if (el[pre + "_top_measurement"]) {
el[pre + "_top_measurement"].disabled = false;
el[pre + "_right_measurement"].disabled = true;
el[pre + "_bottom_measurement"].disabled = true;
el[pre + "_left_measurement"].disabled = true;
}
} else {
el[pre + "_top"].disabled = false;
el[pre + "_right"].disabled = false;
el[pre + "_bottom"].disabled = false;
el[pre + "_left"].disabled = false;
if (el[pre + "_top_measurement"]) {
el[pre + "_top_measurement"].disabled = false;
el[pre + "_right_measurement"].disabled = false;
el[pre + "_bottom_measurement"].disabled = false;
el[pre + "_left_measurement"].disabled = false;
}
}
showDisabledControls();
}
function synch(fr, to) {
var f = document.forms[0];
f.elements[to].value = f.elements[fr].value;
if (f.elements[fr + "_measurement"])
selectByValue(f, to + "_measurement", f.elements[fr + "_measurement"].value);
}
tinyMCEPopup.onInit.add(init);

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('ar.style_dlg',{
title:"\u062A\u0639\u062F\u064A\u0644 CSS Style",
apply:"\u062A\u0637\u0628\u064A\u0642",
text_tab:"\u0646\u0635",
background_tab:"\u0627\u0644\u062E\u0644\u0641\u064A\u0629",
block_tab:"\u0642\u0637\u0639\u0629",
box_tab:"\u0635\u0646\u062F\u0648\u0642",
border_tab:"\u0627\u0644\u062D\u062F\u0648\u062F",
list_tab:"\u0642\u0627\u0626\u0645\u0629",
positioning_tab:"\u0648\u0636\u0639",
text_props:"\u0646\u0635",
text_font:"\u062E\u0637",
text_size:"\u062D\u062C\u0645",
text_weight:"\u0639\u0631\u0636",
text_style:"\u0646\u0633\u0642",
text_variant:"\u0645\u062A\u063A\u064A\u0631",
text_lineheight:"\u0627\u0631\u062A\u0641\u0627\u0639 \u0627\u0644\u062E\u0637",
text_case:"\u062D\u0627\u0644\u0629",
text_color:"\u0627\u0644\u0644\u0648\u0646",
text_decoration:"\u0632\u062E\u0631\u0641\u0629",
text_overline:"\u0623\u0639\u0644\u0649 \u0627\u0644\u062E\u0637",
text_underline:"\u0623\u0633\u0641\u0644 \u0627\u0644\u062E\u0637",
text_striketrough:"\u062A\u0634\u0637\u064A\u0628",
text_blink:"\u0637\u0631\u0641\u0629 \u0639\u064A\u0646",
text_none:"\u0628\u0644\u0627",
background_color:"\u0644\u0648\u0646 \u0627\u0644\u062E\u0644\u0641\u064A\u0629",
background_image:"\u0635\u0648\u0631\u0629 \u0627\u0644\u062E\u0644\u0641\u064A\u0629",
background_repeat:"\u0627\u0639\u0627\u062F\u0629",
background_attachment:"\u0645\u0631\u0641\u0642",
background_hpos:"\u0627\u0644\u0648\u0636\u0639\u064A\u0629 \u0627\u0644\u0623\u0641\u0642\u064A\u0629",
background_vpos:"\u0627\u0644\u0648\u0636\u0639\u064A\u0629 \u0627\u0644\u0639\u0645\u0648\u062F\u064A\u0629",
block_wordspacing:"\u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0628\u0627\u0639\u062F\u0629",
block_letterspacing:"\u0631\u0633\u0627\u0644\u0629 \u0627\u0644\u0645\u0628\u0627\u0639\u062F\u0629",
block_vertical_alignment:"\u0627\u0644\u0645\u0648\u0627\u0621\u0645\u0629 \u0627\u0644\u0639\u0645\u0648\u062F\u064A\u0629",
block_text_align:"\u0645\u0648\u0627\u0621\u0645\u0629 \u0627\u0644\u0646\u0635",
block_text_indent:"\u0627\u0632\u0627\u062D\u0629 \u0627\u0644\u0646\u0635",
block_whitespace:"\u0627\u0644\u0645\u0633\u0627\u0641\u0629 \u0628\u064A\u0636\u0627\u0621",
block_display:"\u0627\u0644\u0639\u0631\u0636",
box_width:"\u0627\u0644\u0639\u0631\u0636",
box_height:"\u0627\u0644\u0625\u0631\u062A\u0641\u0627\u0639",
box_float:"\u0627\u0644\u0637\u0641\u0648",
box_clear:"\u0648\u0627\u0636\u062D",
padding:"\u0627\u0644\u0628\u0637\u0627\u0646\u0629",
same:"\u0646\u0641\u0633 \u0644\u0644\u0643\u0644",
top:"\u0623\u0639\u0644\u0649",
right:"\u064A\u0645\u064A\u0646",
bottom:"\u0623\u0633\u0641\u0644",
left:"\u064A\u0633\u0627\u0631",
margin:"\u0647\u0627\u0645\u0634",
style:"\u0646\u0633\u0642",
width:"\u0627\u0644\u0639\u0631\u0636",
height:"\u0627\u0644\u0625\u0631\u062A\u0641\u0627\u0639",
color:"\u0627\u0644\u0644\u0648\u0646",
list_type:"\u0646\u0648\u0639",
bullet_image:"\u0635\u0648\u0631\u0629 \u0627\u0644\u0631\u0635\u0627\u0635\u0629",
position:"\u0627\u0644\u0645\u0648\u0636\u0639",
positioning_type:"\u0627\u0644\u0646\u0648\u0639",
visibility:"\u0627\u0644\u0631\u0624\u064A\u0629",
zindex:"\u062A\u0631\u062A\u064A\u0628 \u0627\u0644\u0646\u0648\u0627\u0641\u0630 Z-index",
overflow:"\u0627\u0644\u0641\u064A\u0636",
placement:"\u0627\u0644\u0645\u0648\u0636\u0639",
clip:"\u0645\u0634\u0628\u0643"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('bg.style_dlg',{
title:"\u0420\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u0430\u0439 CSS \u0441\u0442\u0438\u043B",
apply:"\u041F\u043E\u0442\u0432\u044A\u0440\u0434\u0438",
text_tab:"\u0422\u0435\u043A\u0441\u0442",
background_tab:"\u0424\u043E\u043D",
block_tab:"\u0411\u043B\u043E\u043A",
box_tab:"\u041A\u0443\u0442\u0438\u044F",
border_tab:"\u0420\u0430\u043C\u043A\u0430",
list_tab:"\u0421\u043F\u0438\u0441\u044A\u043A",
positioning_tab:"\u041F\u043E\u0437\u0438\u0446\u0438\u043E\u043D\u0438\u0440\u0430\u043D\u0435",
text_props:"\u0422\u0435\u043A\u0441\u0442",
text_font:"\u0428\u0440\u0438\u0444\u0442",
text_size:"\u0420\u0430\u0437\u043C\u0435\u0440",
text_weight:"\u0422\u0435\u0433\u043B\u043E",
text_style:"\u0421\u0442\u0438\u043B",
text_variant:"\u041F\u0440\u043E\u043C\u0435\u043D\u043B\u0438\u0432",
text_lineheight:"\u0412\u0438\u0441\u043E\u0447\u0438\u043D\u0430 \u043D\u0430 \u0440\u0435\u0434\u0430",
text_case:"\u0420\u0435\u0433\u0438\u0441\u0442\u044A\u0440",
text_color:"\u0426\u0432\u044F\u0442",
text_decoration:"\u0414\u0435\u043A\u043E\u0440\u0430\u0446\u0438\u044F",
text_overline:"\u043D\u0430\u0434\u0447\u0435\u0440\u0442\u0430\u043D",
text_underline:"\u043F\u043E\u0434\u0447\u0435\u0440\u0442\u0430\u043D",
text_striketrough:"\u0437\u0430\u0447\u0435\u0440\u0442\u0430\u043D",
text_blink:"\u043C\u0438\u0433\u0430",
text_none:"\u043D\u0438\u0449\u043E",
background_color:"\u0424\u043E\u043D\u0438\u0432 \u0446\u0432\u044F\u0442",
background_image:"\u0424\u043E\u043D\u043E\u0432\u0430 \u043A\u0430\u0440\u0442\u0438\u043D\u043A\u0430",
background_repeat:"\u041F\u043E\u0432\u0442\u043E\u0440\u0438",
background_attachment:"\u041F\u0440\u0438\u043A\u0440\u0435\u043F\u0438",
background_hpos:"\u0425\u043E\u0440\u0438\u0437\u043E\u043D\u0442\u0430\u043B\u043D\u0430 \u043F\u043E\u0437\u0438\u0446\u0438\u044F",
background_vpos:"\u0412\u0435\u0440\u0442\u0438\u043A\u0430\u043B\u043D\u0430 \u043F\u043E\u0437\u0438\u0446\u0438\u044F",
block_wordspacing:"\u0420\u0430\u0437\u0441\u0442\u043E\u044F\u043D\u0438\u0435 \u043C\u0435\u0436\u0434\u0443 \u0434\u0443\u043C\u0438\u0442\u0435",
block_letterspacing:"\u0420\u0430\u0437\u0441\u0442\u043E\u044F\u043D\u0438\u0435 \u043C\u0435\u0436\u0434\u0443 \u0431\u0443\u043A\u0432\u0438\u0442\u0435",
block_vertical_alignment:"\u0412\u0435\u0440\u0442\u0438\u043A\u0430\u043B\u043D\u043E \u043F\u043E\u0434\u0440\u0430\u0432\u043D\u044F\u0432\u0430\u043D\u0435",
block_text_align:"\u041F\u043E\u0434\u0440\u0430\u0432\u043D\u044F\u0432\u0430\u043D\u0435 \u043D\u0430 \u0442\u0435\u043A\u0441\u0442\u0430",
block_text_indent:"\u041E\u0442\u0441\u0442\u044A\u043F \u043D\u0430 \u0442\u0435\u043A\u0441\u0442\u0430",
block_whitespace:"\u0418\u043D\u0442\u0435\u0440\u0432\u0430\u043B",
block_display:"\u041F\u043E\u043A\u0430\u0437\u0432\u0430\u043D\u0435",
box_width:"\u0428\u0438\u0440\u0438\u043D\u0430",
box_height:"\u0412\u0438\u0441\u043E\u0447\u0438\u043D\u0430",
box_float:"Float",
box_clear:"\u0418\u0437\u0447\u0438\u0441\u0442\u0438",
padding:"Padding",
same:"\u0417\u0430 \u0432\u0441\u0438\u0447\u043A\u0438",
top:"\u0413\u043E\u0440\u0435",
right:"\u0414\u044F\u0441\u043D\u043E",
bottom:"\u0414\u043E\u043B\u0443",
left:"\u041B\u044F\u0432\u043E",
margin:"Margin",
style:"\u0421\u0442\u0438\u043B",
width:"\u0428\u0438\u0440\u0438\u043D\u0430",
height:"\u0412\u0438\u0441\u043E\u0447\u0438\u043D\u0430",
color:"\u0426\u0432\u044F\u0442",
list_type:"\u0422\u0438\u043F",
bullet_image:"\u0413\u0440\u0430\u0444\u0438\u043A\u0430 \u043D\u0430 \u0432\u043E\u0434\u0430\u0447\u0438\u0442\u0435",
position:"\u041F\u043E\u0437\u0438\u0446\u0438\u044F",
positioning_type:"\u0422\u0438\u043F",
visibility:"\u0412\u0438\u0434\u0438\u043C\u043E\u0441\u0442",
zindex:"Z-index",
overflow:"Overflow",
placement:"\u0420\u0430\u0437\u043F\u043E\u043B\u043E\u0436\u0435\u043D\u0438\u0435",
clip:"\u041E\u0442\u0440\u0435\u0436\u0438"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('br.style_dlg',{
title:"Editar CSS",
apply:"Aplicar",
text_tab:"Texto",
background_tab:"Fundo",
block_tab:"Bloco",
box_tab:"Caixa",
border_tab:"Limites",
list_tab:"Lista",
positioning_tab:"Posicionamento",
text_props:"Texto",
text_font:"Fonte",
text_size:"Tamanho",
text_weight:"Peso",
text_style:"Estilo",
text_variant:"Variante",
text_lineheight:"Altura da linha",
text_case:"Mai\u00C3\u0083\u00C2\u00BAscula/min\u00C3\u0083\u00C2\u00BAscula",
text_color:"Cor",
text_decoration:"Decora\u00C3\u0083\u00C2\u00A7\u00C3\u0083\u00C2\u00A3o",
text_overline:"Sobrelinha",
text_underline:"Sublinhado",
text_striketrough:"Rasurado",
text_blink:"Piscar",
text_none:"nenhum",
background_color:"Cor de fundo",
background_image:"Imagem de fundo",
background_repeat:"Repetir",
background_attachment:"Fixar",
background_hpos:"Posi\u00C3\u0083\u00C2\u00A7\u00C3\u0083\u00C2\u00A3o horizontal",
background_vpos:"Posi\u00C3\u0083\u00C2\u00A7\u00C3\u0083\u00C2\u00A3o vertical",
block_wordspacing:"Espa\u00C3\u0083\u00C2\u00A7amento de palavras",
block_letterspacing:"Espa\u00C3\u0083\u00C2\u00A7amento de letras",
block_vertical_alignment:"Alinhamento vertical",
block_text_align:"Alinhamento de texto",
block_text_indent:"Indent",
block_whitespace:"Espa\u00C3\u0083\u00C2\u00A7o",
block_display:"Display",
box_width:"Largura",
box_height:"Altura",
box_float:"Float",
box_clear:"Clear",
padding:"Padding",
same:"O mesmo para todos",
top:"Topo",
right:"Direita",
bottom:"Abaixo",
left:"Esquerda",
margin:"Margem",
style:"Estilo",
width:"Largura",
height:"Altura",
color:"Cor",
list_type:"Tipo",
bullet_image:"Imagem de lista",
position:"Posi\u00C3\u0083\u00C2\u00A7\u00C3\u0083\u00C2\u00A3o",
positioning_type:"Tipo",
visibility:"Visibilidade",
zindex:"Z-index",
overflow:"Overflow",
placement:"Posicionamento",
clip:"Clip"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('bs.style_dlg',{
title:"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"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('ca.style_dlg',{
title:"Edita l'Estil CSS",
apply:"Aplica",
text_tab:"Text",
background_tab:"Fons",
block_tab:"Bloc",
box_tab:"Caixa",
border_tab:"Vora",
list_tab:"Llista",
positioning_tab:"Posicionament",
text_props:"Text",
text_font:"Tipografia",
text_size:"Mida",
text_weight:"Pes",
text_style:"Estil",
text_variant:"Variaci\u00F3",
text_lineheight:"Al\u00E7ada de la L\u00EDnia",
text_case:"Caixa",
text_color:"Color",
text_decoration:"Decoraci\u00F3",
text_overline:"sobreratllat",
text_underline:"subratllat",
text_striketrough:"tatxat",
text_blink:"intermitent",
text_none:"cap",
background_color:"Color de fons",
background_image:"Imatge de fons",
background_repeat:"Repeteix",
background_attachment:"Adjunci\u00F3",
background_hpos:"Posici\u00F3 horitzontal",
background_vpos:"Posici\u00F3 vertical",
block_wordspacing:"Espaiat de paraules",
block_letterspacing:"Espaiat de lletres",
block_vertical_alignment:"Alineaci\u00F3 vertical",
block_text_align:"Alineaci\u00F3 del text",
block_text_indent:"Sagnat del text",
block_whitespace:"Espai en blanc",
block_display:"Mostra",
box_width:"Amplada",
box_height:"Al\u00E7ada",
box_float:"Flota",
box_clear:"Neteja",
padding:"Farciment",
same:"Igual per a tots",
top:"Dalt",
right:"Dreta",
bottom:"Baix",
left:"Esquerra",
margin:"Marge",
style:"Estil",
width:"Amplada",
height:"Al\u00E7ada",
color:"Color",
list_type:"Tipus",
bullet_image:"Imatge de pic",
position:"Posici\u00F3",
positioning_type:"Tipus",
visibility:"Visibilitat",
zindex:"Z-index",
overflow:"Sobreeiximent",
placement:"Col\u00B7locaci\u00F3",
clip:"Retall"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('ch.style_dlg',{
title:"\u7F16\u8F91CSS\u6837\u5F0F\u8868\u5355\u5355",
apply:"\u5957\u7528",
text_tab:"\u6587\u5B57",
background_tab:"\u80CC\u666F",
block_tab:"\u533A\u5757",
box_tab:"\u65B9\u5757",
border_tab:"\u8FB9\u6846",
list_tab:"\u8868\u5217",
positioning_tab:"\u4F4D\u7F6E",
text_props:"\u6587\u5B57",
text_font:"\u5B57\u578B",
text_size:"\u5927\u5C0F",
text_weight:"\u5BBD",
text_style:"\u6837\u5F0F",
text_variant:"\u53D8\u4F53",
text_lineheight:"\u884C\u9AD8",
text_case:"\u5B57\u578B",
text_color:"\u989C\u8272",
text_decoration:"\u88C5\u9970",
text_overline:"\u9876\u7EBF",
text_underline:"\u5E95\u7EBF",
text_striketrough:"\u5220\u9664\u7EBF",
text_blink:"\u95EA\u70C1",
text_none:"\u65E0",
background_color:"\u80CC\u666F\u989C\u8272",
background_image:"\u80CC\u666F\u56FE\u7247",
background_repeat:"\u91CD\u590D",
background_attachment:"\u9644\u4EF6",
background_hpos:"\u6C34\u5E73\u4F4D\u7F6E",
background_vpos:"\u5782\u76F4\u4F4D\u7F6E",
block_wordspacing:"\u8BCD\u95F4\u8DDD",
block_letterspacing:"\u5B57\u6BCD\u95F4\u8DDD",
block_vertical_alignment:"\u5782\u76F4\u5BF9\u9F50\u65B9\u5F0F",
block_text_align:"\u6587\u5B57\u5BF9\u9F50",
block_text_indent:"\u6587\u5B57\u7F29\u6392",
block_whitespace:"\u7A7A\u683C",
block_display:"\u663E\u793A",
box_width:"\u5BBD",
box_height:"\u9AD8",
box_float:"\u6D6E\u52A8",
box_clear:"\u6E05\u9664",
padding:"\u5185\u8FB9\u8DDD",
same:"\u5168\u90E8\u76F8\u540C",
top:"\u9876\u90E8",
right:"\u53F3\u4FA7",
bottom:"\u5E95\u90E8",
left:"\u5DE6\u4FA7",
margin:"\u8FB9\u754C",
style:"\u6837\u5F0F",
width:"\u5BBD",
height:"\u9AD8",
color:"\u989C\u8272",
list_type:"\u7C7B\u578B",
bullet_image:"\u5217\u5355\u56FE\u7247",
position:"\u4F4D\u7F6E",
positioning_type:"\u7C7B\u578B",
visibility:"\u53EF\u663E\u793A",
zindex:"Z-\u5750\u6807",
overflow:"\u6EA2\u51FA",
placement:"\u5E03\u7F6E",
clip:"\u526A\u8F91"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('cs.style_dlg',{
title:"Upravit CSS styl",
apply:"Pou\u017E\u00EDt",
text_tab:"Text",
background_tab:"Pozad\u00ED",
block_tab:"Blok",
box_tab:"Box",
border_tab:"Ohrani\u010Den\u00ED",
list_tab:"Seznam",
positioning_tab:"Um\u00EDst\u011Bn\u00ED",
text_props:"Text",
text_font:"Font",
text_size:"Velikost",
text_weight:"S\u00EDla textu",
text_style:"Styl textu",
text_variant:"Varianta",
text_lineheight:"Tlou\u0161\u0139\u013Dka \u010D\u00E1ry",
text_case:"P\u0159\u00EDpad",
text_color:"Barva",
text_decoration:"Dekorace",
text_overline:"nadtr\u017Een\u00ED",
text_underline:"podtr\u017Een\u00ED",
text_striketrough:"P\u0159e\u0161krtnut\u00ED",
text_blink:"blik\u00E1n\u00ED",
text_none:"\u017E\u00E1dn\u00E9",
background_color:"Barva pozad\u00ED",
background_image:"Obr\u00E1zek pozad\u00ED",
background_repeat:"Opakov\u00E1n\u00ED",
background_attachment:"P\u0159\u00EDloha",
background_hpos:"Horizont\u00E1ln\u00ED pozice",
background_vpos:"Vertik\u00E1ln\u00ED pozice",
block_wordspacing:"Rozestup slov",
block_letterspacing:"Rozestup znak\u016F",
block_vertical_alignment:"Vertik\u00E1ln\u00ED zarovn\u00E1n\u00ED",
block_text_align:"Zarovn\u00E1n\u00ED textu",
block_text_indent:"Odsazen\u00ED textu",
block_whitespace:"Pr\u00E1zdn\u00E9 mezery",
block_display:"Blokov\u00E9 zobrazen\u00ED",
box_width:"\u0160\u00ED\u0159ka",
box_height:"V\u00FD\u0161ka",
box_float:"Plovouc\u00ED",
box_clear:"Vy\u010Distit",
padding:"Odsazen\u00ED (padding)",
same:"Stejn\u00E9 pro v\u0161echny",
top:"Naho\u0159e",
right:"Vpravo",
bottom:"Dole",
left:"Vlevo",
margin:"Okraj",
style:"Styl",
width:"\u0160\u00ED\u0159ka",
height:"V\u00FD\u0161ka",
color:"Barva",
list_type:"Typ",
bullet_image:"Styl odr\u00E1\u017Eek",
position:"Pozice",
positioning_type:"Typ",
visibility:"Viditelnost",
zindex:"Z-index",
overflow:"P\u0159ete\u010Den\u00ED (overflow)",
placement:"Um\u00EDstn\u011Bni",
clip:"P\u0159ipnut\u00ED (clip)"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('da.style_dlg',{
title:"Rediger CSS stil",
apply:"Anvend",
text_tab:"Tekst",
background_tab:"Baggrund",
block_tab:"Blok",
box_tab:"Boks",
border_tab:"Kant",
list_tab:"Liste",
positioning_tab:"Positionering",
text_props:"Tekst",
text_font:"Skrifttype",
text_size:"St\u00F8rrelse",
text_weight:"V\u00E6gt",
text_style:"Stil",
text_variant:"Variant",
text_lineheight:"Linieh\u00F8jde",
text_case:"Vesaltilstand",
text_color:"Farve",
text_decoration:"Dekoration",
text_overline:"overstreget",
text_underline:"understreget",
text_striketrough:"gennemstreget",
text_blink:"blink",
text_none:"ingen",
background_color:"Baggrundsfarve",
background_image:"Baggrundsbillede",
background_repeat:"Gentag",
background_attachment:"Vedh\u00E6ftede fil",
background_hpos:"Horisontal position",
background_vpos:"Vertikal position",
block_wordspacing:"Afstand mellem ord",
block_letterspacing:"Afstand mellem bogstaver",
block_vertical_alignment:"Vertikal justering",
block_text_align:"Tekstjustering",
block_text_indent:"Tekstindrykning",
block_whitespace:"Mellemrum",
block_display:"Vis",
box_width:"Bredde",
box_height:"H\u00F8jde",
box_float:"Flydende",
box_clear:"Ryd",
padding:"Afstand til indhold",
same:"Ens for alle",
top:"Top",
right:"H\u00F8jre",
bottom:"Bund",
left:"Venstre",
margin:"Margin",
style:"Style",
width:"Bredde",
height:"H\u00F8jde",
color:"Farve",
list_type:"Type",
bullet_image:"Punktopstillings-billede",
position:"Position",
positioning_type:"Type",
visibility:"Synlighed",
zindex:"Z-index",
overflow:"Overl\u00F8b",
placement:"Placering",
clip:"Klip"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('de.style_dlg',{
title:"CSS-Styles bearbeiten",
apply:"\u00DCbernehmen",
text_tab:"Text",
background_tab:"Hintergrund",
block_tab:"Block",
box_tab:"Box",
border_tab:"Rahmen",
list_tab:"Liste",
positioning_tab:"Positionierung",
text_props:"Text",
text_font:"Schriftart",
text_size:"Gr\u00F6\u00DFe",
text_weight:"Dicke",
text_style:"Stil",
text_variant:"Variante",
text_lineheight:"Zeilenh\u00F6he",
text_case:"Schreibung",
text_color:"Farbe",
text_decoration:"Gestaltung",
text_overline:"\u00FCberstrichen",
text_underline:"unterstrichen",
text_striketrough:"durchgestrichen",
text_blink:"blinkend",
text_none:"keine",
background_color:"Hintergrundfarbe",
background_image:"Hintergrundbild",
background_repeat:"Wiederholung",
background_attachment:"Wasserzeicheneffekt",
background_hpos:"Position X",
background_vpos:"Position Y",
block_wordspacing:"Wortabstand",
block_letterspacing:"Buchstabenabstand",
block_vertical_alignment:"Vertikale Ausrichtung",
block_text_align:"Ausrichtung",
block_text_indent:"Einr\u00FCckung",
block_whitespace:"Automatischer Umbruch",
block_display:"Umbruchverhalten",
box_width:"Breite",
box_height:"H\u00F6he",
box_float:"Umflie\u00DFung",
box_clear:"Umflie\u00DFung verhindern",
padding:"Innerer Abstand",
same:"Alle gleich",
top:"Oben",
right:"Rechts",
bottom:"Unten",
left:"Links",
margin:"\u00C4u\u00DFerer Abstand",
style:"Format",
width:"Breite",
height:"H\u00F6he",
color:"Textfarbe",
list_type:"Listenpunkt-Art",
bullet_image:"Listenpunkt-Grafik",
position:"Positionierung",
positioning_type:"Art der Positionierung",
visibility:"Sichtbar",
zindex:"Z-Wert",
overflow:"Verhalten bei \u00DCbergr\u00F6\u00DFe",
placement:"Platzierung",
clip:"Ausschnitt"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('dv.style_dlg',{
title:"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"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('el.style_dlg',{
title:"\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03A3\u03C4\u03C5\u03BB CSS",
apply:"\u0395\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE",
text_tab:"\u039A\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF",
background_tab:"\u03A6\u03CC\u03BD\u03C4\u03BF",
block_tab:"\u039C\u03C0\u03BB\u03BF\u03BA",
box_tab:"\u039A\u03BF\u03C5\u03C4\u03AF",
border_tab:"\u03A0\u03BB\u03B1\u03AF\u03C3\u03B9\u03BF",
list_tab:"\u039B\u03AF\u03C3\u03C4\u03B1",
positioning_tab:"\u03A4\u03BF\u03C0\u03BF\u03B8\u03AD\u03C4\u03B7\u03C3\u03B7",
text_props:"\u039A\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF",
text_font:"\u0393\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC",
text_size:"\u039C\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AC\u03C4\u03C9\u03BD",
text_weight:"\u0392\u03AC\u03C1\u03BF\u03C2",
text_style:"\u03A3\u03C4\u03C5\u03BB",
text_variant:"\u03A0\u03B1\u03C1\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE",
text_lineheight:"\u038E\u03C8\u03BF\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2",
text_case:"\u039A\u03B5\u03C6./\u039C\u03B9\u03BA\u03C1\u03AC",
text_color:"\u03A7\u03C1\u03CE\u03BC\u03B1",
text_decoration:"\u0394\u03B9\u03B1\u03BA\u03CC\u03C3\u03BC\u03B7\u03C3\u03B7",
text_overline:"\u03A5\u03C0\u03B5\u03C1\u03B3\u03C1\u03AC\u03BC\u03BC\u03B9\u03C3\u03B7",
text_underline:"\u03A5\u03C0\u03BF\u03B3\u03C1\u03AC\u03BC\u03BC\u03B9\u03C3\u03B7",
text_striketrough:"\u0394\u03B9\u03B1\u03B3\u03C1\u03AC\u03BC\u03BC\u03B9\u03C3\u03B7",
text_blink:"\u039D\u03B1 \u03B1\u03BD\u03B1\u03B2\u03BF\u03C3\u03B2\u03AE\u03BD\u03B5\u03B9",
text_none:"\u039A\u03B1\u03BC\u03AF\u03B1",
background_color:"\u03A7\u03C1\u03CE\u03BC\u03B1 \u03C6\u03CC\u03BD\u03C4\u03BF\u03C5",
background_image:"\u0395\u03B9\u03BA\u03CC\u03BD\u03B1 \u03C6\u03CC\u03BD\u03C4\u03BF\u03C5",
background_repeat:"\u0395\u03C0\u03B1\u03BD\u03AC\u03BB\u03B7\u03C8\u03B7",
background_attachment:"\u03A0\u03C1\u03BF\u03C3\u03AC\u03C1\u03C4\u03B7\u03BC\u03B1",
background_hpos:"\u039F\u03C1\u03B9\u03B6\u03CC\u03BD\u03C4\u03B9\u03B1 \u03B8\u03AD\u03C3\u03B7",
background_vpos:"\u039A\u03B1\u03C4\u03B1\u03BA\u03CC\u03C1\u03C5\u03C6\u03B7 \u03B8\u03AD\u03C3\u03B7",
block_wordspacing:"\u0391\u03C0\u03CC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03BB\u03AD\u03BE\u03B5\u03C9\u03BD",
block_letterspacing:"\u0391\u03C0\u03CC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03C9\u03BD",
block_vertical_alignment:"\u039A\u03B1\u03C4\u03B1\u03BA\u03CC\u03C1\u03C5\u03C6\u03B7 \u03C3\u03C4\u03BF\u03AF\u03C7\u03B9\u03C3\u03B7",
block_text_align:"\u03A3\u03C4\u03BF\u03AF\u03C7\u03B9\u03C3\u03B7 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5",
block_text_indent:"\u0395\u03C3\u03BF\u03C7\u03AE \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5",
block_whitespace:"\u039A\u03B5\u03BD\u03CC\u03C2 \u03C7\u03CE\u03C1\u03BF\u03C2",
block_display:"\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7",
box_width:"\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2",
box_height:"\u038E\u03C8\u03BF\u03C2",
box_float:"Float",
box_clear:"Clear",
padding:"\u0393\u03AD\u03BC\u03B9\u03C3\u03BC\u03B1",
same:"\u038A\u03B4\u03B9\u03BF \u03B3\u03B9\u03B1 \u03CC\u03BB\u03B1",
top:"\u03A0\u03AC\u03BD\u03C9",
right:"\u0394\u03B5\u03BE\u03B9\u03AC",
bottom:"\u039A\u03AC\u03C4\u03C9",
left:"\u0391\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC",
margin:"\u03A0\u03B5\u03C1\u03B9\u03B8\u03CE\u03C1\u03B9\u03BF",
style:"\u03A3\u03C4\u03C5\u03BB",
width:"\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2",
height:"\u038E\u03C8\u03BF\u03C2",
color:"\u03A7\u03C1\u03CE\u03BC\u03B1",
list_type:"\u03A4\u03CD\u03C0\u03BF\u03C2",
bullet_image:"\u0395\u03B9\u03BA\u03CC\u03BD\u03B1 \u03C4\u03B5\u03BB\u03B5\u03AF\u03B1\u03C2",
position:"\u0398\u03AD\u03C3\u03B7",
positioning_type:"\u03A4\u03CD\u03C0\u03BF\u03C2",
visibility:"\u039F\u03C1\u03B1\u03C4\u03CC\u03C4\u03B7\u03C4\u03B1",
zindex:"Z-index",
overflow:"\u03A5\u03C0\u03B5\u03C1\u03C7\u03B5\u03AF\u03BB\u03B9\u03C3\u03B7",
placement:"\u03A4\u03BF\u03C0\u03BF\u03B8\u03AD\u03C4\u03B7\u03C3\u03B7",
clip:"Clip"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('en.style_dlg',{
title:"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"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('es.style_dlg',{
title:"Editar Estilo CSS",
apply:"Aplicar",
text_tab:"Texto",
background_tab:"Fondo",
block_tab:"Bloque",
box_tab:"Caja",
border_tab:"Borde",
list_tab:"Lista",
positioning_tab:"Posici\u00F3n",
text_props:"Texto",
text_font:"Fuente",
text_size:"Tama\u00F1o",
text_weight:"Peso",
text_style:"Estilo",
text_variant:"Variante",
text_lineheight:"Ancho de la fila",
text_case:"Min\u00FAs./May\u00FAs.",
text_color:"Color",
text_decoration:"Decorativos",
text_overline:"Subrayado superior",
text_underline:"Subrayado",
text_striketrough:"Tachado",
text_blink:"Parpadeo",
text_none:"Ninguno",
background_color:"Color de fondo",
background_image:"Imagen de fondo",
background_repeat:"Repetici\u00F3n",
background_attachment:"Adjunto",
background_hpos:"Posici\u00F3n horizontal",
background_vpos:"Posici\u00F3n vertical",
block_wordspacing:"Espacio entre palabra",
block_letterspacing:"Espacio entre letra",
block_vertical_alignment:"Alineaci\u00F3n vertical",
block_text_align:"Alineaci\u00F3n del texto",
block_text_indent:"Sangr\u00EDa",
block_whitespace:"Espacio en blanco",
block_display:"Display",
box_width:"Ancho",
box_height:"Alto",
box_float:"Float",
box_clear:"Clear",
padding:"Padding",
same:"Lo mismo en todos",
top:"Arriba",
right:"Derecha",
bottom:"Debajo",
left:"Izquierda",
margin:"Margen",
style:"Estilo",
width:"Ancho",
height:"Alto",
color:"Color",
list_type:"Tipo",
bullet_image:"Imagen de la vi\u00F1eta",
position:"Posici\u00F3n",
positioning_type:"Tipo",
visibility:"Visibilidad",
zindex:"Z-index",
overflow:"Overflow",
placement:"Placement",
clip:"Clip"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('et.style_dlg',{
title:"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"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('fa.style_dlg',{
title:"\u0648\u06CC\u0631\u0627\u06CC\u0634 \u0627\u0633\u062A\u06CC\u0644 CSS",
apply:"\u0628\u0643\u0627\u0631\u06AF\u06CC\u0631\u06CC",
text_tab:"\u0645\u062A\u0646",
background_tab:"\u0632\u0645\u06CC\u0646\u0647",
block_tab:"\u0628\u0644\u0648\u0643",
box_tab:"\u062C\u0639\u0628\u0647",
border_tab:"\u062D\u0627\u0634\u06CC\u0647",
list_tab:"\u0644\u06CC\u0633\u062A",
positioning_tab:"\u0645\u0648\u0642\u0639\u06CC\u062A",
text_props:"\u0645\u062A\u0646",
text_font:"\u0642\u0644\u0645",
text_size:"\u0627\u0646\u062F\u0627\u0632\u0647",
text_weight:"\u062D\u0627\u0644\u062A",
text_style:"\u0627\u0633\u062A\u06CC\u0644",
text_variant:"\u0646\u0648\u0639 \u062A\u063A\u06CC\u06CC\u0631",
text_lineheight:"\u0628\u0644\u0646\u062F\u06CC \u062E\u0637",
text_case:"\u062D\u0627\u0644\u062A",
text_color:"\u0631\u0646\u06AF",
text_decoration:"\u0622\u0631\u0627\u06CC\u0634",
text_overline:"\u0628\u0627\u0644\u0627 \u062E\u0637",
text_underline:"\u0632\u06CC\u0631 \u062E\u0637",
text_striketrough:"\u062E\u0637 \u0648\u0633\u0637",
text_blink:"\u0686\u0634\u0645\u0643 \u0632\u0646",
text_none:"\u0647\u06CC\u0686 \u0643\u062F\u0627\u0645",
background_color:"\u0631\u0646\u06AF \u0632\u0645\u06CC\u0646\u0647",
background_image:"\u062A\u0635\u0648\u06CC\u0631 \u0632\u0645\u06CC\u0646\u0647",
background_repeat:"\u062A\u0643\u0631\u0627\u0631",
background_attachment:"\u0632\u0645\u06CC\u0645\u0647",
background_hpos:"\u0645\u0648\u0642\u0639\u06CC\u062A \u0627\u0641\u0642\u06CC",
background_vpos:"\u0645\u0648\u0642\u0639\u06CC\u062A \u0639\u0645\u0648\u062F\u06CC",
block_wordspacing:"\u0641\u0627\u0635\u0644\u0647 \u0643\u0644\u0645\u0627\u062A",
block_letterspacing:"\u0641\u0627\u0635\u0644\u0647 \u062D\u0631\u0648\u0641",
block_vertical_alignment:"\u062A\u0631\u0627\u0632 \u0639\u0645\u0648\u062F\u06CC",
block_text_align:"\u062A\u0631\u0627\u0632 \u0645\u062A\u0646",
block_text_indent:"\u062A\u0648\u0631\u0641\u062A\u06AF\u06CC \u0645\u062A\u0646",
block_whitespace:"\u0641\u0627\u0635\u0644\u0647 \u0633\u0641\u06CC\u062F",
block_display:"\u0646\u0645\u0627\u06CC\u0634",
box_width:"\u067E\u0647\u0646\u0627",
box_height:"\u0627\u0631\u062A\u0641\u0627\u0639",
box_float:"\u0634\u0646\u0627\u0648\u0631",
box_clear:"\u067E\u0627\u0643 \u0633\u0627\u0632\u06CC",
padding:"\u0644\u0627\u06CC\u0647 \u06AF\u0630\u0627\u0631\u06CC",
same:"\u0647\u0645\u0633\u0627\u0646 \u0628\u0631\u0627\u06CC \u0647\u0645\u0647",
top:"\u0628\u0627\u0644\u0627",
right:"\u0631\u0627\u0633\u062A",
bottom:"\u067E\u0627\u06CC\u06CC\u0646",
left:"\u0686\u067E",
margin:"\u062D\u0627\u0634\u06CC\u0647",
style:"\u0627\u0633\u062A\u06CC\u0644",
width:"\u067E\u0647\u0646\u0627",
height:"\u0627\u0631\u062A\u0641\u0627\u0639",
color:"\u0631\u0646\u06AF",
list_type:"\u0646\u0648\u0639",
bullet_image:"\u062A\u0635\u0648\u06CC\u0631 \u06AF\u0644\u0648\u0644\u0647",
position:"\u0645\u0648\u0642\u0639\u06CC\u062A",
positioning_type:"\u0646\u0648\u0639",
visibility:"\u0642\u0627\u0628\u0644\u06CC\u062A \u0631\u0648\u06CC\u062A",
zindex:"\u0645\u062D\u0648\u0631 Z",
overflow:"\u0633\u0631 \u0631\u06CC\u0632",
placement:"\u0645\u0648\u0642\u0639\u06CC\u062A \u0645\u0643\u0627\u0646\u06CC",
clip:"\u0628\u0631\u0634 (Clip)"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('fi.style_dlg',{
title:"Muokkaa CSS tyyli\u00E4",
apply:"K\u00E4yt\u00E4",
text_tab:"Teksti",
background_tab:"Tausta",
block_tab:"Palkki",
box_tab:"Laatikko",
border_tab:"Kehys",
list_tab:"Lista",
positioning_tab:"Sijainti",
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:"Sama kaikille",
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"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('fr.style_dlg',{
title:"\u00C9diter la feuille de style CSS",
apply:"Appliquer",
text_tab:"Texte",
background_tab:"Fond",
block_tab:"Bloc",
box_tab:"Bo\u00EEte",
border_tab:"Bordure",
list_tab:"Liste",
positioning_tab:"Positionement",
text_props:"Texte",
text_font:"Police",
text_size:"Taille",
text_weight:"Poids",
text_style:"Style",
text_variant:"Variante",
text_lineheight:"Hauteur de ligne",
text_case:"Casse",
text_color:"Couleur",
text_decoration:"D\u00E9coration",
text_overline:"surlign\u00E9",
text_underline:"soulign\u00E9",
text_striketrough:"barr\u00E9",
text_blink:"clignotant",
text_none:"aucun",
background_color:"Couleur de fond",
background_image:"Image de fond",
background_repeat:"R\u00E9p\u00E9ter",
background_attachment:"Attachement",
background_hpos:"Position horizontale",
background_vpos:"Position verticale",
block_wordspacing:"Espacement des mots ",
block_letterspacing:"Espacement des lettres",
block_vertical_alignment:"Alignement vertical",
block_text_align:"Alignement du texte",
block_text_indent:"Indentation du texte",
block_whitespace:"Fin de ligne",
block_display:"Affichage",
box_width:"Largeur",
box_height:"Hauteur",
box_float:"Flottant",
box_clear:"Vider",
padding:"Espacement",
same:"Identique pour tous",
top:"Haut",
right:"Droit",
bottom:"Bas",
left:"Gauche",
margin:"Marge",
style:"Style",
width:"Largeur",
height:"Hauter",
color:"Couleur",
list_type:"Type",
bullet_image:"Image de puce",
position:"Position",
positioning_type:"Type",
visibility:"Visibilit\u00E9",
zindex:"Z-index",
overflow:"D\u00E9bordement",
placement:"Placement",
clip:"Clip"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('gl.style_dlg',{
title:"Editar Estilo CSS",
apply:"Aplicar",
text_tab:"Texto",
background_tab:"Fondo",
block_tab:"Bloque",
box_tab:"Caixa",
border_tab:"Borde",
list_tab:"Lista",
positioning_tab:"Posici\u00F3n",
text_props:"Texto",
text_font:"Fonte",
text_size:"Tama\u00F1o",
text_weight:"Peso",
text_style:"Estilo",
text_variant:"Variante",
text_lineheight:"Ancho da fila",
text_case:"Min\u00FAs./May\u00FAs.",
text_color:"Cor",
text_decoration:"Decorativos",
text_overline:"Li\u00F1a superior",
text_underline:"Suli\u00F1ado",
text_striketrough:"Tachado",
text_blink:"Parpadeo",
text_none:"Neng\u00FAn",
background_color:"Cor de fondo",
background_image:"Imaxe de fondo",
background_repeat:"Repetir",
background_attachment:"Adxunto",
background_hpos:"Posici\u00F3n horizontal",
background_vpos:"Posici\u00F3n vertical",
block_wordspacing:"Espacio entre verbas",
block_letterspacing:"Espacio entre letras",
block_vertical_alignment:"Ali\u00F1aci\u00F3n vertical",
block_text_align:"Ali\u00F1aci\u00F3n do texto",
block_text_indent:"Sangr\u00EDa",
block_whitespace:"Espacio en branco",
block_display:"Display",
box_width:"Ancho",
box_height:"Alto",
box_float:"Float",
box_clear:"Limpar",
padding:"Recheo",
same:"O mesmo en todos",
top:"Arriba",
right:"Dereita",
bottom:"Abaixo",
left:"Esquerda",
margin:"Marxe",
style:"Estilo",
width:"Ancho",
height:"Alto",
color:"Cor",
list_type:"Tipo",
bullet_image:"Imaxe da vi\u00F1eta",
position:"Posici\u00F3n",
positioning_type:"Tipo",
visibility:"Visibilidade",
zindex:"\u00CDndize Z",
overflow:"Desbodramento",
placement:"Colocaci\u00F3n",
clip:"Clip"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('he.style_dlg',{
title:"\u05E2\u05D3\u05DB\u05D5\u05DF \u05D4\u05D2\u05D3\u05E8\u05D5\u05EA CSS",
apply:"\u05D4\u05D7\u05DC",
text_tab:"Text",
background_tab:"\u05E8\u05E7\u05E2",
block_tab:"\u05D7\u05E1\u05D5\u05DD",
box_tab:"\u05E7\u05D5\u05E4\u05E1\u05D0",
border_tab:"\u05D2\u05D1\u05D5\u05DC",
list_tab:"\u05E8\u05E9\u05D9\u05DE\u05D4",
positioning_tab:"\u05DE\u05D9\u05E7\u05D5\u05DD",
text_props:"Text",
text_font:"\u05E4\u05D5\u05E0\u05D8",
text_size:"\u05D2\u05D5\u05D3\u05DC",
text_weight:"Weight",
text_style:"\u05E1\u05D2\u05E0\u05D5\u05DF",
text_variant:"Variant",
text_lineheight:"\u05D2\u05D5\u05D1\u05D4 \u05E9\u05D5\u05E8\u05D4",
text_case:"Case",
text_color:"\u05E6\u05D1\u05E2",
text_decoration:"\u05E2\u05D9\u05E6\u05D5\u05D1",
text_overline:"\u05E9\u05D5\u05E8\u05D4 \u05DE\u05E2\u05DC",
text_underline:"\u05E9\u05D5\u05E8\u05D4 \u05DE\u05EA\u05D7\u05EA",
text_striketrough:"strikethrough",
text_blink:"blink",
text_none:"none",
background_color:"\u05E6\u05D1\u05E2 \u05E8\u05E7\u05E2",
background_image:"\u05EA\u05DE\u05D5\u05E0\u05EA \u05E8\u05E7\u05E2",
background_repeat:"\u05D7\u05D6\u05D5\u05E8",
background_attachment:"\u05E7\u05D1\u05E6\u05D9\u05DD \u05DE\u05E6\u05D5\u05E8\u05E4\u05D9\u05DD",
background_hpos:"\u05DE\u05D9\u05E7\u05D5\u05DD \u05D0\u05D5\u05E4\u05E7\u05D9",
background_vpos:"\u05DE\u05D9\u05E7\u05D5\u05DD \u05E8\u05D5\u05D7\u05D1\u05D9",
block_wordspacing:"\u05DE\u05E8\u05D7\u05E7 \u05D1\u05D9\u05DF \u05DE\u05D9\u05DC\u05D9\u05DD",
block_letterspacing:"\u05DE\u05E8\u05D7\u05E7 \u05D1\u05D9\u05DF \u05D0\u05D5\u05EA\u05D9\u05D5\u05EA",
block_vertical_alignment:"Vertical alignment",
block_text_align:"\u05DE\u05D9\u05E7\u05D5\u05DD \u05D8\u05E7\u05E1\u05D8",
block_text_indent:"Text indent",
block_whitespace:"Whitespace",
block_display:"\u05D4\u05E6\u05D2",
box_width:"\u05E8\u05D5\u05D7\u05D1",
box_height:"\u05D2\u05D5\u05D1\u05D4",
box_float:"Float",
box_clear:"\u05E0\u05E7\u05D4",
padding:"Padding",
same:"\u05D0\u05D5\u05EA\u05D5 \u05D3\u05D1\u05E8 \u05E2\u05D1\u05D5\u05E8 \u05DB\u05D5\u05DC\u05DD",
top:"\u05E2\u05DC\u05D9\u05D5\u05DF",
right:"\u05D9\u05DE\u05D9\u05DF",
bottom:"\u05EA\u05D7\u05EA\u05D9\u05EA",
left:"\u05E9\u05DE\u05D0\u05DC",
margin:"Margin",
style:"\u05E1\u05D2\u05E0\u05D5\u05DF",
width:"\u05E8\u05D5\u05D7\u05D1",
height:"\u05D2\u05D5\u05D1\u05D4",
color:"\u05E6\u05D1\u05E2",
list_type:"\u05E1\u05D5\u05D2",
bullet_image:"Bullet image",
position:"\u05DE\u05D9\u05E7\u05D5\u05DD",
positioning_type:"\u05E1\u05D5\u05D2",
visibility:"Visibility",
zindex:"Z-index",
overflow:"Overflow",
placement:"\u05DE\u05D9\u05E7\u05D5\u05DD",
clip:"\u05E7\u05DC\u05D9\u05E4"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('hr.style_dlg',{
title:"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"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('hu.style_dlg',{
title:"CSS st\u00EDlus szerkest\u00E9se",
apply:"Alkalmaz",
text_tab:"Sz\u00F6veg",
background_tab:"H\u00E1tt\u00E9r",
block_tab:"Blokk",
box_tab:"Doboz",
border_tab:"Keret",
list_tab:"Lista",
positioning_tab:"Poz\u00EDci\u00F3",
text_props:"Sz\u00F6veg",
text_font:"Bet\u0171t\u00EDpus",
text_size:"M\u00E9ret",
text_weight:"Sz\u00E9less\u00E9g",
text_style:"St\u00EDlus",
text_variant:"V\u00E1ltozat",
text_lineheight:"Sormagass\u00E1g",
text_case:"eset",
text_color:"sz\u00EDn",
text_decoration:"dekor\u00E1ci\u00F3",
text_overline:"fel\u00FClh\u00FAz\u00E1s",
text_underline:"alulh\u00FAz\u00E1s",
text_striketrough:"\u00E1th\u00FAz\u00E1s",
text_blink:"villog\u00E1s",
text_none:"egyik sem",
background_color:"H\u00E1tt\u00E9rsz\u00EDn",
background_image:"H\u00E1tt\u00E9rk\u00E9p",
background_repeat:"Ism\u00E9tl\u00E9s",
background_attachment:"Csatolm\u00E1ny",
background_hpos:"V\u00EDzszintes hely",
background_vpos:"F\u00FCgg\u0151leges hely",
block_wordspacing:"Sz\u00F3t\u00E1vols\u00E1g",
block_letterspacing:"Bet\u0171t\u00E1vols\u00E1g",
block_vertical_alignment:"F\u00FCgg\u0151leges igaz\u00EDt\u00E1s",
block_text_align:"Sz\u00F6veg igaz\u00EDt\u00E1sa",
block_text_indent:"Sz\u00F6veg beh\u00FAz\u00E1sa",
block_whitespace:"\u00DCres helyek",
block_display:"Megjelen\u00EDt\u00E9s",
box_width:"Sz\u00E9less\u00E9g",
box_height:"Magass\u00E1g",
box_float:"Lebeg\u00E9s (float)",
box_clear:"Lebeg\u00E9s (float) t\u00F6rl\u00E9se",
padding:"Bels\u0151 marg\u00F3",
same:"Mindenhol ugyanaz",
top:"Fel\u00FCl",
right:"Jobbra",
bottom:"Lent",
left:"Balra",
margin:"Marg\u00F3",
style:"St\u00EDlus",
width:"Sz\u00E9less\u00E9g",
height:"Magass\u00E1g",
color:"Sz\u00EDn",
list_type:"T\u00EDpus",
bullet_image:"Elemk\u00E9p",
position:"Poz\u00EDci\u00F3",
positioning_type:"T\u00EDpus",
visibility:"L\u00E1that\u00F3s\u00E1g",
zindex:"Z-index",
overflow:"Kifut\u00E1s",
placement:"Elhelyez\u00E9s",
clip:"Lev\u00E1g\u00E1s"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('ia.style_dlg',{
title:"\u7F16\u8F91 CSS \u6837\u5F0F\u8868",
apply:"\u5E94\u7528",
text_tab:"\u6587\u5B57",
background_tab:"\u80CC\u666F",
block_tab:"\u533A\u5757",
box_tab:"\u76D2\u6A21\u578B",
border_tab:"\u8FB9\u6846",
list_tab:"\u5217\u8868",
positioning_tab:"\u4F4D\u7F6E",
text_props:"\u6587\u5B57",
text_font:"\u5B57\u4F53",
text_size:"\u5927\u5C0F",
text_weight:"\u5BBD\u5EA6",
text_style:"\u6837\u5F0F",
text_variant:"\u53D8\u4F53",
text_lineheight:"\u884C\u9AD8",
text_case:"\u5B57\u4F53",
text_color:"\u989C\u8272",
text_decoration:"\u88C5\u9970",
text_overline:"\u4E0A\u5212\u7EBF",
text_underline:"\u5E95\u7EBF",
text_striketrough:"\u4E2D\u5212\u7EBF",
text_blink:"\u95EA\u70C1",
text_none:"\u65E0",
background_color:"\u80CC\u666F\u989C\u8272",
background_image:"\u80CC\u666F\u56FE\u7247",
background_repeat:"\u91CD\u590D",
background_attachment:"\u9644\u4EF6",
background_hpos:"\u6C34\u5E73\u4F4D\u7F6E",
background_vpos:"\u5782\u76F4\u4F4D\u7F6E",
block_wordspacing:"\u8BCD\u95F4\u8DDD",
block_letterspacing:"\u5B57\u6BCD\u95F4\u8DDD",
block_vertical_alignment:"\u5782\u76F4\u5BF9\u9F50\u65B9\u5F0F",
block_text_align:"\u6587\u5B57\u5BF9\u9F50",
block_text_indent:"\u6587\u5B57\u7F29\u8FDB",
block_whitespace:"\u7A7A\u683C",
block_display:"\u663E\u793A\u65B9\u5F0F",
box_width:"\u5BBD\u5EA6",
box_height:"\u9AD8\u5EA6",
box_float:"\u6D6E\u52A8",
box_clear:"\u6E05\u9664",
padding:"\u5185\u8FB9\u8DDD",
same:"\u5168\u90E8\u76F8\u540C",
top:"\u9876\u90E8",
right:"\u53F3\u4FA7",
bottom:"\u5E95\u90E8",
left:"\u5DE6\u4FA7",
margin:"\u8FB9\u8DDD",
style:"\u6837\u5F0F",
width:"\u5BBD\u5EA6",
height:"\u9AD8\u5EA6",
color:"\u989C\u8272",
list_type:"\u5217\u8868\u7C7B\u578B",
bullet_image:"\u6E05\u5355\u56FE\u7247",
position:"\u56FE\u7247\u4F4D\u7F6E",
positioning_type:"\u4F4D\u7F6E\u7C7B\u578B",
visibility:"\u662F\u5426\u53EF\u89C1",
zindex:"Z\u5750\u6807",
overflow:"\u6EA2\u51FA",
placement:"\u5E03\u7F6E",
clip:"\u526A\u8F91"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('ii.style_dlg',{
title:"\u7F16\u8F91 CSS \u6837\u5F0F\u8868\u5355",
apply:"\u5957\u7528",
text_tab:"\u6587\u5B57",
background_tab:"\u80CC\u666F",
block_tab:"\u533A\u5757",
box_tab:"\u65B9\u5757",
border_tab:"\u8FB9\u6846",
list_tab:"\u8868\u5217",
positioning_tab:"\u4F4D\u7F6E",
text_props:"\u6587\u5B57",
text_font:"\u5B57\u578B",
text_size:"\u5927\u5C0F",
text_weight:"\u5BBD",
text_style:"\u6837\u5F0F",
text_variant:"\u53D8\u4F53",
text_lineheight:"\u884C\u9AD8",
text_case:"\u5B57\u578B",
text_color:"\u989C\u8272",
text_decoration:"\u88C5\u9970",
text_overline:"\u9876\u7EBF",
text_underline:"\u5E95\u7EBF",
text_striketrough:"\u5220\u9664\u7EBF",
text_blink:"\u95EA\u70C1",
text_none:"\u65E0",
background_color:"\u80CC\u666F\u989C\u8272",
background_image:"\u80CC\u666F\u56FE\u6863",
background_repeat:"\u91CD\u590D",
background_attachment:"\u9644\u4EF6",
background_hpos:"\u6C34\u5E73\u4F4D\u7F6E",
background_vpos:"\u5782\u76F4\u4F4D\u7F6E",
block_wordspacing:"\u8BCD\u95F4\u8DDD",
block_letterspacing:"\u5B57\u6BCD\u95F4\u8DDD",
block_vertical_alignment:"\u5782\u76F4\u5BF9\u9F50\u65B9\u5F0F",
block_text_align:"\u6587\u5B57\u5BF9\u9F50",
block_text_indent:"\u6587\u5B57\u7F29\u6392",
block_whitespace:"\u7A7A\u683C",
block_display:"\u663E\u793A",
box_width:"\u5BBD",
box_height:"\u9AD8",
box_float:"\u6D6E\u52A8",
box_clear:"\u6E05\u9664",
padding:"\u5185\u8FB9\u8DDD",
same:"\u5168\u90E8\u76F8\u540C",
top:"\u9876\u90E8",
right:"\u53F3\u4FA7",
bottom:"\u5E95\u90E8",
left:"\u5DE6\u4FA7",
margin:"\u8FB9\u754C",
style:"\u6837\u5F0F",
width:"\u5BBD",
height:"\u9AD8",
color:"\u989C\u8272",
list_type:"\u7C7B\u578B",
bullet_image:"\u5217\u5355\u56FE\u6863",
position:"\u4F4D\u7F6E",
positioning_type:"\u7C7B\u578B",
visibility:"\u53EF\u663E\u793A",
zindex:"Z-\u5750\u6807",
overflow:"\u6EA2\u51FA",
placement:"\u5E03\u7F6E",
clip:"\u526A\u8F91"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('is.style_dlg',{
title:"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"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('it.style_dlg',{
title:"Modifica stile CSS",
apply:"Applica",
text_tab:"Testo",
background_tab:"Sfondo",
block_tab:"Blocco",
box_tab:"Contenitore",
border_tab:"Bordi",
list_tab:"Liste",
positioning_tab:"Posizionamento",
text_props:"Testo",
text_font:"Carattere",
text_size:"Dimensione",
text_weight:"Spessore",
text_style:"Stile",
text_variant:"Variante",
text_lineheight:"Altezza linea",
text_case:"Tipo",
text_color:"Colore",
text_decoration:"Decorazione",
text_overline:"sopralineato",
text_underline:"sottolineato",
text_striketrough:"barrato",
text_blink:"lampeggiante",
text_none:"nessuna",
background_color:"Colore sfondo",
background_image:"Immagine sfondo",
background_repeat:"Repetizione",
background_attachment:"Allegato",
background_hpos:"Posizione orizzontale",
background_vpos:"Posizione verticale",
block_wordspacing:"Spaziatura parole",
block_letterspacing:"Spaziatura caratteri",
block_vertical_alignment:"Allineamento verticale",
block_text_align:"Allineamento testo",
block_text_indent:"Indentazione testo",
block_whitespace:"Whitespace",
block_display:"Visualizzazione",
box_width:"Larghezza",
box_height:"Altezza",
box_float:"Float",
box_clear:"Clear",
padding:"Spazio dal bordo",
same:"Uguale per tutti",
top:"Superiore",
right:"Destro",
bottom:"Inferiore",
left:"Sinistro",
margin:"Margine",
style:"Stile",
width:"Larghezza",
height:"Altezza",
color:"Colore",
list_type:"Tipo",
bullet_image:"Immagine bullet",
position:"Posizione",
positioning_type:"Tipo",
visibility:"Visibilit\u00E0",
zindex:"Z-index",
overflow:"Overflow",
placement:"Piazzamento",
clip:"Clip"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('ja.style_dlg',{
title:"CSS\u7DE8\u96C6",
apply:"\u9069\u7528",
text_tab:"\u6587\u5B57",
background_tab:"\u80CC\u666F",
block_tab:"\u30D6\u30ED\u30C3\u30AF",
box_tab:"\u30DC\u30C3\u30AF\u30B9",
border_tab:"\u67A0\u7DDA",
list_tab:"\u30EA\u30B9\u30C8",
positioning_tab:"\u30DD\u30B8\u30B7\u30E7\u30F3",
text_props:"Text",
text_font:"\u30D5\u30A9\u30F3\u30C8",
text_size:"\u30B5\u30A4\u30BA",
text_weight:"\u592A\u3055",
text_style:"\u30B9\u30BF\u30A4\u30EB",
text_variant:"\u5909\u5F62",
text_lineheight:"\u884C\u9AD8\u3055",
text_case:"\u5927\u6587\u5B57/\u5C0F\u6587\u5B57",
text_color:"\u8272",
text_decoration:"\u88C5\u98FE",
text_overline:"\u4E0A\u7DDA",
text_underline:"\u4E0B\u7DDA",
text_striketrough:"\u6253\u6D88\u3057\u7DDA",
text_blink:"\u70B9\u6EC5",
text_none:"\u306A\u3057",
background_color:"\u80CC\u666F\u8272",
background_image:"\u80CC\u666F\u753B\u50CF",
background_repeat:"\u7E70\u308A\u8FD4\u3057",
background_attachment:"Attachment",
background_hpos:"\u6C34\u5E73\u4F4D\u7F6E",
background_vpos:"\u5782\u76F4\u4F4D\u7F6E",
block_wordspacing:"\u5358\u8A9E\u611F\u899A",
block_letterspacing:"\u6587\u5B57\u9593\u9694",
block_vertical_alignment:"\u5782\u76F4\u914D\u7F6E",
block_text_align:"\u6C34\u5E73\u914D\u7F6E",
block_text_indent:"\u30A4\u30F3\u30C7\u30F3\u30C8",
block_whitespace:"\u7A7A\u767D\u6587\u5B57",
block_display:"\u30C7\u30A3\u30B9\u30D7\u30EC\u30A4",
box_width:"\u5E45",
box_height:"\u9AD8\u3055",
box_float:"\u56DE\u308A\u8FBC\u307F",
box_clear:"\u56DE\u308A\u8FBC\u307F\u89E3\u9664",
padding:"\u30D1\u30C7\u30A3\u30F3\u30B0",
same:"\u5168\u3066\u540C\u3058\u306B\u3059\u308B",
top:"\u4E0A",
right:"\u53F3",
bottom:"\u4E0B",
left:"\u5DE6",
margin:"\u30DE\u30FC\u30B8\u30F3",
style:"\u30B9\u30BF\u30A4\u30EB",
width:"\u5E45",
height:"\u9AD8\u3055",
color:"\u8272",
list_type:"\u30DE\u30FC\u30AB\u30FC\u7A2E\u985E",
bullet_image:"\u30DE\u30FC\u30AB\u30FC\u753B\u50CF",
position:"\u30DE\u30FC\u30AB\u30FC\u8868\u793A\u4F4D\u7F6E",
positioning_type:"\u914D\u7F6E\u65B9\u6CD5",
visibility:"\u8868\u793A",
zindex:"Z-Index",
overflow:"\u30AA\u30FC\u30D0\u30FC\u30D5\u30ED\u30FC",
placement:"\u4F4D\u7F6E",
clip:"\u5207\u308A\u629C\u304D"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('ko.style_dlg',{
title:"CSS\uD3B8\uC9D1",
apply:"\uC801\uC6A9",
text_tab:"\uD14D\uC2A4\uD2B8",
background_tab:"\uBC30\uACBD",
block_tab:"\uBE14\uB85D",
box_tab:"\uBC15\uC2A4",
border_tab:"\uD14C\uB450\uB9AC\uC120",
list_tab:"\uB9AC\uC2A4\uD2B8",
positioning_tab:"\uC704\uCE58",
text_props:"\uD14D\uC2A4\uD2B8",
text_font:"\uD3F0\uD2B8",
text_size:"\uD06C\uAE30",
text_weight:"\uAD75\uAE30",
text_style:"\uC2A4\uD0C0\uC77C",
text_variant:"Variant",
text_lineheight:"\uD589 \uB192\uC774",
text_case:"\uB300/\uC18C\uBB38\uC790",
text_color:"\uC0C9",
text_decoration:"\uC7A5\uC2DD",
text_overline:"\uC717\uC904",
text_underline:"\uBC11\uC904",
text_striketrough:"\uCDE8\uC18C\uC120",
text_blink:"\uC810\uBA78",
text_none:"\uC5C6\uC74C",
background_color:"\uBC30\uACBD\uC0C9",
background_image:"\uBC30\uACBD \uC774\uBBF8\uC9C0",
background_repeat:"\uBC18\uBCF5",
background_attachment:"\uCCA8\uBD80",
background_hpos:"\uC218\uD3C9 \uC704\uCE58",
background_vpos:"\uC218\uC9C1 \uC704\uCE58",
block_wordspacing:"\uB2E8\uC5B4 \uAC04\uACA9",
block_letterspacing:"\uBB38\uC790 \uAC04\uACA9",
block_vertical_alignment:"\uC218\uC9C1 \uC704\uCE58",
block_text_align:"\uD14D\uC2A4\uD2B8 \uC815\uB82C",
block_text_indent:"\uB4E4\uC5EC\uC4F0\uAE30",
block_whitespace:"\uACF5\uBC31 \uBB38\uC790",
block_display:"\uD45C\uC2DC",
box_width:"\uD3ED",
box_height:"\uB192\uC774",
box_float:"float",
box_clear:"Clear",
padding:"padding",
same:"\uBAA8\uB450 \uB611\uAC19\uC774",
top:"\uC0C1",
right:"\uC6B0",
bottom:"\uD558",
left:"\uC88C",
margin:"\uB9C8\uC9C4",
style:"\uC2A4\uD0C0\uC77C",
width:"\uD3ED",
height:"\uB192\uC774",
color:"\uC0C9",
list_type:"\uBAA9\uB85D\uC885\uB958",
bullet_image:"\uBE14\uB9BF \uC774\uBBF8\uC9C0",
position:"\uC704\uCE58",
positioning_type:"\uD0C0\uC785",
visibility:"\uAC00\uC2DC\uC131",
zindex:"Z-index",
overflow:"\uC624\uBC84\uD50C\uB85C\uC6B0",
placement:"\uC704\uCE58(placement)",
clip:"Clip"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('lt.style_dlg',{
title:"Redaguoti CSS stili\u0173",
apply:"Taikyti",
text_tab:"Tekstas",
background_tab:"Fonas",
block_tab:"Blokas",
box_tab:"D\u0117\u017Eut\u0117",
border_tab:"R\u0117melis",
list_tab:"S\u0105ra\u0161as",
positioning_tab:"Pozicionavimas",
text_props:"Tekstas",
text_font:"\u0160triftas",
text_size:"Dydis",
text_weight:"Storis",
text_style:"Stilius",
text_variant:"Variantas",
text_lineheight:"Eilut\u0117s au\u0161tis",
text_case:"Ma\u017Eosios/did\u017Eiosios raid\u0117s",
text_color:"Spalva",
text_decoration:"Dekoracija",
text_overline:"pabraukta vir\u0161uje",
text_underline:"pabraukta apa\u010Dioje",
text_striketrough:"perbraukta",
text_blink:"mirg\u0117jimas",
text_none:"joks",
background_color:"Fono spalva",
background_image:"Fono paveiksl\u0117lis",
background_repeat:"Kartoti",
background_attachment:"Prisegtukas",
background_hpos:"Horizontali pozicija",
background_vpos:"Vertikali pozicija",
block_wordspacing:"Tarpai tarp \u017Eod\u017Ei\u0173",
block_letterspacing:"Tarpai tarp raid\u017Ei\u0173",
block_vertical_alignment:"Vertikalus lygiavimas",
block_text_align:"Teksto lygiavimas",
block_text_indent:"Teksto atitraukimas",
block_whitespace:"Tarpai",
block_display:"Rodymas",
box_width:"Ilgis",
box_height:"Auk\u0161tis",
box_float:"Plaukiojimas",
box_clear:"I\u0161valyti",
padding:"U\u017Epildymas",
same:"Tas pats visiems",
top:"Vir\u0161uje",
right:"De\u0161in\u0117je",
bottom:"Apa\u010Dioje",
left:"Kair\u0117je",
margin:"Para\u0161t\u0117",
style:"Stilius",
width:"Ilgis",
height:"Auk\u0161tis",
color:"Spalva",
list_type:"Tipas",
bullet_image:"Kulkos paveiksl\u0117lis",
position:"Pozicija",
positioning_type:"Tipas",
visibility:"Matomumas",
zindex:"Z-indeksas",
overflow:"Perpildymas",
placement:"Talpinimas",
clip:"\u012Era\u0161as"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('lv.style_dlg',{
title:"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"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('mk.style_dlg',{
title:"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"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('mn.style_dlg',{
title:"CSS-Styles \u0437\u0430\u0441\u0432\u0430\u0440\u043B\u0430\u0445",
apply:"\u0425\u044D\u0440\u044D\u0433\u043B\u044D\u0445",
text_tab:"\u0411\u0438\u0447\u0432\u044D\u0440",
background_tab:"\u0414\u044D\u0432\u0441\u0433\u044D\u0440",
block_tab:"\u0411\u043B\u043E\u043A",
box_tab:"\u0425\u0430\u0439\u0440\u0446\u0430\u0433",
border_tab:"\u0425\u04AF\u0440\u044D\u044D",
list_tab:"\u0416\u0430\u0433\u0441\u0430\u0430\u043B\u0442",
positioning_tab:"\u0411\u0430\u0439\u0440\u0448\u0438\u043B",
text_props:"\u0411\u0438\u0447\u0432\u044D\u0440",
text_font:"\u0424\u043E\u043D\u0442",
text_size:"\u0425\u044D\u043C\u0436\u044D\u044D",
text_weight:"\u04E8\u0440\u0433\u04E9\u043D \u043D\u0430\u0440\u0438\u0439\u043D",
text_style:"\u0425\u044D\u043B\u0431\u044D\u0440",
text_variant:"\u0412\u0430\u0440\u0438\u0430\u043D\u0442",
text_lineheight:"\u041C\u04E9\u0440\u043D\u0438\u0439 \u04E9\u043D\u0434\u04E9\u0440",
text_case:"\u0411\u0438\u0447\u0432\u044D\u0440",
text_color:"\u04E8\u043D\u0433\u04E9",
text_decoration:"\u0427\u0438\u043C\u044D\u0433\u043B\u044D\u043B",
text_overline:"\u0434\u044D\u044D\u0433\u04AF\u04AF\u0440 \u043D\u044C \u0437\u0443\u0440\u0441\u0430\u043D",
text_underline:"\u0434\u043E\u043E\u0433\u0443\u0443\u0440 \u043D\u044C \u0437\u0443\u0440\u0441\u0430\u043D",
text_striketrough:"\u0434\u0430\u0440\u0441\u0430\u043D",
text_blink:"\u0430\u043D\u0438\u0432\u0447\u0438\u043B\u0442",
text_none:"\u0431\u0430\u0439\u0445\u0433\u04AF\u0439",
background_color:"\u0414\u044D\u0432\u0441\u0433\u044D\u0440 \u04E9\u043D\u0433\u04E9",
background_image:"\u0414\u044D\u0432\u0441\u0433\u044D\u0440 \u0437\u0443\u0440\u0430\u0433",
background_repeat:"\u0414\u0430\u0432\u0442\u0430\u043B\u0442",
background_attachment:"\u0423\u0441\u0430\u043D \u0442\u044D\u043C\u0434\u0433\u0438\u0439\u043D \u044D\u0444\u0444\u0435\u043A\u0442",
background_hpos:"\u0411\u0430\u0439\u0440\u043B\u0430\u043B X",
background_vpos:"\u0411\u0430\u0439\u0440\u043B\u0430\u043B Y",
block_wordspacing:"\u04AE\u0433 \u0445\u043E\u043E\u0440\u043E\u043D\u0434\u044B\u043D \u0437\u0430\u0439",
block_letterspacing:"\u04AE\u0441\u044D\u0433 \u0445\u043E\u043E\u0440\u043E\u043D\u0434\u044B\u043D \u0437\u0430\u0439",
block_vertical_alignment:"\u0411\u043E\u0441\u043E\u043E \u0436\u0438\u0433\u0434\u0440\u04AF\u04AF\u043B\u044D\u043B\u0442",
block_text_align:"\u0416\u0438\u0433\u0434\u0440\u04AF\u04AF\u043B\u044D\u043B\u0442",
block_text_indent:"\u0414\u043E\u0433\u043E\u043B \u043C\u04E9\u0440",
block_whitespace:"\u0410\u0432\u0442\u043E\u043C\u0430\u0442 \u043C\u04E9\u0440 \u043E\u0440\u043E\u043E\u043B\u0442",
block_display:"\u041E\u0440\u043E\u043E\u0445 \u0445\u044D\u043B\u0431\u044D\u0440",
box_width:"\u04E8\u0440\u0433\u04E9\u043D",
box_height:"\u04E8\u043D\u0434\u04E9\u0440",
box_float:"\u0413\u04AF\u0439\u043B\u0433\u044D\u043B\u0442",
box_clear:"\u0413\u04AF\u0439\u043B\u0433\u044D\u043B\u0442 \u0445\u0430\u0430\u0445",
padding:"\u0414\u043E\u0442\u043E\u043E\u0434 \u0437\u0430\u0439",
same:"\u0411\u04AF\u0433\u0434 \u0438\u0436\u0438\u043B",
top:"\u0414\u044D\u044D\u0440",
right:"\u0411\u0430\u0440\u0443\u0443\u043D",
bottom:"\u0414\u043E\u043E\u0440",
left:"\u0417\u04AF\u04AF\u043D",
margin:"\u0413\u0430\u0434\u0430\u0430\u0434 \u0437\u0430\u0439",
style:"\u0424\u043E\u0440\u043C\u0430\u0442",
width:"\u04E8\u0440\u0433\u04E9\u043D",
height:"\u04E8\u043D\u0434\u04E9\u0440",
color:"\u0411\u0438\u0447\u0432\u044D\u0440\u0438\u0439\u043D \u04E9\u043D\u0433\u04E9",
list_type:"\u0422\u043E\u043E\u0447\u0438\u043B\u0442\u044B\u043D \u0446\u044D\u0433\u0438\u0439\u043D \u0445\u044D\u043B\u0431\u044D\u0440",
bullet_image:"\u0413\u0440\u0430\u0444\u0438\u043A \u0442\u043E\u043E\u0447\u0438\u043B\u0442\u044B\u043D \u0446\u044D\u0433",
position:"\u0411\u0430\u0439\u0440\u0448\u0438\u043B",
positioning_type:"\u0411\u0430\u0439\u0440\u0448\u043B\u044B\u043D \u0442\u04E9\u0440\u04E9\u043B",
visibility:"\u0425\u0430\u0440\u0430\u0433\u0434\u0430\u0445\u0443\u0439\u0446",
zindex:"Z \u0443\u0442\u0433\u0430",
overflow:"\u0425\u044D\u0442\u044D\u0440\u0441\u044D\u043D \u0445\u044D\u043C\u0436\u044D\u044D\u043D\u0438\u0439 \u0445\u0430\u0440\u044C\u0446\u0430\u0430",
placement:"\u0411\u0430\u0439\u0440\u0448\u0438\u043B",
clip:"\u0422\u0430\u0439\u0440\u0434\u0430\u0441"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('ms.style_dlg',{
title:"Sunting Gaya CSS",
apply:"Guna",
text_tab:"Teks",
background_tab:"Latar belakang",
block_tab:"Landasan",
box_tab:"Kotak",
border_tab:"Sempadan",
list_tab:"Senarai",
positioning_tab:"Kedudukan",
text_props:"Teks",
text_font:"Huruf",
text_size:"Saiz",
text_weight:"Beban",
text_style:"Gaya",
text_variant:"Varian",
text_lineheight:"Tinggi garisan",
text_case:"Kes",
text_color:"Warna",
text_decoration:"Dekorasi",
text_overline:"garis atas",
text_underline:"garis bawah",
text_striketrough:"garis tengah",
text_blink:"kelip",
text_none:"tiada",
background_color:"Warna Latar",
background_image:"Imej Latar",
background_repeat:"Ulangan",
background_attachment:"Sisipan",
background_hpos:"Posisi mengufuk",
background_vpos:"Posisi tegak",
block_wordspacing:"Jarak perkataan",
block_letterspacing:"Jarak huruf",
block_vertical_alignment:"Penjajaran tegak",
block_text_align:"Penjajaran teks",
block_text_indent:"Takukan teks",
block_whitespace:"Ruangan putih",
block_display:"Pamer",
box_width:"Lebar",
box_height:"Tinggi",
box_float:"Apungan",
box_clear:"Ruangan jelas",
padding:"Lapisan",
same:"Samakan kesemuanya",
top:"Atas",
right:"Kanan",
bottom:"Bawah",
left:"Kiri",
margin:"Ruangan tepi",
style:"Gaya",
width:"Lebar",
height:"Tinggi",
color:"Warna",
list_type:"Jenis",
bullet_image:"Imej peluru",
position:"Posisi",
positioning_type:"Jenis",
visibility:"Kelihatan",
zindex:"Indeks-Z",
overflow:"Limpahan",
placement:"Penempatan",
clip:"Klip"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('nb.style_dlg',{
title:"Rediger CSS-stil",
apply:"Legg til",
text_tab:"Tekst",
background_tab:"Bakgrunn",
block_tab:"Blokk",
box_tab:"Boks",
border_tab:"Ramme",
list_tab:"Liste",
positioning_tab:"Posisjon",
text_props:"Skriftegenskaper",
text_font:"Skrifttype",
text_size:"Skriftst\u00F8rrelse",
text_weight:"Skriftvekt",
text_style:"Skriftstil",
text_variant:"Variant",
text_lineheight:"Linjeh\u00F8yde",
text_case:"Kapiteler/minuskler",
text_color:"Farge",
text_decoration:"Dekorasjon",
text_overline:"Hevet skrift",
text_underline:"Senket skrift",
text_striketrough:"Gjennomstreking",
text_blink:"Blink",
text_none:"Ingen",
background_color:"Bakgrunnsfarge",
background_image:"Bakgrunnsbilde",
background_repeat:"Gjenta",
background_attachment:"Vedlegg",
background_hpos:"Horisontal posisjon",
background_vpos:"Vertikal posisjon",
block_wordspacing:"Ordmellomrom",
block_letterspacing:"Bokstavmellomrom",
block_vertical_alignment:"Vertikal justering",
block_text_align:"Justering",
block_text_indent:"Innrykk",
block_whitespace:"Mellomrom",
block_display:"Framvising",
box_width:"Bredde",
box_height:"H\u00F8yde",
box_float:"Flyt",
box_clear:"Slett",
padding:"Utfylling",
same:"Likt i alle",
top:"Topp",
right:"H\u00F8yre",
bottom:"Bunn",
left:"Venstre",
margin:"Marg",
style:"Stil",
width:"Bredde",
height:"H\u00F8yde",
color:"Farge",
list_type:"Type",
bullet_image:"Kulepunktbilde",
position:"Posisjon",
positioning_type:"Type",
visibility:"Synlighet",
zindex:"Z-indeks",
overflow:"Overfylt",
placement:"Plassering",
clip:"Klip"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('nl.style_dlg',{
title:"CSS Stijl bewerken",
apply:"Toepassen",
text_tab:"Tekst",
background_tab:"Achtergrond",
block_tab:"Blok",
box_tab:"Box",
border_tab:"Rand",
list_tab:"Lijst",
positioning_tab:"Positionering",
text_props:"Tekst",
text_font:"Lettertype",
text_size:"Tekengrootte",
text_weight:"Gewicht",
text_style:"Stijl",
text_variant:"Variant",
text_lineheight:"Lijnhoogte",
text_case:"Hoofdlettergebruik",
text_color:"Kleur",
text_decoration:"Decoratie",
text_overline:"Overhalen",
text_underline:"Onderstrepen",
text_striketrough:"Doorhalen",
text_blink:"Knipperen",
text_none:"Niets",
background_color:"Achtergrondkleur",
background_image:"Achtergrondafbeelding",
background_repeat:"Herhalen",
background_attachment:"Bijlage",
background_hpos:"Horizontale positie",
background_vpos:"Verticale positie",
block_wordspacing:"Woordruimte",
block_letterspacing:"Letterruimte",
block_vertical_alignment:"Verticale uitlijning",
block_text_align:"Tekstuitlijning",
block_text_indent:"Inspringen",
block_whitespace:"Witruimte",
block_display:"Weergave",
box_width:"Breedte",
box_height:"Hoogte",
box_float:"Zweven",
box_clear:"Vrijhouden",
padding:"Opening",
same:"Alles hetzelfde",
top:"Boven",
right:"Rechts",
bottom:"Onder",
left:"Links",
margin:"Marge",
style:"Stijl",
width:"Breedte",
height:"Hoogte",
color:"Kleur",
list_type:"Type",
bullet_image:"Opsommingsteken",
position:"Positie",
positioning_type:"Type",
visibility:"Zichtbaarheid",
zindex:"Z-index",
overflow:"Overvloeien",
placement:"Plaatsing",
clip:"Clip"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('nn.style_dlg',{
title:"Rediger CSS-stil",
apply:"Legg til",
text_tab:"Tekst",
background_tab:"Bakgrunn",
block_tab:"Blokk",
box_tab:"Boks",
border_tab:"Ramme",
list_tab:"Liste",
positioning_tab:"Posisjon",
text_props:"Eigenskapar for skrift",
text_font:"Skrifttype",
text_size:"Skriftstorleik",
text_weight:"Skriftvekt",
text_style:"Skriftstil",
text_variant:"Variant",
text_lineheight:"Linjeh\u00F8gd",
text_case:"Kapitelar/minusklar",
text_color:"Farge",
text_decoration:"Dekorasjon",
text_overline:"Heva skrift",
text_underline:"Senka skrift",
text_striketrough:"Gjennomstreking",
text_blink:"Blink",
text_none:"Ingen",
background_color:"Bakgrunnsfarge",
background_image:"Bakgrunnsbilete",
background_repeat:"Gjenta",
background_attachment:"Vedlegg",
background_hpos:"Horisontal posisjon",
background_vpos:"Vertikal posisjon",
block_wordspacing:"Ordmellomrom",
block_letterspacing:"Bokstavmellomrom",
block_vertical_alignment:"Vertikal justering",
block_text_align:"Justering",
block_text_indent:"Innrykk",
block_whitespace:"Mellomrom",
block_display:"Framsyning",
box_width:"Breidd",
box_height:"H\u00F8gd",
box_float:"Flyt",
box_clear:"Slett",
padding:"Utfylling",
same:"Likt i alle",
top:"Topp",
right:"H\u00F8gre",
bottom:"Bunn",
left:"Venstre",
margin:"Marg",
style:"Stil",
width:"Breidd",
height:"H\u00F8gd",
color:"Farge",
list_type:"Type",
bullet_image:"Kulepunktbilete",
position:"Posisjon",
positioning_type:"Type",
visibility:"Synlegheit",
zindex:"Z-indeks",
overflow:"Overfylt",
placement:"Plassering",
clip:"Klipp"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('pl.style_dlg',{
title:"Edytuj CSS Style",
apply:"Zastosuj",
text_tab:"Text",
background_tab:"T\u0142o",
block_tab:"Zablokuj",
box_tab:"Box",
border_tab:"Obramowanie",
list_tab:"Lista",
positioning_tab:"Pozycjonowanie",
text_props:"Tekst",
text_font:"Wz\u00F3r czcionki",
text_size:"Rozmiar",
text_weight:"Waga",
text_style:"Styl",
text_variant:"Wariant",
text_lineheight:"Linia wysoko\u015Bci",
text_case:"Case",
text_color:"Kolor",
text_decoration:"Dekoracja",
text_overline:"Nadkre\u015Blenie",
text_underline:"Podkre\u015Blenie",
text_striketrough:"Przekre\u015Blenie",
text_blink:"Miganie",
text_none:"\u017Baden",
background_color:"Kolor t\u0142a",
background_image:"Obrazek t\u0142a",
background_repeat:"Powt\u00F3rz",
background_attachment:"Za\u0142\u0105cznik",
background_hpos:"Pozycja pozioma",
background_vpos:"Pozycja pionowa",
block_wordspacing:"Odst\u0119p mi\u0119dzy wyrazami",
block_letterspacing:"Odst\u0119p mi\u0119dzy literami",
block_vertical_alignment:"Pionowe wyr\u00F3wnanie",
block_text_align:"Wyr\u00F3wna\u0107 tekst",
block_text_indent:"Akapit w tek\u015Bcie",
block_whitespace:"Bia\u0142a przestrze\u0144",
block_display:"Widoczno\u015B\u0107",
box_width:"Szeroko\u015B\u0107",
box_height:"Wysoko\u015B\u0107",
box_float:"P\u0142ywanie",
box_clear:"Wyczy\u015B\u0107",
padding:"Odst\u0119py",
same:"To samo dla wszystkich",
top:"G\u00F3ra",
right:"Prawy",
bottom:"D\u00F3\u0142",
left:"Lewy",
margin:"Margines",
style:"Styl",
width:"Szeroko\u015B\u0107",
height:"Wysoko\u015B\u0107",
color:"Kolor",
list_type:"Typ",
bullet_image:"Obrazek listy",
position:"Pozycja",
positioning_type:"Typ",
visibility:"Widoczno\u015B\u0107",
zindex:"Z-index",
overflow:"Przepe\u0142niony",
placement:"Umieszczenie",
clip:"Clip"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('pt.style_dlg',{
title:"Editar CSS",
apply:"Aplicar",
text_tab:"Texto",
background_tab:"Fundo",
block_tab:"Bloco",
box_tab:"Caixa",
border_tab:"Limites",
list_tab:"Lista",
positioning_tab:"Posicionamento",
text_props:"Texto",
text_font:"Fonte",
text_size:"Tamanho",
text_weight:"Peso",
text_style:"Estilo",
text_variant:"Variante",
text_lineheight:"Altura da linha",
text_case:"Mai\u00FAscula/min\u00FAscula",
text_color:"Cor",
text_decoration:"Decora\u00E7\u00E3o",
text_overline:"Sobrelinha",
text_underline:"Sublinhado",
text_striketrough:"Rasurado",
text_blink:"Piscar",
text_none:"nenhum",
background_color:"Cor de fundo",
background_image:"Imagem de fundo",
background_repeat:"Repetir",
background_attachment:"Fixar",
background_hpos:"Posi\u00E7\u00E3o horizontal",
background_vpos:"Posi\u00E7\u00E3o vertical",
block_wordspacing:"Espa\u00E7amento de palavras",
block_letterspacing:"Espa\u00E7amento de letras",
block_vertical_alignment:"Alinhamento vertical",
block_text_align:"Alinhamento de texto",
block_text_indent:"Indent",
block_whitespace:"Espa\u00E7o",
block_display:"Display",
box_width:"Largura",
box_height:"Altura",
box_float:"Float",
box_clear:"Clear",
padding:"Padding",
same:"O mesmo para todos",
top:"Topo",
right:"Direita",
bottom:"Abaixo",
left:"Esquerda",
margin:"Margem",
style:"Estilo",
width:"Largura",
height:"Altura",
color:"Cor",
list_type:"Tipo",
bullet_image:"Imagem de lista",
position:"Posi\u00E7\u00E3o",
positioning_type:"Tipo",
visibility:"Visibilidade",
zindex:"Z-index",
overflow:"Overflow",
placement:"Posicionamento",
clip:"Clip"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('ro.style_dlg',{
title:"Editare CSS",
apply:"Aplic\u0103",
text_tab:"Text",
background_tab:"Fundal",
block_tab:"Block",
box_tab:"Box",
border_tab:"Bordur\u0103",
list_tab:"List\u0103",
positioning_tab:"Pozi\u0163ionare",
text_props:"Text",
text_font:"Font",
text_size:"M\u0103rime",
text_weight:"Greutate",
text_style:"Stil",
text_variant:"Variant\u0103",
text_lineheight:"\u00CEn\u0103l\u0163ime linie",
text_case:"Caz",
text_color:"Culoare",
text_decoration:"Decora\u0163ii",
text_overline:"Peste linie",
text_underline:"Sub linie",
text_striketrough:"T\u0103iere",
text_blink:"Blink",
text_none:"Nici unul",
background_color:"Culoare fundal",
background_image:"Imagine fundal",
background_repeat:"Repet\u0103",
background_attachment:"Ata\u015Fament",
background_hpos:"Pozi\u0163ionare orizontal\u0103",
background_vpos:"Pozi\u0163ionare vertical\u0103",
block_wordspacing:"Spa\u0163iere cuvinte",
block_letterspacing:"Spa\u0163iere litere",
block_vertical_alignment:"Aliniere vertical\u0103",
block_text_align:"Aliniere text",
block_text_indent:"Indentare text",
block_whitespace:"Spa\u0163iu alb",
block_display:"Afi\u015Fare",
box_width:"L\u0103\u0163ime",
box_height:"\u00CEn\u0103l\u0163ime",
box_float:"Float",
box_clear:"Anulare float",
padding:"Margini interne",
same:"La fel pentru toate",
top:"Sus",
right:"Dreapta",
bottom:"Jos",
left:"St\u00E2nga",
margin:"Margini",
style:"Stil",
width:"L\u0103\u0163ime",
height:"\u00CEn\u0103l\u0163ime",
color:"Culoare",
list_type:"Tip",
bullet_image:"Imagine",
position:"Pozi\u0163ionare",
positioning_type:"Tip",
visibility:"Vizibilitate",
zindex:"Z-index",
overflow:"Overflow",
placement:"Plasament",
clip:"Clip"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('ru.style_dlg',{
title:"\u0420\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0441\u0442\u0438\u043B\u044C CSS",
apply:"\u041F\u0440\u0438\u043C\u0435\u043D\u0438\u0442\u044C",
text_tab:"\u0422\u0435\u043A\u0441\u0442",
background_tab:"\u0424\u043E\u043D",
block_tab:"\u0411\u043B\u043E\u043A",
box_tab:"\u041A\u043E\u043D\u0442\u0435\u0439\u043D\u0435\u0440",
border_tab:"\u0413\u0440\u0430\u043D\u0438\u0446\u0430",
list_tab:"\u0421\u043F\u0438\u0441\u043E\u043A",
positioning_tab:"\u041F\u043E\u0437\u0438\u0446\u0438\u043E\u043D\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435",
text_props:"\u0422\u0435\u043A\u0441\u0442",
text_font:"\u0428\u0440\u0438\u0444\u0442",
text_size:"\u0420\u0430\u0437\u043C\u0435\u0440",
text_weight:"\u0412\u0435\u0441",
text_style:"\u0421\u0442\u0438\u043B\u044C",
text_variant:"\u041D\u0430\u0447\u0435\u0440\u0442\u0430\u043D\u0438\u0435",
text_lineheight:"\u0412\u044B\u0441\u043E\u0442\u0430 \u0441\u0442\u0440\u043E\u043A\u0438",
text_case:"\u0420\u0435\u0433\u0438\u0441\u0442\u0440",
text_color:"\u0426\u0432\u0435\u0442",
text_decoration:"\u0423\u043A\u0440\u0430\u0448\u0435\u043D\u0438\u0435",
text_overline:"\u043D\u0430\u0434\u0447\u0451\u0440\u043A\u043D\u0443\u0442\u044B\u0439",
text_underline:"\u043F\u043E\u0434\u0447\u0451\u0440\u043A\u043D\u0443\u0442\u044B\u0439",
text_striketrough:"\u043F\u0435\u0440\u0435\u0447\u0451\u0440\u043A\u043D\u0443\u0442\u044B\u0439",
text_blink:"\u043C\u0438\u0433\u0430\u044E\u0449\u0438\u0439",
text_none:"\u043D\u0438\u043A\u0430\u043A\u043E\u0433\u043E",
background_color:"\u0426\u0432\u0435\u0442 \u0444\u043E\u043D\u0430",
background_image:"\u0424\u043E\u043D\u043E\u0432\u043E\u0435 \u0438\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u0435",
background_repeat:"\u041F\u043E\u0432\u0442\u043E\u0440",
background_attachment:"\u041F\u0440\u0438\u043A\u0440\u0435\u043F\u043B\u0435\u043D\u0438\u0435",
background_hpos:"\u0413\u043E\u0440\u0438\u0437\u043E\u043D\u0442\u0430\u043B\u044C\u043D\u0430\u044F \u043F\u043E\u0437\u0438\u0446\u0438\u044F",
background_vpos:"\u0412\u0435\u0440\u0442\u0438\u043A\u0430\u043B\u044C\u043D\u0430\u044F \u043F\u043E\u0437\u0438\u0446\u0438\u044F",
block_wordspacing:"\u041F\u0440\u043E\u043C\u0435\u0436\u0443\u0442\u043A\u0438 \u043C\u0435\u0436\u0434\u0443 \u0441\u043B\u043E\u0432\u0430\u043C\u0438",
block_letterspacing:"\u041F\u0440\u043E\u043C\u0435\u0436\u0443\u0442\u043A\u0438 \u043C\u0435\u0436\u0434\u0443 \u0441\u0438\u043C\u0432\u043E\u043B\u0430\u043C\u0438",
block_vertical_alignment:"\u0412\u0435\u0440\u0442\u0438\u043A\u0430\u043B\u044C\u043D\u043E\u0435 \u0432\u044B\u0440\u0430\u0432\u043D\u0438\u0432\u0430\u043D\u0438\u0435",
block_text_align:"\u0412\u044B\u0440\u0430\u0432\u043D\u0438\u0432\u0430\u043D\u0438\u0435 \u0442\u0435\u043A\u0441\u0442\u0430",
block_text_indent:"\u041E\u0442\u0441\u0442\u0443\u043F \u0442\u0435\u043A\u0441\u0442\u0430",
block_whitespace:"\u041F\u0440\u043E\u0431\u0435\u043B",
block_display:"\u041E\u0442\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u0435",
box_width:"\u0428\u0438\u0440\u0438\u043D\u0430",
box_height:"\u0412\u044B\u0441\u043E\u0442\u0430",
box_float:"\u041F\u043B\u0430\u0432\u0430\u044E\u0449\u0435\u0435",
box_clear:"\u041E\u0447\u0438\u0441\u0442\u0438\u0442\u044C",
padding:"\u041D\u0430\u0431\u0438\u0432\u043A\u0430",
same:"\u041E\u0434\u0438\u043D\u0430\u043A\u043E\u0432\u043E \u0434\u043B\u044F \u0432\u0441\u0435\u0445",
top:"\u0421\u0432\u0435\u0440\u0445\u0443",
right:"\u0421\u043F\u0440\u0430\u0432\u0430",
bottom:"\u0421\u043D\u0438\u0437\u0443",
left:"\u0421\u043B\u0435\u0432\u0430",
margin:"\u041F\u043E\u043B\u044F",
style:"\u0421\u0442\u0438\u043B\u044C",
width:"\u0428\u0438\u0440\u0438\u043D\u0430",
height:"\u0412\u044B\u0441\u043E\u0442\u0430",
color:"\u0426\u0432\u0435\u0442",
list_type:"\u0422\u0438\u043F",
bullet_image:"\u0418\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u0435 \u043C\u0430\u0440\u043A\u0435\u0440\u0430",
position:"\u041F\u043E\u0437\u0438\u0446\u0438\u044F",
positioning_type:"\u0422\u0438\u043F",
visibility:"\u0412\u0438\u0434\u0438\u043C\u043E\u0441\u0442\u044C",
zindex:"Z-\u0438\u043D\u0434\u0435\u043A\u0441",
overflow:"\u041E\u0431\u0442\u0435\u043A\u0430\u043D\u0438\u0435",
placement:"\u0420\u0430\u0437\u043C\u0435\u0449\u0435\u043D\u0438\u0435",
clip:"\u041E\u0431\u0440\u0435\u0437\u044B\u0432\u0430\u043D\u0438\u0435"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('sc.style_dlg',{
title:"\u7F16\u8F91CSS\u6837\u5F0F\u8868",
apply:"\u5E94\u7528",
text_tab:"\u6587\u5B57",
background_tab:"\u80CC\u666F",
block_tab:"\u533A\u5757",
box_tab:"\u76D2\u6A21\u578B",
border_tab:"\u8FB9\u6846",
list_tab:"\u5217\u8868",
positioning_tab:"\u4F4D\u7F6E",
text_props:"\u6587\u5B57",
text_font:"\u5B57\u4F53",
text_size:"\u5927\u5C0F",
text_weight:"\u5BBD\u5EA6",
text_style:"\u6837\u5F0F",
text_variant:"\u53D8\u4F53",
text_lineheight:"\u884C\u9AD8",
text_case:"\u5B57\u4F53",
text_color:"\u989C\u8272",
text_decoration:"\u88C5\u9970",
text_overline:"\u4E0A\u5212\u7EBF",
text_underline:"\u5E95\u7EBF",
text_striketrough:"\u4E2D\u5212\u7EBF",
text_blink:"\u95EA\u70C1",
text_none:"\u65E0",
background_color:"\u80CC\u666F\u989C\u8272",
background_image:"\u80CC\u666F\u56FE\u7247",
background_repeat:"\u91CD\u590D",
background_attachment:"\u9644\u7740",
background_hpos:"\u6C34\u5E73\u4F4D\u7F6E",
background_vpos:"\u5782\u76F4\u4F4D\u7F6E",
block_wordspacing:"\u8BCD\u95F4\u8DDD",
block_letterspacing:"\u5B57\u6BCD\u95F4\u8DDD",
block_vertical_alignment:"\u5782\u76F4\u5BF9\u9F50\u65B9\u5F0F",
block_text_align:"\u6587\u5B57\u5BF9\u9F50",
block_text_indent:"\u6587\u5B57\u7F29\u8FDB",
block_whitespace:"\u7A7A\u683C",
block_display:"\u663E\u793A\u65B9\u5F0F",
box_width:"\u5BBD\u5EA6",
box_height:"\u9AD8\u5EA6",
box_float:"\u6D6E\u52A8",
box_clear:"\u6E05\u9664",
padding:"\u5185\u8FB9\u8DDD",
same:"\u5168\u90E8\u76F8\u540C",
top:"\u9876\u90E8",
right:"\u53F3\u4FA7",
bottom:"\u5E95\u90E8",
left:"\u5DE6\u4FA7",
margin:"\u8FB9\u8DDD",
style:"\u6837\u5F0F",
width:"\u5BBD\u5EA6",
height:"\u9AD8\u5EA6",
color:"\u989C\u8272",
list_type:"\u5217\u8868\u7C7B\u578B",
bullet_image:"\u5217\u8868\u56FE\u7247",
position:"\u56FE\u7247\u4F4D\u7F6E",
positioning_type:"\u4F4D\u7F6E\u7C7B\u578B",
visibility:"\u662F\u5426\u53EF\u89C1",
zindex:"Z\u5750\u6807",
overflow:"\u6EA2\u51FA",
placement:"\u5E03\u7F6E",
clip:"\u526A\u8F91"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('se.style_dlg',{
title:"Redigera inline CSS",
apply:"Applicera",
text_tab:"Text",
background_tab:"Bakgrund",
block_tab:"Block",
box_tab:"Box",
border_tab:"Ramar",
list_tab:"Listor",
positioning_tab:"Positionering",
text_props:"Text",
text_font:"Typsnitt",
text_size:"Storlek",
text_weight:"Tjocklek",
text_style:"Stil",
text_variant:"Variant",
text_lineheight:"Radh\u00F6jd",
text_case:"Sm\u00E5/stora",
text_color:"F\u00E4rg",
text_decoration:"Dekoration",
text_overline:"\u00D6verstruken",
text_underline:"Understruken",
text_striketrough:"Genomstruken",
text_blink:"Blinka",
text_none:"Inget",
background_color:"Bakgrundsf\u00E4rg",
background_image:"Bakgrundsbild",
background_repeat:"Upprepning",
background_attachment:"F\u00E4stpunkt",
background_hpos:"Horisontell position",
background_vpos:"Vertikal position",
block_wordspacing:"Ordavbrytning",
block_letterspacing:"Teckenmellanrum",
block_vertical_alignment:"Vertikal justering",
block_text_align:"Textjustering",
block_text_indent:"Textindrag",
block_whitespace:"Whitespace",
block_display:"Display",
box_width:"Bredd",
box_height:"H\u00F6jd",
box_float:"Float",
box_clear:"Clear",
padding:"Padding",
same:"Samma f\u00F6r alla",
top:"Toppen",
right:"H\u00F6ger",
bottom:"Botten",
left:"V\u00E4nster",
margin:"Marginal",
style:"Stil",
width:"Bredd",
height:"H\u00F6jd",
color:"F\u00E4rg",
list_type:"Listtyp",
bullet_image:"Punktbild",
position:"Position",
positioning_type:"Positionstyp",
visibility:"Synlighet",
zindex:"Z-index",
overflow:"\u00D6verfl\u00F6de",
placement:"Placering",
clip:"Besk\u00E4rning"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('si.style_dlg',{
title:"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"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('sk.style_dlg',{
title:"Editova\u0165 CSS \u0161t\u00FDl",
apply:"Aplikova\u0165",
text_tab:"Text",
background_tab:"Pozadie",
block_tab:"Block",
box_tab:"Box",
border_tab:"Border",
list_tab:"List",
positioning_tab:"Positioning",
text_props:"Text",
text_font:"Font",
text_size:"Ve\u013Ekos\u0165",
text_weight:"Weight",
text_style:"Style",
text_variant:"Variant",
text_lineheight:"Line height",
text_case:"Case",
text_color:"Farba",
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:"\u0160\u00EDrka",
box_height:"V\u00FD\u0161ka",
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:"\u0160\u00EDrka",
height:"V\u00FD\u0161ka",
color:"Farba",
list_type:"Type",
bullet_image:"Bullet image",
position:"Position",
positioning_type:"Type",
visibility:"Visibility",
zindex:"Z-index",
overflow:"Overflow",
placement:"Placement",
clip:"Clip"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('sl.style_dlg',{
title:"Uredi sloge CSS",
apply:"Uporabi",
text_tab:"Besedilo",
background_tab:"Ozadje",
block_tab:"Blok",
box_tab:"Okvir",
border_tab:"Obroba",
list_tab:"Seznam",
positioning_tab:"Polo\u017Eaj",
text_props:"Besedilo",
text_font:"Pisava",
text_size:"Velikost",
text_weight:"Ute\u017E",
text_style:"Slog",
text_variant:"Razli\u010Dica",
text_lineheight:"Vi\u0161ina vrstice",
text_case:"Velikost",
text_color:"Barva",
text_decoration:"Okras",
text_overline:"nad\u010Drtano",
text_underline:"pod\u010Drtano",
text_striketrough:"pre\u010Drtano",
text_blink:"utripajo\u010De",
text_none:"brez",
background_color:"Barva ozadja",
background_image:"Slika ozadja",
background_repeat:"Ponavljaj",
background_attachment:"Priponka",
background_hpos:"Vodoravni polo\u017Eaj",
background_vpos:"Navpi\u010Dni polo\u017Eaj",
block_wordspacing:"Razmik besed",
block_letterspacing:"Razmik znakov",
block_vertical_alignment:"Navpi\u010Dna poravnava",
block_text_align:"Poravnava besedila",
block_text_indent:"Zamik besedila",
block_whitespace:"Beli prostor",
block_display:"Prikaz",
box_width:"\u0160irina",
box_height:"Vi\u0161ina",
box_float:"Plavojo\u010De",
box_clear:"\u010Cisto",
padding:"Podlaganje",
same:"Enako za vse",
top:"Zgoraj",
right:"Desno",
bottom:"Spodaj",
left:"Levo",
margin:"Rob",
style:"Slog",
width:"\u0160irina",
height:"Vi\u0161ina",
color:"Barva",
list_type:"Vrsta",
bullet_image:"Slika alineje",
position:"Polo\u017Eaj",
positioning_type:"Vrsta",
visibility:"Vidnost",
zindex:"Indeks-Z",
overflow:"Prelivanje",
placement:"Polo\u017Eaj",
clip:"Obre\u017Ei"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('sq.style_dlg',{
title:"Edito t\u00EB gjitha stilet",
apply:"Apliko",
text_tab:"Teksti",
background_tab:"Fusha",
block_tab:"Bllok",
box_tab:"Kuti",
border_tab:"Korniza",
list_tab:"Lista",
positioning_tab:"Pozicionimi",
text_props:"Teksti",
text_font:"Teksti",
text_size:"Madh\u00EBsia",
text_weight:"Pesha",
text_style:"Stili",
text_variant:"Varianti",
text_lineheight:"Gjat\u00EBsia e linj\u00EBs",
text_case:"Madh\u00EBsia e g\u00EBrm\u00EBs",
text_color:"Ngjyra",
text_decoration:"Zbukurimi",
text_overline:"mbi linj\u00EB",
text_underline:"n\u00EBn linj\u00EB",
text_striketrough:"n\u00EB mes",
text_blink:"fik-ndiz",
text_none:"asnj\u00EB",
background_color:"Ngjyra e fush\u00EBs",
background_image:"Foto e fush\u00EBs",
background_repeat:"P\u00EBrs\u00EBritja",
background_attachment:"Bashk\u00EBngjitja",
background_hpos:"Pozicionimi horizontal",
background_vpos:"Pozicionimi vertikal",
block_wordspacing:"Hap\u00EBsira e fjal\u00EBve",
block_letterspacing:"Hap\u00EBsira e g\u00EBrmave",
block_vertical_alignment:"Drejtimi vertikal",
block_text_align:"Drejtimi i tekstit",
block_text_indent:"Kryerradha",
block_whitespace:"Hap\u00EBsira bosh",
block_display:"Shfaqja",
box_width:"Gjer\u00EBsia",
box_height:"Gjat\u00EBsia",
box_float:"Pluskimi",
box_clear:"Pastro",
padding:"Hap\u00EBsira e br\u00EBndshme",
same:"E nj\u00EBjt\u00EB p\u00EBr t\u00EB gjitha",
top:"Krye",
right:"Djathtas",
bottom:"Fund",
left:"Majtas",
margin:"Hap\u00EBsira",
style:"Stili",
width:"Gjer\u00EBsia",
height:"Gjat\u00EBsia",
color:"Ngjyra",
list_type:"Tipi",
bullet_image:"Foto ndar\u00EBse",
position:"Pozicioni",
positioning_type:"Tipi",
visibility:"Shikueshm\u00EBria",
zindex:"Indeksi Z",
overflow:"Mbivendosja",
placement:"Vendosja",
clip:"Prerja"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('sr.style_dlg',{
title:"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"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('sv.style_dlg',{
title:"Redigera inline CSS",
apply:"Applicera",
text_tab:"Text",
background_tab:"Bakgrund",
block_tab:"Block",
box_tab:"Box",
border_tab:"Ramar",
list_tab:"Listor",
positioning_tab:"Positionering",
text_props:"Text",
text_font:"Typsnitt",
text_size:"Storlek",
text_weight:"Tjocklek",
text_style:"Stil",
text_variant:"Variant",
text_lineheight:"Radh\u00F6jd",
text_case:"Sm\u00E5/stora",
text_color:"F\u00E4rg",
text_decoration:"Dekoration",
text_overline:"\u00D6verstruken",
text_underline:"Understruken",
text_striketrough:"Genomstruken",
text_blink:"Blinka",
text_none:"Inget",
background_color:"Bakgrundsf\u00E4rg",
background_image:"Bakgrundsbild",
background_repeat:"Upprepning",
background_attachment:"F\u00E4stpunkt",
background_hpos:"Horisontell position",
background_vpos:"Vertikal position",
block_wordspacing:"Ordavbrytning",
block_letterspacing:"Teckenmellanrum",
block_vertical_alignment:"Vertikal justering",
block_text_align:"Textjustering",
block_text_indent:"Textindrag",
block_whitespace:"Whitespace",
block_display:"Display",
box_width:"Bredd",
box_height:"H\u00F6jd",
box_float:"Float",
box_clear:"Clear",
padding:"Padding",
same:"Samma f\u00F6r alla",
top:"Toppen",
right:"H\u00F6ger",
bottom:"Botten",
left:"V\u00E4nster",
margin:"Marginal",
style:"Stil",
width:"Bredd",
height:"H\u00F6jd",
color:"F\u00E4rg",
list_type:"Listtyp",
bullet_image:"Punktbild",
position:"Position",
positioning_type:"Positionstyp",
visibility:"Synlighet",
zindex:"Z-index",
overflow:"\u00D6verfl\u00F6de",
placement:"Placering",
clip:"Besk\u00E4rning"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('tr.style_dlg',{
title:"CSS Stili D\u00FCzenle",
apply:"Uygula",
text_tab:"Metin",
background_tab:"Arkaplan",
block_tab:"Blok",
box_tab:"Kutu",
border_tab:"Kenarl\u0131k",
list_tab:"Liste",
positioning_tab:"Konumland\u0131rma",
text_props:"Metin",
text_font:"Yaz\u0131 Tipi",
text_size:"Boyut",
text_weight:"Kal\u0131nl\u0131k",
text_style:"Stil",
text_variant:"De\u011Fi\u015Fken",
text_lineheight:"Sat\u0131r y\u00FCksekli\u011Fi",
text_case:"B\u00FCy\u00FCk/k\u00FC\u00E7\u00FCk",
text_color:"Renk",
text_decoration:"Dekorasyon",
text_overline:"\u00DCst \u00E7izgi",
text_underline:"Alt \u00E7izgi",
text_striketrough:"Ortas\u0131 \u00E7izgili",
text_blink:"yan\u0131p s\u00F6n",
text_none:"hi\u00E7biri",
background_color:"Arkaplan rengi",
background_image:"Arkaplan resmi",
background_repeat:"Tekrarla",
background_attachment:"Eklenti",
background_hpos:"Yatay konum",
background_vpos:"Dikey konum",
block_wordspacing:"S\u00F6zc\u00FCk bo\u015Flu\u011Fu",
block_letterspacing:"Harf bo\u015Flu\u011Fu",
block_vertical_alignment:"Dikey hizalama",
block_text_align:"Metin hizalama",
block_text_indent:"Metin kayd\u0131rma",
block_whitespace:"Bo\u015Fluk",
block_display:"G\u00F6r\u00FCnt\u00FCleme",
box_width:"Geni\u015Flik",
box_height:"Y\u00FCkseklik",
box_float:"Kayan",
box_clear:"Serbest",
padding:"Dolgu",
same:"T\u00FCm\u00FC i\u00E7in ayn\u0131",
top:"\u00DCst",
right:"Sa\u011F",
bottom:"Alt",
left:"Sol",
margin:"Kenar bo\u015Flu\u011Fu",
style:"Stil",
width:"Geni\u015Flik",
height:"Y\u00FCkseklik",
color:"Renk",
list_type:"Tip",
bullet_image:"Madde imi resmi",
position:"Konum",
positioning_type:"Tip",
visibility:"G\u00F6r\u00FCn\u00FCrl\u00FCk",
zindex:"Z-s\u0131ras\u0131",
overflow:"Ta\u015Fma",
placement:"Yerle\u015Ftirme",
clip:"K\u0131rpma"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('tt.style_dlg',{
title:"\u7DE8\u8F2F CSS \u6A23\u5F0F\u8868",
apply:"\u61C9\u7528",
text_tab:"\u6587\u5B57",
background_tab:"\u80CC\u666F",
block_tab:"\u5340\u584A",
box_tab:"\u76D2\u6A21\u578B",
border_tab:"\u908A\u6846",
list_tab:"\u5217\u8868",
positioning_tab:"\u4F4D\u7F6E",
text_props:"\u6587\u5B57",
text_font:"\u5B57\u9AD4",
text_size:"\u5927\u5C0F",
text_weight:"\u5BEC\u5EA6",
text_style:"\u6A23\u5F0F",
text_variant:"\u8B8A\u9AD4",
text_lineheight:"\u884C\u9AD8",
text_case:"\u5B57\u9AD4",
text_color:"\u9854\u8272",
text_decoration:"\u88DD\u98FE",
text_overline:"\u4E0A\u5283\u7DDA",
text_underline:"\u5E95\u7DDA",
text_striketrough:"\u4E2D\u5283\u7DDA",
text_blink:"\u9583\u720D",
text_none:"\u7121",
background_color:"\u80CC\u666F\u9854\u8272",
background_image:"\u80CC\u666F\u5716\u7247",
background_repeat:"\u91CD\u5FA9",
background_attachment:"\u9644\u4EF6",
background_hpos:"\u6C34\u5E73\u4F4D\u7F6E",
background_vpos:"\u5782\u76F4\u4F4D\u7F6E",
block_wordspacing:"\u8A5E\u9593\u8DDD",
block_letterspacing:"\u5B57\u6BCD\u9593\u8DDD",
block_vertical_alignment:"\u5782\u76F4\u5C0D\u9F4A\u65B9\u5F0F",
block_text_align:"\u6587\u5B57\u5C0D\u9F4A",
block_text_indent:"\u6587\u5B57\u7E2E\u6392",
block_whitespace:"\u7A7A\u683C",
block_display:"\u986F\u793A\u65B9\u5F0F",
box_width:"\u5BEC\u5EA6",
box_height:"\u9AD8\u5EA6",
box_float:"\u6D6E\u52D5",
box_clear:"\u6E05\u9664",
padding:"\u5167\u908A\u8DDD",
same:"\u5168\u90E8\u76F8\u540C",
top:"\u9802\u90E8",
right:"\u53F3\u5074",
bottom:"\u5E95\u90E8",
left:"\u5DE6\u5074",
margin:"\u908A\u8DDD",
style:"\u6A23\u5F0F",
width:"\u5BEC\u5EA6",
height:"\u9AD8\u5EA6",
color:"\u9854\u8272",
list_type:"\u5217\u8868\u985E\u578B",
bullet_image:"\u6E05\u55AE\u5716\u7247",
position:"\u5716\u7247\u4F4D\u7F6E",
positioning_type:"\u4F4D\u7F6E\u985E\u578B",
visibility:"\u662F\u5426\u53EF\u898B",
zindex:"Z\u5EA7\u6A19",
overflow:"\u6EA2\u51FA",
placement:"\u4F48\u7F6E",
clip:"\u526A\u8F2F"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('tw.style_dlg',{
title:"\u7DE8\u8F2FCSS\u6A23\u5F0F\u8868",
apply:"\u5957\u7528",
text_tab:"\u6587\u5B57",
background_tab:"\u80CC\u666F",
block_tab:"\u584A",
box_tab:"\u7BB1\u578B",
border_tab:"\u908A\u6846",
list_tab:"\u5217\u8868",
positioning_tab:"\u4F4D\u7F6E",
text_props:"\u6587\u5B57",
text_font:"\u5B57\u9AD4",
text_size:"\u5C3A\u5BF8",
text_weight:"\u5BEC\u5EA6",
text_style:"\u6A23\u5F0F",
text_variant:"\u8B8A\u9AD4",
text_lineheight:"\u884C\u9AD8",
text_case:"\u5B57\u9AD4",
text_color:"\u984F\u8272",
text_decoration:"\u4FEE\u98FE",
text_overline:"\u4E0A\u5283\u7DDA",
text_underline:"\u5E95\u7DDA",
text_striketrough:"\u522A\u9664\u7DDA",
text_blink:"\u9583\u720D",
text_none:"\u7121",
background_color:"\u80CC\u666F\u984F\u8272",
background_image:"\u80CC\u666F\u5716\u7247",
background_repeat:"\u91CD\u8907",
background_attachment:"\u9644\u4EF6",
background_hpos:"\u5782\u76F4\u4F4D\u7F6E",
background_vpos:"\u6C34\u6E96\u4F4D\u7F6E",
block_wordspacing:"\u55AE\u5B57\u9593\u8DDD",
block_letterspacing:"\u5B57\u5143\u9593\u8DDD",
block_vertical_alignment:"\u6C34\u6E96\u5C0D\u9F4A\u65B9\u5F0F",
block_text_align:"\u6587\u5B57\u5C0D\u9F4A",
block_text_indent:"\u6587\u5B57\u7E2E\u6392",
block_whitespace:"\u7A7A\u767D",
block_display:"\u986F\u793A\u65B9\u5F0F",
box_width:"\u5BEC\u5EA6",
box_height:"\u9AD8\u5EA6",
box_float:"\u6D6E\u52D5",
box_clear:"\u6E05\u9664",
padding:"\u7559\u767D",
same:"\u5168\u90E8\u4E00\u6A23",
top:"\u4E0A\u65B9",
right:"\u9760\u53F3",
bottom:"\u4E0B\u65B9",
left:"\u9760\u5DE6",
margin:"\u908A\u754C",
style:"\u6A23\u5F0F",
width:"\u5BEC\u5EA6",
height:"\u9AD8\u5EA6",
color:"\u984F\u8272",
list_type:"\u985E\u578B",
bullet_image:"\u5C08\u6848\u5716\u793A",
position:"\u5716\u793A\u4F4D\u7F6E",
positioning_type:"\u985E\u578B",
visibility:"\u53EF\u898B\u6027",
zindex:"Z\u8EF8\u6DF1\u5EA6",
overflow:"\u6EA2\u51FA",
placement:"\u4F48\u7F6E",
clip:"\u526A\u8F2F"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('uk.style_dlg',{
title:"\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u043D\u043D\u044F CSS \u0441\u0442\u0438\u043B\u044E",
apply:"\u0417\u0430\u0441\u0442\u043E\u0441\u0443\u0432\u0430\u0442\u0438",
text_tab:"\u0422\u0435\u043A\u0441\u0442",
background_tab:"\u0424\u043E\u043D",
block_tab:"\u0411\u043B\u043E\u043A",
box_tab:"Box",
border_tab:"\u0413\u0440\u0430\u043D\u0438\u0446\u044F",
list_tab:"\u0421\u043F\u0438\u0441\u043E\u043A",
positioning_tab:"\u041F\u043E\u0437\u0438\u0446\u0456\u043E\u043D\u0443\u0432\u0430\u043D\u043D\u044F",
text_props:"\u0422\u0435\u043A\u0441\u0442",
text_font:"\u0428\u0440\u0438\u0444\u0442",
text_size:"\u0420\u043E\u0437\u043C\u0456\u0440",
text_weight:"\u0422\u043E\u0432\u0449\u0438\u043D\u0430",
text_style:"\u0421\u0442\u0438\u043B\u044C",
text_variant:"Variant",
text_lineheight:"\u0412\u0438\u0441\u043E\u0442\u0430 \u0440\u044F\u0434\u043A\u0443",
text_case:"Case",
text_color:"\u041A\u043E\u043B\u0456\u0440",
text_decoration:"\u041E\u0444\u043E\u0440\u043C\u043B\u0435\u043D\u043D\u044F",
text_overline:"\u0432\u0435\u0440\u0445\u043D\u044F \u0440\u0438\u0441\u043A\u0430",
text_underline:"\u043D\u0438\u0436\u043D\u044F \u0440\u0438\u0441\u043A\u0430",
text_striketrough:"\u0437\u0430\u043A\u0440\u0435\u0441\u043B\u0435\u043D\u0438\u0439",
text_blink:"\u043C\u0435\u0440\u0435\u0445\u0442\u0456\u043D\u043D\u044F",
text_none:"\u043D\u0456\u0447\u043E\u0433\u043E",
background_color:"\u041A\u043E\u043B\u0456\u0440 \u0444\u043E\u043D\u0443",
background_image:"\u0424\u043E\u043D\u043E\u0432\u0435 \u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F",
background_repeat:"\u041F\u043E\u0432\u0442\u043E\u0440",
background_attachment:"Attachment",
background_hpos:"\u0413\u043E\u0440\u0438\u0437\u043E\u043D\u0442\u0430\u043B\u044C\u043D\u0430 \u043F\u043E\u0437\u0438\u0446\u0456\u044F",
background_vpos:"\u0412\u0435\u0440\u0442\u0438\u043A\u0430\u043B\u044C\u043D\u0430 \u043F\u043E\u0437\u0438\u0446\u0456\u044F",
block_wordspacing:"\u0412\u0456\u0434\u0441\u0442\u0443\u043F\u0438 \u043C\u0456\u0436 \u0441\u043B\u043E\u0432\u0430\u043C\u0438",
block_letterspacing:"\u0412\u0456\u0434\u0441\u0442\u0443\u043F\u0438 \u043C\u0456\u0436 \u043B\u0456\u0442\u0435\u0440\u0430\u043C\u0438",
block_vertical_alignment:"\u0412\u0435\u0440\u0442\u0438\u043A\u0430\u043B\u044C\u043D\u0435 \u0432\u0438\u0440\u0456\u0432\u043D\u044E\u0432\u0430\u043D\u043D\u044F",
block_text_align:"\u0412\u0438\u0440\u0456\u0432\u043D\u044E\u0432\u0430\u043D\u043D\u044F \u0442\u0435\u043A\u0441\u0442\u0443",
block_text_indent:"Text indent",
block_whitespace:"Whitespace",
block_display:"Display",
box_width:"\u0428\u0438\u0440\u0438\u043D\u0430",
box_height:"\u0412\u0438\u0441\u043E\u0442\u0430",
box_float:"Float",
box_clear:"Clear",
padding:"Padding",
same:"\u041E\u0434\u043D\u0430\u043A\u043E\u0435 \u0434\u043B\u044F \u0432\u0441\u0456\u0445",
top:"\u0412\u0433\u043E\u0440\u0443",
right:"\u041F\u0440\u0430\u0432\u043E\u0440\u0443\u0447",
bottom:"\u0417\u043D\u0438\u0437\u0443",
left:"\u041B\u0456\u0432\u043E\u0440\u0443\u0447",
margin:"Margin",
style:"\u0421\u0442\u0438\u043B\u044C",
width:"\u0428\u0438\u0440\u0438\u043D\u0430",
height:"\u0412\u0438\u0441\u043E\u0442\u0430",
color:"\u041A\u043E\u043B\u0456\u0440",
list_type:"\u0422\u0438\u043F",
bullet_image:"Bullet image",
position:"\u041F\u043E\u0437\u0438\u0446\u0456\u044F",
positioning_type:"\u0422\u0438\u043F",
visibility:"\u0412\u0438\u0434\u0438\u043C\u0456\u0441\u0442\u044C",
zindex:"Z-index",
overflow:"Overflow",
placement:"Placement",
clip:"Clip"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('vi.style_dlg',{
title:"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"
});

View File

@@ -0,0 +1,63 @@
tinyMCE.addI18n('zh.style_dlg',{
title:"\u7F16\u8F91CSS\u6837\u5F0F\u8868",
apply:"\u5E94\u7528",
text_tab:"\u6587\u5B57",
background_tab:"\u80CC\u666F",
block_tab:"\u5757",
box_tab:"\u7BB1\u578B",
border_tab:"\u8FB9\u6846",
list_tab:"\u5217\u8868",
positioning_tab:"\u4F4D\u7F6E",
text_props:"\u6587\u5B57",
text_font:"\u5B57\u4F53",
text_size:"\u5C3A\u5BF8",
text_weight:"\u5BBD\u5EA6",
text_style:"\u6837\u5F0F",
text_variant:"\u53D8\u4F53",
text_lineheight:"\u884C\u9AD8",
text_case:"\u5B57\u4F53",
text_color:"\u989C\u8272",
text_decoration:"\u4FEE\u9970",
text_overline:"\u4E0A\u5212\u7EBF",
text_underline:"\u4E0B\u5212\u7EBF",
text_striketrough:"\u5220\u9664\u7EBF",
text_blink:"\u95EA\u70C1",
text_none:"\u65E0",
background_color:"\u80CC\u666F\u989C\u8272",
background_image:"\u80CC\u666F\u56FE\u7247",
background_repeat:"\u91CD\u590D",
background_attachment:"\u9644\u4EF6",
background_hpos:"\u5782\u76F4\u4F4D\u7F6E",
background_vpos:"\u6C34\u5E73\u4F4D\u7F6E",
block_wordspacing:"\u5355\u5B57\u95F4\u8DDD",
block_letterspacing:"\u5B57\u7B26\u95F4\u8DDD",
block_vertical_alignment:"\u6C34\u5E73\u5BF9\u9F50\u65B9\u5F0F",
block_text_align:"\u6587\u5B57\u5BF9\u9F50",
block_text_indent:"\u6587\u5B57\u7F29\u6392",
block_whitespace:"\u7A7A\u767D",
block_display:"\u663E\u793A\u65B9\u5F0F",
box_width:"\u5BBD\u5EA6",
box_height:"\u9AD8\u5EA6",
box_float:"\u6D6E\u52A8",
box_clear:"\u6E05\u9664",
padding:"\u7559\u767D",
same:"\u5168\u90E8\u4E00\u6837",
top:"\u4E0A\u65B9",
right:"\u9760\u53F3",
bottom:"\u4E0B\u65B9",
left:"\u9760\u5DE6",
margin:"\u8FB9\u754C",
style:"\u6837\u5F0F",
width:"\u5BBD\u5EA6",
height:"\u9AD8\u5EA6",
color:"\u989C\u8272",
list_type:"\u7C7B\u578B",
bullet_image:"\u9879\u76EE\u56FE\u6807",
position:"\u56FE\u6807\u4F4D\u7F6E",
positioning_type:"\u7C7B\u578B",
visibility:"\u53EF\u89C1\u6027",
zindex:"Z\u8F74\u6DF1\u5EA6",
overflow:"\u6EA2\u51FA",
placement:"\u5E03\u7F6E",
clip:"\u526A\u8F91"
});

View File

@@ -0,0 +1,731 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>{#style_dlg.title}</title>
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
<script type="text/javascript" src="../../utils/mctabs.js"></script>
<script type="text/javascript" src="../../utils/editable_selects.js"></script>
<script type="text/javascript" src="../../utils/form_utils.js"></script>
<script type="text/javascript" src="js/props.js"></script>
<link href="css/props.css" rel="stylesheet" type="text/css" />
<base target="_self" />
</head>
<body id="styleprops" style="display: none">
<form onsubmit="updateAction();return false;" action="#">
<div class="tabs">
<ul>
<li id="text_tab" class="current"><span><a href="javascript:mcTabs.displayTab('text_tab','text_panel');" onMouseDown="return false;">{#style_dlg.text_tab}</a></span></li>
<li id="background_tab"><span><a href="javascript:mcTabs.displayTab('background_tab','background_panel');" onMouseDown="return false;">{#style_dlg.background_tab}</a></span></li>
<li id="block_tab"><span><a href="javascript:mcTabs.displayTab('block_tab','block_panel');" onMouseDown="return false;">{#style_dlg.block_tab}</a></span></li>
<li id="box_tab"><span><a href="javascript:mcTabs.displayTab('box_tab','box_panel');" onMouseDown="return false;">{#style_dlg.box_tab}</a></span></li>
<li id="border_tab"><span><a href="javascript:mcTabs.displayTab('border_tab','border_panel');" onMouseDown="return false;">{#style_dlg.border_tab}</a></span></li>
<li id="list_tab"><span><a href="javascript:mcTabs.displayTab('list_tab','list_panel');" onMouseDown="return false;">{#style_dlg.list_tab}</a></span></li>
<li id="positioning_tab"><span><a href="javascript:mcTabs.displayTab('positioning_tab','positioning_panel');" onMouseDown="return false;">{#style_dlg.positioning_tab}</a></span></li>
</ul>
</div>
<div class="panel_wrapper">
<div id="text_panel" class="panel current">
<table border="0" width="100%">
<tr>
<td><label for="text_font">{#style_dlg.text_font}</label></td>
<td colspan="3">
<select id="text_font" name="text_font" class="mceEditableSelect mceFocus"></select>
</td>
</tr>
<tr>
<td><label for="text_size">{#style_dlg.text_size}</label></td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><select id="text_size" name="text_size" class="mceEditableSelect"></select></td>
<td>&nbsp;</td>
<td><select id="text_size_measurement" name="text_size_measurement"></select></td>
</tr>
</table>
</td>
<td><label for="text_weight">{#style_dlg.text_weight}</label></td>
<td>
<select id="text_weight" name="text_weight"></select>
</td>
</tr>
<tr>
<td><label for="text_style">{#style_dlg.text_style}</label></td>
<td>
<select id="text_style" name="text_style" class="mceEditableSelect"></select>
</td>
<td><label for="text_variant">{#style_dlg.text_variant}</label></td>
<td>
<select id="text_variant" name="text_variant"></select>
</td>
</tr>
<tr>
<td><label for="text_lineheight">{#style_dlg.text_lineheight}</label></td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<select id="text_lineheight" name="text_lineheight" class="mceEditableSelect"></select>
</td>
<td>&nbsp;</td>
<td><select id="text_lineheight_measurement" name="text_lineheight_measurement"></select></td>
</tr>
</table>
</td>
<td><label for="text_case">{#style_dlg.text_case}</label></td>
<td>
<select id="text_case" name="text_case"></select>
</td>
</tr>
<tr>
<td><label for="text_color">{#style_dlg.text_color}</label></td>
<td colspan="2">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td><input id="text_color" name="text_color" type="text" value="" size="9" onChange="updateColor('text_color_pick','text_color');" /></td>
<td id="text_color_pickcontainer">&nbsp;</td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top" style="vertical-align: top; padding-top: 3px;">{#style_dlg.text_decoration}</td>
<td colspan="2">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input id="text_underline" name="text_underline" class="checkbox" type="checkbox" /></td>
<td><label for="text_underline">{#style_dlg.text_underline}</label></td>
</tr>
<tr>
<td><input id="text_overline" name="text_overline" class="checkbox" type="checkbox" /></td>
<td><label for="text_overline">{#style_dlg.text_overline}</label></td>
</tr>
<tr>
<td><input id="text_linethrough" name="text_linethrough" class="checkbox" type="checkbox" /></td>
<td><label for="text_linethrough">{#style_dlg.text_striketrough}</label></td>
</tr>
<tr>
<td><input id="text_blink" name="text_blink" class="checkbox" type="checkbox" /></td>
<td><label for="text_blink">{#style_dlg.text_blink}</label></td>
</tr>
<tr>
<td><input id="text_none" name="text_none" class="checkbox" type="checkbox" /></td>
<td><label for="text_none">{#style_dlg.text_none}</label></td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<div id="background_panel" class="panel">
<table border="0">
<tr>
<td><label for="background_color">{#style_dlg.background_color}</label></td>
<td>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td><input id="background_color" name="background_color" type="text" value="" size="9" onChange="updateColor('background_color_pick','background_color');" /></td>
<td id="background_color_pickcontainer">&nbsp;</td>
</tr>
</table>
</td>
</tr>
<tr>
<td><label for="background_image">{#style_dlg.background_image}</label></td>
<td><table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input id="background_image" name="background_image" type="text" /></td>
<td id="background_image_browser">&nbsp;</td>
</tr>
</table>
</td>
</tr>
<tr>
<td><label for="background_repeat">{#style_dlg.background_repeat}</label></td>
<td><select id="background_repeat" name="background_repeat" class="mceEditableSelect"></select></td>
</tr>
<tr>
<td><label for="background_attachment">{#style_dlg.background_attachment}</label></td>
<td><select id="background_attachment" name="background_attachment" class="mceEditableSelect"></select></td>
</tr>
<tr>
<td><label for="background_hpos">{#style_dlg.background_hpos}</label></td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><select id="background_hpos" name="background_hpos" class="mceEditableSelect"></select></td>
<td>&nbsp;</td>
<td><select id="background_hpos_measurement" name="background_hpos_measurement"></select></td>
</tr>
</table>
</td>
</tr>
<tr>
<td><label for="background_vpos">{#style_dlg.background_vpos}</label></td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><select id="background_vpos" name="background_vpos" class="mceEditableSelect"></select></td>
<td>&nbsp;</td>
<td><select id="background_vpos_measurement" name="background_vpos_measurement"></select></td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<div id="block_panel" class="panel">
<table border="0">
<tr>
<td><label for="block_wordspacing">{#style_dlg.block_wordspacing}</label></td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><select id="block_wordspacing" name="block_wordspacing" class="mceEditableSelect"></select></td>
<td>&nbsp;</td>
<td><select id="block_wordspacing_measurement" name="block_wordspacing_measurement"></select></td>
</tr>
</table>
</td>
</tr>
<tr>
<td><label for="block_letterspacing">{#style_dlg.block_letterspacing}</label></td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><select id="block_letterspacing" name="block_letterspacing" class="mceEditableSelect"></select></td>
<td>&nbsp;</td>
<td><select id="block_letterspacing_measurement" name="block_letterspacing_measurement"></select></td>
</tr>
</table>
</td>
</tr>
<tr>
<td><label for="block_vertical_alignment">{#style_dlg.block_vertical_alignment}</label></td>
<td><select id="block_vertical_alignment" name="block_vertical_alignment" class="mceEditableSelect"></select></td>
</tr>
<tr>
<td><label for="block_text_align">{#style_dlg.block_text_align}</label></td>
<td><select id="block_text_align" name="block_text_align" class="mceEditableSelect"></select></td>
</tr>
<tr>
<td><label for="block_text_indent">{#style_dlg.block_text_indent}</label></td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input type="text" id="block_text_indent" name="block_text_indent" /></td>
<td>&nbsp;</td>
<td><select id="block_text_indent_measurement" name="block_text_indent_measurement"></select></td>
</tr>
</table>
</td>
</tr>
<tr>
<td><label for="block_whitespace">{#style_dlg.block_whitespace}</label></td>
<td><select id="block_whitespace" name="block_whitespace" class="mceEditableSelect"></select></td>
</tr>
<tr>
<td><label for="block_display">{#style_dlg.block_display}</label></td>
<td><select id="block_display" name="block_display" class="mceEditableSelect"></select></td>
</tr>
</table>
</div>
<div id="box_panel" class="panel">
<table border="0">
<tr>
<td><label for="box_width">{#style_dlg.box_width}</label></td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input type="text" id="box_width" name="box_width" class="mceEditableSelect" onChange="synch('box_width','positioning_width');" /></td>
<td>&nbsp;</td>
<td><select id="box_width_measurement" name="box_width_measurement"></select></td>
</tr>
</table>
</td>
<td>&nbsp;&nbsp;&nbsp;<label for="box_float">{#style_dlg.box_float}</label></td>
<td><select id="box_float" name="box_float" class="mceEditableSelect"></select></td>
</tr>
<tr>
<td><label for="box_height">{#style_dlg.box_height}</label></td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input type="text" id="box_height" name="box_height" class="mceEditableSelect" onChange="synch('box_height','positioning_height');" /></td>
<td>&nbsp;</td>
<td><select id="box_height_measurement" name="box_height_measurement"></select></td>
</tr>
</table>
</td>
<td>&nbsp;&nbsp;&nbsp;<label for="box_clear">{#style_dlg.box_clear}</label></td>
<td><select id="box_clear" name="box_clear" class="mceEditableSelect"></select></td>
</tr>
</table>
<div style="float: left; width: 49%">
<fieldset>
<legend>{#style_dlg.padding}</legend>
<table border="0">
<tr>
<td>&nbsp;</td>
<td><input type="checkbox" id="box_padding_same" name="box_padding_same" class="checkbox" checked="checked" onClick="toggleSame(this,'box_padding');" /> <label for="box_padding_same">{#style_dlg.same}</label></td>
</tr>
<tr>
<td><label for="box_padding_top">{#style_dlg.top}</label></td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input type="text" id="box_padding_top" name="box_padding_top" class="mceEditableSelect" /></td>
<td>&nbsp;</td>
<td><select id="box_padding_top_measurement" name="box_padding_top_measurement"></select></td>
</tr>
</table>
</td>
</tr>
<tr>
<td><label for="box_padding_right">{#style_dlg.right}</label></td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input type="text" id="box_padding_right" name="box_padding_right" class="mceEditableSelect" disabled="disabled" /></td>
<td>&nbsp;</td>
<td><select id="box_padding_right_measurement" name="box_padding_right_measurement" disabled="disabled"></select></td>
</tr>
</table>
</td>
</tr>
<tr>
<td><label for="box_padding_bottom">{#style_dlg.bottom}</label></td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input type="text" id="box_padding_bottom" name="box_padding_bottom" class="mceEditableSelect" disabled="disabled" /></td>
<td>&nbsp;</td>
<td><select id="box_padding_bottom_measurement" name="box_padding_bottom_measurement" disabled="disabled"></select></td>
</tr>
</table>
</td>
</tr>
<tr>
<td><label for="box_padding_left">{#style_dlg.left}</label></td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input type="text" id="box_padding_left" name="box_padding_left" class="mceEditableSelect" disabled="disabled" /></td>
<td>&nbsp;</td>
<td><select id="box_padding_left_measurement" name="box_padding_left_measurement" disabled="disabled"></select></td>
</tr>
</table>
</td>
</tr>
</table>
</fieldset>
</div>
<div style="float: right; width: 49%">
<fieldset>
<legend>{#style_dlg.margin}</legend>
<table border="0">
<tr>
<td>&nbsp;</td>
<td><input type="checkbox" id="box_margin_same" name="box_margin_same" class="checkbox" checked="checked" onClick="toggleSame(this,'box_margin');" /> <label for="box_margin_same">{#style_dlg.same}</label></td>
</tr>
<tr>
<td><label for="box_margin_top">{#style_dlg.top}</label></td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input type="text" id="box_margin_top" name="box_margin_top" class="mceEditableSelect" /></td>
<td>&nbsp;</td>
<td><select id="box_margin_top_measurement" name="box_margin_top_measurement"></select></td>
</tr>
</table>
</td>
</tr>
<tr>
<td><label for="box_margin_right">{#style_dlg.right}</label></td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input type="text" id="box_margin_right" name="box_margin_right" class="mceEditableSelect" disabled="disabled" /></td>
<td>&nbsp;</td>
<td><select id="box_margin_right_measurement" name="box_margin_right_measurement" disabled="disabled"></select></td>
</tr>
</table>
</td>
</tr>
<tr>
<td><label for="box_margin_bottom">{#style_dlg.bottom}</label></td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input type="text" id="box_margin_bottom" name="box_margin_bottom" class="mceEditableSelect" disabled="disabled" /></td>
<td>&nbsp;</td>
<td><select id="box_margin_bottom_measurement" name="box_margin_bottom_measurement" disabled="disabled"></select></td>
</tr>
</table>
</td>
</tr>
<tr>
<td><label for="box_margin_left">{#style_dlg.left}</label></td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input type="text" id="box_margin_left" name="box_margin_left" class="mceEditableSelect" disabled="disabled" /></td>
<td>&nbsp;</td>
<td><select id="box_margin_left_measurement" name="box_margin_left_measurement" disabled="disabled"></select></td>
</tr>
</table>
</td>
</tr>
</table>
</fieldset>
</div>
<br style="clear: both" />
</div>
<div id="border_panel" class="panel">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>
<td class="tdelim">&nbsp;</td>
<td class="tdelim delim">&nbsp;</td>
<td class="tdelim">{#style_dlg.style}</td>
<td class="tdelim delim">&nbsp;</td>
<td class="tdelim">{#style_dlg.width}</td>
<td class="tdelim delim">&nbsp;</td>
<td class="tdelim">{#style_dlg.color}</td>
</tr>
<tr>
<td>&nbsp;</td>
<td class="delim">&nbsp;</td>
<td><input type="checkbox" id="border_style_same" name="border_style_same" class="checkbox" checked="checked" onClick="toggleSame(this,'border_style');" /> <label for="border_style_same">{#style_dlg.same}</label></td>
<td class="delim">&nbsp;</td>
<td><input type="checkbox" id="border_width_same" name="border_width_same" class="checkbox" checked="checked" onClick="toggleSame(this,'border_width');" /> <label for="border_width_same">{#style_dlg.same}</label></td>
<td class="delim">&nbsp;</td>
<td><input type="checkbox" id="border_color_same" name="border_color_same" class="checkbox" checked="checked" onClick="toggleSame(this,'border_color');" /> <label for="border_color_same">{#style_dlg.same}</label></td>
</tr>
<tr>
<td>{#style_dlg.top}</td>
<td class="delim">&nbsp;</td>
<td><select id="border_style_top" name="border_style_top" class="mceEditableSelect"></select></td>
<td class="delim">&nbsp;</td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><select id="border_width_top" name="border_width_top" class="mceEditableSelect"></select></td>
<td>&nbsp;</td>
<td><select id="border_width_top_measurement" name="border_width_top_measurement"></select></td>
</tr>
</table>
</td>
<td class="delim">&nbsp;</td>
<td>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td><input id="border_color_top" name="border_color_top" type="text" value="" size="9" onChange="updateColor('border_color_top_pick','border_color_top');" /></td>
<td id="border_color_top_pickcontainer">&nbsp;</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>{#style_dlg.right}</td>
<td class="delim">&nbsp;</td>
<td><select id="border_style_right" name="border_style_right" class="mceEditableSelect" disabled="disabled"></select></td>
<td class="delim">&nbsp;</td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><select id="border_width_right" name="border_width_right" class="mceEditableSelect" disabled="disabled"></select></td>
<td>&nbsp;</td>
<td><select id="border_width_right_measurement" name="border_width_right_measurement" disabled="disabled"></select></td>
</tr>
</table>
</td>
<td class="delim">&nbsp;</td>
<td>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td><input id="border_color_right" name="border_color_right" type="text" value="" size="9" onChange="updateColor('border_color_right_pick','border_color_right');" disabled="disabled" /></td>
<td id="border_color_right_pickcontainer">&nbsp;</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>{#style_dlg.bottom}</td>
<td class="delim">&nbsp;</td>
<td><select id="border_style_bottom" name="border_style_bottom" class="mceEditableSelect" disabled="disabled"></select></td>
<td class="delim">&nbsp;</td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><select id="border_width_bottom" name="border_width_bottom" class="mceEditableSelect" disabled="disabled"></select></td>
<td>&nbsp;</td>
<td><select id="border_width_bottom_measurement" name="border_width_bottom_measurement" disabled="disabled"></select></td>
</tr>
</table>
</td>
<td class="delim">&nbsp;</td>
<td>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td><input id="border_color_bottom" name="border_color_bottom" type="text" value="" size="9" onChange="updateColor('border_color_bottom_pick','border_color_bottom');" disabled="disabled" /></td>
<td id="border_color_bottom_pickcontainer">&nbsp;</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>{#style_dlg.left}</td>
<td class="delim">&nbsp;</td>
<td><select id="border_style_left" name="border_style_left" class="mceEditableSelect" disabled="disabled"></select></td>
<td class="delim">&nbsp;</td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><select id="border_width_left" name="border_width_left" class="mceEditableSelect" disabled="disabled"></select></td>
<td>&nbsp;</td>
<td><select id="border_width_left_measurement" name="border_width_left_measurement" disabled="disabled"></select></td>
</tr>
</table>
</td>
<td class="delim">&nbsp;</td>
<td>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td><input id="border_color_left" name="border_color_left" type="text" value="" size="9" onChange="updateColor('border_color_left_pick','border_color_left');" disabled="disabled" /></td>
<td id="border_color_left_pickcontainer">&nbsp;</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<div id="list_panel" class="panel">
<table border="0">
<tr>
<td><label for="list_type">{#style_dlg.list_type}</label></td>
<td><select id="list_type" name="list_type" class="mceEditableSelect"></select></td>
</tr>
<tr>
<td><label for="list_bullet_image">{#style_dlg.bullet_image}</label></td>
<td><input id="list_bullet_image" name="list_bullet_image" type="text" /></td>
</tr>
<tr>
<td><label for="list_position">{#style_dlg.position}</label></td>
<td><select id="list_position" name="list_position" class="mceEditableSelect"></select></td>
</tr>
</table>
</div>
<div id="positioning_panel" class="panel">
<table border="0">
<tr>
<td><label for="positioning_type">{#style_dlg.positioning_type}</label></td>
<td><select id="positioning_type" name="positioning_type" class="mceEditableSelect"></select></td>
<td>&nbsp;&nbsp;&nbsp;<label for="positioning_visibility">{#style_dlg.visibility}</label></td>
<td><select id="positioning_visibility" name="positioning_visibility" class="mceEditableSelect"></select></td>
</tr>
<tr>
<td><label for="positioning_width">{#style_dlg.width}</label></td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input type="text" id="positioning_width" name="positioning_width" onChange="synch('positioning_width','box_width');" /></td>
<td>&nbsp;</td>
<td><select id="positioning_width_measurement" name="positioning_width_measurement"></select></td>
</tr>
</table>
</td>
<td>&nbsp;&nbsp;&nbsp;<label for="positioning_zindex">{#style_dlg.zindex}</label></td>
<td><input type="text" id="positioning_zindex" name="positioning_zindex" /></td>
</tr>
<tr>
<td><label for="positioning_height">{#style_dlg.height}</label></td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input type="text" id="positioning_height" name="positioning_height" onChange="synch('positioning_height','box_height');" /></td>
<td>&nbsp;</td>
<td><select id="positioning_height_measurement" name="positioning_height_measurement"></select></td>
</tr>
</table>
</td>
<td>&nbsp;&nbsp;&nbsp;<label for="positioning_overflow">{#style_dlg.overflow}</label></td>
<td><select id="positioning_overflow" name="positioning_overflow" class="mceEditableSelect"></select></td>
</tr>
</table>
<div style="float: left; width: 49%">
<fieldset>
<legend>{#style_dlg.placement}</legend>
<table border="0">
<tr>
<td>&nbsp;</td>
<td><input type="checkbox" id="positioning_placement_same" name="positioning_placement_same" class="checkbox" checked="checked" onClick="toggleSame(this,'positioning_placement');" /> <label for="positioning_placement_same">{#style_dlg.same}</label></td>
</tr>
<tr>
<td>{#style_dlg.top}</td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input type="text" id="positioning_placement_top" name="positioning_placement_top" /></td>
<td>&nbsp;</td>
<td><select id="positioning_placement_top_measurement" name="positioning_placement_top_measurement"></select></td>
</tr>
</table>
</td>
</tr>
<tr>
<td>{#style_dlg.right}</td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input type="text" id="positioning_placement_right" name="positioning_placement_right" disabled="disabled" /></td>
<td>&nbsp;</td>
<td><select id="positioning_placement_right_measurement" name="positioning_placement_right_measurement" disabled="disabled"></select></td>
</tr>
</table>
</td>
</tr>
<tr>
<td>{#style_dlg.bottom}</td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input type="text" id="positioning_placement_bottom" name="positioning_placement_bottom" disabled="disabled" /></td>
<td>&nbsp;</td>
<td><select id="positioning_placement_bottom_measurement" name="positioning_placement_bottom_measurement" disabled="disabled"></select></td>
</tr>
</table>
</td>
</tr>
<tr>
<td>{#style_dlg.left}</td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input type="text" id="positioning_placement_left" name="positioning_placement_left" disabled="disabled" /></td>
<td>&nbsp;</td>
<td><select id="positioning_placement_left_measurement" name="positioning_placement_left_measurement" disabled="disabled"></select></td>
</tr>
</table>
</td>
</tr>
</table>
</fieldset>
</div>
<div style="float: right; width: 49%">
<fieldset>
<legend>{#style_dlg.clip}</legend>
<table border="0">
<tr>
<td>&nbsp;</td>
<td><input type="checkbox" id="positioning_clip_same" name="positioning_clip_same" class="checkbox" checked="checked" onClick="toggleSame(this,'positioning_clip');" /> <label for="positioning_clip_same">{#style_dlg.same}</label></td>
</tr>
<tr>
<td>{#style_dlg.top}</td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input type="text" id="positioning_clip_top" name="positioning_clip_top" /></td>
<td>&nbsp;</td>
<td><select id="positioning_clip_top_measurement" name="positioning_clip_top_measurement"></select></td>
</tr>
</table>
</td>
</tr>
<tr>
<td>{#style_dlg.right}</td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input type="text" id="positioning_clip_right" name="positioning_clip_right" disabled="disabled" /></td>
<td>&nbsp;</td>
<td><select id="positioning_clip_right_measurement" name="positioning_clip_right_measurement" disabled="disabled"></select></td>
</tr>
</table>
</td>
</tr>
<tr>
<td>{#style_dlg.bottom}</td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input type="text" id="positioning_clip_bottom" name="positioning_clip_bottom" disabled="disabled" /></td>
<td>&nbsp;</td>
<td><select id="positioning_clip_bottom_measurement" name="positioning_clip_bottom_measurement" disabled="disabled"></select></td>
</tr>
</table>
</td>
</tr>
<tr>
<td>{#style_dlg.left}</td>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input type="text" id="positioning_clip_left" name="positioning_clip_left" disabled="disabled" /></td>
<td>&nbsp;</td>
<td><select id="positioning_clip_left_measurement" name="positioning_clip_left_measurement" disabled="disabled"></select></td>
</tr>
</table>
</td>
</tr>
</table>
</fieldset>
</div>
<br style="clear: both" />
</div>
</div>
<div class="mceActionPanel">
<div style="float: left">
<div style="float: left"><input type="submit" id="insert" name="insert" value="{#update}" /></div>
<div style="float: left">&nbsp;<input type="button" class="button" id="apply" name="apply" value="{#style_dlg.apply}" onClick="applyAction();" /></div>
<br style="clear: both" />
</div>
<div style="float: right">
<input type="button" id="cancel" name="cancel" value="{#cancel}" onClick="tinyMCEPopup.close();" />
</div>
</div>
</form>
<div style="display: none">
<div id="container"></div>
</div>
</body>
</html>