Upgrade TinyMCE to 3.4.2, fixes bugs 11955, 11992
This commit is contained in:
parent
faddfc5d8a
commit
38de00f931
422 changed files with 17224 additions and 23491 deletions
|
|
@ -35,53 +35,14 @@
|
|||
width: 240px;
|
||||
}
|
||||
|
||||
/* Head list classes */
|
||||
|
||||
.headlistwrapper {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.addbutton, .removebutton, .moveupbutton, .movedownbutton {
|
||||
border-top: 1px solid;
|
||||
border-left: 1px solid;
|
||||
border-bottom: 1px solid;
|
||||
border-right: 1px solid;
|
||||
border-color: #F0F0EE;
|
||||
cursor: default;
|
||||
display: block;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
#doctypes {
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
.addbutton:hover, .removebutton:hover, .moveupbutton:hover, .movedownbutton:hover {
|
||||
border: 1px solid #0A246A;
|
||||
background-color: #B6BDD2;
|
||||
}
|
||||
/* Head list classes */
|
||||
|
||||
.addbutton {
|
||||
background-image: url('../images/add.gif');
|
||||
float: left;
|
||||
margin-right: 3px;
|
||||
}
|
||||
|
||||
.removebutton {
|
||||
background-image: url('../images/remove.gif');
|
||||
float: left;
|
||||
}
|
||||
|
||||
.moveupbutton {
|
||||
background-image: url('../images/move_up.gif');
|
||||
float: left;
|
||||
margin-right: 3px;
|
||||
}
|
||||
|
||||
.movedownbutton {
|
||||
background-image: url('../images/move_down.gif');
|
||||
float: left;
|
||||
.headlistwrapper {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.selected {
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1,11 +1,16 @@
|
|||
/**
|
||||
* $Id: editor_plugin_src.js 1029 2009-02-24 22:32:21Z spocke $
|
||||
* editor_plugin_src.js
|
||||
*
|
||||
* @author Moxiecode
|
||||
* @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved.
|
||||
* Copyright 2009, Moxiecode Systems AB
|
||||
* Released under LGPL License.
|
||||
*
|
||||
* License: http://tinymce.moxiecode.com/license
|
||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
||||
*/
|
||||
|
||||
(function() {
|
||||
var each = tinymce.each, Node = tinymce.html.Node;
|
||||
|
||||
tinymce.create('tinymce.plugins.FullPagePlugin', {
|
||||
init : function(ed, url) {
|
||||
var t = this;
|
||||
|
|
@ -21,7 +26,7 @@
|
|||
inline : 1
|
||||
}, {
|
||||
plugin_url : url,
|
||||
head_html : t.head
|
||||
data : t._htmlToData()
|
||||
});
|
||||
});
|
||||
|
||||
|
|
@ -29,7 +34,6 @@
|
|||
ed.addButton('fullpage', {title : 'fullpage.desc', cmd : 'mceFullPageProperties'});
|
||||
|
||||
ed.onBeforeSetContent.add(t._setContent, t);
|
||||
ed.onSetContent.add(t._setBodyAttribs, t);
|
||||
ed.onGetContent.add(t._getContent, t);
|
||||
},
|
||||
|
||||
|
|
@ -45,102 +49,351 @@
|
|||
|
||||
// Private plugin internal methods
|
||||
|
||||
_setBodyAttribs : function(ed, o) {
|
||||
var bdattr, i, len, kv, k, v, t, attr = this.head.match(/body(.*?)>/i);
|
||||
_htmlToData : function() {
|
||||
var headerFragment = this._parseHeader(), data = {}, nodes, elm, matches, editor = this.editor;
|
||||
|
||||
if (attr && attr[1]) {
|
||||
bdattr = attr[1].match(/\s*(\w+\s*=\s*".*?"|\w+\s*=\s*'.*?'|\w+\s*=\s*\w+|\w+)\s*/g);
|
||||
function getAttr(elm, name) {
|
||||
var value = elm.attr(name);
|
||||
|
||||
if (bdattr) {
|
||||
for(i = 0, len = bdattr.length; i < len; i++) {
|
||||
kv = bdattr[i].split('=');
|
||||
k = kv[0].replace(/\s/,'');
|
||||
v = kv[1];
|
||||
return value || '';
|
||||
};
|
||||
|
||||
if (v) {
|
||||
v = v.replace(/^\s+/,'').replace(/\s+$/,'');
|
||||
t = v.match(/^["'](.*)["']$/);
|
||||
// Default some values
|
||||
data.fontface = editor.getParam("fullpage_default_fontface", "");
|
||||
data.fontsize = editor.getParam("fullpage_default_fontsize", "");
|
||||
|
||||
if (t)
|
||||
v = t[1];
|
||||
} else
|
||||
v = k;
|
||||
|
||||
ed.dom.setAttrib(ed.getBody(), 'style', v);
|
||||
}
|
||||
}
|
||||
// Parse XML PI
|
||||
elm = headerFragment.firstChild;
|
||||
if (elm.type == 7) {
|
||||
data.xml_pi = true;
|
||||
matches = /encoding="([^"]+)"/.exec(elm.value);
|
||||
if (matches)
|
||||
data.docencoding = matches[1];
|
||||
}
|
||||
|
||||
// Parse doctype
|
||||
elm = headerFragment.getAll('#doctype')[0];
|
||||
if (elm)
|
||||
data.doctype = '<!DOCTYPE' + elm.value + ">";
|
||||
|
||||
// Parse title element
|
||||
elm = headerFragment.getAll('title')[0];
|
||||
if (elm && elm.firstChild) {
|
||||
data.metatitle = elm.firstChild.value;
|
||||
}
|
||||
|
||||
// Parse meta elements
|
||||
each(headerFragment.getAll('meta'), function(meta) {
|
||||
var name = meta.attr('name'), httpEquiv = meta.attr('http-equiv'), matches;
|
||||
|
||||
if (name)
|
||||
data['meta' + name.toLowerCase()] = meta.attr('content');
|
||||
else if (httpEquiv == "Content-Type") {
|
||||
matches = /charset\s*=\s*(.*)\s*/gi.exec(meta.attr('content'));
|
||||
|
||||
if (matches)
|
||||
data.docencoding = matches[1];
|
||||
}
|
||||
});
|
||||
|
||||
// Parse html attribs
|
||||
elm = headerFragment.getAll('html')[0];
|
||||
if (elm)
|
||||
data.langcode = getAttr(elm, 'lang') || getAttr(elm, 'xml:lang');
|
||||
|
||||
// Parse stylesheet
|
||||
elm = headerFragment.getAll('link')[0];
|
||||
if (elm && elm.attr('rel') == 'stylesheet')
|
||||
data.stylesheet = elm.attr('href');
|
||||
|
||||
// Parse body parts
|
||||
elm = headerFragment.getAll('body')[0];
|
||||
if (elm) {
|
||||
data.langdir = getAttr(elm, 'dir');
|
||||
data.style = getAttr(elm, 'style');
|
||||
data.visited_color = getAttr(elm, 'vlink');
|
||||
data.link_color = getAttr(elm, 'link');
|
||||
data.active_color = getAttr(elm, 'alink');
|
||||
}
|
||||
|
||||
return data;
|
||||
},
|
||||
|
||||
_createSerializer : function() {
|
||||
return new tinymce.dom.Serializer({
|
||||
dom : this.editor.dom,
|
||||
apply_source_formatting : true
|
||||
_dataToHtml : function(data) {
|
||||
var headerFragment, headElement, html, elm, value, dom = this.editor.dom;
|
||||
|
||||
function setAttr(elm, name, value) {
|
||||
elm.attr(name, value ? value : undefined);
|
||||
};
|
||||
|
||||
function addHeadNode(node) {
|
||||
if (headElement.firstChild)
|
||||
headElement.insert(node, headElement.firstChild);
|
||||
else
|
||||
headElement.append(node);
|
||||
};
|
||||
|
||||
headerFragment = this._parseHeader();
|
||||
headElement = headerFragment.getAll('head')[0];
|
||||
if (!headElement) {
|
||||
elm = headerFragment.getAll('html')[0];
|
||||
headElement = new Node('head', 1);
|
||||
|
||||
if (elm.firstChild)
|
||||
elm.insert(headElement, elm.firstChild, true);
|
||||
else
|
||||
elm.append(headElement);
|
||||
}
|
||||
|
||||
// Add/update/remove XML-PI
|
||||
elm = headerFragment.firstChild;
|
||||
if (data.xml_pi) {
|
||||
value = 'version="1.0"';
|
||||
|
||||
if (data.docencoding)
|
||||
value += ' encoding="' + data.docencoding + '"';
|
||||
|
||||
if (elm.type != 7) {
|
||||
elm = new Node('xml', 7);
|
||||
headerFragment.insert(elm, headerFragment.firstChild, true);
|
||||
}
|
||||
|
||||
elm.value = value;
|
||||
} else if (elm && elm.type == 7)
|
||||
elm.remove();
|
||||
|
||||
// Add/update/remove doctype
|
||||
elm = headerFragment.getAll('#doctype')[0];
|
||||
if (data.doctype) {
|
||||
if (!elm) {
|
||||
elm = new Node('#doctype', 10);
|
||||
|
||||
if (data.xml_pi)
|
||||
headerFragment.insert(elm, headerFragment.firstChild);
|
||||
else
|
||||
addHeadNode(elm);
|
||||
}
|
||||
|
||||
elm.value = data.doctype.substring(9, data.doctype.length - 1);
|
||||
} else if (elm)
|
||||
elm.remove();
|
||||
|
||||
// Add/update/remove title
|
||||
elm = headerFragment.getAll('title')[0];
|
||||
if (data.metatitle) {
|
||||
if (!elm) {
|
||||
elm = new Node('title', 1);
|
||||
elm.append(new Node('#text', 3)).value = data.metatitle;
|
||||
addHeadNode(elm);
|
||||
}
|
||||
}
|
||||
|
||||
// Add meta encoding
|
||||
if (data.docencoding) {
|
||||
elm = null;
|
||||
each(headerFragment.getAll('meta'), function(meta) {
|
||||
if (meta.attr('http-equiv') == 'Content-Type')
|
||||
elm = meta;
|
||||
});
|
||||
|
||||
if (!elm) {
|
||||
elm = new Node('meta', 1);
|
||||
elm.attr('http-equiv', 'Content-Type');
|
||||
elm.shortEnded = true;
|
||||
addHeadNode(elm);
|
||||
}
|
||||
|
||||
elm.attr('content', 'text/html; charset=' + data.docencoding);
|
||||
}
|
||||
|
||||
// Add/update/remove meta
|
||||
each('keywords,description,author,copyright,robots'.split(','), function(name) {
|
||||
var nodes = headerFragment.getAll('meta'), i, meta, value = data['meta' + name];
|
||||
|
||||
for (i = 0; i < nodes.length; i++) {
|
||||
meta = nodes[i];
|
||||
|
||||
if (meta.attr('name') == name) {
|
||||
if (value)
|
||||
meta.attr('content', value);
|
||||
else
|
||||
meta.remove();
|
||||
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (value) {
|
||||
elm = new Node('meta', 1);
|
||||
elm.attr('name', name);
|
||||
elm.attr('content', value);
|
||||
elm.shortEnded = true;
|
||||
|
||||
addHeadNode(elm);
|
||||
}
|
||||
});
|
||||
|
||||
// Add/update/delete link
|
||||
elm = headerFragment.getAll('link')[0];
|
||||
if (elm && elm.attr('rel') == 'stylesheet') {
|
||||
if (data.stylesheet)
|
||||
elm.attr('href', data.stylesheet);
|
||||
else
|
||||
elm.remove();
|
||||
} else if (data.stylesheet) {
|
||||
elm = new Node('link', 1);
|
||||
elm.attr({
|
||||
rel : 'stylesheet',
|
||||
text : 'text/css',
|
||||
href : data.stylesheet
|
||||
});
|
||||
elm.shortEnded = true;
|
||||
|
||||
addHeadNode(elm);
|
||||
}
|
||||
|
||||
// Update body attributes
|
||||
elm = headerFragment.getAll('body')[0];
|
||||
if (elm) {
|
||||
setAttr(elm, 'dir', data.langdir);
|
||||
setAttr(elm, 'style', data.style);
|
||||
setAttr(elm, 'vlink', data.visited_color);
|
||||
setAttr(elm, 'link', data.link_color);
|
||||
setAttr(elm, 'alink', data.active_color);
|
||||
|
||||
// Update iframe body as well
|
||||
dom.setAttribs(this.editor.getBody(), {
|
||||
style : data.style,
|
||||
dir : data.dir,
|
||||
vLink : data.visited_color,
|
||||
link : data.link_color,
|
||||
aLink : data.active_color
|
||||
});
|
||||
}
|
||||
|
||||
// Set html attributes
|
||||
elm = headerFragment.getAll('html')[0];
|
||||
if (elm) {
|
||||
setAttr(elm, 'lang', data.langcode);
|
||||
setAttr(elm, 'xml:lang', data.langcode);
|
||||
}
|
||||
|
||||
// Serialize header fragment and crop away body part
|
||||
html = new tinymce.html.Serializer({
|
||||
validate: false,
|
||||
indent: true,
|
||||
apply_source_formatting : true,
|
||||
indent_before: 'head,html,body,meta,title,script,link,style',
|
||||
indent_after: 'head,html,body,meta,title,script,link,style'
|
||||
}).serialize(headerFragment);
|
||||
|
||||
this.head = html.substring(0, html.indexOf('</body>'));
|
||||
},
|
||||
|
||||
_parseHeader : function() {
|
||||
// Parse the contents with a DOM parser
|
||||
return new tinymce.html.DomParser({
|
||||
validate: false,
|
||||
root_name: '#document'
|
||||
}).parse(this.head);
|
||||
},
|
||||
|
||||
_setContent : function(ed, o) {
|
||||
var t = this, sp, ep, c = o.content, v, st = '';
|
||||
var self = this, startPos, endPos, content = o.content, headerFragment, styles = '', dom = self.editor.dom, elm;
|
||||
|
||||
function low(s) {
|
||||
return s.replace(/<\/?[A-Z]+/g, function(a) {
|
||||
return a.toLowerCase();
|
||||
})
|
||||
};
|
||||
|
||||
// Ignore raw updated if we already have a head, this will fix issues with undo/redo keeping the head/foot separate
|
||||
if (o.format == 'raw' && self.head)
|
||||
return;
|
||||
|
||||
if (o.source_view && ed.getParam('fullpage_hide_in_source_view'))
|
||||
return;
|
||||
|
||||
// Parse out head, body and footer
|
||||
c = c.replace(/<(\/?)BODY/gi, '<$1body');
|
||||
sp = c.indexOf('<body');
|
||||
content = content.replace(/<(\/?)BODY/gi, '<$1body');
|
||||
startPos = content.indexOf('<body');
|
||||
|
||||
if (sp != -1) {
|
||||
sp = c.indexOf('>', sp);
|
||||
t.head = c.substring(0, sp + 1);
|
||||
if (startPos != -1) {
|
||||
startPos = content.indexOf('>', startPos);
|
||||
self.head = low(content.substring(0, startPos + 1));
|
||||
|
||||
ep = c.indexOf('</body', sp);
|
||||
if (ep == -1)
|
||||
ep = c.indexOf('</body', ep);
|
||||
endPos = content.indexOf('</body', startPos);
|
||||
if (endPos == -1)
|
||||
endPos = content.length;
|
||||
|
||||
o.content = c.substring(sp + 1, ep);
|
||||
t.foot = c.substring(ep);
|
||||
|
||||
function low(s) {
|
||||
return s.replace(/<\/?[A-Z]+/g, function(a) {
|
||||
return a.toLowerCase();
|
||||
})
|
||||
};
|
||||
|
||||
t.head = low(t.head);
|
||||
t.foot = low(t.foot);
|
||||
o.content = content.substring(startPos + 1, endPos);
|
||||
self.foot = low(content.substring(endPos));
|
||||
} else {
|
||||
t.head = '';
|
||||
if (ed.getParam('fullpage_default_xml_pi'))
|
||||
t.head += '<?xml version="1.0" encoding="' + ed.getParam('fullpage_default_encoding', 'ISO-8859-1') + '" ?>\n';
|
||||
|
||||
t.head += ed.getParam('fullpage_default_doctype', '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
|
||||
t.head += '\n<html>\n<head>\n<title>' + ed.getParam('fullpage_default_title', 'Untitled document') + '</title>\n';
|
||||
|
||||
if (v = ed.getParam('fullpage_default_encoding'))
|
||||
t.head += '<meta http-equiv="Content-Type" content="' + v + '" />\n';
|
||||
|
||||
if (v = ed.getParam('fullpage_default_font_family'))
|
||||
st += 'font-family: ' + v + ';';
|
||||
|
||||
if (v = ed.getParam('fullpage_default_font_size'))
|
||||
st += 'font-size: ' + v + ';';
|
||||
|
||||
if (v = ed.getParam('fullpage_default_text_color'))
|
||||
st += 'color: ' + v + ';';
|
||||
|
||||
t.head += '</head>\n<body' + (st ? ' style="' + st + '"' : '') + '>\n';
|
||||
t.foot = '\n</body>\n</html>';
|
||||
self.head = this._getDefaultHeader();
|
||||
self.foot = '\n</body>\n</html>';
|
||||
}
|
||||
|
||||
// Parse header and update iframe
|
||||
headerFragment = self._parseHeader();
|
||||
each(headerFragment.getAll('style'), function(node) {
|
||||
if (node.firstChild)
|
||||
styles += node.firstChild.value;
|
||||
});
|
||||
|
||||
elm = headerFragment.getAll('body')[0];
|
||||
if (elm) {
|
||||
dom.setAttribs(self.editor.getBody(), {
|
||||
style : elm.attr('style') || '',
|
||||
dir : elm.attr('dir') || '',
|
||||
vLink : elm.attr('vlink') || '',
|
||||
link : elm.attr('link') || '',
|
||||
aLink : elm.attr('alink') || ''
|
||||
});
|
||||
}
|
||||
|
||||
if (styles)
|
||||
dom.add(self.editor.getDoc().getElementsByTagName('head')[0], 'style', {id : 'fullpage_styles'}, styles);
|
||||
else
|
||||
dom.remove('fullpage_styles');
|
||||
},
|
||||
|
||||
_getDefaultHeader : function() {
|
||||
var header = '', editor = this.editor, value, styles = '';
|
||||
|
||||
if (editor.getParam('fullpage_default_xml_pi'))
|
||||
header += '<?xml version="1.0" encoding="' + editor.getParam('fullpage_default_encoding', 'ISO-8859-1') + '" ?>\n';
|
||||
|
||||
header += editor.getParam('fullpage_default_doctype', '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
|
||||
header += '\n<html>\n<head>\n';
|
||||
|
||||
if (value = editor.getParam('fullpage_default_title'))
|
||||
header += '<title>' + v + '</title>\n';
|
||||
|
||||
if (value = editor.getParam('fullpage_default_encoding'))
|
||||
header += '<meta http-equiv="Content-Type" content="text/html; charset=' + value + '" />\n';
|
||||
|
||||
if (value = editor.getParam('fullpage_default_font_family'))
|
||||
styles += 'font-family: ' + value + ';';
|
||||
|
||||
if (value = editor.getParam('fullpage_default_font_size'))
|
||||
styles += 'font-size: ' + value + ';';
|
||||
|
||||
if (value = editor.getParam('fullpage_default_text_color'))
|
||||
styles += 'color: ' + value + ';';
|
||||
|
||||
header += '</head>\n<body' + (styles ? ' style="' + styles + '"' : '') + '>\n';
|
||||
|
||||
return header;
|
||||
},
|
||||
|
||||
_getContent : function(ed, o) {
|
||||
var t = this;
|
||||
var self = this;
|
||||
|
||||
if (!o.source_view || !ed.getParam('fullpage_hide_in_source_view'))
|
||||
o.content = tinymce.trim(t.head) + '\n' + tinymce.trim(o.content) + '\n' + tinymce.trim(t.foot);
|
||||
o.content = tinymce.trim(self.head) + '\n' + tinymce.trim(o.content) + '\n' + tinymce.trim(self.foot);
|
||||
}
|
||||
});
|
||||
|
||||
// Register plugin
|
||||
tinymce.PluginManager.add('fullpage', tinymce.plugins.FullPagePlugin);
|
||||
})();
|
||||
})();
|
||||
|
|
|
|||
|
|
@ -8,13 +8,12 @@
|
|||
<script type="text/javascript" src="js/fullpage.js"></script>
|
||||
<link href="css/fullpage.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body id="advlink" style="display: none">
|
||||
<form onsubmit="updateAction();return false;" name="fullpage" action="#">
|
||||
<body id="fullpage" style="display: none">
|
||||
<form onsubmit="FullPageDialog.update();return false;" name="fullpage" action="#">
|
||||
<div class="tabs">
|
||||
<ul>
|
||||
<li id="meta_tab" class="current"><span><a href="javascript:mcTabs.displayTab('meta_tab','meta_panel');" onmousedown="return false;">{#fullpage_dlg.meta_tab}</a></span></li>
|
||||
<li id="appearance_tab"><span><a href="javascript:mcTabs.displayTab('appearance_tab','appearance_panel');" onmousedown="return false;">{#fullpage_dlg.appearance_tab}</a></span></li>
|
||||
<li id="advanced_tab"><span><a href="javascript:mcTabs.displayTab('advanced_tab','advanced_panel');" onmousedown="return false;">{#fullpage_dlg.advanced_tab}</a></span></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
@ -72,9 +71,9 @@
|
|||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="nowrap"><label for="doctypes">{#fullpage_dlg.doctypes}</label> </td>
|
||||
<td class="nowrap"><label for="doctype">{#fullpage_dlg.doctypes}</label> </td>
|
||||
<td>
|
||||
<select id="doctypes" name="doctypes">
|
||||
<select id="doctype" name="doctype">
|
||||
<option value="">{#not_set}</option>
|
||||
</select>
|
||||
</td>
|
||||
|
|
@ -109,7 +108,7 @@
|
|||
<tr>
|
||||
<td class="column1"><label for="fontface">{#fullpage_dlg.fontface}</label></td>
|
||||
<td>
|
||||
<select id="fontface" name="fontface" onchange="changedStyleField(this);">
|
||||
<select id="fontface" name="fontface" onchange="FullPageDialog.changedStyleProp();">
|
||||
<option value="">{#not_set}</option>
|
||||
</select>
|
||||
</td>
|
||||
|
|
@ -118,7 +117,7 @@
|
|||
<tr>
|
||||
<td class="column1"><label for="fontsize">{#fullpage_dlg.fontsize}</label></td>
|
||||
<td>
|
||||
<select id="fontsize" name="fontsize" onchange="changedStyleField(this);">
|
||||
<select id="fontsize" name="fontsize" onchange="FullPageDialog.changedStyleProp();">
|
||||
<option value="">{#not_set}</option>
|
||||
</select>
|
||||
</td>
|
||||
|
|
@ -129,7 +128,7 @@
|
|||
<td>
|
||||
<table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td><input id="textcolor" name="textcolor" type="text" value="" size="9" onchange="updateColor('textcolor_pick','textcolor');changedStyleField(this);" /></td>
|
||||
<td><input id="textcolor" name="textcolor" type="text" value="" size="9" onchange="updateColor('textcolor_pick','textcolor');FullPageDialog.changedStyleProp();" /></td>
|
||||
<td id="textcolor_pickcontainer"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
@ -147,7 +146,7 @@
|
|||
<td>
|
||||
<table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td><input id="bgimage" name="bgimage" type="text" value="" onchange="changedStyleField(this);" /></td>
|
||||
<td><input id="bgimage" name="bgimage" type="text" value="" onchange="FullPageDialog.changedStyleProp();" /></td>
|
||||
<td id="bgimage_pickcontainer"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
@ -158,7 +157,7 @@
|
|||
<td>
|
||||
<table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td><input id="bgcolor" name="bgcolor" type="text" value="" size="9" onchange="updateColor('bgcolor_pick','bgcolor');changedStyleField(this);" /></td>
|
||||
<td><input id="bgcolor" name="bgcolor" type="text" value="" size="9" onchange="updateColor('bgcolor_pick','bgcolor');FullPageDialog.changedStyleProp();" /></td>
|
||||
<td id="bgcolor_pickcontainer"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
@ -173,15 +172,15 @@
|
|||
<table border="0" cellpadding="4" cellspacing="0">
|
||||
<tr>
|
||||
<td class="column1"><label for="leftmargin">{#fullpage_dlg.left_margin}</label></td>
|
||||
<td><input id="leftmargin" name="leftmargin" type="text" value="" onchange="changedStyleField(this);" /></td>
|
||||
<td><input id="leftmargin" name="leftmargin" type="text" value="" onchange="FullPageDialog.changedStyleProp();" /></td>
|
||||
<td class="column1"><label for="rightmargin">{#fullpage_dlg.right_margin}</label></td>
|
||||
<td><input id="rightmargin" name="rightmargin" type="text" value="" onchange="changedStyleField(this);" /></td>
|
||||
<td><input id="rightmargin" name="rightmargin" type="text" value="" onchange="FullPageDialog.changedStyleProp();" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="column1"><label for="topmargin">{#fullpage_dlg.top_margin}</label></td>
|
||||
<td><input id="topmargin" name="topmargin" type="text" value="" onchange="changedStyleField(this);" /></td>
|
||||
<td><input id="topmargin" name="topmargin" type="text" value="" onchange="FullPageDialog.changedStyleProp();" /></td>
|
||||
<td class="column1"><label for="bottommargin">{#fullpage_dlg.bottom_margin}</label></td>
|
||||
<td><input id="bottommargin" name="bottommargin" type="text" value="" onchange="changedStyleField(this);" /></td>
|
||||
<td><input id="bottommargin" name="bottommargin" type="text" value="" onchange="FullPageDialog.changedStyleProp();" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
|
|
@ -195,7 +194,7 @@
|
|||
<td>
|
||||
<table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td><input id="link_color" name="link_color" type="text" value="" size="9" onchange="updateColor('link_color_pick','link_color');changedStyleField(this);" /></td>
|
||||
<td><input id="link_color" name="link_color" type="text" value="" size="9" onchange="updateColor('link_color_pick','link_color');FullPageDialog.changedStyleProp();" /></td>
|
||||
<td id="link_color_pickcontainer"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
@ -205,7 +204,7 @@
|
|||
<td>
|
||||
<table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td><input id="visited_color" name="visited_color" type="text" value="" size="9" onchange="updateColor('visited_color_pick','visited_color');changedStyleField(this);" /></td>
|
||||
<td><input id="visited_color" name="visited_color" type="text" value="" size="9" onchange="updateColor('visited_color_pick','visited_color');FullPageDialog.changedStyleProp();" /></td>
|
||||
<td id="visited_color_pickcontainer"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
@ -217,7 +216,7 @@
|
|||
<td>
|
||||
<table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td><input id="active_color" name="active_color" type="text" value="" size="9" onchange="updateColor('active_color_pick','active_color');changedStyleField(this);" /></td>
|
||||
<td><input id="active_color" name="active_color" type="text" value="" size="9" onchange="updateColor('active_color_pick','active_color');FullPageDialog.changedStyleProp();" /></td>
|
||||
<td id="active_color_pickcontainer"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
@ -225,16 +224,6 @@
|
|||
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
|
||||
<!-- <td class="column1"><label for="hover_color">{#fullpage_dlg.hover_color}</label></td>
|
||||
<td>
|
||||
<table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td><input id="hover_color" name="hover_color" type="text" value="" size="9" onchange="changedStyleField(this);" /></td>
|
||||
<td id="hover_color_pickcontainer"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td> -->
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
|
|
@ -254,323 +243,17 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td class="column1"><label for="style">{#fullpage_dlg.style}</label></td>
|
||||
<td><input id="style" name="style" type="text" value="" onchange="changedStyleField(this);" /></td>
|
||||
<td><input id="style" name="style" type="text" value="" onchange="FullPageDialog.changedStyle();" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div id="advanced_panel" class="panel">
|
||||
<div id="addmenu">
|
||||
<table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr><td><a href="javascript:addHeadElm('title');" onmousedown="return false;"><span>{#fullpage_dlg.add_title}</span></a></td></tr>
|
||||
<tr><td><a href="javascript:addHeadElm('meta');" onmousedown="return false;"><span>{#fullpage_dlg.add_meta}</span></a></td></tr>
|
||||
<tr><td><a href="javascript:addHeadElm('script');" onmousedown="return false;"><span>{#fullpage_dlg.add_script}</span></a></td></tr>
|
||||
<tr><td><a href="javascript:addHeadElm('style');" onmousedown="return false;"><span>{#fullpage_dlg.add_style}</span></a></td></tr>
|
||||
<tr><td><a href="javascript:addHeadElm('link');" onmousedown="return false;"><span>{#fullpage_dlg.add_link}</span></a></td></tr>
|
||||
<tr><td><a href="javascript:addHeadElm('base');" onmousedown="return false;"><span>{#fullpage_dlg.add_base}</span></a></td></tr>
|
||||
<tr><td><a href="javascript:addHeadElm('comment');" onmousedown="return false;"><span>{#fullpage_dlg.add_comment}</span></a></td></tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<fieldset>
|
||||
<legend>{#fullpage_dlg.head_elements}</legend>
|
||||
|
||||
<div class="headlistwrapper">
|
||||
<div class="toolbar">
|
||||
<div style="float: left">
|
||||
<a id="addbutton" href="javascript:showAddMenu();" onmousedown="return false;" class="addbutton" title="{#fullpage_dlg.add}"></a>
|
||||
<a href="#" onmousedown="return false;" class="removebutton" title="{#fullpage_dlg.remove}"></a>
|
||||
</div>
|
||||
<div style="float: right">
|
||||
<a href="#" onmousedown="return false;" class="moveupbutton" title="{#fullpage_dlg.moveup}"></a>
|
||||
<a href="#" onmousedown="return false;" class="movedownbutton" title="{#fullpage_dlg.movedown}"></a>
|
||||
</div>
|
||||
<br style="clear: both" />
|
||||
</div>
|
||||
<select id="headlist" size="26" onchange="updateHeadElm(this.options[this.selectedIndex].value);">
|
||||
<option value="title_0"><title>Some title bla bla bla</title></option>
|
||||
<option value="meta_1"><meta name="keywords">Some bla bla bla</meta></option>
|
||||
<option value="meta_2"><meta name="description">Some bla bla bla bla bla bla bla bla bla</meta></option>
|
||||
<option value="script_3"><script language="javascript">...</script></option>
|
||||
<option value="style_4"><style>...</style></option>
|
||||
<option value="base_5"><base href="." /></option>
|
||||
<option value="comment_6"><!-- ... --></option>
|
||||
<option value="link_7"><link href="." /></option>
|
||||
</select>
|
||||
</div>
|
||||
</fieldset>
|
||||
|
||||
<fieldset id="meta_element">
|
||||
<legend>{#fullpage_dlg.meta_element}</legend>
|
||||
|
||||
<table border="0" cellpadding="4" cellspacing="0">
|
||||
<tr>
|
||||
<td class="column1"><label for="element_meta_type">{#fullpage_dlg.type}</label></td>
|
||||
<td><select id="element_meta_type">
|
||||
<option value="name">name</option>
|
||||
<option value="http-equiv">http-equiv</option>
|
||||
</select></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="column1"><label for="element_meta_name">{#fullpage_dlg.name}</label></td>
|
||||
<td><input id="element_meta_name" name="element_meta_name" type="text" value="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="column1"><label for="element_meta_content">{#fullpage_dlg.content}</label></td>
|
||||
<td><input id="element_meta_content" name="element_meta_content" type="text" value="" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<input type="button" id="meta_updateelement" class="updateElementButton" name="update" value="{#update}" onclick="updateElement();" />
|
||||
</fieldset>
|
||||
|
||||
<fieldset id="title_element">
|
||||
<legend>{#fullpage_dlg.title_element}</legend>
|
||||
|
||||
<table border="0" cellpadding="4" cellspacing="0">
|
||||
<tr>
|
||||
<td class="column1"><label for="element_title">{#fullpage_dlg.meta_title}</label></td>
|
||||
<td><input id="element_title" name="element_title" type="text" value="" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<input type="button" id="title_updateelement" class="updateElementButton" name="update" value="{#update}" onclick="updateElement();" />
|
||||
</fieldset>
|
||||
|
||||
<fieldset id="script_element">
|
||||
<legend>{#fullpage_dlg.script_element}</legend>
|
||||
|
||||
<div class="tabs">
|
||||
<ul>
|
||||
<li id="script_props_tab" class="current"><span><a href="javascript:mcTabs.displayTab('script_props_tab','script_props_panel');" onmousedown="return false;">{#fullpage_dlg.properties}</a></span></li>
|
||||
<li id="script_value_tab"><span><a href="javascript:mcTabs.displayTab('script_value_tab','script_value_panel');" onmousedown="return false;">{#fullpage_dlg.value}</a></span></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<br style="clear: both" />
|
||||
|
||||
<div class="panel_wrapper">
|
||||
<div id="script_props_panel" class="panel current">
|
||||
<table border="0" cellpadding="4" cellspacing="0">
|
||||
<tr>
|
||||
<td class="column1"><label for="element_script_type">{#fullpage_dlg.type}</label></td>
|
||||
<td><select id="element_script_type">
|
||||
<option value="text/javascript">text/javascript</option>
|
||||
<option value="text/jscript">text/jscript</option>
|
||||
<option value="text/vbscript">text/vbscript</option>
|
||||
<option value="text/vbs">text/vbs</option>
|
||||
<option value="text/ecmascript">text/ecmascript</option>
|
||||
<option value="text/xml">text/xml</option>
|
||||
</select></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="column1"><label for="element_script_src">{#fullpage_dlg.src}</label></td>
|
||||
<td><table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td><input id="element_script_src" name="element_script_src" type="text" value="" /></td>
|
||||
<td id="script_src_pickcontainer"> </td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="column1"><label for="element_script_charset">{#fullpage_dlg.charset}</label></td>
|
||||
<td><select id="element_script_charset"><option value="">{#not_set}</option></select></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="column1"><label for="element_script_defer">{#fullpage_dlg.defer}</label></td>
|
||||
<td><input type="checkbox" id="element_script_defer" name="element_script_defer" class="checkbox" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div id="script_value_panel" class="panel">
|
||||
<textarea id="element_script_value"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<input type="button" id="script_updateelement" class="updateElementButton" name="update" value="{#update}" onclick="updateElement();" />
|
||||
</fieldset>
|
||||
|
||||
<fieldset id="style_element">
|
||||
<legend>{#fullpage_dlg.style_element}</legend>
|
||||
|
||||
<div class="tabs">
|
||||
<ul>
|
||||
<li id="style_props_tab" class="current"><span><a href="javascript:mcTabs.displayTab('style_props_tab','style_props_panel');" onmousedown="return false;">{#fullpage_dlg.properties}</a></span></li>
|
||||
<li id="style_value_tab"><span><a href="javascript:mcTabs.displayTab('style_value_tab','style_value_panel');" onmousedown="return false;">{#fullpage_dlg.value}</a></span></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<br style="clear: both" />
|
||||
|
||||
<div class="panel_wrapper">
|
||||
<div id="style_props_panel" class="panel current">
|
||||
<table border="0" cellpadding="4" cellspacing="0">
|
||||
<tr>
|
||||
<td class="column1"><label for="element_style_type">{#fullpage_dlg.type}</label></td>
|
||||
<td><select id="element_style_type">
|
||||
<option value="text/css">text/css</option>
|
||||
</select></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="column1"><label for="element_style_media">{#fullpage_dlg.media}</label></td>
|
||||
<td><select id="element_style_media"></select></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div id="style_value_panel" class="panel">
|
||||
<textarea id="element_style_value"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<input type="button" id="style_updateelement" class="updateElementButton" name="update" value="{#update}" onclick="updateElement();" />
|
||||
</fieldset>
|
||||
|
||||
<fieldset id="base_element">
|
||||
<legend>{#fullpage_dlg.base_element}</legend>
|
||||
|
||||
<table border="0" cellpadding="4" cellspacing="0">
|
||||
<tr>
|
||||
<td class="column1"><label for="element_base_href">{#fullpage_dlg.href}</label></td>
|
||||
<td><input id="element_base_href" name="element_base_href" type="text" value="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="column1"><label for="element_base_target">{#fullpage_dlg.target}</label></td>
|
||||
<td><input id="element_base_target" name="element_base_target" type="text" value="" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<input type="button" id="base_updateelement" class="updateElementButton" name="update" value="{#update}" onclick="updateElement();" />
|
||||
</fieldset>
|
||||
|
||||
<fieldset id="link_element">
|
||||
<legend>{#fullpage_dlg.link_element}</legend>
|
||||
|
||||
<div class="tabs">
|
||||
<ul>
|
||||
<li id="link_general_tab" class="current"><span><a href="javascript:mcTabs.displayTab('link_general_tab','link_general_panel');" onmousedown="return false;">{#fullpage_dlg.general_props}</a></span></li>
|
||||
<li id="link_advanced_tab"><span><a href="javascript:mcTabs.displayTab('link_advanced_tab','link_advanced_panel');" onmousedown="return false;">{#fullpage_dlg.advanced_props}</a></span></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<br style="clear: both" />
|
||||
|
||||
<div class="panel_wrapper">
|
||||
<div id="link_general_panel" class="panel current">
|
||||
<table border="0" cellpadding="4" cellspacing="0">
|
||||
<tr>
|
||||
<td class="column1"><label for="element_link_href">{#fullpage_dlg.href}</label></td>
|
||||
<td><table border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td><input id="element_link_href" name="element_link_href" type="text" value="" /></td>
|
||||
<td id="link_href_pickcontainer"> </td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="column1"><label for="element_link_title">{#fullpage_dlg.meta_title}</label></td>
|
||||
<td><input id="element_link_title" name="element_link_title" type="text" value="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="column1"><label for="element_link_type">{#fullpage_dlg.type}</label></td>
|
||||
<td><select id="element_link_type" name="element_link_type">
|
||||
<option value="text/css">text/css</option>
|
||||
<option value="text/javascript">text/javascript</option>
|
||||
</select></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="column1"><label for="element_link_media">{#fullpage_dlg.media}</label></td>
|
||||
<td><select id="element_link_media" name="element_link_media"></select></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="element_style_rel">{#fullpage_dlg.rel}</label></td>
|
||||
<td><select id="element_style_rel" name="element_style_rel">
|
||||
<option value="">{#not_set}</option>
|
||||
<option value="stylesheet">Stylesheet</option>
|
||||
<option value="alternate">Alternate</option>
|
||||
<option value="designates">Designates</option>
|
||||
<option value="start">Start</option>
|
||||
<option value="next">Next</option>
|
||||
<option value="prev">Prev</option>
|
||||
<option value="contents">Contents</option>
|
||||
<option value="index">Index</option>
|
||||
<option value="glossary">Glossary</option>
|
||||
<option value="copyright">Copyright</option>
|
||||
<option value="chapter">Chapter</option>
|
||||
<option value="subsection">Subsection</option>
|
||||
<option value="appendix">Appendix</option>
|
||||
<option value="help">Help</option>
|
||||
<option value="bookmark">Bookmark</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div id="link_advanced_panel" class="panel">
|
||||
<table border="0" cellpadding="4" cellspacing="0">
|
||||
<tr>
|
||||
<td class="column1"><label for="element_link_charset">{#fullpage_dlg.charset}</label></td>
|
||||
<td><select id="element_link_charset"><option value="">{#not_set}</option></select></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="column1"><label for="element_link_hreflang">{#fullpage_dlg.hreflang}</label></td>
|
||||
<td><input id="element_link_hreflang" name="element_link_hreflang" type="text" value="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="column1"><label for="element_link_target">{#fullpage_dlg.target}</label></td>
|
||||
<td><input id="element_link_target" name="element_link_target" type="text" value="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="element_style_rev">{#fullpage_dlg.rev}</label></td>
|
||||
<td><select id="element_style_rev" name="element_style_rev">
|
||||
<option value="">{#not_set}</option>
|
||||
<option value="alternate">Alternate</option>
|
||||
<option value="designates">Designates</option>
|
||||
<option value="stylesheet">Stylesheet</option>
|
||||
<option value="start">Start</option>
|
||||
<option value="next">Next</option>
|
||||
<option value="prev">Prev</option>
|
||||
<option value="contents">Contents</option>
|
||||
<option value="index">Index</option>
|
||||
<option value="glossary">Glossary</option>
|
||||
<option value="copyright">Copyright</option>
|
||||
<option value="chapter">Chapter</option>
|
||||
<option value="subsection">Subsection</option>
|
||||
<option value="appendix">Appendix</option>
|
||||
<option value="help">Help</option>
|
||||
<option value="bookmark">Bookmark</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<input type="button" id="link_updateelement" class="updateElementButton" name="update" value="{#update}" onclick="updateElement();" />
|
||||
</fieldset>
|
||||
|
||||
<fieldset id="comment_element">
|
||||
<legend>{#fullpage_dlg.comment_element}</legend>
|
||||
|
||||
<textarea id="element_comment_value"></textarea>
|
||||
|
||||
<input type="button" id="comment_updateelement" class="updateElementButton" name="update" value="{#update}" onclick="updateElement();" />
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mceActionPanel">
|
||||
<div style="float: left">
|
||||
<input type="submit" id="insert" name="update" value="{#update}" />
|
||||
</div>
|
||||
|
||||
<div style="float: right">
|
||||
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
|
||||
</div>
|
||||
<input type="submit" id="insert" name="update" value="{#update}" />
|
||||
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
|
||||
</div>
|
||||
</form>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -1,461 +1,232 @@
|
|||
tinyMCEPopup.requireLangPack();
|
||||
/**
|
||||
* fullpage.js
|
||||
*
|
||||
* Copyright 2009, Moxiecode Systems AB
|
||||
* Released under LGPL License.
|
||||
*
|
||||
* License: http://tinymce.moxiecode.com/license
|
||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
||||
*/
|
||||
|
||||
var doc;
|
||||
(function() {
|
||||
tinyMCEPopup.requireLangPack();
|
||||
|
||||
var defaultDocTypes =
|
||||
'XHTML 1.0 Transitional=<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">,' +
|
||||
'XHTML 1.0 Frameset=<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">,' +
|
||||
'XHTML 1.0 Strict=<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">,' +
|
||||
'XHTML 1.1=<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">,' +
|
||||
'HTML 4.01 Transitional=<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">,' +
|
||||
'HTML 4.01 Strict=<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">,' +
|
||||
'HTML 4.01 Frameset=<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">';
|
||||
var defaultDocTypes =
|
||||
'XHTML 1.0 Transitional=<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">,' +
|
||||
'XHTML 1.0 Frameset=<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">,' +
|
||||
'XHTML 1.0 Strict=<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">,' +
|
||||
'XHTML 1.1=<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">,' +
|
||||
'HTML 4.01 Transitional=<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">,' +
|
||||
'HTML 4.01 Strict=<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">,' +
|
||||
'HTML 4.01 Frameset=<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">';
|
||||
|
||||
var defaultEncodings =
|
||||
'Western european (iso-8859-1)=iso-8859-1,' +
|
||||
'Central European (iso-8859-2)=iso-8859-2,' +
|
||||
'Unicode (UTF-8)=utf-8,' +
|
||||
'Chinese traditional (Big5)=big5,' +
|
||||
'Cyrillic (iso-8859-5)=iso-8859-5,' +
|
||||
'Japanese (iso-2022-jp)=iso-2022-jp,' +
|
||||
'Greek (iso-8859-7)=iso-8859-7,' +
|
||||
'Korean (iso-2022-kr)=iso-2022-kr,' +
|
||||
'ASCII (us-ascii)=us-ascii';
|
||||
var defaultEncodings =
|
||||
'Western european (iso-8859-1)=iso-8859-1,' +
|
||||
'Central European (iso-8859-2)=iso-8859-2,' +
|
||||
'Unicode (UTF-8)=utf-8,' +
|
||||
'Chinese traditional (Big5)=big5,' +
|
||||
'Cyrillic (iso-8859-5)=iso-8859-5,' +
|
||||
'Japanese (iso-2022-jp)=iso-2022-jp,' +
|
||||
'Greek (iso-8859-7)=iso-8859-7,' +
|
||||
'Korean (iso-2022-kr)=iso-2022-kr,' +
|
||||
'ASCII (us-ascii)=us-ascii';
|
||||
|
||||
var defaultMediaTypes =
|
||||
'all=all,' +
|
||||
'screen=screen,' +
|
||||
'print=print,' +
|
||||
'tty=tty,' +
|
||||
'tv=tv,' +
|
||||
'projection=projection,' +
|
||||
'handheld=handheld,' +
|
||||
'braille=braille,' +
|
||||
'aural=aural';
|
||||
var defaultFontNames = 'Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;WingDings=wingdings';
|
||||
var defaultFontSizes = '10px,11px,12px,13px,14px,15px,16px';
|
||||
|
||||
var defaultFontNames = 'Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;WingDings=wingdings';
|
||||
var defaultFontSizes = '10px,11px,12px,13px,14px,15px,16px';
|
||||
function setVal(id, value) {
|
||||
var elm = document.getElementById(id);
|
||||
|
||||
function init() {
|
||||
var f = document.forms['fullpage'], el = f.elements, e, i, p, doctypes, encodings, mediaTypes, fonts, ed = tinyMCEPopup.editor, dom = tinyMCEPopup.dom, style;
|
||||
if (elm) {
|
||||
value = value || '';
|
||||
|
||||
// Setup doctype select box
|
||||
doctypes = ed.getParam("fullpage_doctypes", defaultDocTypes).split(',');
|
||||
for (i=0; i<doctypes.length; i++) {
|
||||
p = doctypes[i].split('=');
|
||||
|
||||
if (p.length > 1)
|
||||
addSelectValue(f, 'doctypes', p[0], p[1]);
|
||||
}
|
||||
|
||||
// Setup fonts select box
|
||||
fonts = ed.getParam("fullpage_fonts", defaultFontNames).split(';');
|
||||
for (i=0; i<fonts.length; i++) {
|
||||
p = fonts[i].split('=');
|
||||
|
||||
if (p.length > 1)
|
||||
addSelectValue(f, 'fontface', p[0], p[1]);
|
||||
}
|
||||
|
||||
// Setup fontsize select box
|
||||
fonts = ed.getParam("fullpage_fontsizes", defaultFontSizes).split(',');
|
||||
for (i=0; i<fonts.length; i++)
|
||||
addSelectValue(f, 'fontsize', fonts[i], fonts[i]);
|
||||
|
||||
// Setup mediatype select boxs
|
||||
mediaTypes = ed.getParam("fullpage_media_types", defaultMediaTypes).split(',');
|
||||
for (i=0; i<mediaTypes.length; i++) {
|
||||
p = mediaTypes[i].split('=');
|
||||
|
||||
if (p.length > 1) {
|
||||
addSelectValue(f, 'element_style_media', p[0], p[1]);
|
||||
addSelectValue(f, 'element_link_media', p[0], p[1]);
|
||||
}
|
||||
}
|
||||
|
||||
// Setup encodings select box
|
||||
encodings = ed.getParam("fullpage_encodings", defaultEncodings).split(',');
|
||||
for (i=0; i<encodings.length; i++) {
|
||||
p = encodings[i].split('=');
|
||||
|
||||
if (p.length > 1) {
|
||||
addSelectValue(f, 'docencoding', p[0], p[1]);
|
||||
addSelectValue(f, 'element_script_charset', p[0], p[1]);
|
||||
addSelectValue(f, 'element_link_charset', p[0], p[1]);
|
||||
}
|
||||
}
|
||||
|
||||
document.getElementById('bgcolor_pickcontainer').innerHTML = getColorPickerHTML('bgcolor_pick','bgcolor');
|
||||
document.getElementById('link_color_pickcontainer').innerHTML = getColorPickerHTML('link_color_pick','link_color');
|
||||
//document.getElementById('hover_color_pickcontainer').innerHTML = getColorPickerHTML('hover_color_pick','hover_color');
|
||||
document.getElementById('visited_color_pickcontainer').innerHTML = getColorPickerHTML('visited_color_pick','visited_color');
|
||||
document.getElementById('active_color_pickcontainer').innerHTML = getColorPickerHTML('active_color_pick','active_color');
|
||||
document.getElementById('textcolor_pickcontainer').innerHTML = getColorPickerHTML('textcolor_pick','textcolor');
|
||||
document.getElementById('stylesheet_browsercontainer').innerHTML = getBrowserHTML('stylesheetbrowser','stylesheet','file','fullpage');
|
||||
document.getElementById('link_href_pickcontainer').innerHTML = getBrowserHTML('link_href_browser','element_link_href','file','fullpage');
|
||||
document.getElementById('script_src_pickcontainer').innerHTML = getBrowserHTML('script_src_browser','element_script_src','file','fullpage');
|
||||
document.getElementById('bgimage_pickcontainer').innerHTML = getBrowserHTML('bgimage_browser','bgimage','image','fullpage');
|
||||
|
||||
// Resize some elements
|
||||
if (isVisible('stylesheetbrowser'))
|
||||
document.getElementById('stylesheet').style.width = '220px';
|
||||
|
||||
if (isVisible('link_href_browser'))
|
||||
document.getElementById('element_link_href').style.width = '230px';
|
||||
|
||||
if (isVisible('bgimage_browser'))
|
||||
document.getElementById('bgimage').style.width = '210px';
|
||||
|
||||
// Add iframe
|
||||
dom.add(document.body, 'iframe', {id : 'documentIframe', src : 'javascript:""', style : {display : 'none'}});
|
||||
doc = dom.get('documentIframe').contentWindow.document;
|
||||
h = tinyMCEPopup.getWindowArg('head_html');
|
||||
|
||||
// Preprocess the HTML disable scripts and urls
|
||||
h = h.replace(/<script>/gi, '<script type="text/javascript">');
|
||||
h = h.replace(/type=([\"\'])?/gi, 'type=$1-mce-');
|
||||
h = h.replace(/(src=|href=)/g, 'mce_$1');
|
||||
|
||||
// Write in the content in the iframe
|
||||
doc.write(h + '</body></html>');
|
||||
doc.close();
|
||||
|
||||
// Parse xml and doctype
|
||||
xmlVer = getReItem(/<\?\s*?xml.*?version\s*?=\s*?"(.*?)".*?\?>/gi, h, 1);
|
||||
xmlEnc = getReItem(/<\?\s*?xml.*?encoding\s*?=\s*?"(.*?)".*?\?>/gi, h, 1);
|
||||
docType = getReItem(/<\!DOCTYPE.*?>/gi, h.replace(/\n/g, ''), 0).replace(/ +/g, ' ');
|
||||
f.langcode.value = getReItem(/lang="(.*?)"/gi, h, 1);
|
||||
|
||||
// Parse title
|
||||
if (e = doc.getElementsByTagName('title')[0])
|
||||
el.metatitle.value = e.textContent || e.text;
|
||||
|
||||
// Parse meta
|
||||
tinymce.each(doc.getElementsByTagName('meta'), function(n) {
|
||||
var na = (n.getAttribute('name', 2) || '').toLowerCase(), va = n.getAttribute('content', 2), eq = n.getAttribute('httpEquiv', 2) || '';
|
||||
|
||||
e = el['meta' + na];
|
||||
|
||||
if (na == 'robots') {
|
||||
selectByValue(f, 'metarobots', tinymce.trim(va), true, true);
|
||||
return;
|
||||
}
|
||||
|
||||
switch (eq.toLowerCase()) {
|
||||
case "content-type":
|
||||
tmp = getReItem(/charset\s*=\s*(.*)\s*/gi, va, 1);
|
||||
|
||||
// Override XML encoding
|
||||
if (tmp != "")
|
||||
xmlEnc = tmp;
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
if (e)
|
||||
e.value = va;
|
||||
});
|
||||
|
||||
selectByValue(f, 'doctypes', docType, true, true);
|
||||
selectByValue(f, 'docencoding', xmlEnc, true, true);
|
||||
selectByValue(f, 'langdir', doc.body.getAttribute('dir', 2) || '', true, true);
|
||||
|
||||
if (xmlVer != '')
|
||||
el.xml_pi.checked = true;
|
||||
|
||||
// Parse appearance
|
||||
|
||||
// Parse primary stylesheet
|
||||
tinymce.each(doc.getElementsByTagName("link"), function(l) {
|
||||
var m = l.getAttribute('media', 2) || '', t = l.getAttribute('type', 2) || '';
|
||||
|
||||
if (t == "-mce-text/css" && (m == "" || m == "screen" || m == "all") && (l.getAttribute('rel', 2) || '') == "stylesheet") {
|
||||
f.stylesheet.value = l.getAttribute('mce_href', 2) || '';
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
||||
// Get from style elements
|
||||
tinymce.each(doc.getElementsByTagName("style"), function(st) {
|
||||
var tmp = parseStyleElement(st);
|
||||
|
||||
for (x=0; x<tmp.length; x++) {
|
||||
if (tmp[x].rule.indexOf('a:visited') != -1 && tmp[x].data['color'])
|
||||
f.visited_color.value = tmp[x].data['color'];
|
||||
|
||||
if (tmp[x].rule.indexOf('a:link') != -1 && tmp[x].data['color'])
|
||||
f.link_color.value = tmp[x].data['color'];
|
||||
|
||||
if (tmp[x].rule.indexOf('a:active') != -1 && tmp[x].data['color'])
|
||||
f.active_color.value = tmp[x].data['color'];
|
||||
}
|
||||
});
|
||||
|
||||
f.textcolor.value = tinyMCEPopup.dom.getAttrib(doc.body, "text");
|
||||
f.active_color.value = tinyMCEPopup.dom.getAttrib(doc.body, "alink");
|
||||
f.link_color.value = tinyMCEPopup.dom.getAttrib(doc.body, "link");
|
||||
f.visited_color.value = tinyMCEPopup.dom.getAttrib(doc.body, "vlink");
|
||||
f.bgcolor.value = tinyMCEPopup.dom.getAttrib(doc.body, "bgcolor");
|
||||
f.bgimage.value = tinyMCEPopup.dom.getAttrib(doc.body, "background");
|
||||
|
||||
// Get from style info
|
||||
style = tinyMCEPopup.dom.parseStyle(tinyMCEPopup.dom.getAttrib(doc.body, 'style'));
|
||||
|
||||
if (style['font-family'])
|
||||
selectByValue(f, 'fontface', style['font-family'], true, true);
|
||||
else
|
||||
selectByValue(f, 'fontface', ed.getParam("fullpage_default_fontface", ""), true, true);
|
||||
|
||||
if (style['font-size'])
|
||||
selectByValue(f, 'fontsize', style['font-size'], true, true);
|
||||
else
|
||||
selectByValue(f, 'fontsize', ed.getParam("fullpage_default_fontsize", ""), true, true);
|
||||
|
||||
if (style['color'])
|
||||
f.textcolor.value = convertRGBToHex(style['color']);
|
||||
|
||||
if (style['background-image'])
|
||||
f.bgimage.value = style['background-image'].replace(new RegExp("url\\('?([^']*)'?\\)", 'gi'), "$1");
|
||||
|
||||
if (style['background-color'])
|
||||
f.bgcolor.value = style['background-color'];
|
||||
|
||||
if (style['margin']) {
|
||||
tmp = style['margin'].replace(/[^0-9 ]/g, '');
|
||||
tmp = tmp.split(/ +/);
|
||||
f.topmargin.value = tmp.length > 0 ? tmp[0] : '';
|
||||
f.rightmargin.value = tmp.length > 1 ? tmp[1] : tmp[0];
|
||||
f.bottommargin.value = tmp.length > 2 ? tmp[2] : tmp[0];
|
||||
f.leftmargin.value = tmp.length > 3 ? tmp[3] : tmp[0];
|
||||
}
|
||||
|
||||
if (style['margin-left'])
|
||||
f.leftmargin.value = style['margin-left'].replace(/[^0-9]/g, '');
|
||||
|
||||
if (style['margin-right'])
|
||||
f.rightmargin.value = style['margin-right'].replace(/[^0-9]/g, '');
|
||||
|
||||
if (style['margin-top'])
|
||||
f.topmargin.value = style['margin-top'].replace(/[^0-9]/g, '');
|
||||
|
||||
if (style['margin-bottom'])
|
||||
f.bottommargin.value = style['margin-bottom'].replace(/[^0-9]/g, '');
|
||||
|
||||
f.style.value = tinyMCEPopup.dom.serializeStyle(style);
|
||||
|
||||
// Update colors
|
||||
updateColor('textcolor_pick', 'textcolor');
|
||||
updateColor('bgcolor_pick', 'bgcolor');
|
||||
updateColor('visited_color_pick', 'visited_color');
|
||||
updateColor('active_color_pick', 'active_color');
|
||||
updateColor('link_color_pick', 'link_color');
|
||||
}
|
||||
|
||||
function getReItem(r, s, i) {
|
||||
var c = r.exec(s);
|
||||
|
||||
if (c && c.length > i)
|
||||
return c[i];
|
||||
|
||||
return '';
|
||||
}
|
||||
|
||||
function updateAction() {
|
||||
var f = document.forms[0], nl, i, h, v, s, head, html, l, tmp, addlink = true, ser;
|
||||
|
||||
head = doc.getElementsByTagName('head')[0];
|
||||
|
||||
// Fix scripts without a type
|
||||
nl = doc.getElementsByTagName('script');
|
||||
for (i=0; i<nl.length; i++) {
|
||||
if (tinyMCEPopup.dom.getAttrib(nl[i], 'mce_type') == '')
|
||||
nl[i].setAttribute('mce_type', 'text/javascript');
|
||||
}
|
||||
|
||||
// Get primary stylesheet
|
||||
nl = doc.getElementsByTagName("link");
|
||||
for (i=0; i<nl.length; i++) {
|
||||
l = nl[i];
|
||||
|
||||
tmp = tinyMCEPopup.dom.getAttrib(l, 'media');
|
||||
|
||||
if (tinyMCEPopup.dom.getAttrib(l, 'mce_type') == "text/css" && (tmp == "" || tmp == "screen" || tmp == "all") && tinyMCEPopup.dom.getAttrib(l, 'rel') == "stylesheet") {
|
||||
addlink = false;
|
||||
|
||||
if (f.stylesheet.value == '')
|
||||
l.parentNode.removeChild(l);
|
||||
if (elm.nodeName == "SELECT")
|
||||
selectByValue(document.forms[0], id, value);
|
||||
else if (elm.type == "checkbox")
|
||||
elm.checked = !!value;
|
||||
else
|
||||
l.setAttribute('mce_href', f.stylesheet.value);
|
||||
|
||||
break;
|
||||
elm.value = value;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
// Add new link
|
||||
if (f.stylesheet.value != '') {
|
||||
l = doc.createElement('link');
|
||||
function getVal(id) {
|
||||
var elm = document.getElementById(id);
|
||||
|
||||
l.setAttribute('type', 'text/css');
|
||||
l.setAttribute('mce_href', f.stylesheet.value);
|
||||
l.setAttribute('rel', 'stylesheet');
|
||||
if (elm.nodeName == "SELECT")
|
||||
return elm.options[elm.selectedIndex].value;
|
||||
|
||||
head.appendChild(l);
|
||||
}
|
||||
if (elm.type == "checkbox")
|
||||
return elm.checked;
|
||||
|
||||
setMeta(head, 'keywords', f.metakeywords.value);
|
||||
setMeta(head, 'description', f.metadescription.value);
|
||||
setMeta(head, 'author', f.metaauthor.value);
|
||||
setMeta(head, 'copyright', f.metacopyright.value);
|
||||
setMeta(head, 'robots', getSelectValue(f, 'metarobots'));
|
||||
setMeta(head, 'Content-Type', getSelectValue(f, 'docencoding'));
|
||||
return elm.value;
|
||||
};
|
||||
|
||||
doc.body.dir = getSelectValue(f, 'langdir');
|
||||
doc.body.style.cssText = f.style.value;
|
||||
window.FullPageDialog = {
|
||||
changedStyle : function() {
|
||||
var val, styles = tinyMCEPopup.editor.dom.parseStyle(getVal('style'));
|
||||
|
||||
doc.body.setAttribute('vLink', f.visited_color.value);
|
||||
doc.body.setAttribute('link', f.link_color.value);
|
||||
doc.body.setAttribute('text', f.textcolor.value);
|
||||
doc.body.setAttribute('aLink', f.active_color.value);
|
||||
setVal('fontface', styles['font-face']);
|
||||
setVal('fontsize', styles['font-size']);
|
||||
setVal('textcolor', styles['color']);
|
||||
|
||||
doc.body.style.fontFamily = getSelectValue(f, 'fontface');
|
||||
doc.body.style.fontSize = getSelectValue(f, 'fontsize');
|
||||
doc.body.style.backgroundColor = f.bgcolor.value;
|
||||
|
||||
if (f.leftmargin.value != '')
|
||||
doc.body.style.marginLeft = f.leftmargin.value + 'px';
|
||||
|
||||
if (f.rightmargin.value != '')
|
||||
doc.body.style.marginRight = f.rightmargin.value + 'px';
|
||||
|
||||
if (f.bottommargin.value != '')
|
||||
doc.body.style.marginBottom = f.bottommargin.value + 'px';
|
||||
|
||||
if (f.topmargin.value != '')
|
||||
doc.body.style.marginTop = f.topmargin.value + 'px';
|
||||
|
||||
html = doc.getElementsByTagName('html')[0];
|
||||
html.setAttribute('lang', f.langcode.value);
|
||||
html.setAttribute('xml:lang', f.langcode.value);
|
||||
|
||||
if (f.bgimage.value != '')
|
||||
doc.body.style.backgroundImage = "url('" + f.bgimage.value + "')";
|
||||
else
|
||||
doc.body.style.backgroundImage = '';
|
||||
|
||||
ser = tinyMCEPopup.editor.plugins.fullpage._createSerializer();
|
||||
ser.setRules('-title,meta[http-equiv|name|content],base[href|target],link[href|rel|type|title|media],style[type],script[type|language|src],html[lang|xml::lang|xmlns],body[style|dir|vlink|link|text|alink],head');
|
||||
|
||||
h = ser.serialize(doc.documentElement);
|
||||
h = h.substring(0, h.lastIndexOf('</body>'));
|
||||
|
||||
if (h.indexOf('<title>') == -1)
|
||||
h = h.replace(/<head.*?>/, '$&\n' + '<title>' + tinyMCEPopup.dom.encode(f.metatitle.value) + '</title>');
|
||||
else
|
||||
h = h.replace(/<title>(.*?)<\/title>/, '<title>' + tinyMCEPopup.dom.encode(f.metatitle.value) + '</title>');
|
||||
|
||||
if ((v = getSelectValue(f, 'doctypes')) != '')
|
||||
h = v + '\n' + h;
|
||||
|
||||
if (f.xml_pi.checked) {
|
||||
s = '<?xml version="1.0"';
|
||||
|
||||
if ((v = getSelectValue(f, 'docencoding')) != '')
|
||||
s += ' encoding="' + v + '"';
|
||||
|
||||
s += '?>\n';
|
||||
h = s + h;
|
||||
}
|
||||
|
||||
h = h.replace(/type=\"\-mce\-/gi, 'type="');
|
||||
|
||||
tinyMCEPopup.editor.plugins.fullpage.head = h;
|
||||
tinyMCEPopup.editor.plugins.fullpage._setBodyAttribs(tinyMCEPopup.editor, {});
|
||||
tinyMCEPopup.close();
|
||||
}
|
||||
|
||||
function changedStyleField(field) {
|
||||
}
|
||||
|
||||
function setMeta(he, k, v) {
|
||||
var nl, i, m;
|
||||
|
||||
nl = he.getElementsByTagName('meta');
|
||||
for (i=0; i<nl.length; i++) {
|
||||
if (k == 'Content-Type' && tinyMCEPopup.dom.getAttrib(nl[i], 'http-equiv') == k) {
|
||||
if (v == '')
|
||||
nl[i].parentNode.removeChild(nl[i]);
|
||||
if (val = styles['background-image'])
|
||||
setVal('bgimage', val.replace(new RegExp("url\\('?([^']*)'?\\)", 'gi'), "$1"));
|
||||
else
|
||||
nl[i].setAttribute('content', "text/html; charset=" + v);
|
||||
setVal('bgimage', '');
|
||||
|
||||
return;
|
||||
}
|
||||
setVal('bgcolor', styles['background-color']);
|
||||
|
||||
if (tinyMCEPopup.dom.getAttrib(nl[i], 'name') == k) {
|
||||
if (v == '')
|
||||
nl[i].parentNode.removeChild(nl[i]);
|
||||
// Reset margin form elements
|
||||
setVal('topmargin', '');
|
||||
setVal('rightmargin', '');
|
||||
setVal('bottommargin', '');
|
||||
setVal('leftmargin', '');
|
||||
|
||||
// Expand margin
|
||||
if (val = styles['margin']) {
|
||||
val = val.split(' ');
|
||||
styles['margin-top'] = val[0] || '';
|
||||
styles['margin-right'] = val[1] || val[0] || '';
|
||||
styles['margin-bottom'] = val[2] || val[0] || '';
|
||||
styles['margin-left'] = val[3] || val[0] || '';
|
||||
}
|
||||
|
||||
if (val = styles['margin-top'])
|
||||
setVal('topmargin', val.replace(/px/, ''));
|
||||
|
||||
if (val = styles['margin-right'])
|
||||
setVal('rightmargin', val.replace(/px/, ''));
|
||||
|
||||
if (val = styles['margin-bottom'])
|
||||
setVal('bottommargin', val.replace(/px/, ''));
|
||||
|
||||
if (val = styles['margin-left'])
|
||||
setVal('leftmargin', val.replace(/px/, ''));
|
||||
|
||||
updateColor('bgcolor_pick', 'bgcolor');
|
||||
updateColor('textcolor_pick', 'textcolor');
|
||||
},
|
||||
|
||||
changedStyleProp : function() {
|
||||
var val, dom = tinyMCEPopup.editor.dom, styles = dom.parseStyle(getVal('style'));
|
||||
|
||||
styles['font-face'] = getVal('fontface');
|
||||
styles['font-size'] = getVal('fontsize');
|
||||
styles['color'] = getVal('textcolor');
|
||||
styles['background-color'] = getVal('bgcolor');
|
||||
|
||||
if (val = getVal('bgimage'))
|
||||
styles['background-image'] = "url('" + val + "')";
|
||||
else
|
||||
nl[i].setAttribute('content', v);
|
||||
return;
|
||||
styles['background-image'] = '';
|
||||
|
||||
delete styles['margin'];
|
||||
|
||||
if (val = getVal('topmargin'))
|
||||
styles['margin-top'] = val + "px";
|
||||
else
|
||||
styles['margin-top'] = '';
|
||||
|
||||
if (val = getVal('rightmargin'))
|
||||
styles['margin-right'] = val + "px";
|
||||
else
|
||||
styles['margin-right'] = '';
|
||||
|
||||
if (val = getVal('bottommargin'))
|
||||
styles['margin-bottom'] = val + "px";
|
||||
else
|
||||
styles['margin-bottom'] = '';
|
||||
|
||||
if (val = getVal('leftmargin'))
|
||||
styles['margin-left'] = val + "px";
|
||||
else
|
||||
styles['margin-left'] = '';
|
||||
|
||||
// Serialize, parse and reserialize this will compress redundant styles
|
||||
setVal('style', dom.serializeStyle(dom.parseStyle(dom.serializeStyle(styles))));
|
||||
this.changedStyle();
|
||||
},
|
||||
|
||||
update : function() {
|
||||
var data = {};
|
||||
|
||||
tinymce.each(tinyMCEPopup.dom.select('select,input,textarea'), function(node) {
|
||||
data[node.id] = getVal(node.id);
|
||||
});
|
||||
|
||||
tinyMCEPopup.editor.plugins.fullpage._dataToHtml(data);
|
||||
tinyMCEPopup.close();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
function init() {
|
||||
var form = document.forms[0], i, item, list, editor = tinyMCEPopup.editor;
|
||||
|
||||
if (v == '')
|
||||
return;
|
||||
// Setup doctype select box
|
||||
list = editor.getParam("fullpage_doctypes", defaultDocTypes).split(',');
|
||||
for (i = 0; i < list.length; i++) {
|
||||
item = list[i].split('=');
|
||||
|
||||
m = doc.createElement('meta');
|
||||
if (item.length > 1)
|
||||
addSelectValue(form, 'doctype', item[0], item[1]);
|
||||
}
|
||||
|
||||
if (k == 'Content-Type')
|
||||
m.httpEquiv = k;
|
||||
else
|
||||
m.setAttribute('name', k);
|
||||
// Setup fonts select box
|
||||
list = editor.getParam("fullpage_fonts", defaultFontNames).split(';');
|
||||
for (i = 0; i < list.length; i++) {
|
||||
item = list[i].split('=');
|
||||
|
||||
m.setAttribute('content', v);
|
||||
he.appendChild(m);
|
||||
}
|
||||
if (item.length > 1)
|
||||
addSelectValue(form, 'fontface', item[0], item[1]);
|
||||
}
|
||||
|
||||
function parseStyleElement(e) {
|
||||
var v = e.innerHTML;
|
||||
var p, i, r;
|
||||
// Setup fontsize select box
|
||||
list = editor.getParam("fullpage_fontsizes", defaultFontSizes).split(',');
|
||||
for (i = 0; i < list.length; i++)
|
||||
addSelectValue(form, 'fontsize', list[i], list[i]);
|
||||
|
||||
v = v.replace(/<!--/gi, '');
|
||||
v = v.replace(/-->/gi, '');
|
||||
v = v.replace(/[\n\r]/gi, '');
|
||||
v = v.replace(/\s+/gi, ' ');
|
||||
// Setup encodings select box
|
||||
list = editor.getParam("fullpage_encodings", defaultEncodings).split(',');
|
||||
for (i = 0; i < list.length; i++) {
|
||||
item = list[i].split('=');
|
||||
|
||||
r = [];
|
||||
p = v.split(/{|}/);
|
||||
if (item.length > 1)
|
||||
addSelectValue(form, 'docencoding', item[0], item[1]);
|
||||
}
|
||||
|
||||
for (i=0; i<p.length; i+=2) {
|
||||
if (p[i] != "")
|
||||
r[r.length] = {rule : tinymce.trim(p[i]), data : tinyMCEPopup.dom.parseStyle(p[i+1])};
|
||||
}
|
||||
// Setup color pickers
|
||||
document.getElementById('bgcolor_pickcontainer').innerHTML = getColorPickerHTML('bgcolor_pick','bgcolor');
|
||||
document.getElementById('link_color_pickcontainer').innerHTML = getColorPickerHTML('link_color_pick','link_color');
|
||||
document.getElementById('visited_color_pickcontainer').innerHTML = getColorPickerHTML('visited_color_pick','visited_color');
|
||||
document.getElementById('active_color_pickcontainer').innerHTML = getColorPickerHTML('active_color_pick','active_color');
|
||||
document.getElementById('textcolor_pickcontainer').innerHTML = getColorPickerHTML('textcolor_pick','textcolor');
|
||||
document.getElementById('stylesheet_browsercontainer').innerHTML = getBrowserHTML('stylesheetbrowser','stylesheet','file','fullpage');
|
||||
document.getElementById('bgimage_pickcontainer').innerHTML = getBrowserHTML('bgimage_browser','bgimage','image','fullpage');
|
||||
|
||||
return r;
|
||||
}
|
||||
// Resize some elements
|
||||
if (isVisible('stylesheetbrowser'))
|
||||
document.getElementById('stylesheet').style.width = '220px';
|
||||
|
||||
function serializeStyleElement(d) {
|
||||
var i, s, st;
|
||||
if (isVisible('link_href_browser'))
|
||||
document.getElementById('element_link_href').style.width = '230px';
|
||||
|
||||
s = '<!--\n';
|
||||
if (isVisible('bgimage_browser'))
|
||||
document.getElementById('bgimage').style.width = '210px';
|
||||
|
||||
for (i=0; i<d.length; i++) {
|
||||
s += d[i].rule + ' {\n';
|
||||
// Update form
|
||||
tinymce.each(tinyMCEPopup.getWindowArg('data'), function(value, key) {
|
||||
setVal(key, value);
|
||||
});
|
||||
|
||||
st = tinyMCE.serializeStyle(d[i].data);
|
||||
FullPageDialog.changedStyle();
|
||||
|
||||
if (st != '')
|
||||
st += ';';
|
||||
// Update colors
|
||||
updateColor('textcolor_pick', 'textcolor');
|
||||
updateColor('bgcolor_pick', 'bgcolor');
|
||||
updateColor('visited_color_pick', 'visited_color');
|
||||
updateColor('active_color_pick', 'active_color');
|
||||
updateColor('link_color_pick', 'link_color');
|
||||
};
|
||||
|
||||
s += st.replace(/;/g, ';\n');
|
||||
s += '}\n';
|
||||
|
||||
if (i != d.length - 1)
|
||||
s += '\n';
|
||||
}
|
||||
|
||||
s += '\n-->';
|
||||
|
||||
return s;
|
||||
}
|
||||
|
||||
tinyMCEPopup.onInit.add(init);
|
||||
tinyMCEPopup.onInit.add(init);
|
||||
})();
|
||||
|
|
|
|||
|
|
@ -1,85 +1 @@
|
|||
tinyMCE.addI18n('ar.fullpage_dlg',{
|
||||
title:"\u062E\u0635\u0627\u0626\u0635 \u0627\u0644\u0645\u0633\u062A\u0646\u062F",
|
||||
meta_tab:"\u0639\u0627\u0645",
|
||||
appearance_tab:"\u0627\u0644\u0645\u0638\u0647\u0631",
|
||||
advanced_tab:"\u0645\u062A\u0642\u062F\u0645",
|
||||
meta_props:"\u0645\u0639\u0644\u0648\u0645\u0627\u062A \u0627\u0636\u0627\u0641\u064A\u0629",
|
||||
langprops:"\u0627\u0644\u0644\u063A\u0629 \u0648\u0627\u0644\u062A\u0634\u0641\u064A\u0631",
|
||||
meta_title:"\u0627\u0644\u0639\u0646\u0648\u0627\u0646",
|
||||
meta_keywords:"\u0643\u0644\u0645\u0627\u062A \u0627\u0644\u0628\u062D\u062B",
|
||||
meta_description:"\u0627\u0644\u0648\u0635\u0641",
|
||||
meta_robots:"\u0639\u0646\u0627\u0643\u0628 \u0645\u062D\u0631\u0643\u0627\u062A \u0627\u0644\u0628\u062D\u062B",
|
||||
doctypes:"Doctype",
|
||||
langcode:"\u0634\u0641\u0631\u0629 \u0627\u0644\u0644\u063A\u0629",
|
||||
langdir:"\u0627\u062A\u062C\u0627\u0647 \u0627\u0644\u0644\u063A\u0629",
|
||||
ltr:"\u064A\u0633\u0627\u0631 to \u064A\u0645\u064A\u0646",
|
||||
rtl:"\u064A\u0645\u064A\u0646 to \u064A\u0633\u0627\u0631",
|
||||
xml_pi:"\u062A\u0635\u0631\u064A\u062D XML",
|
||||
encoding:"\u0645\u064A\u0632 \u0627\u0644\u0623\u062D\u0631\u0641",
|
||||
appearance_bgprops:"\u062E\u0635\u0627\u0626\u0635 \u0627\u0644\u062E\u0644\u0641\u064A\u0629",
|
||||
appearance_marginprops:"\u0647\u0648\u0627\u0645\u0634 \u0627\u0644\u062C\u0633\u0645",
|
||||
appearance_linkprops:"\u0623\u0644\u0648\u0627\u0646 \u0627\u0644\u0631\u0627\u0628\u0637",
|
||||
appearance_textprops:"\u062E\u0635\u0627\u0626\u0635 \u0627\u0644\u0646\u0635",
|
||||
bgcolor:"\u0644\u0648\u0646 \u0627\u0644\u062E\u0644\u0641\u064A\u0629",
|
||||
bgimage:"\u0635\u0648\u0631\u0629 \u0627\u0644\u062E\u0644\u0641\u064A\u0629",
|
||||
left_margin:"\u0627\u0644\u0647\u0627\u0645\u0634 \u0627\u0644\u0623\u064A\u0633\u0631",
|
||||
right_margin:"\u0627\u0644\u0647\u0627\u0645\u0634 \u0627\u0644\u0623\u064A\u0645\u0646",
|
||||
top_margin:"\u0627\u0644\u0647\u0627\u0645\u0634 \u0627\u0644\u0639\u0644\u0648\u064A",
|
||||
bottom_margin:"\u0627\u0644\u0647\u0627\u0645\u0634 \u0627\u0644\u0623\u0633\u0641\u0644",
|
||||
text_color:"\u0644\u0648\u0646 \u0627\u0644\u0646\u0635",
|
||||
font_size:"\u062D\u062C\u0645 \u0627\u0644\u062E\u0637",
|
||||
font_face:"\u0627\u0633\u0645 \u0627\u0644\u062E\u0637",
|
||||
link_color:"\u0644\u0648\u0646 \u0627\u0644\u0631\u0627\u0628\u0637",
|
||||
hover_color:"\u0644\u0648\u0646 \u0627\u0644\u0631\u0627\u0628\u0637 \u0639\u0646\u062F \u0645\u0631\u0648\u0631 \u0627\u0644\u0641\u0623\u0631\u0629",
|
||||
visited_color:"\u0644\u0648\u0646 \u0627\u0644\u0631\u0627\u0628\u0637 \u0627\u0644\u0645\u0639\u0631\u0648\u0636 \u0645\u0646 \u0642\u0628\u0644",
|
||||
active_color:"\u0644\u0648\u0646 \u0627\u0644\u0631\u0627\u0628\u0637 \u0627\u0644\u0646\u0634\u0637r",
|
||||
textcolor:"\u0627\u0644\u0644\u0648\u0646",
|
||||
fontsize:"\u062D\u062C\u0645 \u0627\u0644\u062E\u0637",
|
||||
fontface:"\u0646\u0648\u0639 \u0627\u0644\u062E\u0637",
|
||||
meta_index_follow:"\u062A\u0623\u0634\u064A\u0631 \u0648\u062A\u0627\u0628\u0639 \u0627\u0644\u0631\u0648\u0627\u0628\u0637",
|
||||
meta_index_nofollow:"\u062A\u0623\u0634\u064A\u0631 \u0648\u0644\u0627 \u062A\u062A\u0627\u0628\u0639 \u0627\u0644\u0631\u0648\u0627\u0628\u0637",
|
||||
meta_noindex_follow:"\u0644\u0627 \u062A\u0624\u0634\u0631 \u0648\u062A\u0627\u0628\u0639 \u0627\u0644\u0631\u0648\u0627\u0628\u0637",
|
||||
meta_noindex_nofollow:"\u0644\u0627 \u062A\u0624\u0634\u0631 \u0648\u0644\u0627\u062A\u062A\u0627\u0628\u0639 \u0627\u0644\u0631\u0648\u0627\u0628\u0637",
|
||||
appearance_style:"Stylesheet and style \u062E\u0635\u0627\u0626\u0635",
|
||||
stylesheet:"Stylesheet",
|
||||
style:"\u0627\u0644\u0646\u0645\u0637",
|
||||
author:"\u0627\u0644\u0645\u0624\u0644\u0641",
|
||||
copyright:"\u062D\u0642\u0648\u0642 \u0627\u0644\u0645\u0624\u0644\u0641",
|
||||
add:"\u0627\u0636\u0627\u0641\u0629 \u0639\u0646\u0635\u0631 \u062C\u062F\u064A\u062F",
|
||||
remove:"\u062D\u0630\u0641 \u0627\u0644\u0639\u0646\u0635\u0631 \u0627\u0644\u0645\u062E\u062A\u0627\u0631",
|
||||
moveup:"\u062A\u062D\u0631\u064A\u0643 \u0627\u0644\u0639\u0646\u0635\u0631 \u0627\u0644\u0645\u062E\u062A\u0627\u0631 \u0625\u0644\u0649 \u0627\u0644\u0623\u0639\u0644\u0649",
|
||||
movedown:"\u062A\u062D\u0631\u064A\u0643 \u0627\u0644\u0639\u0646\u0635\u0631 \u0627\u0644\u0645\u062E\u062A\u0627\u0631 \u0625\u0644\u0649 \u0627\u0644\u0623\u0633\u0641\u0644",
|
||||
head_elements:"\u0627\u0644\u0639\u0646\u0627\u0635\u0631 \u0627\u0644\u0631\u0623\u0633\u064A\u0629",
|
||||
info:"\u0645\u0639\u0644\u0648\u0645\u0627\u062A",
|
||||
add_title:"\u0627\u0636\u0627\u0641\u0629 \u0639\u0646\u0635\u0631 \u0639\u0646\u0648\u0627\u0646",
|
||||
add_meta:"\u0627\u0636\u0627\u0641\u0629 \u0639\u0646\u0635\u0631 \u0627\u0636\u0627\u0641\u064A",
|
||||
add_script:"\u0627\u0636\u0627\u0641\u0629 \u0639\u0646\u0635\u0631 \u0633\u0643\u0631\u0628\u062A",
|
||||
add_style:"\u0627\u0636\u0627\u0641\u0629 \u0639\u0646\u0635\u0631 \u062A\u0646\u0633\u064A\u0642",
|
||||
add_link:"\u0627\u0636\u0627\u0641\u0629 \u0639\u0646\u0635\u0631 \u0631\u0627\u0628\u0637",
|
||||
add_base:"\u0627\u0636\u0627\u0641\u0629 \u0639\u0646\u0635\u0631 \u0642\u0627\u0639\u062F\u064A",
|
||||
add_comment:"\u0627\u0636\u0627\u0641\u0629 \u062A\u0639\u0644\u064A\u0642",
|
||||
title_element:"\u0639\u0646\u0648\u0627\u0646",
|
||||
script_element:"\u0633\u0643\u0631\u0628\u062A",
|
||||
style_element:"\u062A\u0646\u0633\u064A\u0642",
|
||||
base_element:"\u0639\u0646\u0635\u0631 \u0642\u0627\u0639\u062F\u064A",
|
||||
link_element:"\u0631\u0627\u0628\u0637",
|
||||
meta_element:"\u0627\u0636\u0627\u0641\u0629",
|
||||
comment_element:"\u062A\u0639\u0644\u064A\u0642",
|
||||
src:"\u0645\u0635\u062F\u0631 src",
|
||||
language:"\u0627\u0644\u0644\u063A\u0629",
|
||||
href:"\u0627\u0644\u0647\u062F\u0641 href",
|
||||
target:"\u0627\u0644\u0645\u0633\u0627\u0631",
|
||||
type:"\u0627\u0644\u0646\u0648\u0639",
|
||||
charset:"\u0645\u062D\u0627\u0631\u0641",
|
||||
defer:"\u0623\u0631\u062C\u0623",
|
||||
media:"\u0648\u0633\u0627\u0626\u0637 \u0645\u062A\u0639\u062F\u062F\u0629",
|
||||
properties:"\u062E\u0635\u0627\u0626\u0635",
|
||||
name:"\u0627\u0633\u0645",
|
||||
value:"\u0627\u0644\u0642\u064A\u0645\u0629",
|
||||
content:"\u0627\u0644\u0645\u062D\u062A\u0648\u0649",
|
||||
rel:"Rel",
|
||||
rev:"Rev",
|
||||
hreflang:"Href lang",
|
||||
general_props:"\u0639\u0627\u0645",
|
||||
advanced_props:"\u0645\u062A\u0642\u062F\u0645"
|
||||
});
|
||||
tinyMCE.addI18n('ar.fullpage_dlg',{title:"Document properties","meta_tab":"\u0639\u0627\u0645","appearance_tab":"Appearance","advanced_tab":"Advanced","meta_props":"Meta information",langprops:"Language and encoding","meta_title":"Title","meta_keywords":"Keywords","meta_description":"Description","meta_robots":"Robots",doctypes:"Doctype",langcode:"Language code",langdir:"Language direction",ltr:"Left to right",rtl:"Right to left","xml_pi":"XML declaration",encoding:"Character encoding","appearance_bgprops":"Background properties","appearance_marginprops":"Body margins","appearance_linkprops":"Link colors","appearance_textprops":"Text properties",bgcolor:"Background color",bgimage:"Background image","left_margin":"Left margin","right_margin":"Right margin","top_margin":"Top margin","bottom_margin":"Bottom margin","text_color":"Text color","font_size":"Font size","font_face":"Font face","link_color":"Link color","hover_color":"Hover color","visited_color":"Visited color","active_color":"Active color",textcolor:"Color",fontsize:"Font size",fontface:"Font family","meta_index_follow":"Index and follow the links","meta_index_nofollow":"Index and don\'t follow the links","meta_noindex_follow":"Do not index but follow the links","meta_noindex_nofollow":"Do not index and don\\\'t follow the links","appearance_style":"Stylesheet and style properties",stylesheet:"Stylesheet",style:"Style",author:"Author",copyright:"Copyright",add:"Add new element",remove:"Remove selected element",moveup:"Move selected element up",movedown:"Move selected element down","head_elements":"Head elements",info:"Information","add_title":"Title element","add_meta":"Meta element","add_script":"Script element","add_style":"Style element","add_link":"Link element","add_base":"Base element","add_comment":"Comment node","title_element":"Title element","script_element":"Script element","style_element":"Style element","base_element":"Base element","link_element":"Link element","meta_element":"Meta element","comment_element":"Comment",src:"Src",language:"Language",href:"Href",target:"Target",type:"Type",charset:"Charset",defer:"Defer",media:"Media",properties:"Properties",name:"Name",value:"Value",content:"Content",rel:"Rel",rev:"Rev",hreflang:"Href lang","general_props":"\u0639\u0627\u0645","advanced_props":"Advanced"});
|
||||
|
|
@ -1,85 +1 @@
|
|||
tinyMCE.addI18n('da.fullpage_dlg',{
|
||||
title:"Dokumentegenskaber",
|
||||
meta_tab:"Generelt",
|
||||
appearance_tab:"Udseende",
|
||||
advanced_tab:"Advanceret",
|
||||
meta_props:"Meta-information",
|
||||
langprops:"Sprog og kodning",
|
||||
meta_title:"Titel",
|
||||
meta_keywords:"N\u00F8gleord",
|
||||
meta_description:"Beskrivelse",
|
||||
meta_robots:"Robots",
|
||||
doctypes:"Doctype",
|
||||
langcode:"Sprogkode",
|
||||
langdir:"Sprogretning",
|
||||
ltr:"Venstre mod h\u00F8jre",
|
||||
rtl:"H\u00F8jre md venstre",
|
||||
xml_pi:"XML declaration",
|
||||
encoding:"Tegns\u00E6t",
|
||||
appearance_bgprops:"Baggrundsegenskaber",
|
||||
appearance_marginprops:"Body margins",
|
||||
appearance_linkprops:"Link farver",
|
||||
appearance_textprops:"Tekstegenskaber",
|
||||
bgcolor:"Baggrundsfarve",
|
||||
bgimage:"Baggrundsbillede",
|
||||
left_margin:"Venstre margin",
|
||||
right_margin:"H\u00F8jre margin",
|
||||
top_margin:"Topmargin",
|
||||
bottom_margin:"Bundmargin",
|
||||
text_color:"Tekstfarve",
|
||||
font_size:"Skriftst\u00F8rrelse",
|
||||
font_face:"Skrifttype",
|
||||
link_color:"Linkfarve",
|
||||
hover_color:"Farve ved aktivering",
|
||||
visited_color:"Farve efter museklik",
|
||||
active_color:"Farve ved museklik",
|
||||
textcolor:"Farve",
|
||||
fontsize:"Skriftst\u00F8rrelse",
|
||||
fontface:"Skrifttype",
|
||||
meta_index_follow:"Indeks og f\u00F8lg links",
|
||||
meta_index_nofollow:"Indeks og f\u00F8lg ikke links",
|
||||
meta_noindex_follow:"Ingen indeks, men f\u00F8lg links",
|
||||
meta_noindex_nofollow:"Ingen indeks og f\u00F8lg ikke links",
|
||||
appearance_style:"Stylesheet og style-egenskaber",
|
||||
stylesheet:"Stylesheet",
|
||||
style:"Style",
|
||||
author:"Forfatter",
|
||||
copyright:"Copyright",
|
||||
add:"Tilf\u00F8j nyt element",
|
||||
remove:"Slet valgte element",
|
||||
moveup:"Flyt valgte element op",
|
||||
movedown:"Flyt valgte element ned",
|
||||
head_elements:"Hovedelement",
|
||||
info:"Information",
|
||||
add_title:"Titelelement",
|
||||
add_meta:"Meta-element",
|
||||
add_script:"Script-element",
|
||||
add_style:"Style-element",
|
||||
add_link:"Link-element",
|
||||
add_base:"Base-element",
|
||||
add_comment:"Kommentar-node",
|
||||
title_element:"Titelelement",
|
||||
script_element:"Script-element",
|
||||
style_element:"Style-element",
|
||||
base_element:"Base-element",
|
||||
link_element:"Link-element",
|
||||
meta_element:"Meta-element",
|
||||
comment_element:"Kommentar",
|
||||
src:"Src",
|
||||
language:"Sprog",
|
||||
href:"Href",
|
||||
target:"Destination",
|
||||
type:"Type",
|
||||
charset:"Tegns\u00E6t",
|
||||
defer:"Defer",
|
||||
media:"Media",
|
||||
properties:"Egenskaber",
|
||||
name:"Navn",
|
||||
value:"V\u00E6rdi",
|
||||
content:"Indhold",
|
||||
rel:"Rel",
|
||||
rev:"Rev",
|
||||
hreflang:"Href lang",
|
||||
general_props:"Generelt",
|
||||
advanced_props:"Advanceret"
|
||||
});
|
||||
tinyMCE.addI18n('da.fullpage_dlg',{title:"Dokumentegenskaber",meta_tab:"Generelt",appearance_tab:"Udseende",advanced_tab:"Advanceret",meta_props:"Meta-information",langprops:"Sprog og kodning",meta_title:"Titel",meta_keywords:"N\u00f8gleord",meta_description:"Beskrivelse",meta_robots:"Robots",doctypes:"Doctype",langcode:"Sprogkode",langdir:"Sprogretning",ltr:"Venstre mod h\u00f8jre",rtl:"H\u00f8jre md venstre",xml_pi:"XML declaration",encoding:"Tegns\u00e6t",appearance_bgprops:"Baggrundsegenskaber",appearance_marginprops:"Body margins",appearance_linkprops:"Link farver",appearance_textprops:"Tekstegenskaber",bgcolor:"Baggrundsfarve",bgimage:"Baggrundsbillede",left_margin:"Venstre margin",right_margin:"H\u00f8jre margin",top_margin:"Topmargin",bottom_margin:"Bundmargin",text_color:"Tekstfarve",font_size:"Skriftst\u00f8rrelse",font_face:"Skrifttype",link_color:"Linkfarve",hover_color:"Farve ved aktivering",visited_color:"Farve efter museklik",active_color:"Farve ved museklik",textcolor:"Farve",fontsize:"Skriftst\u00f8rrelse",fontface:"Skrifttype",meta_index_follow:"Indeks og f\u00f8lg links",meta_index_nofollow:"Indeks og f\u00f8lg ikke links",meta_noindex_follow:"Ingen indeks, men f\u00f8lg links",meta_noindex_nofollow:"Ingen indeks og f\u00f8lg ikke links",appearance_style:"Stylesheet og style-egenskaber",stylesheet:"Stylesheet",style:"Style",author:"Forfatter",copyright:"Copyright",add:"Tilf\u00f8j nyt element",remove:"Slet valgte element",moveup:"Flyt valgte element op",movedown:"Flyt valgte element ned",head_elements:"Hovedelement",info:"Information",add_title:"Titelelement",add_meta:"Meta-element",add_script:"Script-element",add_style:"Style-element",add_link:"Link-element",add_base:"Base-element",add_comment:"Kommentar-node",title_element:"Titelelement",script_element:"Script-element",style_element:"Style-element",base_element:"Base-element",link_element:"Link-element",meta_element:"Meta-element",comment_element:"Kommentar",src:"Src",language:"Sprog",href:"Href",target:"Destination",type:"Type",charset:"Tegns\u00e6t",defer:"Defer",media:"Media",properties:"Egenskaber",name:"Navn",value:"V\u00e6rdi",content:"Indhold",rel:"Rel",rev:"Rev",hreflang:"Href lang",general_props:"Generelt",advanced_props:"Advanceret"});
|
||||
|
|
@ -1,85 +1 @@
|
|||
tinyMCE.addI18n('de.fullpage_dlg',{
|
||||
title:"Dokument-Eigenschaften",
|
||||
meta_tab:"Allgemein",
|
||||
appearance_tab:"Aussehen",
|
||||
advanced_tab:"Erweitert",
|
||||
meta_props:"Meta-Information",
|
||||
langprops:"Sprache und Codierung",
|
||||
meta_title:"Titel",
|
||||
meta_keywords:"Keywords",
|
||||
meta_description:"Beschreibung",
|
||||
meta_robots:"Robots",
|
||||
doctypes:"DocType",
|
||||
langcode:"Sprachcode",
|
||||
langdir:"Sprachrichtung",
|
||||
ltr:"Links nach Rechts",
|
||||
rtl:"Rechts nach Links",
|
||||
xml_pi:"XML declaration",
|
||||
encoding:"Zeichencodierung",
|
||||
appearance_bgprops:"Hintergrund-Eigenschaften",
|
||||
appearance_marginprops:"Abst\u00E4nde des Body",
|
||||
appearance_linkprops:"Linkfarben",
|
||||
appearance_textprops:"Text-Eigenschaften",
|
||||
bgcolor:"Hintergrundfarbe",
|
||||
bgimage:"Hintergrundbild",
|
||||
left_margin:"Linker Abstand",
|
||||
right_margin:"Rechter Abstand",
|
||||
top_margin:"Oberer Abstand",
|
||||
bottom_margin:"Unterer Abstand",
|
||||
text_color:"Textfarbe",
|
||||
font_size:"Schriftgr\u00F6\u00DFe",
|
||||
font_face:"Schriftart",
|
||||
link_color:"Linkfarbe",
|
||||
hover_color:"Hover-Farbe",
|
||||
visited_color:"Visited-Farbe",
|
||||
active_color:"Active-Farbe",
|
||||
textcolor:"Farbe",
|
||||
fontsize:"Schriftgr\u00F6\u00DFe",
|
||||
fontface:"Schriftart",
|
||||
meta_index_follow:"Indizieren und den Links folgen",
|
||||
meta_index_nofollow:"Indizieren, aber den Links nicht folgen",
|
||||
meta_noindex_follow:"Nicht indizieren, aber den Links folgen",
|
||||
meta_noindex_nofollow:"Nicht indizieren und auch nicht den Links folgen",
|
||||
appearance_style:"CSS-Stylesheet und Stileigenschaften",
|
||||
stylesheet:"CSS-Stylesheet",
|
||||
style:"CSS-Stil",
|
||||
author:"Autor",
|
||||
copyright:"Copyright",
|
||||
add:"Neues Element hinzuf\u00FCgen",
|
||||
remove:"Ausgew\u00E4hltes Element entfernen",
|
||||
moveup:"Ausgew\u00E4hltes Element nach oben bewegen",
|
||||
movedown:"Ausgew\u00E4hltes Element nach unten bewegen",
|
||||
head_elements:"\u00DCberschriftenelemente",
|
||||
info:"Information",
|
||||
add_title:"Titel-Element",
|
||||
add_meta:"Meta-Element",
|
||||
add_script:"Script-Element",
|
||||
add_style:"Style-Element",
|
||||
add_link:"Link-Element",
|
||||
add_base:"Base-Element",
|
||||
add_comment:"HTML-Kommentar",
|
||||
title_element:"Titel-Element",
|
||||
script_element:"Script-Element",
|
||||
style_element:"Style-Element",
|
||||
base_element:"Base-Element",
|
||||
link_element:"Link-Element",
|
||||
meta_element:"Meta_Element",
|
||||
comment_element:"Kommentar",
|
||||
src:"Src",
|
||||
language:"Sprache",
|
||||
href:"Href",
|
||||
target:"Ziel",
|
||||
type:"Typ",
|
||||
charset:"Zeichensatz",
|
||||
defer:"Defer",
|
||||
media:"Media",
|
||||
properties:"Eigenschaften",
|
||||
name:"Name",
|
||||
value:"Wert",
|
||||
content:"Inhalt",
|
||||
rel:"Rel",
|
||||
rev:"Rev",
|
||||
hreflang:"Href lang",
|
||||
general_props:"Allgemein",
|
||||
advanced_props:"Erweitert"
|
||||
});
|
||||
tinyMCE.addI18n('de.fullpage_dlg',{title:"Dokument-Eigenschaften","meta_tab":"Allgemein","appearance_tab":"Aussehen","advanced_tab":"Erweitert","meta_props":"Meta-Information",langprops:"Sprache und Codierung","meta_title":"Titel","meta_keywords":"Keywords","meta_description":"Beschreibung","meta_robots":"Robots",doctypes:"DocType",langcode:"Sprachcode",langdir:"Sprachrichtung",ltr:"Links nach Rechts",rtl:"Rechts nach Links","xml_pi":"XML Deklaration",encoding:"Zeichencodierung","appearance_bgprops":"Hintergrund-Eigenschaften","appearance_marginprops":"Abst\u00e4nde des Body","appearance_linkprops":"Linkfarben","appearance_textprops":"Text-Eigenschaften",bgcolor:"Hintergrundfarbe",bgimage:"Hintergrundbild","left_margin":"Linker Abstand","right_margin":"Rechter Abstand","top_margin":"Oberer Abstand","bottom_margin":"Unterer Abstand","text_color":"Textfarbe","font_size":"Schriftgr\u00f6\u00dfe","font_face":"Schriftart","link_color":"Linkfarbe","hover_color":"Hover-Farbe","visited_color":"Visited-Farbe","active_color":"Active-Farbe",textcolor:"Farbe",fontsize:"Schriftgr\u00f6\u00dfe",fontface:"Schriftart","meta_index_follow":"Indizieren und den Links folgen","meta_index_nofollow":"Indizieren, aber den Links nicht folgen","meta_noindex_follow":"Nicht indizieren, aber den Links folgen","meta_noindex_nofollow":"Nicht indizieren und auch nicht den Links folgen","appearance_style":"CSS-Stylesheet und Stileigenschaften",stylesheet:"CSS-Stylesheet",style:"CSS-Stil",author:"Autor",copyright:"Copyright",add:"Neues Element hinzuf\u00fcgen",remove:"Ausgew\u00e4hltes Element entfernen",moveup:"Ausgew\u00e4hltes Element nach oben bewegen",movedown:"Ausgew\u00e4hltes Element nach unten bewegen","head_elements":"\u00dcberschriftenelemente",info:"Information","add_title":"Titel-Element","add_meta":"Meta-Element","add_script":"Script-Element","add_style":"Style-Element","add_link":"Link-Element","add_base":"Base-Element","add_comment":"HTML-Kommentar","title_element":"Titel-Element","script_element":"Script-Element","style_element":"Style-Element","base_element":"Base-Element","link_element":"Link-Element","meta_element":"Meta_Element","comment_element":"Kommentar",src:"Src",language:"Sprache",href:"Href",target:"Ziel",type:"Typ",charset:"Zeichensatz",defer:"Defer",media:"Media",properties:"Eigenschaften",name:"Name",value:"Wert",content:"Inhalt",rel:"Rel",rev:"Rev",hreflang:"Href lang","general_props":"Allgemein","advanced_props":"Erweitert"});
|
||||
|
|
@ -1,85 +1 @@
|
|||
tinyMCE.addI18n('en.fullpage_dlg',{
|
||||
title:"Document properties",
|
||||
meta_tab:"General",
|
||||
appearance_tab:"Appearance",
|
||||
advanced_tab:"Advanced",
|
||||
meta_props:"Meta information",
|
||||
langprops:"Language and encoding",
|
||||
meta_title:"Title",
|
||||
meta_keywords:"Keywords",
|
||||
meta_description:"Description",
|
||||
meta_robots:"Robots",
|
||||
doctypes:"Doctype",
|
||||
langcode:"Language code",
|
||||
langdir:"Language direction",
|
||||
ltr:"Left to right",
|
||||
rtl:"Right to left",
|
||||
xml_pi:"XML declaration",
|
||||
encoding:"Character encoding",
|
||||
appearance_bgprops:"Background properties",
|
||||
appearance_marginprops:"Body margins",
|
||||
appearance_linkprops:"Link colors",
|
||||
appearance_textprops:"Text properties",
|
||||
bgcolor:"Background color",
|
||||
bgimage:"Background image",
|
||||
left_margin:"Left margin",
|
||||
right_margin:"Right margin",
|
||||
top_margin:"Top margin",
|
||||
bottom_margin:"Bottom margin",
|
||||
text_color:"Text color",
|
||||
font_size:"Font size",
|
||||
font_face:"Font face",
|
||||
link_color:"Link color",
|
||||
hover_color:"Hover color",
|
||||
visited_color:"Visited color",
|
||||
active_color:"Active color",
|
||||
textcolor:"Color",
|
||||
fontsize:"Font size",
|
||||
fontface:"Font family",
|
||||
meta_index_follow:"Index and follow the links",
|
||||
meta_index_nofollow:"Index and don't follow the links",
|
||||
meta_noindex_follow:"Do not index but follow the links",
|
||||
meta_noindex_nofollow:"Do not index and don\'t follow the links",
|
||||
appearance_style:"Stylesheet and style properties",
|
||||
stylesheet:"Stylesheet",
|
||||
style:"Style",
|
||||
author:"Author",
|
||||
copyright:"Copyright",
|
||||
add:"Add new element",
|
||||
remove:"Remove selected element",
|
||||
moveup:"Move selected element up",
|
||||
movedown:"Move selected element down",
|
||||
head_elements:"Head elements",
|
||||
info:"Information",
|
||||
add_title:"Title element",
|
||||
add_meta:"Meta element",
|
||||
add_script:"Script element",
|
||||
add_style:"Style element",
|
||||
add_link:"Link element",
|
||||
add_base:"Base element",
|
||||
add_comment:"Comment node",
|
||||
title_element:"Title element",
|
||||
script_element:"Script element",
|
||||
style_element:"Style element",
|
||||
base_element:"Base element",
|
||||
link_element:"Link element",
|
||||
meta_element:"Meta element",
|
||||
comment_element:"Comment",
|
||||
src:"Src",
|
||||
language:"Language",
|
||||
href:"Href",
|
||||
target:"Target",
|
||||
type:"Type",
|
||||
charset:"Charset",
|
||||
defer:"Defer",
|
||||
media:"Media",
|
||||
properties:"Properties",
|
||||
name:"Name",
|
||||
value:"Value",
|
||||
content:"Content",
|
||||
rel:"Rel",
|
||||
rev:"Rev",
|
||||
hreflang:"Href lang",
|
||||
general_props:"General",
|
||||
advanced_props:"Advanced"
|
||||
});
|
||||
tinyMCE.addI18n('en.fullpage_dlg',{title:"Document properties","meta_tab":"General","appearance_tab":"Appearance","advanced_tab":"Advanced","meta_props":"Meta information",langprops:"Language and encoding","meta_title":"Title","meta_keywords":"Keywords","meta_description":"Description","meta_robots":"Robots",doctypes:"Doctype",langcode:"Language code",langdir:"Language direction",ltr:"Left to right",rtl:"Right to left","xml_pi":"XML declaration",encoding:"Character encoding","appearance_bgprops":"Background properties","appearance_marginprops":"Body margins","appearance_linkprops":"Link colors","appearance_textprops":"Text properties",bgcolor:"Background color",bgimage:"Background image","left_margin":"Left margin","right_margin":"Right margin","top_margin":"Top margin","bottom_margin":"Bottom margin","text_color":"Text color","font_size":"Font size","font_face":"Font face","link_color":"Link color","hover_color":"Hover color","visited_color":"Visited color","active_color":"Active color",textcolor:"Color",fontsize:"Font size",fontface:"Font family","meta_index_follow":"Index and follow the links","meta_index_nofollow":"Index and don\'t follow the links","meta_noindex_follow":"Do not index but follow the links","meta_noindex_nofollow":"Do not index and don\\\'t follow the links","appearance_style":"Stylesheet and style properties",stylesheet:"Stylesheet",style:"Style",author:"Author",copyright:"Copyright",add:"Add new element",remove:"Remove selected element",moveup:"Move selected element up",movedown:"Move selected element down","head_elements":"Head elements",info:"Information","add_title":"Title element","add_meta":"Meta element","add_script":"Script element","add_style":"Style element","add_link":"Link element","add_base":"Base element","add_comment":"Comment node","title_element":"Title element","script_element":"Script element","style_element":"Style element","base_element":"Base element","link_element":"Link element","meta_element":"Meta element","comment_element":"Comment",src:"Src",language:"Language",href:"Href",target:"Target",type:"Type",charset:"Charset",defer:"Defer",media:"Media",properties:"Properties",name:"Name",value:"Value",content:"Content",rel:"Rel",rev:"Rev",hreflang:"Href lang","general_props":"General","advanced_props":"Advanced"});
|
||||
|
|
@ -1,85 +1 @@
|
|||
tinyMCE.addI18n('es.fullpage_dlg',{
|
||||
title:"Propiedades del documento",
|
||||
meta_tab:"General",
|
||||
appearance_tab:"Apariencia",
|
||||
advanced_tab:"Avanzado",
|
||||
meta_props:"Informaci\u00F3n Meta",
|
||||
langprops:"Lenguaje y codificaci\u00F3n",
|
||||
meta_title:"T\u00EDtulo",
|
||||
meta_keywords:"Palabras clave",
|
||||
meta_description:"Descripci\u00F3n",
|
||||
meta_robots:"Robots",
|
||||
doctypes:"Tipo de doc.",
|
||||
langcode:"C\u00F3digo del lenguaje",
|
||||
langdir:"Direcci\u00F3n del lenguaje",
|
||||
ltr:"Izquierda a derecha",
|
||||
rtl:"Derecha a izquierda",
|
||||
xml_pi:"Declaraci\u00F3n XML",
|
||||
encoding:"Codificaci\u00F3n de caracteres",
|
||||
appearance_bgprops:"Propiedades del fondo",
|
||||
appearance_marginprops:"M\u00E1rgenes",
|
||||
appearance_linkprops:"Colores del v\u00EDnculo",
|
||||
appearance_textprops:"Propiedades de texto",
|
||||
bgcolor:"Color de fondo",
|
||||
bgimage:"Imagen de fondo",
|
||||
left_margin:"Margen izquierdo",
|
||||
right_margin:"Margen derecho",
|
||||
top_margin:"Margen superior",
|
||||
bottom_margin:"Margen inferior",
|
||||
text_color:"Color del texto",
|
||||
font_size:"Tama\u00F1o de fuente",
|
||||
font_face:"Fuente",
|
||||
link_color:"Color de v\u00EDnculo",
|
||||
hover_color:"Color rat\u00F3n encima",
|
||||
visited_color:"Color visitado",
|
||||
active_color:"Color activo",
|
||||
textcolor:"Color",
|
||||
fontsize:"Tama\u00F1o de fuente",
|
||||
fontface:"Fuente",
|
||||
meta_index_follow:"Indexar y seguir los v\u00EDnculos",
|
||||
meta_index_nofollow:"Indexar y no seguir los v\u00EDnculos",
|
||||
meta_noindex_follow:"No indexar pero seguir v\u00EDnculos",
|
||||
meta_noindex_nofollow:"No indexar y no seguir v\u00EDnculos",
|
||||
appearance_style:"Propiedades de hoja de estilos y estilo",
|
||||
stylesheet:"Hoja de estilo",
|
||||
style:"Estilo",
|
||||
author:"Autor",
|
||||
copyright:"Copyright",
|
||||
add:"Agregar nuevo elemento",
|
||||
remove:"Eliminar elemento seleccionado",
|
||||
moveup:"Mover elemento seleccionado hacia arriba",
|
||||
movedown:"Mover elemento seleccionado hacia abajo",
|
||||
head_elements:"Elemento Head",
|
||||
info:"Informaci\u00F3n",
|
||||
add_title:"Elemento Title",
|
||||
add_meta:"Elemento Meta",
|
||||
add_script:"Elemento Script",
|
||||
add_style:"Elemento Style",
|
||||
add_link:"Elemento Link",
|
||||
add_base:"Elemento Base",
|
||||
add_comment:"Nodo Comment",
|
||||
title_element:"Elemento Title",
|
||||
script_element:"Elemento Script",
|
||||
style_element:"Elemento Style",
|
||||
base_element:"Elemento Base",
|
||||
link_element:"Elemento Link",
|
||||
meta_element:"Elemento Meta",
|
||||
comment_element:"Comentario",
|
||||
src:"Src",
|
||||
language:"Lenguaje",
|
||||
href:"Href",
|
||||
target:"Target",
|
||||
type:"Tipo",
|
||||
charset:"Charset",
|
||||
defer:"Defer",
|
||||
media:"Medio",
|
||||
properties:"Propiedades",
|
||||
name:"Nombre",
|
||||
value:"Valor",
|
||||
content:"Contenido",
|
||||
rel:"Rel",
|
||||
rev:"Rev",
|
||||
hreflang:"Href lang",
|
||||
general_props:"General",
|
||||
advanced_props:"Avanzado"
|
||||
});
|
||||
tinyMCE.addI18n('es.fullpage_dlg',{title:"Propiedades del documento","meta_tab":"General","appearance_tab":"Apariencia","advanced_tab":"Avanzado","meta_props":"Informaci\u00f3n Meta",langprops:"Lenguaje y codificaci\u00f3n","meta_title":"T\u00edtulo","meta_keywords":"Palabras clave","meta_description":"Descripci\u00f3n","meta_robots":"Robots",doctypes:"Tipo de doc.",langcode:"C\u00f3digo del lenguaje",langdir:"Direcci\u00f3n del lenguaje",ltr:"Izquierda a derecha",rtl:"Derecha a izquierda","xml_pi":"Declaraci\u00f3n XML",encoding:"Codificaci\u00f3n de caracteres","appearance_bgprops":"Propiedades del fondo","appearance_marginprops":"M\u00e1rgenes","appearance_linkprops":"Colores del v\u00ednculo","appearance_textprops":"Propiedades de texto",bgcolor:"Color de fondo",bgimage:"Imagen de fondo","left_margin":"Margen izquierdo","right_margin":"Margen derecho","top_margin":"Margen superior","bottom_margin":"Margen inferior","text_color":"Color del texto","font_size":"Tama\u00f1o de fuente","font_face":"Fuente","link_color":"Color de v\u00ednculo","hover_color":"Color rat\u00f3n encima","visited_color":"Color visitado","active_color":"Color activo",textcolor:"Color",fontsize:"Tama\u00f1o de fuente",fontface:"Fuente","meta_index_follow":"Indexar y seguir los v\u00ednculos","meta_index_nofollow":"Indexar y no seguir los v\u00ednculos","meta_noindex_follow":"No indexar pero seguir v\u00ednculos","meta_noindex_nofollow":"No indexar y no seguir v\u00ednculos","appearance_style":"Propiedades de hoja de estilos y estilo",stylesheet:"Hoja de estilo",style:"Estilo",author:"Autor",copyright:"Copyright",add:"Agregar nuevo elemento",remove:"Eliminar elemento seleccionado",moveup:"Mover elemento seleccionado hacia arriba",movedown:"Mover elemento seleccionado hacia abajo","head_elements":"Elemento Head",info:"Informaci\u00f3n","add_title":"Elemento Title","add_meta":"Elemento Meta","add_script":"Elemento Script","add_style":"Elemento Style","add_link":"Elemento Link","add_base":"Elemento Base","add_comment":"Nodo Comment","title_element":"Elemento Title","script_element":"Elemento Script","style_element":"Elemento Style","base_element":"Elemento Base","link_element":"Elemento Link","meta_element":"Elemento Meta","comment_element":"Comentario",src:"Src",language:"Lenguaje",href:"Href",target:"Target",type:"Tipo",charset:"Charset",defer:"Defer",media:"Medio",properties:"Propiedades",name:"Nombre",value:"Valor",content:"Contenido",rel:"Rel",rev:"Rev",hreflang:"Href lang","general_props":"General","advanced_props":"Avanzado"});
|
||||
|
|
@ -1,85 +0,0 @@
|
|||
tinyMCE.addI18n('fa.fullpage_dlg',{
|
||||
title:"\u0645\u0634\u062E\u0635\u0627\u062A \u0633\u0646\u062F",
|
||||
meta_tab:"\u0639\u0645\u0648\u0645\u06CC",
|
||||
appearance_tab:"\u0638\u0627\u0647\u0631",
|
||||
advanced_tab:"\u067E\u06CC\u0634\u0631\u0641\u062A\u0647",
|
||||
meta_props:"\u0627\u0637\u0644\u0627\u0639\u0627\u062A \u0645\u062A\u0627 (Meta)",
|
||||
langprops:"\u0632\u0628\u0627\u0646 \u0648 \u0631\u0645\u0632\u06AF\u0630\u0627\u0631\u06CC (Encoding)",
|
||||
meta_title:"\u0639\u0646\u0648\u0627\u0646",
|
||||
meta_keywords:"\u0643\u0644\u0645\u0627\u062A \u0643\u0644\u06CC\u062F\u06CC",
|
||||
meta_description:"\u062A\u0648\u0636\u06CC\u062D",
|
||||
meta_robots:"\u0631\u0648\u0628\u0627\u062A \u0647\u0627 (Robots)",
|
||||
doctypes:"\u0646\u0648\u0639 \u0633\u0646\u062F",
|
||||
langcode:"\u0643\u062F \u0632\u0628\u0627\u0646",
|
||||
langdir:"\u062C\u0647\u062A \u0632\u0628\u0627\u0646",
|
||||
ltr:"\u0686\u067E \u0628\u0647 \u0631\u0627\u0633\u062A",
|
||||
rtl:"\u0631\u0627\u0633\u062A \u0628\u0647 \u0686\u067E",
|
||||
xml_pi:"\u0627\u0639\u0644\u0627\u0646 XML",
|
||||
encoding:"\u0631\u0645\u0632\u06AF\u0630\u0627\u0631\u06CC (Encoding) \u0643\u0627\u0631\u0627\u0643\u062A\u0631",
|
||||
appearance_bgprops:"\u0645\u0634\u062E\u0635\u0627\u062A \u0632\u0645\u06CC\u0646\u0647",
|
||||
appearance_marginprops:"\u062D\u0627\u0634\u06CC\u0647 \u0647\u0627\u06CC \u0628\u062F\u0646\u0647 (Body)",
|
||||
appearance_linkprops:"\u0631\u0646\u06AF \u0647\u0627\u06CC \u0644\u06CC\u0646\u0643",
|
||||
appearance_textprops:"\u0645\u0634\u062E\u0635\u0627\u062A \u0645\u062A\u0646",
|
||||
bgcolor:"\u0631\u0646\u06AF \u0632\u0645\u06CC\u0646\u0647",
|
||||
bgimage:"\u062A\u0635\u0648\u06CC\u0631 \u0632\u0645\u06CC\u0646\u0647",
|
||||
left_margin:"\u062D\u0627\u0634\u06CC\u0647 \u0686\u067E",
|
||||
right_margin:"\u062D\u0627\u0634\u06CC\u0647 \u0631\u0627\u0633\u062A",
|
||||
top_margin:"\u062D\u0627\u0634\u06CC\u0647 \u0628\u0627\u0644\u0627",
|
||||
bottom_margin:"\u062D\u0627\u0634\u06CC\u0647 \u067E\u0627\u06CC\u06CC\u0646",
|
||||
text_color:"\u0631\u0646\u06AF \u0645\u062A\u0646",
|
||||
font_size:"\u0627\u0646\u062F\u0627\u0632\u0647 \u0642\u0644\u0645",
|
||||
font_face:"\u0638\u0627\u0647\u0631 \u0642\u0644\u0645",
|
||||
link_color:"\u0631\u0646\u06AF \u0642\u0644\u0645",
|
||||
hover_color:"\u0631\u0646\u06AF \u062F\u0631 \u062D\u0627\u0644\u062A \u0642\u0631\u0627\u0631\u06AF\u06CC\u0631\u06CC \u0645\u0648\u0633",
|
||||
visited_color:"\u0631\u0646\u06AF \u062F\u0631 \u062D\u0627\u0644\u062A \u0628\u0627\u0632\u062F\u06CC\u062F \u0634\u062F\u0647",
|
||||
active_color:"\u0631\u0646\u06AF \u062F\u0631 \u062D\u0627\u0644\u062A \u0641\u0639\u0627\u0644",
|
||||
textcolor:"\u0631\u0646\u06AF",
|
||||
fontsize:"\u0627\u0646\u062F\u0627\u0632\u0647 \u0642\u0644\u0645",
|
||||
fontface:"\u062E\u0627\u0646\u0648\u0627\u062F\u0647 \u0642\u0644\u0645",
|
||||
meta_index_follow:"\u0641\u0647\u0631\u0633\u062A \u0648 \u062F\u0646\u0628\u0627\u0644\u0647 \u0631\u0648\u06CC \u0644\u06CC\u0646\u0643 \u0647\u0627",
|
||||
meta_index_nofollow:"\u0641\u0647\u0631\u0633\u062A \u0648 \u0639\u062F\u0645 \u062F\u0646\u0628\u0627\u0644\u0647 \u0631\u0648\u06CC \u0644\u06CC\u0646\u0643 \u0647\u0627",
|
||||
meta_noindex_follow:"\u0639\u062F\u0645 \u0641\u0647\u0631\u0633\u062A \u0627\u0645\u0627 \u062F\u0646\u0628\u0627\u0644\u0647 \u0631\u0648\u06CC \u0644\u06CC\u0646\u0643 \u0647\u0627",
|
||||
meta_noindex_nofollow:"\u0639\u062F\u0645 \u0641\u0647\u0631\u0633\u062A \u0648 \u0639\u062F\u0645 \u062F\u0646\u0628\u0627\u0644\u0647 \u0631\u0648\u06CC \u0644\u06CC\u0646\u0643 \u0647\u0627",
|
||||
appearance_style:"\u0648\u0631\u0642\u0647 \u0627\u0633\u062A\u06CC\u0644 \u0648 \u0645\u0634\u062E\u0635\u0627\u062A \u0627\u0633\u062A\u06CC\u0644",
|
||||
stylesheet:"\u0648\u0631\u0642\u0647 \u0627\u0633\u062A\u06CC\u0644",
|
||||
style:"\u0627\u0633\u062A\u06CC\u0644",
|
||||
author:"\u0645\u0648\u0654\u0644\u0641",
|
||||
copyright:"\u062D\u0642 \u0627\u0646\u062D\u0635\u0627\u0631\u06CC",
|
||||
add:"\u0627\u0641\u0632\u0648\u062F\u0646 \u0639\u0646\u0635\u0631 \u062C\u062F\u06CC\u062F",
|
||||
remove:"\u062D\u0630\u0641 \u0639\u0646\u0635\u0631 \u0627\u0646\u062A\u062E\u0627\u0628 \u0634\u062F\u0647",
|
||||
moveup:"\u0627\u0646\u062A\u0642\u0627\u0644 \u0639\u0646\u0635\u0631 \u0627\u0646\u062A\u062E\u0627\u0628 \u0634\u062F\u0647 \u0628\u0647 \u0628\u0627\u0644\u0627",
|
||||
movedown:"\u0627\u0646\u062A\u0642\u0627\u0644 \u0639\u0646\u0635\u0631 \u0627\u0646\u062A\u062E\u0627\u0628 \u0634\u062F\u0647 \u0628\u0647 \u067E\u0627\u06CC\u06CC\u0646",
|
||||
head_elements:"\u0639\u0646\u0627\u0635\u0631 \u0633\u0631 (Head)",
|
||||
info:"\u0627\u0637\u0644\u0627\u0639\u0627\u062A",
|
||||
add_title:"\u0639\u0646\u0635\u0631 \u0639\u0646\u0648\u0627\u0646",
|
||||
add_meta:"\u0639\u0646\u0635\u0631 \u0645\u062A\u0627 (Meta)",
|
||||
add_script:"\u0639\u0646\u0635\u0631 \u0627\u0633\u0643\u0631\u06CC\u067E\u062A (Script)",
|
||||
add_style:"\u0639\u0646\u0635\u0631 \u0627\u0633\u062A\u06CC\u0644 (Style)",
|
||||
add_link:"\u0639\u0646\u0635\u0631 \u0644\u06CC\u0646\u0643 (Link)",
|
||||
add_base:"\u0639\u0646\u0635\u0631 \u067E\u0627\u06CC\u0647 (Base)",
|
||||
add_comment:"\u06AF\u0631\u0647 \u062A\u0648\u0636\u06CC\u062D",
|
||||
title_element:"\u0639\u0646\u0635\u0631 \u0639\u0646\u0648\u0627\u0646 (Title)",
|
||||
script_element:"\u0639\u0646\u0635\u0631 \u0627\u0633\u0643\u0631\u06CC\u067E\u062A (Script)",
|
||||
style_element:"\u0639\u0646\u0635\u0631 \u0627\u0633\u062A\u06CC\u0644 (Style)",
|
||||
base_element:"\u0639\u0646\u0635\u0631 \u067E\u0627\u06CC\u0647",
|
||||
link_element:"\u0639\u0646\u0635\u0631 \u0644\u06CC\u0646\u0643",
|
||||
meta_element:"\u0639\u0646\u0635\u0631 \u0645\u062A\u0627 (Meta)",
|
||||
comment_element:"\u062A\u0648\u0636\u06CC\u062D",
|
||||
src:"\u0645\u0646\u0628\u0639 (Src)",
|
||||
language:"\u0632\u0628\u0627\u0646",
|
||||
href:"\u0622\u062F\u0631\u0633 (Href)",
|
||||
target:"\u0645\u0642\u0635\u062F (Target)",
|
||||
type:"\u0646\u0648\u0639",
|
||||
charset:"\u0645\u062C\u0645\u0648\u0639\u0647 \u0643\u0627\u0631\u0627\u0643\u062A\u0631 (Charset)",
|
||||
defer:"Defer",
|
||||
media:"\u0631\u0633\u0627\u0646\u0647 (Media)",
|
||||
properties:"\u0645\u0634\u062E\u0635\u0627\u062A",
|
||||
name:"\u0646\u0627\u0645",
|
||||
value:"\u0645\u0642\u062F\u0627\u0631",
|
||||
content:"\u0645\u062D\u062A\u0648\u0627",
|
||||
rel:"Rel",
|
||||
rev:"Rev",
|
||||
hreflang:"\u0632\u0628\u0627\u0646 Href",
|
||||
general_props:"\u0639\u0645\u0648\u0645\u06CC",
|
||||
advanced_props:"\u067E\u06CC\u0634\u0631\u0641\u062A\u0647"
|
||||
});
|
||||
1
www/extras/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/fi_dlg.js
vendored
Normal file
1
www/extras/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/fi_dlg.js
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
tinyMCE.addI18n('fi.fullpage_dlg',{title:"Tiedoston asetukset",meta_tab:"Yleinen",appearance_tab:"Ulkoasu",advanced_tab:"Edistynyt",meta_props:"Metatiedot",langprops:"Kieli ja koodaus",meta_title:"Otsikko",meta_keywords:"Avainsanat",meta_description:"Kuvaus",meta_robots:"Robotit",doctypes:"Dokumenttityypit",langcode:"Kielen koodi",langdir:"Kielen suunta",ltr:"Vasemmalta oikealle",rtl:"Oikealta vasemmalle",xml_pi:"XML-ilmoitus",encoding:"Tekstin koodaus",appearance_bgprops:"Taustan asetukset",appearance_marginprops:"Body-marginaalit",appearance_linkprops:"Linkkien v\u00e4rit",appearance_textprops:"Tekstin asetukset",bgcolor:"Taustan v\u00e4ri",bgimage:"Taustakuva",left_margin:"Vasen marginaali",right_margin:"Oikea marginaali",top_margin:"Yl\u00e4marginaali",bottom_margin:"Alamarginaali",text_color:"Tekstin v\u00e4ri",font_size:"Fonttikoko",font_face:"Fontti",link_color:"Linkin v\u00e4ri",hover_color:"Hover-v\u00e4ri",visited_color:"Vierailtu v\u00e4ri",active_color:"Aktiivinen v\u00e4ri",textcolor:"V\u00e4ri",fontsize:"Fonttikoko",fontface:"Fontti",meta_index_follow:"Indeksoi ja seuraa linkkej\u00e4",meta_index_nofollow:"Indeksoi, mutta \u00e4l\u00e4 seuraa linkkej\u00e4",meta_noindex_follow:"\u00c4l\u00e4 indeksoi, mutta seuraa linkkej\u00e4.",meta_noindex_nofollow:"\u00c4l\u00e4 indeksoi, \u00e4l\u00e4k\u00e4 seuraa linkkej\u00e4",appearance_style:"Tyylitiedosto ja tyylin asetukset",stylesheet:"Tyylitiedosto",style:"Tyyli",author:"Kirjoittaja",copyright:"Copyright",add:"Lis\u00e4\u00e4 uusi elementti",remove:"Poista valittu elementti",moveup:"Siirr\u00e4 valittua elementti\u00e4 yl\u00f6s",movedown:"Siirr\u00e4 valittua elementti\u00e4 alas",head_elements:"P\u00e4\u00e4elementti",info:"Informaatio",add_title:"Otsikkoelementti",add_meta:"Meta-elementti",add_script:"Script-elementti",add_style:"Tyylielementti",add_link:"Linkkielementti",add_base:"Base-elementti",add_comment:"Yleinen elementti",title_element:"Otsikkoelementti",script_element:"Script-elementti",style_element:"Tyylielementti",base_element:"Base-elementti",link_element:"Linkkielementti",meta_element:"Meta-elementti",comment_element:"Kommentti",src:"L\u00e4hde",language:"Kieli",href:"Href",target:"Kohde",type:"Tyyppi",charset:"Kirjasintyyppi",defer:"Mukautuminen",media:"Media",properties:"Asetukset",name:"Nimi",value:"Arvo",content:"Sis\u00e4lt\u00f6",rel:"Rel",rev:"Rev",hreflang:"Href-kieli",general_props:"Yleinen",advanced_props:"Edistynyt"});
|
||||
|
|
@ -1,85 +1 @@
|
|||
tinyMCE.addI18n('fr.fullpage_dlg',{
|
||||
title:"Propri\u00E9t\u00E9s du document",
|
||||
meta_tab:"G\u00E9n\u00E9ral",
|
||||
appearance_tab:"Apparence",
|
||||
advanced_tab:"Avanc\u00E9",
|
||||
meta_props:"Meta information",
|
||||
langprops:"Langue et encodage",
|
||||
meta_title:"Titre",
|
||||
meta_keywords:"Mots-cl\u00E9s",
|
||||
meta_description:"Description",
|
||||
meta_robots:"Robots",
|
||||
doctypes:"Doctype",
|
||||
langcode:"Code de la langue",
|
||||
langdir:"Sens de lecture",
|
||||
ltr:"De gauche \u00E0 droite",
|
||||
rtl:"De droite \u00E0 gauche",
|
||||
xml_pi:"D\u00E9claration XML",
|
||||
encoding:"Encodage des caract\u00E8res",
|
||||
appearance_bgprops:"Propri\u00E9t\u00E9s du fond",
|
||||
appearance_marginprops:"Marge du corps de la page",
|
||||
appearance_linkprops:"Couleurs des liens",
|
||||
appearance_textprops:"Propri\u00E9t\u00E9s du texte",
|
||||
bgcolor:"Couleur de fond",
|
||||
bgimage:"Image de fond",
|
||||
left_margin:"Marge de gauche",
|
||||
right_margin:"Marge de droite",
|
||||
top_margin:"Marge du haut",
|
||||
bottom_margin:"Marge du bas",
|
||||
text_color:"Couleur du texte",
|
||||
font_size:"Taille de la police",
|
||||
font_face:"Nom de la police",
|
||||
link_color:"Couleur des liens",
|
||||
hover_color:"Couleur au survol",
|
||||
visited_color:"Couleur des liens visit\u00E9s",
|
||||
active_color:"Couleur du lien actif",
|
||||
textcolor:"Couleur",
|
||||
fontsize:"Taille de police",
|
||||
fontface:"Nom de la police",
|
||||
meta_index_follow:"Indexer et suivre les liens",
|
||||
meta_index_nofollow:"Indexer et ne pas suivre les liens",
|
||||
meta_noindex_follow:"Ne pas indexer et suivre les liens",
|
||||
meta_noindex_nofollow:"Ne pas indexer et ne pas suivre les liens",
|
||||
appearance_style:"Propri\u00E9t\u00E9s de la feuille de style et du style",
|
||||
stylesheet:"Feuille de style",
|
||||
style:"Style",
|
||||
author:"Auteur",
|
||||
copyright:"Copyright",
|
||||
add:"Ajouter nouvel \u00E9l\u00E9ment",
|
||||
remove:"Enlever l'\u00E9l\u00E9ment s\u00E9lectionn\u00E9",
|
||||
moveup:"D\u00E9placer l'\u00E9l\u00E9ment s\u00E9lectionn\u00E9 vers le haut",
|
||||
movedown:"D\u00E9placer l'\u00E9l\u00E9ment s\u00E9lectionn\u00E9 vers le bas",
|
||||
head_elements:"\u00C9l\u00E9ments de t\u00EAte",
|
||||
info:"Information",
|
||||
add_title:"\u00C9l\u00E9ment de titre",
|
||||
add_meta:"\u00C9l\u00E9ment Meta",
|
||||
add_script:"\u00C9l\u00E9ment de script",
|
||||
add_style:"\u00C9l\u00E9ment de style",
|
||||
add_link:"\u00C9l\u00E9ment de lien",
|
||||
add_base:"\u00C9l\u00E9ment de base",
|
||||
add_comment:"Commentaire",
|
||||
title_element:"\u00C9l\u00E9ment de titre",
|
||||
script_element:"\u00C9l\u00E9ment de script",
|
||||
style_element:"\u00C9l\u00E9ment de style",
|
||||
base_element:"\u00C9l\u00E9ment de base",
|
||||
link_element:"\u00C9l\u00E9ment de lien",
|
||||
meta_element:"\u00C9l\u00E9ment Meta",
|
||||
comment_element:"Commentaire",
|
||||
src:"Source",
|
||||
language:"Langue",
|
||||
href:"Href",
|
||||
target:"Cible",
|
||||
type:"Type",
|
||||
charset:"Charset",
|
||||
defer:"Def\u00E9rer",
|
||||
media:"M\u00E9dia",
|
||||
properties:"Propri\u00E9t\u00E9s",
|
||||
name:"Nom",
|
||||
value:"Valeur",
|
||||
content:"Contenu",
|
||||
rel:"Rel",
|
||||
rev:"Rev",
|
||||
hreflang:"Href lang",
|
||||
general_props:"G\u00E9n\u00E9ral",
|
||||
advanced_props:"Avanc\u00E9"
|
||||
});
|
||||
tinyMCE.addI18n('fr.fullpage_dlg',{title:"Propri\u00e9t\u00e9s du document","meta_tab":"G\u00e9n\u00e9ral","appearance_tab":"Apparence","advanced_tab":"Avanc\u00e9","meta_props":"Metadonn\u00e9es",langprops:"Langue et encodage","meta_title":"Titre","meta_keywords":"Mots-cl\u00e9s","meta_description":"Description","meta_robots":"Robots",doctypes:"Doctype",langcode:"Code de la langue",langdir:"Sens de lecture",ltr:"De gauche \u00e0 droite",rtl:"De droite \u00e0 gauche","xml_pi":"D\u00e9claration XML",encoding:"Encodage des caract\u00e8res","appearance_bgprops":"Propri\u00e9t\u00e9s du fond","appearance_marginprops":"Marge du corps de la page","appearance_linkprops":"Couleurs des liens","appearance_textprops":"Propri\u00e9t\u00e9s du texte",bgcolor:"Couleur de fond",bgimage:"Image de fond","left_margin":"Marge de gauche","right_margin":"Marge de droite","top_margin":"Marge du haut","bottom_margin":"Marge du bas","text_color":"Couleur du texte","font_size":"Taille de la police","font_face":"Nom de la police","link_color":"Couleur des liens","hover_color":"Couleur au survol","visited_color":"Couleur des liens visit\u00e9s","active_color":"Couleur du lien actif",textcolor:"Couleur",fontsize:"Taille de police",fontface:"Nom de la police","meta_index_follow":"Indexer et suivre les liens","meta_index_nofollow":"Indexer et ne pas suivre les liens","meta_noindex_follow":"Ne pas indexer et suivre les liens","meta_noindex_nofollow":"Ne pas indexer et ne pas suivre les liens","appearance_style":"Propri\u00e9t\u00e9s de la feuille de style et du style",stylesheet:"Feuille de style",style:"Style",author:"Auteur",copyright:"Copyright",add:"Ajouter un nouvel \u00e9l\u00e9ment",remove:"Retirer l\'\u00e9l\u00e9ment s\u00e9lectionn\u00e9",moveup:"D\u00e9placer l\'\u00e9l\u00e9ment s\u00e9lectionn\u00e9 vers le haut",movedown:"D\u00e9placer l\'\u00e9l\u00e9ment s\u00e9lectionn\u00e9 vers le bas","head_elements":"\u00c9l\u00e9ments d\'en-t\u00eate",info:"Information","add_title":"\u00c9l\u00e9ment de titre","add_meta":"\u00c9l\u00e9ment Meta","add_script":"\u00c9l\u00e9ment de script","add_style":"\u00c9l\u00e9ment de style","add_link":"\u00c9l\u00e9ment de lien","add_base":"\u00c9l\u00e9ment de base","add_comment":"Commentaire","title_element":"\u00c9l\u00e9ment de titre","script_element":"\u00c9l\u00e9ment de script","style_element":"\u00c9l\u00e9ment de style","base_element":"\u00c9l\u00e9ment de base","link_element":"\u00c9l\u00e9ment de lien","meta_element":"\u00c9l\u00e9ment Meta","comment_element":"Commentaire",src:"Source",language:"Langue",href:"Href",target:"Cible",type:"Type",charset:"Charset",defer:"D\u00e9f\u00e9rer",media:"M\u00e9dia",properties:"Propri\u00e9t\u00e9s",name:"Nom",value:"Valeur",content:"Contenu",rel:"Rel",rev:"Rev",hreflang:"langue Href","general_props":"G\u00e9n\u00e9ral","advanced_props":"Avanc\u00e9"});
|
||||
|
|
@ -1,85 +1 @@
|
|||
tinyMCE.addI18n('hu.fullpage_dlg',{
|
||||
title:"Dokumentum tulajdons\u00E1gai",
|
||||
meta_tab:"\u00C1ltal\u00E1nos",
|
||||
appearance_tab:"Megjelen\u00E9s",
|
||||
advanced_tab:"Halad\u00F3",
|
||||
meta_props:"Meta inform\u00E1ci\u00F3",
|
||||
langprops:"Nyelv \u00E9s k\u00F3dol\u00E1s",
|
||||
meta_title:"C\u00EDm",
|
||||
meta_keywords:"Kulcsszavak",
|
||||
meta_description:"Le\u00EDr\u00E1s",
|
||||
meta_robots:"Robotok",
|
||||
doctypes:"Doctype",
|
||||
langcode:"Nyelvk\u00F3d",
|
||||
langdir:"\u00CDr\u00E1s ir\u00E1nya",
|
||||
ltr:"Balr\u00F3l jobra",
|
||||
rtl:"Jobbr\u00F3l balra",
|
||||
xml_pi:"XML deklar\u00E1ci\u00F3",
|
||||
encoding:"Karakterk\u00F3dol\u00E1s",
|
||||
appearance_bgprops:"H\u00E1tt\u00E9r tulajdons\u00E1gai",
|
||||
appearance_marginprops:"Test keret",
|
||||
appearance_linkprops:"Link sz\u00EDnek",
|
||||
appearance_textprops:"Sz\u00F6veg tulajdons\u00E1gai",
|
||||
bgcolor:"H\u00E1tt\u00E9rsz\u00EDn",
|
||||
bgimage:"H\u00E1tt\u00E9rk\u00E9p",
|
||||
left_margin:"Bal marg\u00F3",
|
||||
right_margin:"Jobb marg\u00F3",
|
||||
top_margin:"Fels\u0151 marg\u00F3",
|
||||
bottom_margin:"Als\u00F3 marg\u00F3",
|
||||
text_color:"Sz\u00F6vegsz\u00EDn",
|
||||
font_size:"Bet\u0171m\u00E9ret",
|
||||
font_face:"Bet\u0171t\u00EDpus",
|
||||
link_color:"Link sz\u00EDn",
|
||||
hover_color:"F\u00F6l\u00E9vitt sz\u00EDn",
|
||||
visited_color:"L\u00E1togatva sz\u00EDn",
|
||||
active_color:"Akt\u00EDv sz\u00EDn",
|
||||
textcolor:"Sz\u00EDn",
|
||||
fontsize:"Bet\u0171m\u00E9ret",
|
||||
fontface:"Bet\u0171t\u00EDpus",
|
||||
meta_index_follow:"Indexel \u00E9s k\u00F6veti a linkeket",
|
||||
meta_index_nofollow:"Indexel, de nem k\u00F6veti a linkeket",
|
||||
meta_noindex_follow:"Nem indexel, de k\u00F6veti a linkeket",
|
||||
meta_noindex_nofollow:"Nem indexel \u00E9s nem k\u00F6veti a linkeket",
|
||||
appearance_style:"Stylesheet \u00E9s style tulajdons\u00E1gok",
|
||||
stylesheet:"Stylesheet",
|
||||
style:"Style",
|
||||
author:"Szerz\u0151",
|
||||
copyright:"Copyright",
|
||||
add:"\u00DAj elem hozz\u00E1ad\u00E1sa",
|
||||
remove:"Kijel\u00F6lt elem t\u00F6rl\u00E9se",
|
||||
moveup:"Kijel\u00F6lt elem felfel\u00E9 mozgat\u00E1sa",
|
||||
movedown:"Kijel\u00F6lt elem lefel\u00E9 mozgat\u00E1sa",
|
||||
head_elements:"Fej elemek",
|
||||
info:"Inform\u00E1ci\u00F3",
|
||||
add_title:"C\u00EDm elem",
|
||||
add_meta:"Meta elem",
|
||||
add_script:"Script elem",
|
||||
add_style:"Style elem",
|
||||
add_link:"Link elem",
|
||||
add_base:"Base elem",
|
||||
add_comment:"Comment elem",
|
||||
title_element:"Title elem",
|
||||
script_element:"Script elem",
|
||||
style_element:"Style elem",
|
||||
base_element:"Base elem",
|
||||
link_element:"Link elem",
|
||||
meta_element:"Meta elem",
|
||||
comment_element:"Megjegyz\u00E9s",
|
||||
src:"Src",
|
||||
language:"Language",
|
||||
href:"Href",
|
||||
target:"Target",
|
||||
type:"Type",
|
||||
charset:"Charset",
|
||||
defer:"Defer",
|
||||
media:"Media",
|
||||
properties:"Properties",
|
||||
name:"Name",
|
||||
value:"Value",
|
||||
content:"Content",
|
||||
rel:"Rel",
|
||||
rev:"Rev",
|
||||
hreflang:"Href lang",
|
||||
general_props:"\u00C1ltal\u00E1nos",
|
||||
advanced_props:"Halad\u00F3"
|
||||
});
|
||||
tinyMCE.addI18n('hu.fullpage_dlg',{title:"Dokumentum tulajdons\u00e1gai","meta_tab":"\u00c1ltal\u00e1nos","appearance_tab":"Megjelen\u00e9s","advanced_tab":"Halad\u00f3","meta_props":"Meta inform\u00e1ci\u00f3",langprops:"Nyelv \u00e9s k\u00f3dol\u00e1s","meta_title":"C\u00edm","meta_keywords":"Kulcsszavak","meta_description":"Le\u00edr\u00e1s","meta_robots":"Robotok",doctypes:"Doctype",langcode:"Nyelvk\u00f3d",langdir:"\u00cdr\u00e1s ir\u00e1nya",ltr:"Balr\u00f3l jobra",rtl:"Jobbr\u00f3l balra","xml_pi":"XML deklar\u00e1ci\u00f3",encoding:"Karakterk\u00f3dol\u00e1s","appearance_bgprops":"H\u00e1tt\u00e9r tulajdons\u00e1gai","appearance_marginprops":"Test keret","appearance_linkprops":"Link sz\u00ednek","appearance_textprops":"Sz\u00f6veg tulajdons\u00e1gai",bgcolor:"H\u00e1tt\u00e9rsz\u00edn",bgimage:"H\u00e1tt\u00e9rk\u00e9p","left_margin":"Bal marg\u00f3","right_margin":"Jobb marg\u00f3","top_margin":"Fels\u0151 marg\u00f3","bottom_margin":"Als\u00f3 marg\u00f3","text_color":"Sz\u00f6vegsz\u00edn","font_size":"Bet\u0171m\u00e9ret","font_face":"Bet\u0171t\u00edpus","link_color":"Link sz\u00edn","hover_color":"F\u00f6l\u00e9vitt sz\u00edn","visited_color":"L\u00e1togatva sz\u00edn","active_color":"Akt\u00edv sz\u00edn",textcolor:"Sz\u00edn",fontsize:"Bet\u0171m\u00e9ret",fontface:"Bet\u0171t\u00edpus","meta_index_follow":"Indexel \u00e9s k\u00f6veti a linkeket","meta_index_nofollow":"Indexel, de nem k\u00f6veti a linkeket","meta_noindex_follow":"Nem indexel, de k\u00f6veti a linkeket","meta_noindex_nofollow":"Nem indexel \u00e9s nem k\u00f6veti a linkeket","appearance_style":"Stylesheet \u00e9s style tulajdons\u00e1gok",stylesheet:"Stylesheet",style:"Style",author:"Szerz\u0151",copyright:"Copyright",add:"\u00daj elem hozz\u00e1ad\u00e1sa",remove:"Kijel\u00f6lt elem t\u00f6rl\u00e9se",moveup:"Kijel\u00f6lt elem felfel\u00e9 mozgat\u00e1sa",movedown:"Kijel\u00f6lt elem lefel\u00e9 mozgat\u00e1sa","head_elements":"Fej elemek",info:"Inform\u00e1ci\u00f3","add_title":"C\u00edm elem","add_meta":"Meta elem","add_script":"Script elem","add_style":"Style elem","add_link":"Link elem","add_base":"Base elem","add_comment":"Comment elem","title_element":"Title elem","script_element":"Script elem","style_element":"Style elem","base_element":"Base elem","link_element":"Link elem","meta_element":"Meta elem","comment_element":"Megjegyz\u00e9s",src:"Src",language:"Language",href:"Href",target:"Target",type:"Type",charset:"Charset",defer:"Defer",media:"Media",properties:"Properties",name:"Name",value:"Value",content:"Content",rel:"Rel",rev:"Rev",hreflang:"Href lang","general_props":"\u00c1ltal\u00e1nos","advanced_props":"Halad\u00f3"});
|
||||
|
|
@ -1,85 +1 @@
|
|||
tinyMCE.addI18n('it.fullpage_dlg',{
|
||||
title:"Propriet\u00E0 Documento",
|
||||
meta_tab:"Generale",
|
||||
appearance_tab:"Aspetto",
|
||||
advanced_tab:"Avanzate",
|
||||
meta_props:"Informazioni Metatag",
|
||||
langprops:"Lingua e codifica",
|
||||
meta_title:"Titolo",
|
||||
meta_keywords:"Parole chiave",
|
||||
meta_description:"Descrizione",
|
||||
meta_robots:"Robots",
|
||||
doctypes:"Doctype",
|
||||
langcode:"Codice lingua",
|
||||
langdir:"Direzione testo",
|
||||
ltr:"Sinistra verso destra",
|
||||
rtl:"Destra verso sinistra",
|
||||
xml_pi:"Dichiarazione XML",
|
||||
encoding:"Codifica carattere",
|
||||
appearance_bgprops:"Propriet\u00E0 sfondo",
|
||||
appearance_marginprops:"Margini body",
|
||||
appearance_linkprops:"Colori collegamenti",
|
||||
appearance_textprops:"Propriet\u00E0 testo",
|
||||
bgcolor:"Colore sfondo",
|
||||
bgimage:"Immagine sfondo",
|
||||
left_margin:"Margine sinistro",
|
||||
right_margin:"Margine destro",
|
||||
top_margin:"Margine superiore",
|
||||
bottom_margin:"Margine inferiore",
|
||||
text_color:"Colore testo",
|
||||
font_size:"Dimensione carattere",
|
||||
font_face:"Tipo carattere",
|
||||
link_color:"Colore collegamento",
|
||||
hover_color:"Colore \'Hover\'",
|
||||
visited_color:"Colore \'Visited\'",
|
||||
active_color:"Colore \'Active\'",
|
||||
textcolor:"Colore",
|
||||
fontsize:"Dimensione carattere",
|
||||
fontface:"Famiglia carattere",
|
||||
meta_index_follow:"Indicizzare e seguire collegamenti",
|
||||
meta_index_nofollow:"Indicizzare e non segure collegamenti",
|
||||
meta_noindex_follow:"Non indicizzare ma seguire collegamenti",
|
||||
meta_noindex_nofollow:"Non indicizzare e non seguire collegamenti",
|
||||
appearance_style:"Propriet\u00E0 stili e fogli di stile",
|
||||
stylesheet:"Fogli di stile",
|
||||
style:"Stile",
|
||||
author:"Autore",
|
||||
copyright:"Copyright",
|
||||
add:"Aggiungi nuovo elemento",
|
||||
remove:"Rimuovi elemento selezionato",
|
||||
moveup:"Sposta elemento selezionato in alto",
|
||||
movedown:"Sposta elemento selezionato in basso",
|
||||
head_elements:"Elementi Head",
|
||||
info:"Informazioni",
|
||||
add_title:"Elemento Titolo",
|
||||
add_meta:"Elemento Meta",
|
||||
add_script:"Elemento Script",
|
||||
add_style:"Elemento Style",
|
||||
add_link:"Elemento Link",
|
||||
add_base:"Elemento Base",
|
||||
add_comment:"Nodo Commento",
|
||||
title_element:"Elemento Titolo",
|
||||
script_element:"Elemento Script",
|
||||
style_element:"Elemento Style",
|
||||
base_element:"Elemento Base",
|
||||
link_element:"Elemento Link",
|
||||
meta_element:"Elemento Meta",
|
||||
comment_element:"Commento",
|
||||
src:"Sorgente",
|
||||
language:"Linguaggio",
|
||||
href:"Href",
|
||||
target:"Target",
|
||||
type:"Tipo",
|
||||
charset:"Set caratteri",
|
||||
defer:"Defer",
|
||||
media:"Media",
|
||||
properties:"Propriet\u00E0",
|
||||
name:"Nome",
|
||||
value:"Valore",
|
||||
content:"Contenuto",
|
||||
rel:"Rel",
|
||||
rev:"Rev",
|
||||
hreflang:"Href lang",
|
||||
general_props:"Generale",
|
||||
advanced_props:"Avanzate"
|
||||
});
|
||||
tinyMCE.addI18n('it.fullpage_dlg',{title:"Propriet\u00e0 Documento",meta_tab:"Generale",appearance_tab:"Aspetto",advanced_tab:"Avanzate",meta_props:"Informazioni Metatag",langprops:"Lingua e codifica",meta_title:"Titolo",meta_keywords:"Parole chiave",meta_description:"Descrizione",meta_robots:"Robots",doctypes:"Doctype",langcode:"Codice lingua",langdir:"Direzione testo",ltr:"Sinistra verso destra",rtl:"Destra verso sinistra",xml_pi:"Dichiarazione XML",encoding:"Codifica carattere",appearance_bgprops:"Propriet\u00e0 sfondo",appearance_marginprops:"Margini body",appearance_linkprops:"Colori collegamenti",appearance_textprops:"Propriet\u00e0 testo",bgcolor:"Colore sfondo",bgimage:"Immagine sfondo",left_margin:"Margine sinistro",right_margin:"Margine destro",top_margin:"Margine superiore",bottom_margin:"Margine inferiore",text_color:"Colore testo",font_size:"Dimensione carattere",font_face:"Tipo carattere",link_color:"Colore collegamento",hover_color:"Colore \\\'Hover\\\'",visited_color:"Colore \\\'Visited\\\'",active_color:"Colore \\\'Active\\\'",textcolor:"Colore",fontsize:"Dimensione carattere",fontface:"Famiglia carattere",meta_index_follow:"Indicizzare e seguire collegamenti",meta_index_nofollow:"Indicizzare e non segure collegamenti",meta_noindex_follow:"Non indicizzare ma seguire collegamenti",meta_noindex_nofollow:"Non indicizzare e non seguire collegamenti",appearance_style:"Propriet\u00e0 stili e fogli di stile",stylesheet:"Fogli di stile",style:"Stile",author:"Autore",copyright:"Copyright",add:"Aggiungi nuovo elemento",remove:"Rimuovi elemento selezionato",moveup:"Sposta elemento selezionato in alto",movedown:"Sposta elemento selezionato in basso",head_elements:"Elementi Head",info:"Informazioni",add_title:"Elemento Titolo",add_meta:"Elemento Meta",add_script:"Elemento Script",add_style:"Elemento Style",add_link:"Elemento Link",add_base:"Elemento Base",add_comment:"Nodo Commento",title_element:"Elemento Titolo",script_element:"Elemento Script",style_element:"Elemento Style",base_element:"Elemento Base",link_element:"Elemento Link",meta_element:"Elemento Meta",comment_element:"Commento",src:"Sorgente",language:"Linguaggio",href:"Href",target:"Target",type:"Tipo",charset:"Set caratteri",defer:"Defer",media:"Media",properties:"Propriet\u00e0",name:"Nome",value:"Valore",content:"Contenuto",rel:"Rel",rev:"Rev",hreflang:"Href lang",general_props:"Generale",advanced_props:"Avanzate"});
|
||||
|
|
@ -1,85 +1 @@
|
|||
tinyMCE.addI18n('nl.fullpage_dlg',{
|
||||
title:"Documenteigenschappen",
|
||||
meta_tab:"Algemeen",
|
||||
appearance_tab:"Weergave",
|
||||
advanced_tab:"Geavanceerd",
|
||||
meta_props:"Meta informatie",
|
||||
langprops:"Taal en codering",
|
||||
meta_title:"Titel",
|
||||
meta_keywords:"Sleutelwoorden",
|
||||
meta_description:"Beschrijving",
|
||||
meta_robots:"Robots",
|
||||
doctypes:"Doctype",
|
||||
langcode:"Taalcode",
|
||||
langdir:"Taalrichting",
|
||||
ltr:"Van links naar rechts",
|
||||
rtl:"Van rechts naar links",
|
||||
xml_pi:"XML toewijzing",
|
||||
encoding:"Karaktercodering",
|
||||
appearance_bgprops:"Achtergrondeigenschappen",
|
||||
appearance_marginprops:"Bodymarge",
|
||||
appearance_linkprops:"Linkkleuren",
|
||||
appearance_textprops:"Teksteigenschappen",
|
||||
bgcolor:"Achtergrondkleur",
|
||||
bgimage:"Achtergrondafbeelding",
|
||||
left_margin:"Linkermarge",
|
||||
right_margin:"Rechtermarge",
|
||||
top_margin:"Bovenmarge",
|
||||
bottom_margin:"Ondermarge",
|
||||
text_color:"Tekstkleur",
|
||||
font_size:"Tekengrootte",
|
||||
font_face:"Lettertype",
|
||||
link_color:"Linkkleur",
|
||||
hover_color:"Hoverkleur",
|
||||
visited_color:"Bezocht kleur",
|
||||
active_color:"Actieve kleur",
|
||||
textcolor:"Kleur",
|
||||
fontsize:"Tekengrootte",
|
||||
fontface:"Lettertype",
|
||||
meta_index_follow:"Links indexeren en volgen",
|
||||
meta_index_nofollow:"Links indexeren maar niet volgen",
|
||||
meta_noindex_follow:"Links volgen maar niet indexeren",
|
||||
meta_noindex_nofollow:"Links niet indexeren en niet volgen",
|
||||
appearance_style:"Stijlblad en stijleigenschappen",
|
||||
stylesheet:"Stijlblad",
|
||||
style:"Stijl",
|
||||
author:"Auteur",
|
||||
copyright:"Copyright",
|
||||
add:"Nieuw element toevoegen",
|
||||
remove:"Geselecteerde elementen verwijderen",
|
||||
moveup:"Geselecteerde elementen omhoog verplaatsen",
|
||||
movedown:"Geselecteerde elementen omlaag verplaatsen",
|
||||
head_elements:"Kopelementen",
|
||||
info:"Informatie",
|
||||
add_title:"Titelelement",
|
||||
add_meta:"Meta-element",
|
||||
add_script:"Scriptelement",
|
||||
add_style:"Stijlelement",
|
||||
add_link:"Linkelement",
|
||||
add_base:"Basiselement",
|
||||
add_comment:"Opmerkingknooppunt",
|
||||
title_element:"Titelelement",
|
||||
script_element:"Scriptelement",
|
||||
style_element:"Stijlelement",
|
||||
base_element:"Basiselement",
|
||||
link_element:"Linkelement",
|
||||
meta_element:"Meta-element",
|
||||
comment_element:"Opmerking",
|
||||
src:"Bron",
|
||||
language:"Taal",
|
||||
href:"Href",
|
||||
target:"Doel",
|
||||
type:"Type",
|
||||
charset:"Karakterset",
|
||||
defer:"Uitstellen",
|
||||
media:"Media",
|
||||
properties:"Eigenschappen",
|
||||
name:"Naam",
|
||||
value:"Waarde",
|
||||
content:"Inhoud",
|
||||
rel:"Rel",
|
||||
rev:"Rev",
|
||||
hreflang:"Href taal",
|
||||
general_props:"Algemeen",
|
||||
advanced_props:"Geavanceerd"
|
||||
});
|
||||
tinyMCE.addI18n('nl.fullpage_dlg',{title:"Documenteigenschappen","meta_tab":"Algemeen","appearance_tab":"Weergave","advanced_tab":"Geavanceerd","meta_props":"Meta informatie",langprops:"Taal en codering","meta_title":"Titel","meta_keywords":"Sleutelwoorden","meta_description":"Beschrijving","meta_robots":"Robots",doctypes:"Doctype",langcode:"Taalcode",langdir:"Taalrichting",ltr:"Van links naar rechts",rtl:"Van rechts naar links","xml_pi":"XML toewijzing",encoding:"Karaktercodering","appearance_bgprops":"Achtergrondeigenschappen","appearance_marginprops":"Bodymarge","appearance_linkprops":"Linkkleuren","appearance_textprops":"Teksteigenschappen",bgcolor:"Achtergrondkleur",bgimage:"Achtergrondafbeelding","left_margin":"Linkermarge","right_margin":"Rechtermarge","top_margin":"Bovenmarge","bottom_margin":"Ondermarge","text_color":"Tekstkleur","font_size":"Tekengrootte","font_face":"Lettertype","link_color":"Linkkleur","hover_color":"Hoverkleur","visited_color":"Bezocht kleur","active_color":"Actieve kleur",textcolor:"Kleur",fontsize:"Tekengrootte",fontface:"Lettertype","meta_index_follow":"Links indexeren en volgen","meta_index_nofollow":"Links indexeren maar niet volgen","meta_noindex_follow":"Links volgen maar niet indexeren","meta_noindex_nofollow":"Links niet indexeren en niet volgen","appearance_style":"Stijlblad en stijleigenschappen",stylesheet:"Stijlblad",style:"Stijl",author:"Auteur",copyright:"Copyright",add:"Nieuw element toevoegen",remove:"Geselecteerde elementen verwijderen",moveup:"Geselecteerde elementen omhoog verplaatsen",movedown:"Geselecteerde elementen omlaag verplaatsen","head_elements":"Kopelementen",info:"Informatie","add_title":"Titelelement","add_meta":"Meta-element","add_script":"Scriptelement","add_style":"Stijlelement","add_link":"Linkelement","add_base":"Basiselement","add_comment":"Opmerkingknooppunt","title_element":"Titelelement","script_element":"Scriptelement","style_element":"Stijlelement","base_element":"Basiselement","link_element":"Linkelement","meta_element":"Meta-element","comment_element":"Opmerking",src:"Bron",language:"Taal",href:"Href",target:"Doel",type:"Type",charset:"Karakterset",defer:"Uitstellen",media:"Media",properties:"Eigenschappen",name:"Naam",value:"Waarde",content:"Inhoud",rel:"Rel",rev:"Rev",hreflang:"Href taal","general_props":"Algemeen","advanced_props":"Geavanceerd"});
|
||||
|
|
@ -1,85 +0,0 @@
|
|||
tinyMCE.addI18n('nn.fullpage_dlg',{
|
||||
title:"Dokumenteigenskapar",
|
||||
meta_tab:"Generelt",
|
||||
appearance_tab:"Utsj\u00E5nad",
|
||||
advanced_tab:"Avansert",
|
||||
meta_props:"Metainformasjon",
|
||||
langprops:"Spr\u00E5k og koding",
|
||||
meta_title:"Tittel",
|
||||
meta_keywords:"N\u00F8kkelord",
|
||||
meta_description:"Omtale",
|
||||
meta_robots:"Roboter",
|
||||
doctypes:"Doctype",
|
||||
langcode:"Spr\u00E5kkode",
|
||||
langdir:"Skriftretning",
|
||||
ltr:"Venstre mot h\u00F8gre",
|
||||
rtl:"H\u00F8gre mot venstre",
|
||||
xml_pi:"XML-deklarasjon",
|
||||
encoding:"Teiknkonvertering",
|
||||
appearance_bgprops:"Bakgrunnseigenskapar",
|
||||
appearance_marginprops:"Body-marg",
|
||||
appearance_linkprops:"Lenkjefargar",
|
||||
appearance_textprops:"Teksteigenskapar",
|
||||
bgcolor:"Bakgrunn",
|
||||
bgimage:"Bakgrunnsbilete",
|
||||
left_margin:"Venstre marg",
|
||||
right_margin:"H\u00F8gre marg",
|
||||
top_margin:"Toppmarg",
|
||||
bottom_margin:"Botnmarg",
|
||||
text_color:"Farge",
|
||||
font_size:"Skriftstorleik",
|
||||
font_face:"Skrifttype",
|
||||
link_color:"Lenkjefarge",
|
||||
hover_color:"Mus-over-farge",
|
||||
visited_color:"Bes\u00F8kt-farge",
|
||||
active_color:"Aktiv farge",
|
||||
textcolor:"Farge",
|
||||
fontsize:"Skriftstorleik",
|
||||
fontface:"Skriftfamile",
|
||||
meta_index_follow:"Indekser, og f\u00F8lg lenkjene",
|
||||
meta_index_nofollow:"Indekser, men ikkje f\u00F8lg lenkjene",
|
||||
meta_noindex_follow:"Ikkje indekser, men f\u00F8lg lenkjene",
|
||||
meta_noindex_nofollow:"Ikkje indekser, og ikkje f\u00F8lg lenkjene",
|
||||
appearance_style:"Stilark og stileigenskapar",
|
||||
stylesheet:"Stilark",
|
||||
style:"Stil",
|
||||
author:"Forfattar",
|
||||
copyright:"Copyright",
|
||||
add:"Legg til nytt element",
|
||||
remove:"Fjern",
|
||||
moveup:"Flytt markert element opp",
|
||||
movedown:"Flytt markert element ned",
|
||||
head_elements:"Overskriftselement",
|
||||
info:"Informasjon",
|
||||
add_title:"Tittelelement",
|
||||
add_meta:"Metaelement",
|
||||
add_script:"Skriptelement",
|
||||
add_style:"Stilelement",
|
||||
add_link:"Lenkjeelement",
|
||||
add_base:"Basiselement",
|
||||
add_comment:"Kommentarnode",
|
||||
title_element:"Tittelelement",
|
||||
script_element:"Skriptelement",
|
||||
style_element:"Stilelement",
|
||||
base_element:"Basiselement",
|
||||
link_element:"Lenkjeelement",
|
||||
meta_element:"Metaelement",
|
||||
comment_element:"Kommentar",
|
||||
src:"Skjerm",
|
||||
language:"Spr\u00E5k",
|
||||
href:"Href",
|
||||
target:"M\u00E5l",
|
||||
type:"Type",
|
||||
charset:"Teiknsett",
|
||||
defer:"Defer",
|
||||
media:"Objekt",
|
||||
properties:"Eigenskapar",
|
||||
name:"Namn",
|
||||
value:"Verdi",
|
||||
content:"Nytt lag...",
|
||||
rel:"Sida sitt tilh\u00F8ve til m\u00E5let",
|
||||
rev:"M\u00E5let sitt tilh\u00F8ve til sida",
|
||||
hreflang:"Href lang",
|
||||
general_props:"Generelt",
|
||||
advanced_props:"Generelle eigenskapar"
|
||||
});
|
||||
|
|
@ -1,85 +1 @@
|
|||
tinyMCE.addI18n('pl.fullpage_dlg',{
|
||||
title:"W\u0142a\u015Bciwo\u015Bci dokumentu",
|
||||
meta_tab:"Og\u00F3lne",
|
||||
appearance_tab:"Wygl\u0105d",
|
||||
advanced_tab:"Zaawansowane",
|
||||
meta_props:"Meta informacje",
|
||||
langprops:"J\u0119zyk i kodowanie",
|
||||
meta_title:"Tytu\u0142",
|
||||
meta_keywords:"S\u0142owa kluczowe",
|
||||
meta_description:"Opis",
|
||||
meta_robots:"Robots",
|
||||
doctypes:"Typ dokumentu",
|
||||
langcode:"Oznaczenie kodowe j\u0119zyka",
|
||||
langdir:"Kierunek czytania tekstu",
|
||||
ltr:"Kierunek z lewej do prawej",
|
||||
rtl:"Kierunek z prawej do lewej",
|
||||
xml_pi:"XML deklaracja",
|
||||
encoding:"Kodowanie znak\u00F3w",
|
||||
appearance_bgprops:"W\u0142a\u015Bciwo\u015Bci t\u0142a",
|
||||
appearance_marginprops:"Marginesy strony",
|
||||
appearance_linkprops:"Kolor odno\u015Bnik\u00F3w",
|
||||
appearance_textprops:"W\u0142a\u015Bciwo\u015Bci tekstu",
|
||||
bgcolor:"Kolor t\u0142a",
|
||||
bgimage:"Obrazek t\u0142a",
|
||||
left_margin:"Lewy margines",
|
||||
right_margin:"Prawy margines",
|
||||
top_margin:"G\u00F3rny margines",
|
||||
bottom_margin:"Dolny margines",
|
||||
text_color:"Kolor tekstu",
|
||||
font_size:"Rozmiar czcionki",
|
||||
font_face:"Czcionka",
|
||||
link_color:"Kolor odno\u015Bnika",
|
||||
hover_color:"Kolor po najechaniu myszk\u0105",
|
||||
visited_color:"Kolor odwiedzonych link\u00F3w",
|
||||
active_color:"Kolor aktywnych link\u00F3w",
|
||||
textcolor:"Kolor",
|
||||
fontsize:"Rozmiar czcionki",
|
||||
fontface:"Rodzaj czcionki",
|
||||
meta_index_follow:"Indeksuj i pod\u0105\u017Caj za linkami",
|
||||
meta_index_nofollow:"Indeksuj i nie pod\u0105\u017Caj za odno\u015Bnikami",
|
||||
meta_noindex_follow:"Nie indeksuj i pod\u0105\u017Caj za odno\u015Bnikami",
|
||||
meta_noindex_nofollow:"Nie indeksuj i nie pod\u0105\u017Caj za odno\u015Bnikami",
|
||||
appearance_style:"Arkusze i w\u0142a\u015Bciwo\u015Bci styl\u00F3w",
|
||||
stylesheet:"Arkusz styl\u00F3w",
|
||||
style:"Styl",
|
||||
author:"Autor",
|
||||
copyright:"Prawa autorskie",
|
||||
add:"Dodaj nowy element",
|
||||
remove:"Usu\u0144 wybrany element",
|
||||
moveup:"Przesu\u0144 wybrane element do g\u00F3ry",
|
||||
movedown:"Przesu\u0144 wybrane element w d\u00F3\u0142",
|
||||
head_elements:"Elementy nag\u0142\u00F3wka",
|
||||
info:"Informacja",
|
||||
add_title:"Tytu\u0142",
|
||||
add_meta:"Meta tag",
|
||||
add_script:"Skrypt",
|
||||
add_style:"Styl",
|
||||
add_link:"Odno\u015Bnik",
|
||||
add_base:"Baza",
|
||||
add_comment:"Komentarz",
|
||||
title_element:"Tytu\u0142",
|
||||
script_element:"Skrypt",
|
||||
style_element:"Styl",
|
||||
base_element:"Baza",
|
||||
link_element:"Odno\u015Bnik",
|
||||
meta_element:"Meta tag",
|
||||
comment_element:"Komentarz",
|
||||
src:"\u0179r\u00F3d\u0142o",
|
||||
language:"J\u0119zyk",
|
||||
href:"Odno\u015Bnik",
|
||||
target:"Cel",
|
||||
type:"Typ",
|
||||
charset:"Kodowanie",
|
||||
defer:"Defer",
|
||||
media:"Media",
|
||||
properties:"W\u0142a\u015Bciwo\u015Bci",
|
||||
name:"Nazwa",
|
||||
value:"Warto\u015B\u0107",
|
||||
content:"Zawarto\u015B\u0107",
|
||||
rel:"Rel",
|
||||
rev:"Rev",
|
||||
hreflang:"J\u0119zyk odno\u015Bnika",
|
||||
general_props:"G\u0142\u00F3wne",
|
||||
advanced_props:"Zaawansowane"
|
||||
});
|
||||
tinyMCE.addI18n('pl.fullpage_dlg',{title:"W\u0142a\u015bciwo\u015bci dokumentu","meta_tab":"Og\u00f3lne","appearance_tab":"Wygl\u0105d","advanced_tab":"Zaawansowane","meta_props":"Meta informacje",langprops:"J\u0119zyk i kodowanie","meta_title":"Tytu\u0142","meta_keywords":"S\u0142owa kluczowe","meta_description":"Opis","meta_robots":"Roboty",doctypes:"Typ dokumentu",langcode:"Oznaczenie kodowe j\u0119zyka",langdir:"Kierunek czytania tekstu",ltr:"Kierunek z lewej do prawej",rtl:"Kierunek z prawej do lewej","xml_pi":"Deklaracja XML",encoding:"Kodowanie znak\u00f3w","appearance_bgprops":"W\u0142a\u015bciwo\u015bci t\u0142a","appearance_marginprops":"Marginesy strony","appearance_linkprops":"Kolor odno\u015bnik\u00f3w","appearance_textprops":"W\u0142a\u015bciwo\u015bci tekstu",bgcolor:"Kolor t\u0142a",bgimage:"Obrazek t\u0142a","left_margin":"Lewy margines","right_margin":"Prawy margines","top_margin":"G\u00f3rny margines","bottom_margin":"Dolny margines","text_color":"Kolor tekstu","font_size":"Rozmiar czcionki","font_face":"Czcionka","link_color":"Kolor odno\u015bnika","hover_color":"Kolor po najechaniu myszk\u0105","visited_color":"Kolor odwiedzonych link\u00f3w","active_color":"Kolor aktywnych link\u00f3w",textcolor:"Kolor",fontsize:"Rozmiar czcionki",fontface:"Rodzaj czcionki","meta_index_follow":"Indeksuj i pod\u0105\u017caj za linkami","meta_index_nofollow":"Indeksuj i nie pod\u0105\u017caj za odno\u015bnikami","meta_noindex_follow":"Nie indeksuj i pod\u0105\u017caj za odno\u015bnikami","meta_noindex_nofollow":"Nie indeksuj i nie pod\u0105\u017caj za odno\u015bnikami","appearance_style":"Arkusze i w\u0142a\u015bciwo\u015bci styl\u00f3w",stylesheet:"Arkusz styl\u00f3w",style:"Styl",author:"Autor",copyright:"Prawa autorskie",add:"Dodaj nowy element",remove:"Usu\u0144 wybrany element",moveup:"Przesu\u0144 wybrane element do g\u00f3ry",movedown:"Przesu\u0144 wybrane element w d\u00f3\u0142","head_elements":"Elementy nag\u0142\u00f3wka",info:"Informacja","add_title":"Tytu\u0142","add_meta":"Meta tag","add_script":"Skrypt","add_style":"Styl","add_link":"Odno\u015bnik","add_base":"Baza","add_comment":"Komentarz","title_element":"Tytu\u0142","script_element":"Skrypt","style_element":"Styl","base_element":"Baza","link_element":"Odno\u015bnik","meta_element":"Meta tag","comment_element":"Komentarz",src:"\u0179r\u00f3d\u0142o",language:"J\u0119zyk",href:"Odno\u015bnik",target:"Cel",type:"Typ",charset:"Kodowanie",defer:"Defer",media:"Media",properties:"W\u0142a\u015bciwo\u015bci",name:"Nazwa",value:"Warto\u015b\u0107",content:"Zawarto\u015b\u0107",rel:"Rel",rev:"Rev",hreflang:"J\u0119zyk odno\u015bnika","general_props":"G\u0142\u00f3wne","advanced_props":"Zaawansowane"});
|
||||
|
|
@ -1,85 +1 @@
|
|||
tinyMCE.addI18n('pt.fullpage_dlg',{
|
||||
title:"Propriedades do documento",
|
||||
meta_tab:"Geral",
|
||||
appearance_tab:"Apar\u00C3\u0083\u00C2\u00AAncia",
|
||||
advanced_tab:"Avan\u00C3\u0083\u00C2\u00A7ado",
|
||||
meta_props:"Meta-informa\u00C3\u0083\u00C2\u00A7\u00C3\u0083\u00C2\u00A3o",
|
||||
langprops:"Linguagem e codifica\u00C3\u0083\u00C2\u00A7\u00C3\u0083\u00C2\u00A3o",
|
||||
meta_title:"T\u00C3\u0083\u00C2\u00ADtulo",
|
||||
meta_keywords:"Palavras-chave",
|
||||
meta_description:"Descri\u00C3\u0083\u00C2\u00A7\u00C3\u0083\u00C2\u00A3o",
|
||||
meta_robots:"Robots",
|
||||
doctypes:"Doctype",
|
||||
langcode:"C\u00C3\u0083\u00C2\u00B3digo de linguagem",
|
||||
langdir:"Direc\u00C3\u0083\u00C2\u00A7\u00C3\u0083\u00C2\u00A3o do texto",
|
||||
ltr:"Esquerda para direita",
|
||||
rtl:"Direita para esquerda",
|
||||
xml_pi:"Declara\u00C3\u0083\u00C2\u00A7\u00C3\u0083\u00C2\u00A3o XML",
|
||||
encoding:"Codifica\u00C3\u0083\u00C2\u00A7\u00C3\u0083\u00C2\u00A3o de caracteres",
|
||||
appearance_bgprops:"Propriedades do plano de fundo",
|
||||
appearance_marginprops:"Margens (BODY)",
|
||||
appearance_linkprops:"Cores dos links",
|
||||
appearance_textprops:"Propriedades de texto",
|
||||
bgcolor:"Cor de fundo",
|
||||
bgimage:"Imagem de fundo",
|
||||
left_margin:"Margem esquerda",
|
||||
right_margin:"Margem direita",
|
||||
top_margin:"Margem topo",
|
||||
bottom_margin:"Margem base",
|
||||
text_color:"Cor do texto",
|
||||
font_size:"Tamanho fonte",
|
||||
font_face:"Fam\u00C3\u0083\u00C2\u00ADlia fonte",
|
||||
link_color:"Cores dos links",
|
||||
hover_color:"Hover",
|
||||
visited_color:"Visited",
|
||||
active_color:"Active",
|
||||
textcolor:"Cor",
|
||||
fontsize:"Tamanho fonte",
|
||||
fontface:"Fam\u00C3\u0083\u00C2\u00ADlia fonte",
|
||||
meta_index_follow:"Indexar e seguir os hyperlinks",
|
||||
meta_index_nofollow:"Indexar e n\u00C3\u0083\u00C2\u00A3o seguir os hyperlinks",
|
||||
meta_noindex_follow:"Seguir hyperlinks mas, n\u00C3\u0083\u00C2\u00A3o indexar",
|
||||
meta_noindex_nofollow:"N\u00C3\u0083\u00C2\u00A3o indexar/n\u00C3\u0083\u00C2\u00A3o seguir hyperlinks.",
|
||||
appearance_style:"Propriedades de folhas de estilo",
|
||||
stylesheet:"Folha de estilo",
|
||||
style:"Estilo",
|
||||
author:"Autor",
|
||||
copyright:"Copyright",
|
||||
add:"Acrescentar Novo elemento",
|
||||
remove:"Remover elemento seleccionado",
|
||||
moveup:"Subir elemento seleccionado",
|
||||
movedown:"Descer elemento seleccionado",
|
||||
head_elements:"Elementos HEAD",
|
||||
info:"Informa\u00C3\u0083\u00C2\u00A7\u00C3\u0083\u00C2\u00A3o",
|
||||
add_title:"TITLE",
|
||||
add_meta:"META",
|
||||
add_script:"SCRIPT",
|
||||
add_style:"STYLE",
|
||||
add_link:"LINK",
|
||||
add_base:"BASE",
|
||||
add_comment:"Coment\u00C3\u0083\u00C2\u00A1rio",
|
||||
title_element:"TITLE",
|
||||
script_element:"SCRIPT",
|
||||
style_element:"STYLE",
|
||||
base_element:"BASE",
|
||||
link_element:"LINK",
|
||||
meta_element:"META",
|
||||
comment_element:"Coment\u00C3\u0083\u00C2\u00A1rio",
|
||||
src:"Src",
|
||||
language:"Linguagem",
|
||||
href:"Href",
|
||||
target:"Alvo",
|
||||
type:"Tipo",
|
||||
charset:"Charset",
|
||||
defer:"Adiar",
|
||||
media:"Media",
|
||||
properties:"Propriedades",
|
||||
name:"Nome",
|
||||
value:"Valor",
|
||||
content:"Conte\u00C3\u0083\u00C2\u00BAdo",
|
||||
rel:"rel",
|
||||
rev:"rev",
|
||||
hreflang:"Href lang",
|
||||
general_props:"Geral",
|
||||
advanced_props:"Avan\u00C3\u0083\u00C2\u00A7ado"
|
||||
});
|
||||
tinyMCE.addI18n('pt.fullpage_dlg',{title:"Propriedades do documento","meta_tab":"Geral","appearance_tab":"Apar\u00eancia","advanced_tab":"Avan\u00e7ado","meta_props":"Meta-informa\u00e7\u00e3o",langprops:"Idioma e codifica\u00e7\u00e3o","meta_title":"T\u00edtulo","meta_keywords":"Palavras-chave","meta_description":"Descri\u00e7\u00e3o","meta_robots":"Robots",doctypes:"Doctype",langcode:"C\u00f3digo do idioma",langdir:"Dire\u00e7\u00e3o do texto",ltr:"Esquerda para direita",rtl:"Direita para esquerda","xml_pi":"Declara\u00e7\u00e3o XML",encoding:"Codifica\u00e7\u00e3o de caracteres","appearance_bgprops":"Propriedades do plano de fundo","appearance_marginprops":"Margens (BODY)","appearance_linkprops":"Cores dos links","appearance_textprops":"Propriedades de texto",bgcolor:"Cor de fundo",bgimage:"Imagem de fundo","left_margin":"Margem esquerda","right_margin":"Margem direita","top_margin":"Margem topo","bottom_margin":"Margem base","text_color":"Cor do texto","font_size":"Tamanho fonte","font_face":"Fonte","link_color":"Cores dos links","hover_color":"Hover","visited_color":"Visitado","active_color":"Ativo",textcolor:"Cor",fontsize:"Tamanho fonte",fontface:"Fonte","meta_index_follow":"Indexar e seguir os hyperlinks","meta_index_nofollow":"Indexar e n\u00e3o seguir os hyperlinks","meta_noindex_follow":"Seguir hyperlinks, mas n\u00e3o indexar","meta_noindex_nofollow":"N\u00e3o indexar / n\u00e3o seguir hyperlinks.","appearance_style":"Propriedades de folhas de estilo",stylesheet:"Folha de estilo",style:"Estilo",author:"Autor",copyright:"Copyright",add:"Acrescentar novo elemento",remove:"Remover elemento selecionado",moveup:"Subir elemento selecionado",movedown:"Descer elemento selecionado","head_elements":"Elementos HEAD",info:"Informa\u00e7\u00e3o","add_title":"TITLE","add_meta":"META","add_script":"SCRIPT","add_style":"STYLE","add_link":"LINK","add_base":"BASE","add_comment":"Coment\u00e1rio","title_element":"TITLE","script_element":"SCRIPT","style_element":"STYLE","base_element":"BASE","link_element":"LINK","meta_element":"META","comment_element":"Coment\u00e1rio",src:"src",language:"Idioma",href:"href",target:"Alvo",type:"Tipo",charset:"Charset",defer:"Adiar",media:"Media",properties:"Propriedades",name:"Nome",value:"Valor",content:"Conte\u00fado",rel:"rel",rev:"rev",hreflang:"href lang","general_props":"Geral","advanced_props":"Avan\u00e7ado"});
|
||||
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue