Add WebCms
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 239 B |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 600 B |
|
After Width: | Height: | Size: 325 B |
|
After Width: | Height: | Size: 301 B |
|
After Width: | Height: | Size: 439 B |
|
After Width: | Height: | Size: 384 B |
|
After Width: | Height: | Size: 43 B |
|
After Width: | Height: | Size: 597 B |
|
After Width: | Height: | Size: 415 B |
@@ -0,0 +1,73 @@
|
||||
tinyMCEPopup.requireLangPack();
|
||||
|
||||
function init() {
|
||||
var ed, tcont;
|
||||
|
||||
tinyMCEPopup.resizeToInnerSize();
|
||||
ed = tinyMCEPopup.editor;
|
||||
|
||||
// Give FF some time
|
||||
window.setTimeout(insertHelpIFrame, 10);
|
||||
|
||||
tcont = document.getElementById('plugintablecontainer');
|
||||
document.getElementById('plugins_tab').style.display = 'none';
|
||||
|
||||
var html = "";
|
||||
html += '<table id="plugintable">';
|
||||
html += '<thead>';
|
||||
html += '<tr>';
|
||||
html += '<td>' + ed.getLang('advanced_dlg.about_plugin') + '</td>';
|
||||
html += '<td>' + ed.getLang('advanced_dlg.about_author') + '</td>';
|
||||
html += '<td>' + ed.getLang('advanced_dlg.about_version') + '</td>';
|
||||
html += '</tr>';
|
||||
html += '</thead>';
|
||||
html += '<tbody>';
|
||||
|
||||
tinymce.each(ed.plugins, function(p, n) {
|
||||
var info;
|
||||
|
||||
if (!p.getInfo)
|
||||
return;
|
||||
|
||||
html += '<tr>';
|
||||
|
||||
info = p.getInfo();
|
||||
|
||||
if (info.infourl != null && info.infourl != '')
|
||||
html += '<td width="50%" title="' + n + '"><a href="' + info.infourl + '" target="_blank">' + info.longname + '</a></td>';
|
||||
else
|
||||
html += '<td width="50%" title="' + n + '">' + info.longname + '</td>';
|
||||
|
||||
if (info.authorurl != null && info.authorurl != '')
|
||||
html += '<td width="35%"><a href="' + info.authorurl + '" target="_blank">' + info.author + '</a></td>';
|
||||
else
|
||||
html += '<td width="35%">' + info.author + '</td>';
|
||||
|
||||
html += '<td width="15%">' + info.version + '</td>';
|
||||
html += '</tr>';
|
||||
|
||||
document.getElementById('plugins_tab').style.display = '';
|
||||
|
||||
});
|
||||
|
||||
html += '</tbody>';
|
||||
html += '</table>';
|
||||
|
||||
tcont.innerHTML = html;
|
||||
|
||||
tinyMCEPopup.dom.get('version').innerHTML = tinymce.majorVersion + "." + tinymce.minorVersion;
|
||||
tinyMCEPopup.dom.get('date').innerHTML = tinymce.releaseDate;
|
||||
}
|
||||
|
||||
function insertHelpIFrame() {
|
||||
var html;
|
||||
|
||||
if (tinyMCEPopup.getParam('docs_url')) {
|
||||
html = '<iframe width="100%" height="300" src="' + tinyMCEPopup.editor.baseURI.toAbsolute(tinyMCEPopup.getParam('docs_url')) + '"></iframe>';
|
||||
document.getElementById('iframecontainer').innerHTML = html;
|
||||
document.getElementById('help_tab').style.display = 'block';
|
||||
document.getElementById('help_tab').setAttribute("aria-hidden", "false");
|
||||
}
|
||||
}
|
||||
|
||||
tinyMCEPopup.onInit.add(init);
|
||||
@@ -0,0 +1,44 @@
|
||||
tinyMCEPopup.requireLangPack();
|
||||
|
||||
var AnchorDialog = {
|
||||
init : function(ed) {
|
||||
var action, elm, f = document.forms[0];
|
||||
|
||||
this.editor = ed;
|
||||
elm = ed.dom.getParent(ed.selection.getNode(), 'A');
|
||||
v = ed.dom.getAttrib(elm, 'name');
|
||||
|
||||
if (v) {
|
||||
this.action = 'update';
|
||||
f.anchorName.value = v;
|
||||
}
|
||||
|
||||
f.insert.value = ed.getLang(elm ? 'update' : 'insert');
|
||||
},
|
||||
|
||||
update : function() {
|
||||
var ed = this.editor, elm, name = document.forms[0].anchorName.value;
|
||||
|
||||
if (!name || !/^[a-z][a-z0-9\-\_:\.]*$/i.test(name)) {
|
||||
tinyMCEPopup.alert('advanced_dlg.anchor_invalid');
|
||||
return;
|
||||
}
|
||||
|
||||
tinyMCEPopup.restoreSelection();
|
||||
|
||||
if (this.action != 'update')
|
||||
ed.selection.collapse(1);
|
||||
|
||||
elm = ed.dom.getParent(ed.selection.getNode(), 'A');
|
||||
if (elm) {
|
||||
elm.setAttribute('name', name);
|
||||
elm.name = name;
|
||||
} else
|
||||
// create with zero-sized nbsp so that in Webkit where anchor is on last line by itself caret cannot be placed after it
|
||||
ed.execCommand('mceInsertContent', 0, ed.dom.createHTML('a', {name : name, 'class' : 'mceItemAnchor'}, '\uFEFF'));
|
||||
|
||||
tinyMCEPopup.close();
|
||||
}
|
||||
};
|
||||
|
||||
tinyMCEPopup.onInit.add(AnchorDialog.init, AnchorDialog);
|
||||
@@ -0,0 +1,363 @@
|
||||
/**
|
||||
* charmap.js
|
||||
*
|
||||
* Copyright 2009, Moxiecode Systems AB
|
||||
* Released under LGPL License.
|
||||
*
|
||||
* License: http://tinymce.moxiecode.com/license
|
||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
||||
*/
|
||||
|
||||
tinyMCEPopup.requireLangPack();
|
||||
|
||||
var charmap = [
|
||||
[' ', ' ', true, 'no-break space'],
|
||||
['&', '&', true, 'ampersand'],
|
||||
['"', '"', true, 'quotation mark'],
|
||||
// finance
|
||||
['¢', '¢', true, 'cent sign'],
|
||||
['€', '€', true, 'euro sign'],
|
||||
['£', '£', true, 'pound sign'],
|
||||
['¥', '¥', true, 'yen sign'],
|
||||
// signs
|
||||
['©', '©', true, 'copyright sign'],
|
||||
['®', '®', true, 'registered sign'],
|
||||
['™', '™', true, 'trade mark sign'],
|
||||
['‰', '‰', true, 'per mille sign'],
|
||||
['µ', 'µ', true, 'micro sign'],
|
||||
['·', '·', true, 'middle dot'],
|
||||
['•', '•', true, 'bullet'],
|
||||
['…', '…', true, 'three dot leader'],
|
||||
['′', '′', true, 'minutes / feet'],
|
||||
['″', '″', true, 'seconds / inches'],
|
||||
['§', '§', true, 'section sign'],
|
||||
['¶', '¶', true, 'paragraph sign'],
|
||||
['ß', 'ß', true, 'sharp s / ess-zed'],
|
||||
// quotations
|
||||
['‹', '‹', true, 'single left-pointing angle quotation mark'],
|
||||
['›', '›', true, 'single right-pointing angle quotation mark'],
|
||||
['«', '«', true, 'left pointing guillemet'],
|
||||
['»', '»', true, 'right pointing guillemet'],
|
||||
['‘', '‘', true, 'left single quotation mark'],
|
||||
['’', '’', true, 'right single quotation mark'],
|
||||
['“', '“', true, 'left double quotation mark'],
|
||||
['”', '”', true, 'right double quotation mark'],
|
||||
['‚', '‚', true, 'single low-9 quotation mark'],
|
||||
['„', '„', true, 'double low-9 quotation mark'],
|
||||
['<', '<', true, 'less-than sign'],
|
||||
['>', '>', true, 'greater-than sign'],
|
||||
['≤', '≤', true, 'less-than or equal to'],
|
||||
['≥', '≥', true, 'greater-than or equal to'],
|
||||
['–', '–', true, 'en dash'],
|
||||
['—', '—', true, 'em dash'],
|
||||
['¯', '¯', true, 'macron'],
|
||||
['‾', '‾', true, 'overline'],
|
||||
['¤', '¤', true, 'currency sign'],
|
||||
['¦', '¦', true, 'broken bar'],
|
||||
['¨', '¨', true, 'diaeresis'],
|
||||
['¡', '¡', true, 'inverted exclamation mark'],
|
||||
['¿', '¿', true, 'turned question mark'],
|
||||
['ˆ', 'ˆ', true, 'circumflex accent'],
|
||||
['˜', '˜', true, 'small tilde'],
|
||||
['°', '°', true, 'degree sign'],
|
||||
['−', '−', true, 'minus sign'],
|
||||
['±', '±', true, 'plus-minus sign'],
|
||||
['÷', '÷', true, 'division sign'],
|
||||
['⁄', '⁄', true, 'fraction slash'],
|
||||
['×', '×', true, 'multiplication sign'],
|
||||
['¹', '¹', true, 'superscript one'],
|
||||
['²', '²', true, 'superscript two'],
|
||||
['³', '³', true, 'superscript three'],
|
||||
['¼', '¼', true, 'fraction one quarter'],
|
||||
['½', '½', true, 'fraction one half'],
|
||||
['¾', '¾', true, 'fraction three quarters'],
|
||||
// math / logical
|
||||
['ƒ', 'ƒ', true, 'function / florin'],
|
||||
['∫', '∫', true, 'integral'],
|
||||
['∑', '∑', true, 'n-ary sumation'],
|
||||
['∞', '∞', true, 'infinity'],
|
||||
['√', '√', true, 'square root'],
|
||||
['∼', '∼', false,'similar to'],
|
||||
['≅', '≅', false,'approximately equal to'],
|
||||
['≈', '≈', true, 'almost equal to'],
|
||||
['≠', '≠', true, 'not equal to'],
|
||||
['≡', '≡', true, 'identical to'],
|
||||
['∈', '∈', false,'element of'],
|
||||
['∉', '∉', false,'not an element of'],
|
||||
['∋', '∋', false,'contains as member'],
|
||||
['∏', '∏', true, 'n-ary product'],
|
||||
['∧', '∧', false,'logical and'],
|
||||
['∨', '∨', false,'logical or'],
|
||||
['¬', '¬', true, 'not sign'],
|
||||
['∩', '∩', true, 'intersection'],
|
||||
['∪', '∪', false,'union'],
|
||||
['∂', '∂', true, 'partial differential'],
|
||||
['∀', '∀', false,'for all'],
|
||||
['∃', '∃', false,'there exists'],
|
||||
['∅', '∅', false,'diameter'],
|
||||
['∇', '∇', false,'backward difference'],
|
||||
['∗', '∗', false,'asterisk operator'],
|
||||
['∝', '∝', false,'proportional to'],
|
||||
['∠', '∠', false,'angle'],
|
||||
// undefined
|
||||
['´', '´', true, 'acute accent'],
|
||||
['¸', '¸', true, 'cedilla'],
|
||||
['ª', 'ª', true, 'feminine ordinal indicator'],
|
||||
['º', 'º', true, 'masculine ordinal indicator'],
|
||||
['†', '†', true, 'dagger'],
|
||||
['‡', '‡', true, 'double dagger'],
|
||||
// alphabetical special chars
|
||||
['À', 'À', true, 'A - grave'],
|
||||
['Á', 'Á', true, 'A - acute'],
|
||||
['Â', 'Â', true, 'A - circumflex'],
|
||||
['Ã', 'Ã', true, 'A - tilde'],
|
||||
['Ä', 'Ä', true, 'A - diaeresis'],
|
||||
['Å', 'Å', true, 'A - ring above'],
|
||||
['Æ', 'Æ', true, 'ligature AE'],
|
||||
['Ç', 'Ç', true, 'C - cedilla'],
|
||||
['È', 'È', true, 'E - grave'],
|
||||
['É', 'É', true, 'E - acute'],
|
||||
['Ê', 'Ê', true, 'E - circumflex'],
|
||||
['Ë', 'Ë', true, 'E - diaeresis'],
|
||||
['Ì', 'Ì', true, 'I - grave'],
|
||||
['Í', 'Í', true, 'I - acute'],
|
||||
['Î', 'Î', true, 'I - circumflex'],
|
||||
['Ï', 'Ï', true, 'I - diaeresis'],
|
||||
['Ð', 'Ð', true, 'ETH'],
|
||||
['Ñ', 'Ñ', true, 'N - tilde'],
|
||||
['Ò', 'Ò', true, 'O - grave'],
|
||||
['Ó', 'Ó', true, 'O - acute'],
|
||||
['Ô', 'Ô', true, 'O - circumflex'],
|
||||
['Õ', 'Õ', true, 'O - tilde'],
|
||||
['Ö', 'Ö', true, 'O - diaeresis'],
|
||||
['Ø', 'Ø', true, 'O - slash'],
|
||||
['Œ', 'Œ', true, 'ligature OE'],
|
||||
['Š', 'Š', true, 'S - caron'],
|
||||
['Ù', 'Ù', true, 'U - grave'],
|
||||
['Ú', 'Ú', true, 'U - acute'],
|
||||
['Û', 'Û', true, 'U - circumflex'],
|
||||
['Ü', 'Ü', true, 'U - diaeresis'],
|
||||
['Ý', 'Ý', true, 'Y - acute'],
|
||||
['Ÿ', 'Ÿ', true, 'Y - diaeresis'],
|
||||
['Þ', 'Þ', true, 'THORN'],
|
||||
['à', 'à', true, 'a - grave'],
|
||||
['á', 'á', true, 'a - acute'],
|
||||
['â', 'â', true, 'a - circumflex'],
|
||||
['ã', 'ã', true, 'a - tilde'],
|
||||
['ä', 'ä', true, 'a - diaeresis'],
|
||||
['å', 'å', true, 'a - ring above'],
|
||||
['æ', 'æ', true, 'ligature ae'],
|
||||
['ç', 'ç', true, 'c - cedilla'],
|
||||
['è', 'è', true, 'e - grave'],
|
||||
['é', 'é', true, 'e - acute'],
|
||||
['ê', 'ê', true, 'e - circumflex'],
|
||||
['ë', 'ë', true, 'e - diaeresis'],
|
||||
['ì', 'ì', true, 'i - grave'],
|
||||
['í', 'í', true, 'i - acute'],
|
||||
['î', 'î', true, 'i - circumflex'],
|
||||
['ï', 'ï', true, 'i - diaeresis'],
|
||||
['ð', 'ð', true, 'eth'],
|
||||
['ñ', 'ñ', true, 'n - tilde'],
|
||||
['ò', 'ò', true, 'o - grave'],
|
||||
['ó', 'ó', true, 'o - acute'],
|
||||
['ô', 'ô', true, 'o - circumflex'],
|
||||
['õ', 'õ', true, 'o - tilde'],
|
||||
['ö', 'ö', true, 'o - diaeresis'],
|
||||
['ø', 'ø', true, 'o slash'],
|
||||
['œ', 'œ', true, 'ligature oe'],
|
||||
['š', 'š', true, 's - caron'],
|
||||
['ù', 'ù', true, 'u - grave'],
|
||||
['ú', 'ú', true, 'u - acute'],
|
||||
['û', 'û', true, 'u - circumflex'],
|
||||
['ü', 'ü', true, 'u - diaeresis'],
|
||||
['ý', 'ý', true, 'y - acute'],
|
||||
['þ', 'þ', true, 'thorn'],
|
||||
['ÿ', 'ÿ', true, 'y - diaeresis'],
|
||||
['Α', 'Α', true, 'Alpha'],
|
||||
['Β', 'Β', true, 'Beta'],
|
||||
['Γ', 'Γ', true, 'Gamma'],
|
||||
['Δ', 'Δ', true, 'Delta'],
|
||||
['Ε', 'Ε', true, 'Epsilon'],
|
||||
['Ζ', 'Ζ', true, 'Zeta'],
|
||||
['Η', 'Η', true, 'Eta'],
|
||||
['Θ', 'Θ', true, 'Theta'],
|
||||
['Ι', 'Ι', true, 'Iota'],
|
||||
['Κ', 'Κ', true, 'Kappa'],
|
||||
['Λ', 'Λ', true, 'Lambda'],
|
||||
['Μ', 'Μ', true, 'Mu'],
|
||||
['Ν', 'Ν', true, 'Nu'],
|
||||
['Ξ', 'Ξ', true, 'Xi'],
|
||||
['Ο', 'Ο', true, 'Omicron'],
|
||||
['Π', 'Π', true, 'Pi'],
|
||||
['Ρ', 'Ρ', true, 'Rho'],
|
||||
['Σ', 'Σ', true, 'Sigma'],
|
||||
['Τ', 'Τ', true, 'Tau'],
|
||||
['Υ', 'Υ', true, 'Upsilon'],
|
||||
['Φ', 'Φ', true, 'Phi'],
|
||||
['Χ', 'Χ', true, 'Chi'],
|
||||
['Ψ', 'Ψ', true, 'Psi'],
|
||||
['Ω', 'Ω', true, 'Omega'],
|
||||
['α', 'α', true, 'alpha'],
|
||||
['β', 'β', true, 'beta'],
|
||||
['γ', 'γ', true, 'gamma'],
|
||||
['δ', 'δ', true, 'delta'],
|
||||
['ε', 'ε', true, 'epsilon'],
|
||||
['ζ', 'ζ', true, 'zeta'],
|
||||
['η', 'η', true, 'eta'],
|
||||
['θ', 'θ', true, 'theta'],
|
||||
['ι', 'ι', true, 'iota'],
|
||||
['κ', 'κ', true, 'kappa'],
|
||||
['λ', 'λ', true, 'lambda'],
|
||||
['μ', 'μ', true, 'mu'],
|
||||
['ν', 'ν', true, 'nu'],
|
||||
['ξ', 'ξ', true, 'xi'],
|
||||
['ο', 'ο', true, 'omicron'],
|
||||
['π', 'π', true, 'pi'],
|
||||
['ρ', 'ρ', true, 'rho'],
|
||||
['ς', 'ς', true, 'final sigma'],
|
||||
['σ', 'σ', true, 'sigma'],
|
||||
['τ', 'τ', true, 'tau'],
|
||||
['υ', 'υ', true, 'upsilon'],
|
||||
['φ', 'φ', true, 'phi'],
|
||||
['χ', 'χ', true, 'chi'],
|
||||
['ψ', 'ψ', true, 'psi'],
|
||||
['ω', 'ω', true, 'omega'],
|
||||
// symbols
|
||||
['ℵ', 'ℵ', false,'alef symbol'],
|
||||
['ϖ', 'ϖ', false,'pi symbol'],
|
||||
['ℜ', 'ℜ', false,'real part symbol'],
|
||||
['ϑ','ϑ', false,'theta symbol'],
|
||||
['ϒ', 'ϒ', false,'upsilon - hook symbol'],
|
||||
['℘', '℘', false,'Weierstrass p'],
|
||||
['ℑ', 'ℑ', false,'imaginary part'],
|
||||
// arrows
|
||||
['←', '←', true, 'leftwards arrow'],
|
||||
['↑', '↑', true, 'upwards arrow'],
|
||||
['→', '→', true, 'rightwards arrow'],
|
||||
['↓', '↓', true, 'downwards arrow'],
|
||||
['↔', '↔', true, 'left right arrow'],
|
||||
['↵', '↵', false,'carriage return'],
|
||||
['⇐', '⇐', false,'leftwards double arrow'],
|
||||
['⇑', '⇑', false,'upwards double arrow'],
|
||||
['⇒', '⇒', false,'rightwards double arrow'],
|
||||
['⇓', '⇓', false,'downwards double arrow'],
|
||||
['⇔', '⇔', false,'left right double arrow'],
|
||||
['∴', '∴', false,'therefore'],
|
||||
['⊂', '⊂', false,'subset of'],
|
||||
['⊃', '⊃', false,'superset of'],
|
||||
['⊄', '⊄', false,'not a subset of'],
|
||||
['⊆', '⊆', false,'subset of or equal to'],
|
||||
['⊇', '⊇', false,'superset of or equal to'],
|
||||
['⊕', '⊕', false,'circled plus'],
|
||||
['⊗', '⊗', false,'circled times'],
|
||||
['⊥', '⊥', false,'perpendicular'],
|
||||
['⋅', '⋅', false,'dot operator'],
|
||||
['⌈', '⌈', false,'left ceiling'],
|
||||
['⌉', '⌉', false,'right ceiling'],
|
||||
['⌊', '⌊', false,'left floor'],
|
||||
['⌋', '⌋', false,'right floor'],
|
||||
['⟨', '〈', false,'left-pointing angle bracket'],
|
||||
['⟩', '〉', false,'right-pointing angle bracket'],
|
||||
['◊', '◊', true, 'lozenge'],
|
||||
['♠', '♠', true, 'black spade suit'],
|
||||
['♣', '♣', true, 'black club suit'],
|
||||
['♥', '♥', true, 'black heart suit'],
|
||||
['♦', '♦', true, 'black diamond suit'],
|
||||
[' ', ' ', false,'en space'],
|
||||
[' ', ' ', false,'em space'],
|
||||
[' ', ' ', false,'thin space'],
|
||||
['‌', '‌', false,'zero width non-joiner'],
|
||||
['‍', '‍', false,'zero width joiner'],
|
||||
['‎', '‎', false,'left-to-right mark'],
|
||||
['‏', '‏', false,'right-to-left mark'],
|
||||
['­', '­', false,'soft hyphen']
|
||||
];
|
||||
|
||||
tinyMCEPopup.onInit.add(function() {
|
||||
tinyMCEPopup.dom.setHTML('charmapView', renderCharMapHTML());
|
||||
addKeyboardNavigation();
|
||||
});
|
||||
|
||||
function addKeyboardNavigation(){
|
||||
var tableElm, cells, settings;
|
||||
|
||||
cells = tinyMCEPopup.dom.select("a.charmaplink", "charmapgroup");
|
||||
|
||||
settings ={
|
||||
root: "charmapgroup",
|
||||
items: cells
|
||||
};
|
||||
cells[0].tabindex=0;
|
||||
tinyMCEPopup.dom.addClass(cells[0], "mceFocus");
|
||||
if (tinymce.isGecko) {
|
||||
cells[0].focus();
|
||||
} else {
|
||||
setTimeout(function(){
|
||||
cells[0].focus();
|
||||
}, 100);
|
||||
}
|
||||
tinyMCEPopup.editor.windowManager.createInstance('tinymce.ui.KeyboardNavigation', settings, tinyMCEPopup.dom);
|
||||
}
|
||||
|
||||
function renderCharMapHTML() {
|
||||
var charsPerRow = 20, tdWidth=20, tdHeight=20, i;
|
||||
var html = '<div id="charmapgroup" aria-labelledby="charmap_label" tabindex="0" role="listbox">'+
|
||||
'<table role="presentation" border="0" cellspacing="1" cellpadding="0" width="' + (tdWidth*charsPerRow) +
|
||||
'"><tr height="' + tdHeight + '">';
|
||||
var cols=-1;
|
||||
|
||||
for (i=0; i<charmap.length; i++) {
|
||||
var previewCharFn;
|
||||
|
||||
if (charmap[i][2]==true) {
|
||||
cols++;
|
||||
previewCharFn = 'previewChar(\'' + charmap[i][1].substring(1,charmap[i][1].length) + '\',\'' + charmap[i][0].substring(1,charmap[i][0].length) + '\',\'' + charmap[i][3] + '\');';
|
||||
html += ''
|
||||
+ '<td class="charmap">'
|
||||
+ '<a class="charmaplink" role="button" onmouseover="'+previewCharFn+'" onfocus="'+previewCharFn+'" href="javascript:void(0)" onclick="insertChar(\'' + charmap[i][1].substring(2,charmap[i][1].length-1) + '\');" onclick="return false;" onmousedown="return false;" title="' + charmap[i][3] + ' '+ tinyMCEPopup.editor.translate("advanced_dlg.charmap_usage")+'">'
|
||||
+ charmap[i][1]
|
||||
+ '</a></td>';
|
||||
if ((cols+1) % charsPerRow == 0)
|
||||
html += '</tr><tr height="' + tdHeight + '">';
|
||||
}
|
||||
}
|
||||
|
||||
if (cols % charsPerRow > 0) {
|
||||
var padd = charsPerRow - (cols % charsPerRow);
|
||||
for (var i=0; i<padd-1; i++)
|
||||
html += '<td width="' + tdWidth + '" height="' + tdHeight + '" class="charmap"> </td>';
|
||||
}
|
||||
|
||||
html += '</tr></table></div>';
|
||||
html = html.replace(/<tr height="20"><\/tr>/g, '');
|
||||
|
||||
return html;
|
||||
}
|
||||
|
||||
function insertChar(chr) {
|
||||
tinyMCEPopup.execCommand('mceInsertContent', false, '&#' + chr + ';');
|
||||
|
||||
// Refocus in window
|
||||
if (tinyMCEPopup.isWindow)
|
||||
window.focus();
|
||||
|
||||
tinyMCEPopup.editor.focus();
|
||||
tinyMCEPopup.close();
|
||||
}
|
||||
|
||||
function previewChar(codeA, codeB, codeN) {
|
||||
var elmA = document.getElementById('codeA');
|
||||
var elmB = document.getElementById('codeB');
|
||||
var elmV = document.getElementById('codeV');
|
||||
var elmN = document.getElementById('codeN');
|
||||
|
||||
if (codeA=='#160;') {
|
||||
elmV.innerHTML = '__';
|
||||
} else {
|
||||
elmV.innerHTML = '&' + codeA;
|
||||
}
|
||||
|
||||
elmB.innerHTML = '&' + codeA;
|
||||
elmA.innerHTML = '&' + codeB;
|
||||
elmN.innerHTML = codeN;
|
||||
}
|
||||
@@ -0,0 +1,345 @@
|
||||
tinyMCEPopup.requireLangPack();
|
||||
|
||||
var detail = 50, strhex = "0123456789abcdef", i, isMouseDown = false, isMouseOver = false;
|
||||
|
||||
var colors = [
|
||||
"#000000","#000033","#000066","#000099","#0000cc","#0000ff","#330000","#330033",
|
||||
"#330066","#330099","#3300cc","#3300ff","#660000","#660033","#660066","#660099",
|
||||
"#6600cc","#6600ff","#990000","#990033","#990066","#990099","#9900cc","#9900ff",
|
||||
"#cc0000","#cc0033","#cc0066","#cc0099","#cc00cc","#cc00ff","#ff0000","#ff0033",
|
||||
"#ff0066","#ff0099","#ff00cc","#ff00ff","#003300","#003333","#003366","#003399",
|
||||
"#0033cc","#0033ff","#333300","#333333","#333366","#333399","#3333cc","#3333ff",
|
||||
"#663300","#663333","#663366","#663399","#6633cc","#6633ff","#993300","#993333",
|
||||
"#993366","#993399","#9933cc","#9933ff","#cc3300","#cc3333","#cc3366","#cc3399",
|
||||
"#cc33cc","#cc33ff","#ff3300","#ff3333","#ff3366","#ff3399","#ff33cc","#ff33ff",
|
||||
"#006600","#006633","#006666","#006699","#0066cc","#0066ff","#336600","#336633",
|
||||
"#336666","#336699","#3366cc","#3366ff","#666600","#666633","#666666","#666699",
|
||||
"#6666cc","#6666ff","#996600","#996633","#996666","#996699","#9966cc","#9966ff",
|
||||
"#cc6600","#cc6633","#cc6666","#cc6699","#cc66cc","#cc66ff","#ff6600","#ff6633",
|
||||
"#ff6666","#ff6699","#ff66cc","#ff66ff","#009900","#009933","#009966","#009999",
|
||||
"#0099cc","#0099ff","#339900","#339933","#339966","#339999","#3399cc","#3399ff",
|
||||
"#669900","#669933","#669966","#669999","#6699cc","#6699ff","#999900","#999933",
|
||||
"#999966","#999999","#9999cc","#9999ff","#cc9900","#cc9933","#cc9966","#cc9999",
|
||||
"#cc99cc","#cc99ff","#ff9900","#ff9933","#ff9966","#ff9999","#ff99cc","#ff99ff",
|
||||
"#00cc00","#00cc33","#00cc66","#00cc99","#00cccc","#00ccff","#33cc00","#33cc33",
|
||||
"#33cc66","#33cc99","#33cccc","#33ccff","#66cc00","#66cc33","#66cc66","#66cc99",
|
||||
"#66cccc","#66ccff","#99cc00","#99cc33","#99cc66","#99cc99","#99cccc","#99ccff",
|
||||
"#cccc00","#cccc33","#cccc66","#cccc99","#cccccc","#ccccff","#ffcc00","#ffcc33",
|
||||
"#ffcc66","#ffcc99","#ffcccc","#ffccff","#00ff00","#00ff33","#00ff66","#00ff99",
|
||||
"#00ffcc","#00ffff","#33ff00","#33ff33","#33ff66","#33ff99","#33ffcc","#33ffff",
|
||||
"#66ff00","#66ff33","#66ff66","#66ff99","#66ffcc","#66ffff","#99ff00","#99ff33",
|
||||
"#99ff66","#99ff99","#99ffcc","#99ffff","#ccff00","#ccff33","#ccff66","#ccff99",
|
||||
"#ccffcc","#ccffff","#ffff00","#ffff33","#ffff66","#ffff99","#ffffcc","#ffffff"
|
||||
];
|
||||
|
||||
var named = {
|
||||
'#F0F8FF':'Alice Blue','#FAEBD7':'Antique White','#00FFFF':'Aqua','#7FFFD4':'Aquamarine','#F0FFFF':'Azure','#F5F5DC':'Beige',
|
||||
'#FFE4C4':'Bisque','#000000':'Black','#FFEBCD':'Blanched Almond','#0000FF':'Blue','#8A2BE2':'Blue Violet','#A52A2A':'Brown',
|
||||
'#DEB887':'Burly Wood','#5F9EA0':'Cadet Blue','#7FFF00':'Chartreuse','#D2691E':'Chocolate','#FF7F50':'Coral','#6495ED':'Cornflower Blue',
|
||||
'#FFF8DC':'Cornsilk','#DC143C':'Crimson','#00FFFF':'Cyan','#00008B':'Dark Blue','#008B8B':'Dark Cyan','#B8860B':'Dark Golden Rod',
|
||||
'#A9A9A9':'Dark Gray','#A9A9A9':'Dark Grey','#006400':'Dark Green','#BDB76B':'Dark Khaki','#8B008B':'Dark Magenta','#556B2F':'Dark Olive Green',
|
||||
'#FF8C00':'Darkorange','#9932CC':'Dark Orchid','#8B0000':'Dark Red','#E9967A':'Dark Salmon','#8FBC8F':'Dark Sea Green','#483D8B':'Dark Slate Blue',
|
||||
'#2F4F4F':'Dark Slate Gray','#2F4F4F':'Dark Slate Grey','#00CED1':'Dark Turquoise','#9400D3':'Dark Violet','#FF1493':'Deep Pink','#00BFFF':'Deep Sky Blue',
|
||||
'#696969':'Dim Gray','#696969':'Dim Grey','#1E90FF':'Dodger Blue','#B22222':'Fire Brick','#FFFAF0':'Floral White','#228B22':'Forest Green',
|
||||
'#FF00FF':'Fuchsia','#DCDCDC':'Gainsboro','#F8F8FF':'Ghost White','#FFD700':'Gold','#DAA520':'Golden Rod','#808080':'Gray','#808080':'Grey',
|
||||
'#008000':'Green','#ADFF2F':'Green Yellow','#F0FFF0':'Honey Dew','#FF69B4':'Hot Pink','#CD5C5C':'Indian Red','#4B0082':'Indigo','#FFFFF0':'Ivory',
|
||||
'#F0E68C':'Khaki','#E6E6FA':'Lavender','#FFF0F5':'Lavender Blush','#7CFC00':'Lawn Green','#FFFACD':'Lemon Chiffon','#ADD8E6':'Light Blue',
|
||||
'#F08080':'Light Coral','#E0FFFF':'Light Cyan','#FAFAD2':'Light Golden Rod Yellow','#D3D3D3':'Light Gray','#D3D3D3':'Light Grey','#90EE90':'Light Green',
|
||||
'#FFB6C1':'Light Pink','#FFA07A':'Light Salmon','#20B2AA':'Light Sea Green','#87CEFA':'Light Sky Blue','#778899':'Light Slate Gray','#778899':'Light Slate Grey',
|
||||
'#B0C4DE':'Light Steel Blue','#FFFFE0':'Light Yellow','#00FF00':'Lime','#32CD32':'Lime Green','#FAF0E6':'Linen','#FF00FF':'Magenta','#800000':'Maroon',
|
||||
'#66CDAA':'Medium Aqua Marine','#0000CD':'Medium Blue','#BA55D3':'Medium Orchid','#9370D8':'Medium Purple','#3CB371':'Medium Sea Green','#7B68EE':'Medium Slate Blue',
|
||||
'#00FA9A':'Medium Spring Green','#48D1CC':'Medium Turquoise','#C71585':'Medium Violet Red','#191970':'Midnight Blue','#F5FFFA':'Mint Cream','#FFE4E1':'Misty Rose','#FFE4B5':'Moccasin',
|
||||
'#FFDEAD':'Navajo White','#000080':'Navy','#FDF5E6':'Old Lace','#808000':'Olive','#6B8E23':'Olive Drab','#FFA500':'Orange','#FF4500':'Orange Red','#DA70D6':'Orchid',
|
||||
'#EEE8AA':'Pale Golden Rod','#98FB98':'Pale Green','#AFEEEE':'Pale Turquoise','#D87093':'Pale Violet Red','#FFEFD5':'Papaya Whip','#FFDAB9':'Peach Puff',
|
||||
'#CD853F':'Peru','#FFC0CB':'Pink','#DDA0DD':'Plum','#B0E0E6':'Powder Blue','#800080':'Purple','#FF0000':'Red','#BC8F8F':'Rosy Brown','#4169E1':'Royal Blue',
|
||||
'#8B4513':'Saddle Brown','#FA8072':'Salmon','#F4A460':'Sandy Brown','#2E8B57':'Sea Green','#FFF5EE':'Sea Shell','#A0522D':'Sienna','#C0C0C0':'Silver',
|
||||
'#87CEEB':'Sky Blue','#6A5ACD':'Slate Blue','#708090':'Slate Gray','#708090':'Slate Grey','#FFFAFA':'Snow','#00FF7F':'Spring Green',
|
||||
'#4682B4':'Steel Blue','#D2B48C':'Tan','#008080':'Teal','#D8BFD8':'Thistle','#FF6347':'Tomato','#40E0D0':'Turquoise','#EE82EE':'Violet',
|
||||
'#F5DEB3':'Wheat','#FFFFFF':'White','#F5F5F5':'White Smoke','#FFFF00':'Yellow','#9ACD32':'Yellow Green'
|
||||
};
|
||||
|
||||
var namedLookup = {};
|
||||
|
||||
function init() {
|
||||
var inputColor = convertRGBToHex(tinyMCEPopup.getWindowArg('input_color')), key, value;
|
||||
|
||||
tinyMCEPopup.resizeToInnerSize();
|
||||
|
||||
generatePicker();
|
||||
generateWebColors();
|
||||
generateNamedColors();
|
||||
|
||||
if (inputColor) {
|
||||
changeFinalColor(inputColor);
|
||||
|
||||
col = convertHexToRGB(inputColor);
|
||||
|
||||
if (col)
|
||||
updateLight(col.r, col.g, col.b);
|
||||
}
|
||||
|
||||
for (key in named) {
|
||||
value = named[key];
|
||||
namedLookup[value.replace(/\s+/, '').toLowerCase()] = key.replace(/#/, '').toLowerCase();
|
||||
}
|
||||
}
|
||||
|
||||
function toHexColor(color) {
|
||||
var matches, red, green, blue, toInt = parseInt;
|
||||
|
||||
function hex(value) {
|
||||
value = parseInt(value).toString(16);
|
||||
|
||||
return value.length > 1 ? value : '0' + value; // Padd with leading zero
|
||||
};
|
||||
|
||||
color = tinymce.trim(color);
|
||||
color = color.replace(/^[#]/, '').toLowerCase(); // remove leading '#'
|
||||
color = namedLookup[color] || color;
|
||||
|
||||
matches = /^rgb\((\d{1,3}),(\d{1,3}),(\d{1,3})\)$/.exec(color);
|
||||
|
||||
if (matches) {
|
||||
red = toInt(matches[1]);
|
||||
green = toInt(matches[2]);
|
||||
blue = toInt(matches[3]);
|
||||
} else {
|
||||
matches = /^([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/.exec(color);
|
||||
|
||||
if (matches) {
|
||||
red = toInt(matches[1], 16);
|
||||
green = toInt(matches[2], 16);
|
||||
blue = toInt(matches[3], 16);
|
||||
} else {
|
||||
matches = /^([0-9a-f])([0-9a-f])([0-9a-f])$/.exec(color);
|
||||
|
||||
if (matches) {
|
||||
red = toInt(matches[1] + matches[1], 16);
|
||||
green = toInt(matches[2] + matches[2], 16);
|
||||
blue = toInt(matches[3] + matches[3], 16);
|
||||
} else {
|
||||
return '';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return '#' + hex(red) + hex(green) + hex(blue);
|
||||
}
|
||||
|
||||
function insertAction() {
|
||||
var color = document.getElementById("color").value, f = tinyMCEPopup.getWindowArg('func');
|
||||
|
||||
var hexColor = toHexColor(color);
|
||||
|
||||
if (hexColor === '') {
|
||||
var text = tinyMCEPopup.editor.getLang('advanced_dlg.invalid_color_value');
|
||||
tinyMCEPopup.alert(text + ': ' + color);
|
||||
}
|
||||
else {
|
||||
tinyMCEPopup.restoreSelection();
|
||||
|
||||
if (f)
|
||||
f(hexColor);
|
||||
|
||||
tinyMCEPopup.close();
|
||||
}
|
||||
}
|
||||
|
||||
function showColor(color, name) {
|
||||
if (name)
|
||||
document.getElementById("colorname").innerHTML = name;
|
||||
|
||||
document.getElementById("preview").style.backgroundColor = color;
|
||||
document.getElementById("color").value = color.toUpperCase();
|
||||
}
|
||||
|
||||
function convertRGBToHex(col) {
|
||||
var re = new RegExp("rgb\\s*\\(\\s*([0-9]+).*,\\s*([0-9]+).*,\\s*([0-9]+).*\\)", "gi");
|
||||
|
||||
if (!col)
|
||||
return col;
|
||||
|
||||
var rgb = col.replace(re, "$1,$2,$3").split(',');
|
||||
if (rgb.length == 3) {
|
||||
r = parseInt(rgb[0]).toString(16);
|
||||
g = parseInt(rgb[1]).toString(16);
|
||||
b = parseInt(rgb[2]).toString(16);
|
||||
|
||||
r = r.length == 1 ? '0' + r : r;
|
||||
g = g.length == 1 ? '0' + g : g;
|
||||
b = b.length == 1 ? '0' + b : b;
|
||||
|
||||
return "#" + r + g + b;
|
||||
}
|
||||
|
||||
return col;
|
||||
}
|
||||
|
||||
function convertHexToRGB(col) {
|
||||
if (col.indexOf('#') != -1) {
|
||||
col = col.replace(new RegExp('[^0-9A-F]', 'gi'), '');
|
||||
|
||||
r = parseInt(col.substring(0, 2), 16);
|
||||
g = parseInt(col.substring(2, 4), 16);
|
||||
b = parseInt(col.substring(4, 6), 16);
|
||||
|
||||
return {r : r, g : g, b : b};
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
function generatePicker() {
|
||||
var el = document.getElementById('light'), h = '', i;
|
||||
|
||||
for (i = 0; i < detail; i++){
|
||||
h += '<div id="gs'+i+'" style="background-color:#000000; width:15px; height:3px; border-style:none; border-width:0px;"'
|
||||
+ ' onclick="changeFinalColor(this.style.backgroundColor)"'
|
||||
+ ' onmousedown="isMouseDown = true; return false;"'
|
||||
+ ' onmouseup="isMouseDown = false;"'
|
||||
+ ' onmousemove="if (isMouseDown && isMouseOver) changeFinalColor(this.style.backgroundColor); return false;"'
|
||||
+ ' onmouseover="isMouseOver = true;"'
|
||||
+ ' onmouseout="isMouseOver = false;"'
|
||||
+ '></div>';
|
||||
}
|
||||
|
||||
el.innerHTML = h;
|
||||
}
|
||||
|
||||
function generateWebColors() {
|
||||
var el = document.getElementById('webcolors'), h = '', i;
|
||||
|
||||
if (el.className == 'generated')
|
||||
return;
|
||||
|
||||
// TODO: VoiceOver doesn't seem to support legend as a label referenced by labelledby.
|
||||
h += '<div role="listbox" aria-labelledby="webcolors_title" tabindex="0"><table role="presentation" border="0" cellspacing="1" cellpadding="0">'
|
||||
+ '<tr>';
|
||||
|
||||
for (i=0; i<colors.length; i++) {
|
||||
h += '<td bgcolor="' + colors[i] + '" width="10" height="10">'
|
||||
+ '<a href="javascript:insertAction();" role="option" tabindex="-1" aria-labelledby="web_colors_' + i + '" onfocus="showColor(\'' + colors[i] + '\');" onmouseover="showColor(\'' + colors[i] + '\');" style="display:block;width:10px;height:10px;overflow:hidden;">';
|
||||
if (tinyMCEPopup.editor.forcedHighContrastMode) {
|
||||
h += '<canvas class="mceColorSwatch" height="10" width="10" data-color="' + colors[i] + '"></canvas>';
|
||||
}
|
||||
h += '<span class="mceVoiceLabel" style="display:none;" id="web_colors_' + i + '">' + colors[i].toUpperCase() + '</span>';
|
||||
h += '</a></td>';
|
||||
if ((i+1) % 18 == 0)
|
||||
h += '</tr><tr>';
|
||||
}
|
||||
|
||||
h += '</table></div>';
|
||||
|
||||
el.innerHTML = h;
|
||||
el.className = 'generated';
|
||||
|
||||
paintCanvas(el);
|
||||
enableKeyboardNavigation(el.firstChild);
|
||||
}
|
||||
|
||||
function paintCanvas(el) {
|
||||
tinyMCEPopup.getWin().tinymce.each(tinyMCEPopup.dom.select('canvas.mceColorSwatch', el), function(canvas) {
|
||||
var context;
|
||||
if (canvas.getContext && (context = canvas.getContext("2d"))) {
|
||||
context.fillStyle = canvas.getAttribute('data-color');
|
||||
context.fillRect(0, 0, 10, 10);
|
||||
}
|
||||
});
|
||||
}
|
||||
function generateNamedColors() {
|
||||
var el = document.getElementById('namedcolors'), h = '', n, v, i = 0;
|
||||
|
||||
if (el.className == 'generated')
|
||||
return;
|
||||
|
||||
for (n in named) {
|
||||
v = named[n];
|
||||
h += '<a href="javascript:insertAction();" role="option" tabindex="-1" aria-labelledby="named_colors_' + i + '" onfocus="showColor(\'' + n + '\',\'' + v + '\');" onmouseover="showColor(\'' + n + '\',\'' + v + '\');" style="background-color: ' + n + '">';
|
||||
if (tinyMCEPopup.editor.forcedHighContrastMode) {
|
||||
h += '<canvas class="mceColorSwatch" height="10" width="10" data-color="' + colors[i] + '"></canvas>';
|
||||
}
|
||||
h += '<span class="mceVoiceLabel" style="display:none;" id="named_colors_' + i + '">' + v + '</span>';
|
||||
h += '</a>';
|
||||
i++;
|
||||
}
|
||||
|
||||
el.innerHTML = h;
|
||||
el.className = 'generated';
|
||||
|
||||
paintCanvas(el);
|
||||
enableKeyboardNavigation(el);
|
||||
}
|
||||
|
||||
function enableKeyboardNavigation(el) {
|
||||
tinyMCEPopup.editor.windowManager.createInstance('tinymce.ui.KeyboardNavigation', {
|
||||
root: el,
|
||||
items: tinyMCEPopup.dom.select('a', el)
|
||||
}, tinyMCEPopup.dom);
|
||||
}
|
||||
|
||||
function dechex(n) {
|
||||
return strhex.charAt(Math.floor(n / 16)) + strhex.charAt(n % 16);
|
||||
}
|
||||
|
||||
function computeColor(e) {
|
||||
var x, y, partWidth, partDetail, imHeight, r, g, b, coef, i, finalCoef, finalR, finalG, finalB, pos = tinyMCEPopup.dom.getPos(e.target);
|
||||
|
||||
x = e.offsetX ? e.offsetX : (e.target ? e.clientX - pos.x : 0);
|
||||
y = e.offsetY ? e.offsetY : (e.target ? e.clientY - pos.y : 0);
|
||||
|
||||
partWidth = document.getElementById('colors').width / 6;
|
||||
partDetail = detail / 2;
|
||||
imHeight = document.getElementById('colors').height;
|
||||
|
||||
r = (x >= 0)*(x < partWidth)*255 + (x >= partWidth)*(x < 2*partWidth)*(2*255 - x * 255 / partWidth) + (x >= 4*partWidth)*(x < 5*partWidth)*(-4*255 + x * 255 / partWidth) + (x >= 5*partWidth)*(x < 6*partWidth)*255;
|
||||
g = (x >= 0)*(x < partWidth)*(x * 255 / partWidth) + (x >= partWidth)*(x < 3*partWidth)*255 + (x >= 3*partWidth)*(x < 4*partWidth)*(4*255 - x * 255 / partWidth);
|
||||
b = (x >= 2*partWidth)*(x < 3*partWidth)*(-2*255 + x * 255 / partWidth) + (x >= 3*partWidth)*(x < 5*partWidth)*255 + (x >= 5*partWidth)*(x < 6*partWidth)*(6*255 - x * 255 / partWidth);
|
||||
|
||||
coef = (imHeight - y) / imHeight;
|
||||
r = 128 + (r - 128) * coef;
|
||||
g = 128 + (g - 128) * coef;
|
||||
b = 128 + (b - 128) * coef;
|
||||
|
||||
changeFinalColor('#' + dechex(r) + dechex(g) + dechex(b));
|
||||
updateLight(r, g, b);
|
||||
}
|
||||
|
||||
function updateLight(r, g, b) {
|
||||
var i, partDetail = detail / 2, finalCoef, finalR, finalG, finalB, color;
|
||||
|
||||
for (i=0; i<detail; i++) {
|
||||
if ((i>=0) && (i<partDetail)) {
|
||||
finalCoef = i / partDetail;
|
||||
finalR = dechex(255 - (255 - r) * finalCoef);
|
||||
finalG = dechex(255 - (255 - g) * finalCoef);
|
||||
finalB = dechex(255 - (255 - b) * finalCoef);
|
||||
} else {
|
||||
finalCoef = 2 - i / partDetail;
|
||||
finalR = dechex(r * finalCoef);
|
||||
finalG = dechex(g * finalCoef);
|
||||
finalB = dechex(b * finalCoef);
|
||||
}
|
||||
|
||||
color = finalR + finalG + finalB;
|
||||
|
||||
setCol('gs' + i, '#'+color);
|
||||
}
|
||||
}
|
||||
|
||||
function changeFinalColor(color) {
|
||||
if (color.indexOf('#') == -1)
|
||||
color = convertRGBToHex(color);
|
||||
|
||||
setCol('preview', color);
|
||||
document.getElementById('color').value = color;
|
||||
}
|
||||
|
||||
function setCol(e, c) {
|
||||
try {
|
||||
document.getElementById(e).style.backgroundColor = c;
|
||||
} catch (ex) {
|
||||
// Ignore IE warning
|
||||
}
|
||||
}
|
||||
|
||||
tinyMCEPopup.onInit.add(init);
|
||||
@@ -0,0 +1,253 @@
|
||||
var ImageDialog = {
|
||||
preInit : function() {
|
||||
var url;
|
||||
|
||||
tinyMCEPopup.requireLangPack();
|
||||
|
||||
if (url = tinyMCEPopup.getParam("external_image_list_url"))
|
||||
document.write('<script language="javascript" type="text/javascript" src="' + tinyMCEPopup.editor.documentBaseURI.toAbsolute(url) + '"></script>');
|
||||
},
|
||||
|
||||
init : function() {
|
||||
var f = document.forms[0], ed = tinyMCEPopup.editor;
|
||||
|
||||
// Setup browse button
|
||||
document.getElementById('srcbrowsercontainer').innerHTML = getBrowserHTML('srcbrowser','src','image','theme_advanced_image');
|
||||
if (isVisible('srcbrowser'))
|
||||
document.getElementById('src').style.width = '180px';
|
||||
|
||||
e = ed.selection.getNode();
|
||||
|
||||
this.fillFileList('image_list', tinyMCEPopup.getParam('external_image_list', 'tinyMCEImageList'));
|
||||
|
||||
if (e.nodeName == 'IMG') {
|
||||
f.src.value = ed.dom.getAttrib(e, 'src');
|
||||
f.alt.value = ed.dom.getAttrib(e, 'alt');
|
||||
f.border.value = this.getAttrib(e, 'border');
|
||||
f.vspace.value = this.getAttrib(e, 'vspace');
|
||||
f.hspace.value = this.getAttrib(e, 'hspace');
|
||||
f.width.value = ed.dom.getAttrib(e, 'width');
|
||||
f.height.value = ed.dom.getAttrib(e, 'height');
|
||||
f.insert.value = ed.getLang('update');
|
||||
this.styleVal = ed.dom.getAttrib(e, 'style');
|
||||
selectByValue(f, 'image_list', f.src.value);
|
||||
selectByValue(f, 'align', this.getAttrib(e, 'align'));
|
||||
this.updateStyle();
|
||||
}
|
||||
},
|
||||
|
||||
fillFileList : function(id, l) {
|
||||
var dom = tinyMCEPopup.dom, lst = dom.get(id), v, cl;
|
||||
|
||||
l = typeof(l) === 'function' ? l() : window[l];
|
||||
|
||||
if (l && l.length > 0) {
|
||||
lst.options[lst.options.length] = new Option('', '');
|
||||
|
||||
tinymce.each(l, function(o) {
|
||||
lst.options[lst.options.length] = new Option(o[0], o[1]);
|
||||
});
|
||||
} else
|
||||
dom.remove(dom.getParent(id, 'tr'));
|
||||
},
|
||||
|
||||
update : function() {
|
||||
var f = document.forms[0], nl = f.elements, ed = tinyMCEPopup.editor, args = {}, el;
|
||||
|
||||
tinyMCEPopup.restoreSelection();
|
||||
|
||||
if (f.src.value === '') {
|
||||
if (ed.selection.getNode().nodeName == 'IMG') {
|
||||
ed.dom.remove(ed.selection.getNode());
|
||||
ed.execCommand('mceRepaint');
|
||||
}
|
||||
|
||||
tinyMCEPopup.close();
|
||||
return;
|
||||
}
|
||||
|
||||
if (!ed.settings.inline_styles) {
|
||||
args = tinymce.extend(args, {
|
||||
vspace : nl.vspace.value,
|
||||
hspace : nl.hspace.value,
|
||||
border : nl.border.value,
|
||||
align : getSelectValue(f, 'align')
|
||||
});
|
||||
} else
|
||||
args.style = this.styleVal;
|
||||
|
||||
tinymce.extend(args, {
|
||||
src : f.src.value.replace(/ /g, '%20'),
|
||||
alt : f.alt.value,
|
||||
width : f.width.value,
|
||||
height : f.height.value
|
||||
});
|
||||
|
||||
el = ed.selection.getNode();
|
||||
|
||||
if (el && el.nodeName == 'IMG') {
|
||||
ed.dom.setAttribs(el, args);
|
||||
tinyMCEPopup.editor.execCommand('mceRepaint');
|
||||
tinyMCEPopup.editor.focus();
|
||||
} else {
|
||||
tinymce.each(args, function(value, name) {
|
||||
if (value === "") {
|
||||
delete args[name];
|
||||
}
|
||||
});
|
||||
|
||||
ed.execCommand('mceInsertContent', false, tinyMCEPopup.editor.dom.createHTML('img', args), {skip_undo : 1});
|
||||
ed.undoManager.add();
|
||||
}
|
||||
|
||||
tinyMCEPopup.close();
|
||||
},
|
||||
|
||||
updateStyle : function() {
|
||||
var dom = tinyMCEPopup.dom, st = {}, v, f = document.forms[0];
|
||||
|
||||
if (tinyMCEPopup.editor.settings.inline_styles) {
|
||||
tinymce.each(tinyMCEPopup.dom.parseStyle(this.styleVal), function(value, key) {
|
||||
st[key] = value;
|
||||
});
|
||||
|
||||
// Handle align
|
||||
v = getSelectValue(f, 'align');
|
||||
if (v) {
|
||||
if (v == 'left' || v == 'right') {
|
||||
st['float'] = v;
|
||||
delete st['vertical-align'];
|
||||
} else {
|
||||
st['vertical-align'] = v;
|
||||
delete st['float'];
|
||||
}
|
||||
} else {
|
||||
delete st['float'];
|
||||
delete st['vertical-align'];
|
||||
}
|
||||
|
||||
// Handle border
|
||||
v = f.border.value;
|
||||
if (v || v == '0') {
|
||||
if (v == '0')
|
||||
st['border'] = '0';
|
||||
else
|
||||
st['border'] = v + 'px solid black';
|
||||
} else
|
||||
delete st['border'];
|
||||
|
||||
// Handle hspace
|
||||
v = f.hspace.value;
|
||||
if (v) {
|
||||
delete st['margin'];
|
||||
st['margin-left'] = v + 'px';
|
||||
st['margin-right'] = v + 'px';
|
||||
} else {
|
||||
delete st['margin-left'];
|
||||
delete st['margin-right'];
|
||||
}
|
||||
|
||||
// Handle vspace
|
||||
v = f.vspace.value;
|
||||
if (v) {
|
||||
delete st['margin'];
|
||||
st['margin-top'] = v + 'px';
|
||||
st['margin-bottom'] = v + 'px';
|
||||
} else {
|
||||
delete st['margin-top'];
|
||||
delete st['margin-bottom'];
|
||||
}
|
||||
|
||||
// Merge
|
||||
st = tinyMCEPopup.dom.parseStyle(dom.serializeStyle(st), 'img');
|
||||
this.styleVal = dom.serializeStyle(st, 'img');
|
||||
}
|
||||
},
|
||||
|
||||
getAttrib : function(e, at) {
|
||||
var ed = tinyMCEPopup.editor, dom = ed.dom, v, v2;
|
||||
|
||||
if (ed.settings.inline_styles) {
|
||||
switch (at) {
|
||||
case 'align':
|
||||
if (v = dom.getStyle(e, 'float'))
|
||||
return v;
|
||||
|
||||
if (v = dom.getStyle(e, 'vertical-align'))
|
||||
return v;
|
||||
|
||||
break;
|
||||
|
||||
case 'hspace':
|
||||
v = dom.getStyle(e, 'margin-left')
|
||||
v2 = dom.getStyle(e, 'margin-right');
|
||||
if (v && v == v2)
|
||||
return parseInt(v.replace(/[^0-9]/g, ''));
|
||||
|
||||
break;
|
||||
|
||||
case 'vspace':
|
||||
v = dom.getStyle(e, 'margin-top')
|
||||
v2 = dom.getStyle(e, 'margin-bottom');
|
||||
if (v && v == v2)
|
||||
return parseInt(v.replace(/[^0-9]/g, ''));
|
||||
|
||||
break;
|
||||
|
||||
case 'border':
|
||||
v = 0;
|
||||
|
||||
tinymce.each(['top', 'right', 'bottom', 'left'], function(sv) {
|
||||
sv = dom.getStyle(e, 'border-' + sv + '-width');
|
||||
|
||||
// False or not the same as prev
|
||||
if (!sv || (sv != v && v !== 0)) {
|
||||
v = 0;
|
||||
return false;
|
||||
}
|
||||
|
||||
if (sv)
|
||||
v = sv;
|
||||
});
|
||||
|
||||
if (v)
|
||||
return parseInt(v.replace(/[^0-9]/g, ''));
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (v = dom.getAttrib(e, at))
|
||||
return v;
|
||||
|
||||
return '';
|
||||
},
|
||||
|
||||
resetImageData : function() {
|
||||
var f = document.forms[0];
|
||||
|
||||
f.width.value = f.height.value = "";
|
||||
},
|
||||
|
||||
updateImageData : function() {
|
||||
var f = document.forms[0], t = ImageDialog;
|
||||
|
||||
if (f.width.value == "")
|
||||
f.width.value = t.preloadImg.width;
|
||||
|
||||
if (f.height.value == "")
|
||||
f.height.value = t.preloadImg.height;
|
||||
},
|
||||
|
||||
getImageData : function() {
|
||||
var f = document.forms[0];
|
||||
|
||||
this.preloadImg = new Image();
|
||||
this.preloadImg.onload = this.updateImageData;
|
||||
this.preloadImg.onerror = this.resetImageData;
|
||||
this.preloadImg.src = tinyMCEPopup.editor.documentBaseURI.toAbsolute(f.src.value);
|
||||
}
|
||||
};
|
||||
|
||||
ImageDialog.preInit();
|
||||
tinyMCEPopup.onInit.add(ImageDialog.init, ImageDialog);
|
||||
@@ -0,0 +1,153 @@
|
||||
tinyMCEPopup.requireLangPack();
|
||||
|
||||
var LinkDialog = {
|
||||
preInit : function() {
|
||||
var url;
|
||||
|
||||
if (url = tinyMCEPopup.getParam("external_link_list_url"))
|
||||
document.write('<script language="javascript" type="text/javascript" src="' + tinyMCEPopup.editor.documentBaseURI.toAbsolute(url) + '"></script>');
|
||||
},
|
||||
|
||||
init : function() {
|
||||
var f = document.forms[0], ed = tinyMCEPopup.editor;
|
||||
|
||||
// Setup browse button
|
||||
document.getElementById('hrefbrowsercontainer').innerHTML = getBrowserHTML('hrefbrowser', 'href', 'file', 'theme_advanced_link');
|
||||
if (isVisible('hrefbrowser'))
|
||||
document.getElementById('href').style.width = '180px';
|
||||
|
||||
this.fillClassList('class_list');
|
||||
this.fillFileList('link_list', 'tinyMCELinkList');
|
||||
this.fillTargetList('target_list');
|
||||
|
||||
if (e = ed.dom.getParent(ed.selection.getNode(), 'A')) {
|
||||
f.href.value = ed.dom.getAttrib(e, 'href');
|
||||
f.linktitle.value = ed.dom.getAttrib(e, 'title');
|
||||
f.insert.value = ed.getLang('update');
|
||||
selectByValue(f, 'link_list', f.href.value);
|
||||
selectByValue(f, 'target_list', ed.dom.getAttrib(e, 'target'));
|
||||
selectByValue(f, 'class_list', ed.dom.getAttrib(e, 'class'));
|
||||
}
|
||||
},
|
||||
|
||||
update : function() {
|
||||
var f = document.forms[0], ed = tinyMCEPopup.editor, e, b, href = f.href.value.replace(/ /g, '%20');
|
||||
|
||||
tinyMCEPopup.restoreSelection();
|
||||
e = ed.dom.getParent(ed.selection.getNode(), 'A');
|
||||
|
||||
// Remove element if there is no href
|
||||
if (!f.href.value) {
|
||||
if (e) {
|
||||
b = ed.selection.getBookmark();
|
||||
ed.dom.remove(e, 1);
|
||||
ed.selection.moveToBookmark(b);
|
||||
tinyMCEPopup.execCommand("mceEndUndoLevel");
|
||||
tinyMCEPopup.close();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
// Create new anchor elements
|
||||
if (e == null) {
|
||||
ed.getDoc().execCommand("unlink", false, null);
|
||||
tinyMCEPopup.execCommand("mceInsertLink", false, "#mce_temp_url#", {skip_undo : 1});
|
||||
|
||||
tinymce.each(ed.dom.select("a"), function(n) {
|
||||
if (ed.dom.getAttrib(n, 'href') == '#mce_temp_url#') {
|
||||
e = n;
|
||||
|
||||
ed.dom.setAttribs(e, {
|
||||
href : href,
|
||||
title : f.linktitle.value,
|
||||
target : f.target_list ? getSelectValue(f, "target_list") : null,
|
||||
'class' : f.class_list ? getSelectValue(f, "class_list") : null
|
||||
});
|
||||
}
|
||||
});
|
||||
} else {
|
||||
ed.dom.setAttribs(e, {
|
||||
href : href,
|
||||
title : f.linktitle.value,
|
||||
target : f.target_list ? getSelectValue(f, "target_list") : null,
|
||||
'class' : f.class_list ? getSelectValue(f, "class_list") : null
|
||||
});
|
||||
}
|
||||
|
||||
// Don't move caret if selection was image
|
||||
if (e.childNodes.length != 1 || e.firstChild.nodeName != 'IMG') {
|
||||
ed.focus();
|
||||
ed.selection.select(e);
|
||||
ed.selection.collapse(0);
|
||||
tinyMCEPopup.storeSelection();
|
||||
}
|
||||
|
||||
tinyMCEPopup.execCommand("mceEndUndoLevel");
|
||||
tinyMCEPopup.close();
|
||||
},
|
||||
|
||||
checkPrefix : function(n) {
|
||||
if (n.value && Validator.isEmail(n) && !/^\s*mailto:/i.test(n.value) && confirm(tinyMCEPopup.getLang('advanced_dlg.link_is_email')))
|
||||
n.value = 'mailto:' + n.value;
|
||||
|
||||
if (/^\s*www\./i.test(n.value) && confirm(tinyMCEPopup.getLang('advanced_dlg.link_is_external')))
|
||||
n.value = 'http://' + n.value;
|
||||
},
|
||||
|
||||
fillFileList : function(id, l) {
|
||||
var dom = tinyMCEPopup.dom, lst = dom.get(id), v, cl;
|
||||
|
||||
l = window[l];
|
||||
|
||||
if (l && l.length > 0) {
|
||||
lst.options[lst.options.length] = new Option('', '');
|
||||
|
||||
tinymce.each(l, function(o) {
|
||||
lst.options[lst.options.length] = new Option(o[0], o[1]);
|
||||
});
|
||||
} else
|
||||
dom.remove(dom.getParent(id, 'tr'));
|
||||
},
|
||||
|
||||
fillClassList : function(id) {
|
||||
var dom = tinyMCEPopup.dom, lst = dom.get(id), v, cl;
|
||||
|
||||
if (v = tinyMCEPopup.getParam('theme_advanced_styles')) {
|
||||
cl = [];
|
||||
|
||||
tinymce.each(v.split(';'), function(v) {
|
||||
var p = v.split('=');
|
||||
|
||||
cl.push({'title' : p[0], 'class' : p[1]});
|
||||
});
|
||||
} else
|
||||
cl = tinyMCEPopup.editor.dom.getClasses();
|
||||
|
||||
if (cl.length > 0) {
|
||||
lst.options[lst.options.length] = new Option(tinyMCEPopup.getLang('not_set'), '');
|
||||
|
||||
tinymce.each(cl, function(o) {
|
||||
lst.options[lst.options.length] = new Option(o.title || o['class'], o['class']);
|
||||
});
|
||||
} else
|
||||
dom.remove(dom.getParent(id, 'tr'));
|
||||
},
|
||||
|
||||
fillTargetList : function(id) {
|
||||
var dom = tinyMCEPopup.dom, lst = dom.get(id), v;
|
||||
|
||||
lst.options[lst.options.length] = new Option(tinyMCEPopup.getLang('not_set'), '');
|
||||
lst.options[lst.options.length] = new Option(tinyMCEPopup.getLang('advanced_dlg.link_target_same'), '_self');
|
||||
lst.options[lst.options.length] = new Option(tinyMCEPopup.getLang('advanced_dlg.link_target_blank'), '_blank');
|
||||
|
||||
if (v = tinyMCEPopup.getParam('theme_advanced_link_targets')) {
|
||||
tinymce.each(v.split(','), function(v) {
|
||||
v = v.split('=');
|
||||
lst.options[lst.options.length] = new Option(v[0], v[1]);
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
LinkDialog.preInit();
|
||||
tinyMCEPopup.onInit.add(LinkDialog.init, LinkDialog);
|
||||
@@ -0,0 +1,78 @@
|
||||
tinyMCEPopup.requireLangPack();
|
||||
tinyMCEPopup.onInit.add(onLoadInit);
|
||||
|
||||
function saveContent() {
|
||||
tinyMCEPopup.editor.setContent(document.getElementById('htmlSource').value, {source_view : true});
|
||||
tinyMCEPopup.close();
|
||||
}
|
||||
|
||||
function onLoadInit() {
|
||||
tinyMCEPopup.resizeToInnerSize();
|
||||
|
||||
// Remove Gecko spellchecking
|
||||
if (tinymce.isGecko)
|
||||
document.body.spellcheck = tinyMCEPopup.editor.getParam("gecko_spellcheck");
|
||||
|
||||
document.getElementById('htmlSource').value = tinyMCEPopup.editor.getContent({source_view : true});
|
||||
|
||||
if (tinyMCEPopup.editor.getParam("theme_advanced_source_editor_wrap", true)) {
|
||||
turnWrapOn();
|
||||
document.getElementById('wraped').checked = true;
|
||||
}
|
||||
|
||||
resizeInputs();
|
||||
}
|
||||
|
||||
function setWrap(val) {
|
||||
var v, n, s = document.getElementById('htmlSource');
|
||||
|
||||
s.wrap = val;
|
||||
|
||||
if (!tinymce.isIE) {
|
||||
v = s.value;
|
||||
n = s.cloneNode(false);
|
||||
n.setAttribute("wrap", val);
|
||||
s.parentNode.replaceChild(n, s);
|
||||
n.value = v;
|
||||
}
|
||||
}
|
||||
|
||||
function setWhiteSpaceCss(value) {
|
||||
var el = document.getElementById('htmlSource');
|
||||
tinymce.DOM.setStyle(el, 'white-space', value);
|
||||
}
|
||||
|
||||
function turnWrapOff() {
|
||||
if (tinymce.isWebKit) {
|
||||
setWhiteSpaceCss('pre');
|
||||
} else {
|
||||
setWrap('off');
|
||||
}
|
||||
}
|
||||
|
||||
function turnWrapOn() {
|
||||
if (tinymce.isWebKit) {
|
||||
setWhiteSpaceCss('pre-wrap');
|
||||
} else {
|
||||
setWrap('soft');
|
||||
}
|
||||
}
|
||||
|
||||
function toggleWordWrap(elm) {
|
||||
if (elm.checked) {
|
||||
turnWrapOn();
|
||||
} else {
|
||||
turnWrapOff();
|
||||
}
|
||||
}
|
||||
|
||||
function resizeInputs() {
|
||||
var vp = tinyMCEPopup.dom.getViewPort(window), el;
|
||||
|
||||
el = document.getElementById('htmlSource');
|
||||
|
||||
if (el) {
|
||||
el.style.width = (vp.w - 20) + 'px';
|
||||
el.style.height = (vp.h - 65) + 'px';
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
tinyMCE.addI18n('da.umbraco',{
|
||||
style_select:"Typografier",
|
||||
font_size:"Skriftst\u00F8rrelse",
|
||||
fontdefault:"Skrifttype",
|
||||
block:"Format",
|
||||
paragraph:"Afsnit",
|
||||
div:"Div",
|
||||
address:"Adresse",
|
||||
pre:"Pr\u00E6formatteret",
|
||||
h1:"Overskrift 1",
|
||||
h2:"Overskrift 2",
|
||||
h3:"Overskrift 3",
|
||||
h4:"Overskrift 4",
|
||||
h5:"Overskrift 5",
|
||||
h6:"Overskrift 6",
|
||||
blockquote:"Blokcitat",
|
||||
code:"Kode",
|
||||
samp:"Kodeeksempel",
|
||||
dt:"Definitionsterm ",
|
||||
dd:"Definitionsbeskrivelse",
|
||||
bold_desc:"Fed (Ctrl+B)",
|
||||
italic_desc:"Kursiv (Ctrl+I)",
|
||||
underline_desc:"Understreget (Ctrl+U)",
|
||||
striketrough_desc:"Gennemstreget",
|
||||
justifyleft_desc:"Venstrejusteret",
|
||||
justifycenter_desc:"Centreret",
|
||||
justifyright_desc:"H\u00F8jrejusteret",
|
||||
justifyfull_desc:"Lige marginer",
|
||||
bullist_desc:"Unummereret punktopstilling",
|
||||
numlist_desc:"Nummereret punktopstilling",
|
||||
outdent_desc:"Formindsk indrykning",
|
||||
indent_desc:"\u00D8g indrykning",
|
||||
undo_desc:"Fortryd (Ctrl+Z)",
|
||||
redo_desc:"Gendan (Ctrl+Y)",
|
||||
link_desc:"Inds\u00E6t/rediger link",
|
||||
unlink_desc:"Fjern link",
|
||||
image_desc:"Inds\u00E6t/rediger billede",
|
||||
cleanup_desc:"Ryd op i uordentlig kode",
|
||||
code_desc:"Rediger HTML-kilde",
|
||||
sub_desc:"S\u00E6nket skrift",
|
||||
sup_desc:"H\u00E6vet skrift",
|
||||
hr_desc:"Inds\u00E6t horisontal linie",
|
||||
removeformat_desc:"Fjern formatering",
|
||||
custom1_desc:"Din egen beskrivelse her",
|
||||
forecolor_desc:"V\u00E6lg tekstfarve",
|
||||
backcolor_desc:"V\u00E6lg baggrundsfarve",
|
||||
charmap_desc:"Inds\u00E6t specialtegn",
|
||||
visualaid_desc:"Sl\u00E5 hj\u00E6lp/synlige elementer til/fra",
|
||||
anchor_desc:"Inds\u00E6t/rediger anker",
|
||||
cut_desc:"Klip",
|
||||
copy_desc:"Kopier",
|
||||
paste_desc:"Inds\u00E6t",
|
||||
image_props_desc:"Billedegenskaber",
|
||||
newdocument_desc:"Nyt dokument",
|
||||
help_desc:"Hj\u00E6lp",
|
||||
blockquote_desc:"Blokcitat",
|
||||
clipboard_msg:"Kopier/Klip/inds\u00E6t er ikke muligt i Mozilla og Firefox.\nVil du have mere information om dette emne?",
|
||||
path:"Sti",
|
||||
newdocument:"Er du sikker p\u00E5 du vil slette alt indhold?",
|
||||
toolbar_focus:"Hop til v\u00E6rkt\u00F8jsknapper - Alt+Q, Skift til redigering - Alt-Z, Skift til element sti - Alt-X",
|
||||
more_colors:"Flere farver"
|
||||
});
|
||||
@@ -0,0 +1,51 @@
|
||||
tinyMCE.addI18n('da.umbraco_dlg',{
|
||||
about_title:"Om TinyMCE",
|
||||
about_general:"Om",
|
||||
about_help:"Hj\u00E6lp",
|
||||
about_license:"Licens",
|
||||
about_plugins:"Udvidelser",
|
||||
about_plugin:"Udvidelse",
|
||||
about_author:"Forfatter",
|
||||
about_version:"Version",
|
||||
about_loaded:"Indl\u00E6ste udvidelser",
|
||||
anchor_title:"Inds\u00E6t/rediger anker",
|
||||
anchor_name:"Navn p\u00E5 anker",
|
||||
code_title:"HTML kildekode-redigering",
|
||||
code_wordwrap:"Tekstombrydning",
|
||||
colorpicker_title:"V\u00E6lg en farve",
|
||||
colorpicker_picker_tab:"V\u00E6lger",
|
||||
colorpicker_picker_title:"Farvev\u00E6lger",
|
||||
colorpicker_palette_tab:"Palette",
|
||||
colorpicker_palette_title:"Palette-farver",
|
||||
colorpicker_named_tab:"Navngivet",
|
||||
colorpicker_named_title:"Navngivet farve",
|
||||
colorpicker_color:"Farve:",
|
||||
colorpicker_name:"Navn:",
|
||||
charmap_title:"V\u00E6lg specialtegn",
|
||||
image_title:"Inds\u00E6t/rediger billede",
|
||||
image_src:"Billede URL",
|
||||
image_alt:"Billedbeskrivelse",
|
||||
image_list:"Liste over billeder",
|
||||
image_border:"Kant",
|
||||
image_dimensions:"Dimensioner",
|
||||
image_vspace:"Vertikal afstand",
|
||||
image_hspace:"Horisontal afstand",
|
||||
image_align:"Justering",
|
||||
image_align_baseline:"Grundlinie",
|
||||
image_align_top:"Toppen",
|
||||
image_align_middle:"Centreret",
|
||||
image_align_bottom:"Bunden",
|
||||
image_align_texttop:"Tekst toppen",
|
||||
image_align_textbottom:"Tekst bunden",
|
||||
image_align_left:"Venstre",
|
||||
image_align_right:"H\u00F8jre",
|
||||
link_title:"Inds\u00E6t/rediger link",
|
||||
link_url:"Link URL",
|
||||
link_target:"Target",
|
||||
link_target_same:"\u00C5ben link i samme vindue",
|
||||
link_target_blank:"\u00C5ben link i nyt vindue",
|
||||
link_titlefield:"Titel",
|
||||
link_is_email:"Den URL, der er indtastet, ser ud til at v\u00E6re en emailadresse. Vil du have tilf\u00F8jet det p\u00E5kr\u00E6vede mailto: foran?",
|
||||
link_is_external:"Den URL, der er indtastet, ser ud til at v\u00E6re et eksternt link. Vil du have tilf\u00F8jet det p\u00E5kr\u00E6vede http:// foran?",
|
||||
link_list:"Liste over links"
|
||||
});
|
||||
@@ -0,0 +1,63 @@
|
||||
tinyMCE.addI18n('de.umbraco',{
|
||||
style_select:"Format",
|
||||
font_size:"Schriftgr\u00F6\u00DFe",
|
||||
fontdefault:"Schriftart",
|
||||
block:"Vorlage",
|
||||
paragraph:"Absatz",
|
||||
div:"Zusammenh\u00E4ngender Bereich",
|
||||
address:"Addresse",
|
||||
pre:"Rohdaten",
|
||||
h1:"\u00DCberschrift 1",
|
||||
h2:"\u00DCberschrift 2",
|
||||
h3:"\u00DCberschrift 3",
|
||||
h4:"\u00DCberschrift 4",
|
||||
h5:"\u00DCberschrift 5",
|
||||
h6:"\u00DCberschrift 6",
|
||||
blockquote:"Zitatblock",
|
||||
code:"Code",
|
||||
samp:"Beispiel",
|
||||
dt:"Definitionsbegriff",
|
||||
dd:"Definitionsbeschreibung",
|
||||
bold_desc:"Fett (Strg+B)",
|
||||
italic_desc:"Kursiv (Strg+I)",
|
||||
underline_desc:"Unterstrichen (Strg+U)",
|
||||
striketrough_desc:"Durchgestrichen",
|
||||
justifyleft_desc:"Links ausgerichtet",
|
||||
justifycenter_desc:"Mittig ausgerichtet",
|
||||
justifyright_desc:"Rechts ausgerichtet",
|
||||
justifyfull_desc:"Blocksatz",
|
||||
bullist_desc:"Unsortierte Liste",
|
||||
numlist_desc:"Sortierte Liste",
|
||||
outdent_desc:"Ausr\u00FCcken",
|
||||
indent_desc:"Einr\u00FCcken",
|
||||
undo_desc:"R\u00FCckg\u00E4ngig (Strg+Z)",
|
||||
redo_desc:"Wiederholen (Strg+Y)",
|
||||
link_desc:"Link einf\u00FCgen/ver\u00E4ndern",
|
||||
unlink_desc:"Link entfernen",
|
||||
image_desc:"Bild einf\u00FCgen/ver\u00E4ndern",
|
||||
cleanup_desc:"Quellcode aufr\u00E4umen",
|
||||
code_desc:"HTML-Quellcode bearbeiten",
|
||||
sub_desc:"Tiefgestellt",
|
||||
sup_desc:"Hochgestellt",
|
||||
hr_desc:"Trennlinie einf\u00FCgen",
|
||||
removeformat_desc:"Formatierungen zur\u00FCcksetzen",
|
||||
custom1_desc:"Benutzerdefinierte Beschreibung",
|
||||
forecolor_desc:"Textfarbe",
|
||||
backcolor_desc:"Hintergrundfarbe",
|
||||
charmap_desc:"Sonderzeichen einf\u00FCgen",
|
||||
visualaid_desc:"Hilfslinien und unsichtbare Elemente ein-/ausblenden",
|
||||
anchor_desc:"Anker einf\u00FCgen/ver\u00E4ndern",
|
||||
cut_desc:"Ausschneiden",
|
||||
copy_desc:"Kopieren",
|
||||
paste_desc:"Einf\u00FCgen",
|
||||
image_props_desc:"Bildeigenschaften",
|
||||
newdocument_desc:"Neues Dokument",
|
||||
help_desc:"Hilfe",
|
||||
blockquote_desc:"Zitatblock",
|
||||
clipboard_msg:"Kopieren, Ausschneiden und Einf\u00FCgen sind im Mozilla Firefox nicht m\u00F6glich.\r\nWollen Sie mehr \u00FCber dieses Problem erfahren?",
|
||||
path:"Pfad",
|
||||
newdocument:"Wollen Sie wirklich den ganzen Inhalt l\u00F6schen?",
|
||||
toolbar_focus:"Zur Werkzeugleiste springen: Alt+Q; Zum Editor springen: Alt-Z; Zum Elementpfad springen: Alt-X",
|
||||
more_colors:"Weitere Farben",
|
||||
anchor_delta_width:"13"
|
||||
});
|
||||
@@ -0,0 +1,51 @@
|
||||
tinyMCE.addI18n('de.umbraco_dlg',{
|
||||
about_title:"\u00DCber TinyMCE",
|
||||
about_general:"\u00DCber\u2026",
|
||||
about_help:"Hilfe",
|
||||
about_license:"Lizenzbedingungen",
|
||||
about_plugins:"Plugins",
|
||||
about_plugin:"Plugin",
|
||||
about_author:"Urheber",
|
||||
about_version:"Version",
|
||||
about_loaded:"Geladene Plugins",
|
||||
anchor_title:"Anker einf\u00FCgen/ver\u00E4ndern",
|
||||
anchor_name:"Name des Ankers",
|
||||
code_title:"HTML-Quellcode bearbeiten",
|
||||
code_wordwrap:"Automatischer Zeilenumbruch",
|
||||
colorpicker_title:"Farbe",
|
||||
colorpicker_picker_tab:"Farbwahl",
|
||||
colorpicker_picker_title:"Farbwahl",
|
||||
colorpicker_palette_tab:"Palette",
|
||||
colorpicker_palette_title:"Farbpalette",
|
||||
colorpicker_named_tab:"Benannte Farben",
|
||||
colorpicker_named_title:"Benannte Farben",
|
||||
colorpicker_color:"Farbe:",
|
||||
colorpicker_name:"Name:",
|
||||
charmap_title:"Sonderzeichen",
|
||||
image_title:"Bild einf\u00FCgen/bearbeiten",
|
||||
image_src:"Adresse",
|
||||
image_alt:"Alternativtext",
|
||||
image_list:"Bilderliste",
|
||||
image_border:"Rahmen",
|
||||
image_dimensions:"Ausma\u00DFe",
|
||||
image_vspace:"Vertikaler Abstand",
|
||||
image_hspace:"Horizontaler Abstand",
|
||||
image_align:"Ausrichtung",
|
||||
image_align_baseline:"Zeile",
|
||||
image_align_top:"Oben",
|
||||
image_align_middle:"Mittig",
|
||||
image_align_bottom:"Unten",
|
||||
image_align_texttop:"Oben im Text",
|
||||
image_align_textbottom:"Unten im Text",
|
||||
image_align_left:"Links",
|
||||
image_align_right:"Rechts",
|
||||
link_title:"Link einf\u00FCgen/bearbeiten",
|
||||
link_url:"Adresse",
|
||||
link_target:"Fenster",
|
||||
link_target_same:"Im selben Fenster \u00F6ffnen",
|
||||
link_target_blank:"Neues Fenster \u00F6ffnen",
|
||||
link_titlefield:"Titel",
|
||||
link_is_email:"Diese Adresse scheint eine E-Mail-Adresse zu sein. M\u00F6chten Sie das dazu ben\u00F6tigte mailto: voranstellen?",
|
||||
link_is_external:"Diese Adresse scheint ein externer Link zu sein. M\u00F6chten Sie das dazu ben\u00F6tigte http:// voranstellen?",
|
||||
link_list:"Linkliste"
|
||||
});
|
||||
@@ -0,0 +1,74 @@
|
||||
tinyMCE.addI18n('en.umbraco',{"underline_desc":"Underline (Ctrl+U)",
|
||||
"italic_desc":"Italic (Ctrl+I)",
|
||||
"bold_desc":"Bold (Ctrl+B)",
|
||||
dd:"Definition Description",
|
||||
dt:"Definition Term ",
|
||||
samp:"Code Sample",
|
||||
code:"Code",
|
||||
blockquote:"Block Quote",
|
||||
h6:"Heading 6",
|
||||
h5:"Heading 5",
|
||||
h4:"Heading 4",
|
||||
h3:"Heading 3",
|
||||
h2:"Heading 2",
|
||||
h1:"Heading 1",
|
||||
pre:"Preformatted",
|
||||
address:"Address",
|
||||
div:"DIV",
|
||||
paragraph:"Paragraph",
|
||||
block:"Format",
|
||||
fontdefault:"Font Family",
|
||||
"font_size":"Font Size",
|
||||
"style_select":"Styles",
|
||||
"anchor_delta_height":"",
|
||||
"anchor_delta_width":"",
|
||||
"charmap_delta_height":"",
|
||||
"charmap_delta_width":"",
|
||||
"colorpicker_delta_height":"",
|
||||
"colorpicker_delta_width":"",
|
||||
"link_delta_height":"",
|
||||
"link_delta_width":"",
|
||||
"image_delta_height":"",
|
||||
"image_delta_width":"",
|
||||
"more_colors":"More Colors...",
|
||||
"toolbar_focus":"Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - Alt-X",
|
||||
newdocument:"Are you sure you want clear all contents?",
|
||||
path:"Path",
|
||||
"clipboard_msg":"Copy/Cut/Paste is not available in Mozilla and Firefox.\nDo you want more information about this issue?",
|
||||
"blockquote_desc":"Block Quote",
|
||||
"help_desc":"Help",
|
||||
"newdocument_desc":"New Document",
|
||||
"image_props_desc":"Image Properties",
|
||||
"paste_desc":"Paste (Ctrl+V)",
|
||||
"copy_desc":"Copy (Ctrl+C)",
|
||||
"cut_desc":"Cut (Ctrl+X)",
|
||||
"anchor_desc":"Insert/Edit Anchor",
|
||||
"visualaid_desc":"show/Hide Guidelines/Invisible Elements",
|
||||
"charmap_desc":"Insert Special Character",
|
||||
"backcolor_desc":"Select Background Color",
|
||||
"forecolor_desc":"Select Text Color",
|
||||
"custom1_desc":"Your Custom Description Here",
|
||||
"removeformat_desc":"Remove Formatting",
|
||||
"hr_desc":"Insert Horizontal Line",
|
||||
"sup_desc":"Superscript",
|
||||
"sub_desc":"Subscript",
|
||||
"code_desc":"Edit HTML Source",
|
||||
"cleanup_desc":"Cleanup Messy Code",
|
||||
"image_desc":"Insert/Edit Image",
|
||||
"unlink_desc":"Unlink",
|
||||
"link_desc":"Insert/Edit Link",
|
||||
"redo_desc":"Redo (Ctrl+Y)",
|
||||
"undo_desc":"Undo (Ctrl+Z)",
|
||||
"indent_desc":"Increase Indent",
|
||||
"outdent_desc":"Decrease Indent",
|
||||
"numlist_desc":"Insert/Remove Numbered List",
|
||||
"bullist_desc":"Insert/Remove Bulleted List",
|
||||
"justifyfull_desc":"Align Full",
|
||||
"justifyright_desc":"Align Right",
|
||||
"justifycenter_desc":"Align Center",
|
||||
"justifyleft_desc":"Align Left",
|
||||
"striketrough_desc":"Strikethrough",
|
||||
"help_shortcut":"Press ALT-F10 for toolbar. Press ALT-0 for help",
|
||||
"rich_text_area":"Rich Text Area",
|
||||
"shortcuts_desc":"Accessability Help",
|
||||
toolbar:"Toolbar"});
|
||||
@@ -0,0 +1,55 @@
|
||||
tinyMCE.addI18n('en.umbraco_dlg', {"link_list":"Link List",
|
||||
"link_is_external":"The URL you entered seems to be an external link. Do you want to add the required http:// prefix?",
|
||||
"link_is_email":"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?",
|
||||
"link_titlefield":"Title",
|
||||
"link_target_blank":"Open Link in a New Window",
|
||||
"link_target_same":"Open Link in the Same Window",
|
||||
"link_target":"Target",
|
||||
"link_url":"Link URL",
|
||||
"link_title":"Insert/Edit Link",
|
||||
"image_align_right":"Right",
|
||||
"image_align_left":"Left",
|
||||
"image_align_textbottom":"Text Bottom",
|
||||
"image_align_texttop":"Text Top",
|
||||
"image_align_bottom":"Bottom",
|
||||
"image_align_middle":"Middle",
|
||||
"image_align_top":"Top",
|
||||
"image_align_baseline":"Baseline",
|
||||
"image_align":"Alignment",
|
||||
"image_hspace":"Horizontal Space",
|
||||
"image_vspace":"Vertical Space",
|
||||
"image_dimensions":"Dimensions",
|
||||
"image_alt":"Image Description",
|
||||
"image_list":"Image List",
|
||||
"image_border":"Border",
|
||||
"image_src":"Image URL",
|
||||
"image_title":"Insert/Edit Image",
|
||||
"charmap_title":"Insert Character",
|
||||
"charmap_usage":"Use left and right arrows to navigate.",
|
||||
"colorpicker_name":"Name:",
|
||||
"colorpicker_color":"Color:",
|
||||
"colorpicker_named_title":"Named Colors",
|
||||
"colorpicker_named_tab":"Named",
|
||||
"colorpicker_palette_title":"Palette Colors",
|
||||
"colorpicker_palette_tab":"Palette",
|
||||
"colorpicker_picker_title":"Color Picker",
|
||||
"colorpicker_picker_tab":"Picker",
|
||||
"colorpicker_title":"Select a Color",
|
||||
"code_wordwrap":"Word Wrap",
|
||||
"code_title":"View Source",
|
||||
"anchor_name":"Name",
|
||||
"anchor_title":"Insert/Edit Anchor",
|
||||
"about_loaded":"Loaded Plugins",
|
||||
"about_version":"Version",
|
||||
"about_author":"Author",
|
||||
"about_plugin":"Plugin",
|
||||
"about_plugins":"Plugins",
|
||||
"about_license":"License",
|
||||
"about_help":"Help",
|
||||
"about_general":"About",
|
||||
"about_title":"About TinyMCE",
|
||||
"anchor_invalid":"Please specify a valid anchor name.",
|
||||
"accessibility_help":"Accessibility Help",
|
||||
"accessibility_usage_title":"General Usage",
|
||||
"invalid_color_value":"Invalid color value",
|
||||
"":""});
|
||||
@@ -0,0 +1,74 @@
|
||||
tinyMCE.addI18n('en_us.umbraco',{"underline_desc":"Underline (Ctrl+U)",
|
||||
"italic_desc":"Italic (Ctrl+I)",
|
||||
"bold_desc":"Bold (Ctrl+B)",
|
||||
dd:"Definition Description",
|
||||
dt:"Definition Term ",
|
||||
samp:"Code Sample",
|
||||
code:"Code",
|
||||
blockquote:"Block Quote",
|
||||
h6:"Heading 6",
|
||||
h5:"Heading 5",
|
||||
h4:"Heading 4",
|
||||
h3:"Heading 3",
|
||||
h2:"Heading 2",
|
||||
h1:"Heading 1",
|
||||
pre:"Preformatted",
|
||||
address:"Address",
|
||||
div:"DIV",
|
||||
paragraph:"Paragraph",
|
||||
block:"Format",
|
||||
fontdefault:"Font Family",
|
||||
"font_size":"Font Size",
|
||||
"style_select":"Styles",
|
||||
"anchor_delta_height":"",
|
||||
"anchor_delta_width":"",
|
||||
"charmap_delta_height":"",
|
||||
"charmap_delta_width":"",
|
||||
"colorpicker_delta_height":"",
|
||||
"colorpicker_delta_width":"",
|
||||
"link_delta_height":"",
|
||||
"link_delta_width":"",
|
||||
"image_delta_height":"",
|
||||
"image_delta_width":"",
|
||||
"more_colors":"More Colors...",
|
||||
"toolbar_focus":"Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - Alt-X",
|
||||
newdocument:"Are you sure you want clear all contents?",
|
||||
path:"Path",
|
||||
"clipboard_msg":"Copy/Cut/Paste is not available in Mozilla and Firefox.\nDo you want more information about this issue?",
|
||||
"blockquote_desc":"Block Quote",
|
||||
"help_desc":"Help",
|
||||
"newdocument_desc":"New Document",
|
||||
"image_props_desc":"Image Properties",
|
||||
"paste_desc":"Paste (Ctrl+V)",
|
||||
"copy_desc":"Copy (Ctrl+C)",
|
||||
"cut_desc":"Cut (Ctrl+X)",
|
||||
"anchor_desc":"Insert/Edit Anchor",
|
||||
"visualaid_desc":"show/Hide Guidelines/Invisible Elements",
|
||||
"charmap_desc":"Insert Special Character",
|
||||
"backcolor_desc":"Select Background Color",
|
||||
"forecolor_desc":"Select Text Color",
|
||||
"custom1_desc":"Your Custom Description Here",
|
||||
"removeformat_desc":"Remove Formatting",
|
||||
"hr_desc":"Insert Horizontal Line",
|
||||
"sup_desc":"Superscript",
|
||||
"sub_desc":"Subscript",
|
||||
"code_desc":"Edit HTML Source",
|
||||
"cleanup_desc":"Cleanup Messy Code",
|
||||
"image_desc":"Insert/Edit Image",
|
||||
"unlink_desc":"Unlink",
|
||||
"link_desc":"Insert/Edit Link",
|
||||
"redo_desc":"Redo (Ctrl+Y)",
|
||||
"undo_desc":"Undo (Ctrl+Z)",
|
||||
"indent_desc":"Increase Indent",
|
||||
"outdent_desc":"Decrease Indent",
|
||||
"numlist_desc":"Insert/Remove Numbered List",
|
||||
"bullist_desc":"Insert/Remove Bulleted List",
|
||||
"justifyfull_desc":"Align Full",
|
||||
"justifyright_desc":"Align Right",
|
||||
"justifycenter_desc":"Align Center",
|
||||
"justifyleft_desc":"Align Left",
|
||||
"striketrough_desc":"Strikethrough",
|
||||
"help_shortcut":"Press ALT-F10 for toolbar. Press ALT-0 for help",
|
||||
"rich_text_area":"Rich Text Area",
|
||||
"shortcuts_desc":"Accessability Help",
|
||||
toolbar:"Toolbar"});
|
||||
@@ -0,0 +1,55 @@
|
||||
tinyMCE.addI18n('en_us.umbraco_dlg', {"link_list":"Link List",
|
||||
"link_is_external":"The URL you entered seems to be an external link. Do you want to add the required http:// prefix?",
|
||||
"link_is_email":"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?",
|
||||
"link_titlefield":"Title",
|
||||
"link_target_blank":"Open Link in a New Window",
|
||||
"link_target_same":"Open Link in the Same Window",
|
||||
"link_target":"Target",
|
||||
"link_url":"Link URL",
|
||||
"link_title":"Insert/Edit Link",
|
||||
"image_align_right":"Right",
|
||||
"image_align_left":"Left",
|
||||
"image_align_textbottom":"Text Bottom",
|
||||
"image_align_texttop":"Text Top",
|
||||
"image_align_bottom":"Bottom",
|
||||
"image_align_middle":"Middle",
|
||||
"image_align_top":"Top",
|
||||
"image_align_baseline":"Baseline",
|
||||
"image_align":"Alignment",
|
||||
"image_hspace":"Horizontal Space",
|
||||
"image_vspace":"Vertical Space",
|
||||
"image_dimensions":"Dimensions",
|
||||
"image_alt":"Image Description",
|
||||
"image_list":"Image List",
|
||||
"image_border":"Border",
|
||||
"image_src":"Image URL",
|
||||
"image_title":"Insert/Edit Image",
|
||||
"charmap_title":"Insert Character",
|
||||
"charmap_usage":"Use left and right arrows to navigate.",
|
||||
"colorpicker_name":"Name:",
|
||||
"colorpicker_color":"Color:",
|
||||
"colorpicker_named_title":"Named Colors",
|
||||
"colorpicker_named_tab":"Named",
|
||||
"colorpicker_palette_title":"Palette Colors",
|
||||
"colorpicker_palette_tab":"Palette",
|
||||
"colorpicker_picker_title":"Color Picker",
|
||||
"colorpicker_picker_tab":"Picker",
|
||||
"colorpicker_title":"Select a Color",
|
||||
"code_wordwrap":"Word Wrap",
|
||||
"code_title":"View Source",
|
||||
"anchor_name":"Name",
|
||||
"anchor_title":"Insert/Edit Anchor",
|
||||
"about_loaded":"Loaded Plugins",
|
||||
"about_version":"Version",
|
||||
"about_author":"Author",
|
||||
"about_plugin":"Plugin",
|
||||
"about_plugins":"Plugins",
|
||||
"about_license":"License",
|
||||
"about_help":"Help",
|
||||
"about_general":"About",
|
||||
"about_title":"About TinyMCE",
|
||||
"anchor_invalid":"Please specify a valid anchor name.",
|
||||
"accessibility_help":"Accessibility Help",
|
||||
"accessibility_usage_title":"General Usage",
|
||||
"invalid_color_value":"Invalid color value",
|
||||
"":""});
|
||||
@@ -0,0 +1,62 @@
|
||||
tinyMCE.addI18n('es.umbraco',{
|
||||
style_select:"Estilos",
|
||||
font_size:"Tama\u00F1o",
|
||||
fontdefault:"Fuente",
|
||||
block:"Formato",
|
||||
paragraph:"P\u00E1rrafo",
|
||||
div:"Div",
|
||||
address:"Direcci\u00F3n",
|
||||
pre:"Preformateado",
|
||||
h1:"Encabezado 1",
|
||||
h2:"Encabezado 2",
|
||||
h3:"Encabezado 3",
|
||||
h4:"Encabezado 4",
|
||||
h5:"Encabezado 5",
|
||||
h6:"Encabezado 6",
|
||||
blockquote:"Cita",
|
||||
code:"C\u00F3digo",
|
||||
samp:"Ejemplo de c\u00F3digo",
|
||||
dt:"T\u00E9rmino de definici\u00F3n",
|
||||
dd:"Descripci\u00F3n de definici\u00F3n",
|
||||
bold_desc:"Negrita (Ctrl+B)",
|
||||
italic_desc:"Cursiva (Ctrl+I)",
|
||||
underline_desc:"Subrayado (Ctrl+U)",
|
||||
striketrough_desc:"Tachado",
|
||||
justifyleft_desc:"Alinear a la izquierda",
|
||||
justifycenter_desc:"Alinear al centro",
|
||||
justifyright_desc:"Alinear a la derecha",
|
||||
justifyfull_desc:"Justificar",
|
||||
bullist_desc:"Lista desordenada",
|
||||
numlist_desc:"Lista ordenada",
|
||||
outdent_desc:"Reducir sangr\u00EDa",
|
||||
indent_desc:"Aumentar sangr\u00EDa",
|
||||
undo_desc:"Deshacer (Ctrl+Z)",
|
||||
redo_desc:"Rehacer (Ctrl+Y)",
|
||||
link_desc:"Insertar/editar hiperv\u00EDnculo",
|
||||
unlink_desc:"Quitar hiperv\u00EDnculo",
|
||||
image_desc:"Insertar/editar imagen",
|
||||
cleanup_desc:"Limpiar c\u00F3digo basura",
|
||||
code_desc:"Editar c\u00F3digo HTML",
|
||||
sub_desc:"Sub\u00EDndice",
|
||||
sup_desc:"Super\u00EDndice",
|
||||
hr_desc:"Insertar regla horizontal",
|
||||
removeformat_desc:"Limpiar formato",
|
||||
custom1_desc:"Su descripci\u00F3n personal aqu\u00ED",
|
||||
forecolor_desc:"Seleccionar color del texto",
|
||||
backcolor_desc:"Seleccionar color de fondo",
|
||||
charmap_desc:"Insertar caracteres personalizados",
|
||||
visualaid_desc:"Mostrar/ocultar l\u00EDnea de gu\u00EDa/elementos invisibles",
|
||||
anchor_desc:"Insertar/editar ancla",
|
||||
cut_desc:"Cortar",
|
||||
copy_desc:"Copiar",
|
||||
paste_desc:"Pegar",
|
||||
image_props_desc:"Propiedades de imagen",
|
||||
newdocument_desc:"Nuevo documento",
|
||||
help_desc:"Ayuda",
|
||||
blockquote_desc:"Cita",
|
||||
clipboard_msg:"Copiar/Cortar/Pegar no se encuentra disponible en Mozilla y Firefox.\n \u00BFDesea obtener m\u00E1s informaci\u00F3n acerca de este tema?",
|
||||
path:"Ruta",
|
||||
newdocument:" \u00BFEst\u00E1 seguro que desea limpiar todo el contenido?",
|
||||
toolbar_focus:"Ir a los botones de herramientas - Alt+Q, Ir al editor - Alt-Z, Ir a la ruta del elemento - Alt-X",
|
||||
more_colors:"M\u00E1s colores"
|
||||
});
|
||||
@@ -0,0 +1,51 @@
|
||||
tinyMCE.addI18n('es.umbraco_dlg',{
|
||||
about_title:"Acerca de TinyMCE",
|
||||
about_general:"Acerca de ",
|
||||
about_help:"Ayuda",
|
||||
about_license:"Licencia",
|
||||
about_plugins:"Complementos",
|
||||
about_plugin:"Complemento",
|
||||
about_author:"Autor",
|
||||
about_version:"Versi\u00F3n",
|
||||
about_loaded:"Complementos cargados",
|
||||
anchor_title:"Insertar/editar ancla",
|
||||
anchor_name:"Nombre del ancla",
|
||||
code_title:"Editor del c\u00F3digo fuente HTML",
|
||||
code_wordwrap:"Ajustar al margen",
|
||||
colorpicker_title:"Seleccionar color",
|
||||
colorpicker_picker_tab:"Selector",
|
||||
colorpicker_picker_title:"Paleta de color",
|
||||
colorpicker_palette_tab:"Paleta",
|
||||
colorpicker_palette_title:"Paleta de colores",
|
||||
colorpicker_named_tab:"Nombrados",
|
||||
colorpicker_named_title:"Colores nombrados",
|
||||
colorpicker_color:"Color:",
|
||||
colorpicker_name:"Nombre:",
|
||||
charmap_title:"Seleccionar caracter personalizado",
|
||||
image_title:"Insertar/editar imagen",
|
||||
image_src:"URL de la Imagen",
|
||||
image_alt:"Descripci\u00F3n de la Imagen",
|
||||
image_list:"Lista de la Imagen",
|
||||
image_border:"Borde",
|
||||
image_dimensions:"Dimensi\u00F3n",
|
||||
image_vspace:"Espacio vertical",
|
||||
image_hspace:"Espacio horizontal",
|
||||
image_align:"Alineaci\u00F3n",
|
||||
image_align_baseline:"L\u00EDnea base",
|
||||
image_align_top:"Arriba",
|
||||
image_align_middle:"Medio",
|
||||
image_align_bottom:"Debajo",
|
||||
image_align_texttop:"Texto arriba",
|
||||
image_align_textbottom:"Texto debajo",
|
||||
image_align_left:"Izquierda",
|
||||
image_align_right:"Derecha",
|
||||
link_title:"Insertar/editar hiperv\u00EDnculo",
|
||||
link_url:"URL del hiperv\u00EDnculo",
|
||||
link_target:"Destino",
|
||||
link_target_same:"Abrir v\u00EDnculo en la misma ventana",
|
||||
link_target_blank:"Abrir v\u00EDnculo en una ventana nueva",
|
||||
link_titlefield:"T\u00EDtulo",
|
||||
link_is_email:"La URL que introdujo parece ser una direcci\u00F3n de email, \u00BFdesea agregar el prefijo mailto: necesario?",
|
||||
link_is_external:"La URL que introdujo parece ser un v\u00EDnculo externo, \u00BFdesea agregar el prefijo http:// necesario?",
|
||||
link_list:"Lista de hiperv\u00EDnculos"
|
||||
});
|
||||
@@ -0,0 +1,62 @@
|
||||
tinyMCE.addI18n('fr.umbraco',{
|
||||
style_select:"Styles",
|
||||
font_size:"Taille police",
|
||||
fontdefault:"Police",
|
||||
block:"Format",
|
||||
paragraph:"Paragraphe",
|
||||
div:"Div",
|
||||
address:"Adresse",
|
||||
pre:"Preformatt\u00E9",
|
||||
h1:"Titre 1",
|
||||
h2:"Titre 2",
|
||||
h3:"Titre 3",
|
||||
h4:"Titre 4",
|
||||
h5:"Titre 5",
|
||||
h6:"Titre 6",
|
||||
blockquote:"Citation",
|
||||
code:"Code",
|
||||
samp:"Exemple de code",
|
||||
dt:"Terme \u00E0 d\u00E9finir",
|
||||
dd:"D\u00E9finition du terme",
|
||||
bold_desc:"Gras (Ctrl+B)",
|
||||
italic_desc:"Italique (Ctrl+I)",
|
||||
underline_desc:"Soulign\u00E9 (Ctrl+U)",
|
||||
striketrough_desc:"Barr\u00E9",
|
||||
justifyleft_desc:"Align\u00E9 \u00E0 gauche",
|
||||
justifycenter_desc:"Centr\u00E9",
|
||||
justifyright_desc:"Align\u00E9 \u00E0 droite",
|
||||
justifyfull_desc:"Justifi\u00E9",
|
||||
bullist_desc:"Liste non-num\u00E9rot\u00E9e",
|
||||
numlist_desc:"Liste num\u00E9rot\u00E9e",
|
||||
outdent_desc:"Retirer l'indentation",
|
||||
indent_desc:"Indenter",
|
||||
undo_desc:"Annuler (Ctrl+Z)",
|
||||
redo_desc:"R\u00E9tablir (Ctrl+Y)",
|
||||
link_desc:"Ins\u00E9rer/\u00C9diter le lien",
|
||||
unlink_desc:"D\u00E9lier",
|
||||
image_desc:"Ins\u00E9rer/\u00C9diter l'image",
|
||||
cleanup_desc:"Nettoyer le code non propre",
|
||||
code_desc:"\u00C9diter source HTML",
|
||||
sub_desc:"Indice",
|
||||
sup_desc:"Exposant",
|
||||
hr_desc:"Ins\u00E9rer trait horizontal",
|
||||
removeformat_desc:"Enlever formattage",
|
||||
custom1_desc:"Votre description personnalis\u00E9e ici",
|
||||
forecolor_desc:"Choisir la couleur du texte",
|
||||
backcolor_desc:"Choisir la couleur de surlignage",
|
||||
charmap_desc:"Ins\u00E9rer caract\u00E8res sp\u00E9ciaux",
|
||||
visualaid_desc:"Activer/d\u00E9sactiver les guides et les \u00E9l\u00E9ments invisibles",
|
||||
anchor_desc:"Ins\u00E9rer/\u00C9diter ancre",
|
||||
cut_desc:"Couper",
|
||||
copy_desc:"Copier",
|
||||
paste_desc:"Coller",
|
||||
image_props_desc:"Propri\u00E9t\u00E9s de l'image",
|
||||
newdocument_desc:"Nouveau document",
|
||||
help_desc:"Aide",
|
||||
blockquote_desc:"Citation",
|
||||
clipboard_msg:"Copier/Couper/Coller n'est pas disponible sous Mozilla et sous Firefox.\n\r\n Voulez-vous plus d'information sur ce probl\u00E8me\u00A0?",
|
||||
path:"Chemin",
|
||||
newdocument:"\u00CAtes-vous s\u00FBr de vouloir effacer l'enti\u00E8ret\u00E9 du document\u00A0?",
|
||||
toolbar_focus:"Aller aux boutons de l'\u00E9diteur - Alt+Q, Aller \u00E0 l'\u00E9diteur - Alt-Z, Aller au chemin de l'\u00E9l\u00E9ment - Alt-X",
|
||||
more_colors:"Plus de couleurs"
|
||||
});
|
||||
@@ -0,0 +1,51 @@
|
||||
tinyMCE.addI18n('fr.umbraco_dlg',{
|
||||
about_title:"\u00C0 propos de TinyMCE",
|
||||
about_general:"\u00C0 propos",
|
||||
about_help:"Aide",
|
||||
about_license:"Licence",
|
||||
about_plugins:"Plugins",
|
||||
about_plugin:"Plugin",
|
||||
about_author:"Auteur",
|
||||
about_version:"Version",
|
||||
about_loaded:"Plugins charg\u00E9s",
|
||||
anchor_title:"Ins\u00E9rer/\u00C9diter ancre",
|
||||
anchor_name:"Nom de l'ancre",
|
||||
code_title:"\u00C9diteur de la source HTML",
|
||||
code_wordwrap:"Rupture de ligne",
|
||||
colorpicker_title:"Choisir une couleur",
|
||||
colorpicker_picker_tab:"Nuancier",
|
||||
colorpicker_picker_title:"Nuancier",
|
||||
colorpicker_palette_tab:"Palette",
|
||||
colorpicker_palette_title:"Couleurs de la palette",
|
||||
colorpicker_named_tab:"Noms",
|
||||
colorpicker_named_title:"Couleurs nomm\u00E9es",
|
||||
colorpicker_color:"Couleur :",
|
||||
colorpicker_name:"Nom :",
|
||||
charmap_title:"Choisir le caract\u00E8re \u00E0 ins\u00E9rer",
|
||||
image_title:"Ins\u00E9rer/\u00C9diter image",
|
||||
image_src:"URL de l'image",
|
||||
image_alt:"Description de l'image",
|
||||
image_list:"Liste d'images",
|
||||
image_border:"Bordure",
|
||||
image_dimensions:"Dimensions",
|
||||
image_vspace:"Espacement vertical",
|
||||
image_hspace:"Espacement horizontal",
|
||||
image_align:"Alignement",
|
||||
image_align_baseline:"Base",
|
||||
image_align_top:"Sommet",
|
||||
image_align_middle:"Milieu",
|
||||
image_align_bottom:"Bas",
|
||||
image_align_texttop:"Haut du texte",
|
||||
image_align_textbottom:"Bas du texte",
|
||||
image_align_left:"Gauche",
|
||||
image_align_right:"Droite",
|
||||
link_title:"Ins\u00E9rer/\u00C9diter lien",
|
||||
link_url:"URL du lien",
|
||||
link_target:"Cible",
|
||||
link_target_same:"Ouvrir dans la m\u00EAme fen\u00EAtre",
|
||||
link_target_blank:"Ouvrir dans une nouvelle fen\u00EAtre",
|
||||
link_titlefield:"Titre",
|
||||
link_is_email:"L'url que vous avez entr\u00E9 semble \u00EAtre une adresse e-mail, voulez-vous ajouter le pr\u00E9fixe mailto:\u00A0?",
|
||||
link_is_external:"L'url que vous avez entr\u00E9 semble \u00EAtre une adresse web externe, voulez-vous ajouter le pr\u00E9fixe http://\u00A0?",
|
||||
link_list:"Liste de liens"
|
||||
});
|
||||
@@ -0,0 +1,62 @@
|
||||
tinyMCE.addI18n('he.umbraco',{
|
||||
style_select:"סגנונות",
|
||||
font_size:"גודל גופן",
|
||||
fontdefault:"משפחת הגופן",
|
||||
block:"תבנית",
|
||||
paragraph:"פסקה",
|
||||
div:"Div",
|
||||
address:"כתובת",
|
||||
pre:"מעוצב מראש",
|
||||
h1:"כותרת 1",
|
||||
h2:"כותרת 2",
|
||||
h3:"כותרת 3",
|
||||
h4:"כותרת 4",
|
||||
h5:"כותרת 5",
|
||||
h6:"כותרת 6",
|
||||
blockquote:"ציטוט",
|
||||
code:"קוד",
|
||||
samp:"קוד לדוגמא",
|
||||
dt:"הגדרת מונח ",
|
||||
dd:"תיאור המונח",
|
||||
bold_desc:"בולט (Ctrl+B)",
|
||||
italic_desc:"נטוי (Ctrl+I)",
|
||||
underline_desc:"קו תחתון (Ctrl+U)",
|
||||
striketrough_desc:"קו חוצה",
|
||||
justifyleft_desc:"יישר לשמאל",
|
||||
justifycenter_desc:"יישר למרכז",
|
||||
justifyright_desc:"יישר לימין",
|
||||
justifyfull_desc:"יישור מלא",
|
||||
bullist_desc:"רשימה לא מסודרת",
|
||||
numlist_desc:"רשימה מסודרת",
|
||||
outdent_desc:"הסט החוצה",
|
||||
indent_desc:"הסט פנימה",
|
||||
undo_desc:"בטל (Ctrl+Z)",
|
||||
redo_desc:"עשה שוב (Ctrl+Y)",
|
||||
link_desc:"הוסף\ערוך קישור",
|
||||
unlink_desc:"בטל קישור",
|
||||
image_desc:"הוסף\ערוך תמונה",
|
||||
cleanup_desc:"נקה קוד מבולגן",
|
||||
code_desc:"ערוך קוד HTML",
|
||||
sub_desc:"Subscript",
|
||||
sup_desc:"Superscript",
|
||||
hr_desc:"הכנס סרגל אופקי",
|
||||
removeformat_desc:"הסר עיצוב",
|
||||
custom1_desc:"Your custom description here",
|
||||
forecolor_desc:"בחר צבע טקסט",
|
||||
backcolor_desc:"בחר צבע רקע",
|
||||
charmap_desc:"הוסף תו מותאם אישית",
|
||||
visualaid_desc:"החלף מצב קווים מנחים\גורמים בלתי נראים",
|
||||
anchor_desc:"הוסף\ערוך עוגן",
|
||||
cut_desc:"גזור",
|
||||
copy_desc:"העתק",
|
||||
paste_desc:"הדבק",
|
||||
image_props_desc:"מאפייני תמונה",
|
||||
newdocument_desc:"מסמך חדש",
|
||||
help_desc:"עזרה",
|
||||
blockquote_desc:"Blockquote",
|
||||
clipboard_msg:"Copy/Cut/Paste is not available in Mozilla and Firefox.\r\nDo you want more information about this issue?",
|
||||
path:"Path",
|
||||
newdocument:"Are you sure you want clear all contents?",
|
||||
toolbar_focus:"Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - Alt-X",
|
||||
more_colors:"עוד צבעים"
|
||||
});
|
||||
@@ -0,0 +1,51 @@
|
||||
tinyMCE.addI18n('he.umbraco_dlg',{
|
||||
about_title:"אודות TinyMCE",
|
||||
about_general:"אודות",
|
||||
about_help:"עזרה",
|
||||
about_license:"רישיון",
|
||||
about_plugins:"Plugins",
|
||||
about_plugin:"Plugin",
|
||||
about_author:"Author",
|
||||
about_version:"Version",
|
||||
about_loaded:"Loaded plugins",
|
||||
anchor_title:"הוסף\ערוך עוגן",
|
||||
anchor_name:"שם העוגן",
|
||||
code_title:"עורך קוד HTML",
|
||||
code_wordwrap:"שמירת שוליים",
|
||||
colorpicker_title:"בחר צבע",
|
||||
colorpicker_picker_tab:"Picker",
|
||||
colorpicker_picker_title:"בחירת צבע",
|
||||
colorpicker_palette_tab:"לוח צבעים",
|
||||
colorpicker_palette_title:"לוח צבעים",
|
||||
colorpicker_named_tab:"צבעים קבועים",
|
||||
colorpicker_named_title:"צבעים קבועים",
|
||||
colorpicker_color:"צבע:",
|
||||
colorpicker_name:"שם:",
|
||||
charmap_title:"בחר תו מותאם אישית",
|
||||
image_title:"הוסף\ערוך תמונה",
|
||||
image_src:"כתובת התמונה",
|
||||
image_alt:"תיאור התמונה",
|
||||
image_list:"Image list",
|
||||
image_border:"גבול",
|
||||
image_dimensions:"מידות",
|
||||
image_vspace:"מרווח אנכי",
|
||||
image_hspace:"מרווח אופקי",
|
||||
image_align:"יישור",
|
||||
image_align_baseline:"נקודת התחלה",
|
||||
image_align_top:"ראש",
|
||||
image_align_middle:"אמצע",
|
||||
image_align_bottom:"תחתית",
|
||||
image_align_texttop:"ראש הטקסט",
|
||||
image_align_textbottom:"תחתית הטקסט",
|
||||
image_align_left:"שמאל",
|
||||
image_align_right:"ימין",
|
||||
link_title:"הוסף\ערוך לינק",
|
||||
link_url:"כתובת הקישור",
|
||||
link_target:"יעד",
|
||||
link_target_same:"פתח קישור באותו חלון",
|
||||
link_target_blank:"פתח קישור בחלון חדש",
|
||||
link_titlefield:"כותרת",
|
||||
link_is_email:"The URL you entered seems to be an email address, do you want to add the required mailto: prefix?",
|
||||
link_is_external:"The URL you entered seems to external link, do you want to add the required http:// prefix?",
|
||||
link_list:"רשימת קישורים"
|
||||
});
|
||||
@@ -0,0 +1,76 @@
|
||||
tinyMCE.addI18n('it.umbraco',{
|
||||
"style_select":"Stili",
|
||||
"anchor_delta_height":"",
|
||||
"anchor_delta_width":"",
|
||||
"charmap_delta_height":"",
|
||||
"charmap_delta_width":"",
|
||||
"colorpicker_delta_height":"",
|
||||
"colorpicker_delta_width":"",
|
||||
"link_delta_height":"",
|
||||
"link_delta_width":"",
|
||||
"image_delta_height":"",
|
||||
"image_delta_width":"",
|
||||
"font_size":"Grandezza carattere",
|
||||
fontdefault:"Famiglia carattere",
|
||||
block:"Formato",
|
||||
paragraph:"Paragrafo",
|
||||
div:"Div",
|
||||
address:"Indirizzo",
|
||||
pre:"Preformattato",
|
||||
h1:"Intestazione 1",
|
||||
h2:"Intestazione 2",
|
||||
h3:"Intestazione 3",
|
||||
h4:"Intestazione 4",
|
||||
h5:"Intestazione 5",
|
||||
h6:"Intestazione 6",
|
||||
blockquote:"Testo quotato",
|
||||
code:"Codice",
|
||||
samp:"Esempio codice",
|
||||
dt:"Termine definizione",
|
||||
dd:"Descrizione definizione",
|
||||
"bold_desc":"Grassetto (Ctrl+B)",
|
||||
"italic_desc":"Corsivo (Ctrl+I)",
|
||||
"underline_desc":"Sottolineato (Ctrl+U)",
|
||||
striketrough_desc:"Barrato",
|
||||
justifyleft_desc:"Allinea a sinistra",
|
||||
justifycenter_desc:"Centra",
|
||||
justifyright_desc:"Allinea a destra",
|
||||
justifyfull_desc:"Giustifica",
|
||||
bullist_desc:"Lista non ordinata",
|
||||
numlist_desc:"Lista ordinata",
|
||||
outdent_desc:"Sposta verso esterno",
|
||||
indent_desc:"Sposta verso interno",
|
||||
undo_desc:"Annulla (Ctrl+Z)",
|
||||
redo_desc:"Ripristina (Ctrl+Y)",
|
||||
link_desc:"Inserisci/modifica collegamento",
|
||||
unlink_desc:"Togli collegamento",
|
||||
image_desc:"Inserisci/modifica immagine",
|
||||
cleanup_desc:"Pulisci codice disordinato",
|
||||
code_desc:"Modifica sorgente HTML",
|
||||
sub_desc:"Pedice",
|
||||
sup_desc:"Apice",
|
||||
hr_desc:"Inserisci riga orizzontale",
|
||||
removeformat_desc:"Rimuovi formattazione",
|
||||
custom1_desc:"La tua descrizione personalizzata qui",
|
||||
forecolor_desc:"Seleziona colore testo",
|
||||
backcolor_desc:"Seleziona colore sfondo",
|
||||
charmap_desc:"Inserisci carattere speciale",
|
||||
visualaid_desc:"Mostra/nascondi linee guida/elementi invisibili",
|
||||
anchor_desc:"Inserisci/modifica ancora",
|
||||
cut_desc:"Taglia",
|
||||
copy_desc:"Copia",
|
||||
paste_desc:"Incolla",
|
||||
image_props_desc:"Propriet\u00E0 immagine",
|
||||
newdocument_desc:"Nuovo documento",
|
||||
"help_desc":"Aiuto",
|
||||
"blockquote_desc":"Testo quotato",
|
||||
"clipboard_msg":"Copia/Taglia/Incolla non \u00E8 disponibile in Mozilla e Firefox..\r\nSi desidera avere maggiori informazioni su questo problema?",
|
||||
path:"Percorso",
|
||||
newdocument:"Sei sicuro di voler cancellare tutti i contenuti?",
|
||||
"toolbar_focus":"Vai ai pulsanti strumento - Alt+Q, Vai all'editor - Alt-Z, Vai al percorso dell'elemento - Alt-X",
|
||||
"more_colors":"Colori aggiuntivi",
|
||||
"rich_text_area":"Rich Text Area",
|
||||
"help_shortcut":"Premere ALT-F10 per la barra degli strumenti. Premere ALT-0 per aiuto",
|
||||
"shortcuts_desc":"Guida accessibilit\u00E0",
|
||||
toolbar:"Barra degli strumenti"
|
||||
});
|
||||
@@ -0,0 +1,52 @@
|
||||
tinyMCE.addI18n('it.umbraco_dlg',{
|
||||
"about_title":"Informazioni su TinyMCE",
|
||||
"about_general":"Informazioni",
|
||||
"about_help":"Aiuto",
|
||||
"about_license":"Licenza",
|
||||
"about_plugins":"Plugins",
|
||||
"about_plugin":"Plugin",
|
||||
"about_author":"Autore",
|
||||
"about_version":"Versione",
|
||||
"about_loaded":"Plugin caricati",
|
||||
"anchor_title":"Inserisci/modifica ancora",
|
||||
"anchor_name":"Nome ancora",
|
||||
"code_title":"Editor sorgente HTML",
|
||||
"code_wordwrap":"A capo automatico",
|
||||
"colorpicker_title":"Seleziona un colore",
|
||||
"colorpicker_picker_tab":"Selettore",
|
||||
"colorpicker_picker_title":"Selettore colori",
|
||||
"colorpicker_palette_tab":"Tavolozza",
|
||||
"colorpicker_palette_title":"Tavolozza dei colori",
|
||||
"colorpicker_named_tab":"Per nome",
|
||||
"colorpicker_named_title":"Colori per nome",
|
||||
"colorpicker_color":"Colore:",
|
||||
"colorpicker_name":"Nome:",
|
||||
"charmap_title":"Seleziona carattere speciale",
|
||||
"charmap_usage":"Usa le frecce sinistra e destra per navigare.",
|
||||
"image_title":"Inserisci/modifica immagine",
|
||||
"image_src":"URL immagine",
|
||||
"image_alt":"Descrizione immagine",
|
||||
"image_list":"Lista immagini",
|
||||
"image_border":"Bordo",
|
||||
"image_dimensions":"Dimensioni",
|
||||
"image_vspace":"Spaziatura verticale",
|
||||
"image_hspace":"Spaziatura orizzontale",
|
||||
"image_align":"Allineamento",
|
||||
"image_align_baseline":"Alla base",
|
||||
"image_align_top":"In alto",
|
||||
"image_align_middle":"In mezzo",
|
||||
"image_align_bottom":"In basso",
|
||||
"image_align_texttop":"In alto al testo",
|
||||
"image_align_textbottom":"In basso al testo",
|
||||
"image_align_left":"A sinistra",
|
||||
"image_align_right":"A destra",
|
||||
"link_title":"Inserisci/modifica collegamento",
|
||||
"link_url":"URL collegamento",
|
||||
"link_target":"Target",
|
||||
"link_target_same":"Apri link nella stessa finestra",
|
||||
"link_target_blank":"Apri link in una nuova finestra",
|
||||
"link_titlefield":"Titolo",
|
||||
"link_is_email":"L'URL inserito sembra essere un indirizzo email. Aggiungere il necessario prefisso mailto: ?",
|
||||
"link_is_external":"L'URL inserito sembra essere un link esterno. Aggiungere il necessario prefisso http:// ?",
|
||||
"link_list":"Lista collegamenti"
|
||||
});
|
||||
@@ -0,0 +1,75 @@
|
||||
tinyMCE.addI18n('ja.umbraco',{
|
||||
"underline_desc":"下線 (Ctrl+U)",
|
||||
"italic_desc":"斜体 (Ctrl+I)",
|
||||
"bold_desc":"太字 (Ctrl+B)",
|
||||
dd:"語句の説明",
|
||||
dt:"語句の定義",
|
||||
samp:"コードの例",
|
||||
code:"コード",
|
||||
blockquote:"引用",
|
||||
h6:"見出し6",
|
||||
h5:"見出し5",
|
||||
h4:"見出し4",
|
||||
h3:"見出し3",
|
||||
h2:"見出し2",
|
||||
h1:"見出し1",
|
||||
pre:"整形済み",
|
||||
address:"住所",
|
||||
div:"div要素",
|
||||
paragraph:"段落",
|
||||
block:"書式",
|
||||
fontdefault:"フォント",
|
||||
"font_size":"フォントの大きさ",
|
||||
"style_select":"スタイル",
|
||||
"anchor_delta_height":"",
|
||||
"anchor_delta_width":"",
|
||||
"charmap_delta_height":"",
|
||||
"charmap_delta_width":"",
|
||||
"colorpicker_delta_height":"",
|
||||
"colorpicker_delta_width":"",
|
||||
"link_delta_height":"",
|
||||
"link_delta_width":"",
|
||||
"image_delta_height":"",
|
||||
"image_delta_width":"",
|
||||
"more_colors":"その他の色...",
|
||||
"toolbar_focus":"ツールボタンへ移動 - Alt Q, エディタに移動 - Alt-Z, 要素のパスへ移動 - Alt-X",
|
||||
newdocument:"本当にすべての内容を消去してよいですか?",
|
||||
path:"パス",
|
||||
"clipboard_msg":"Mozilla と Firefox ではコピー/切り取り/貼り付けはできません。\nこの問題の詳細を知りたいですか?",
|
||||
"blockquote_desc":"引用ブロック",
|
||||
"help_desc":"ヘルプ",
|
||||
"newdocument_desc":"新規ドキュメント",
|
||||
"image_props_desc":"画像の属性",
|
||||
"paste_desc":"貼り付け (Ctrl+V)",
|
||||
"copy_desc":"コピー (Ctrl+C)",
|
||||
"cut_desc":"切り取り (Ctrl+X)",
|
||||
"anchor_desc":"アンカーの挿入/編集",
|
||||
"visualaid_desc":"ガイドラインと非表示要素の表示を切替",
|
||||
"charmap_desc":"特殊文字",
|
||||
"backcolor_desc":"背景の色",
|
||||
"forecolor_desc":"文字の色",
|
||||
"custom1_desc":"説明文を入力してください。",
|
||||
"removeformat_desc":"書式の解除",
|
||||
"hr_desc":"水平線の挿入",
|
||||
"sup_desc":"上付き文字",
|
||||
"sub_desc":"下付き文字",
|
||||
"code_desc":"HTMLソースを編集",
|
||||
"cleanup_desc":"コード整形",
|
||||
"image_desc":"画像の挿入/編集",
|
||||
"unlink_desc":"リンクの解除",
|
||||
"link_desc":"リンクの挿入/編集",
|
||||
"redo_desc":"やり直し (Ctrl+Y)",
|
||||
"undo_desc":"元に戻す (Ctrl+Z)",
|
||||
"indent_desc":"字下げを増やす",
|
||||
"outdent_desc":"字下げを減らす",
|
||||
"numlist_desc":"番号付きリスト",
|
||||
"bullist_desc":"番号なしリスト",
|
||||
"justifyfull_desc":"両端揃え",
|
||||
"justifyright_desc":"右揃え",
|
||||
"justifycenter_desc":"中央揃え",
|
||||
"justifyleft_desc":"左揃え",
|
||||
"striketrough_desc":"取り消し線",
|
||||
"help_shortcut":"ALT-F10 でツールバー、ALT-0 でヘルプ",
|
||||
"rich_text_area":"リッチテキストエリア",
|
||||
"shortcuts_desc":"アクセシビリティのヘルプ",
|
||||
toolbar:"ツールバー"});
|
||||
@@ -0,0 +1,56 @@
|
||||
tinyMCE.addI18n('ja.umbraco_dlg', {"link_list":"リンクの一覧",
|
||||
"link_is_external":"入力したURLは外部のリンクのようです。リンクに http:// を追加しますか?",
|
||||
"link_is_email":"入力したURLは電子メールアドレスのようです。リンクに mailto: を追加しますか?",
|
||||
"link_titlefield":"タイトル",
|
||||
"link_target_blank":"新しいウインドウで開く",
|
||||
"link_target_same":"同じウインドウで開く",
|
||||
"link_target":"ターゲット",
|
||||
"link_url":"リンクのURL",
|
||||
"link_title":"リンクの挿入や編集",
|
||||
"image_align_right":"右揃え",
|
||||
"image_align_left":"左揃え",
|
||||
"image_align_textbottom":"テキストの下端揃え",
|
||||
"image_align_texttop":"テキストの上端揃え",
|
||||
"image_align_bottom":"下揃え",
|
||||
"image_align_middle":"中央揃え",
|
||||
"image_align_top":"上揃え",
|
||||
"image_align_baseline":"ベースライン揃え",
|
||||
"image_align":"配置",
|
||||
"image_hspace":"左右の余白",
|
||||
"image_vspace":"上下の余白",
|
||||
"image_dimensions":"寸法",
|
||||
"image_alt":"画像の説明",
|
||||
"image_list":"画像の一覧",
|
||||
"image_border":"枠線",
|
||||
"image_src":"画像のURL",
|
||||
"image_title":"画像の挿入/編集",
|
||||
"charmap_title":"特殊文字",
|
||||
"charmap_usage":"左右のカーソルキーを使用して移動してください。",
|
||||
"colorpicker_name":"名前:",
|
||||
"colorpicker_color":"色:",
|
||||
"colorpicker_named_title":"定義済みの色",
|
||||
"colorpicker_named_tab":"定義済み",
|
||||
"colorpicker_palette_title":"パレットの色",
|
||||
"colorpicker_palette_tab":"パレット",
|
||||
"colorpicker_picker_title":"色選択",
|
||||
"colorpicker_picker_tab":"選択",
|
||||
"colorpicker_title":"色を選択",
|
||||
"code_wordwrap":"行の折り返し",
|
||||
"code_title":"HTMLソースエディタ",
|
||||
"anchor_name":"アンカーの名前",
|
||||
"anchor_title":"アンカーの挿入/編集",
|
||||
"about_loaded":"読み込み済みのプラグイン",
|
||||
"about_version":"バージョン",
|
||||
"about_author":"作成者",
|
||||
"about_plugin":"プラグイン",
|
||||
"about_plugins":"プラグイン",
|
||||
"about_license":"ライセンス",
|
||||
"about_help":"ヘルプ",
|
||||
"about_general":"TinyMCEについて",
|
||||
"about_title":"TinyMCEについて",
|
||||
"anchor_invalid":"有効なアンカーの名前を指定してください。",
|
||||
"accessibility_help":"アクセシビリティのヘルプ",
|
||||
"accessibility_usage_title":"全般的な使い方",
|
||||
"invalid_color_value":"無効な値",
|
||||
"":""});
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
tinyMCE.addI18n('ko.advanced',{underline_desc:"\ubc11\uc904(Ctrl+U)",italic_desc:"\uc774\ud0e4\ub9ad(Ctrl+I)",bold_desc:"\uad75\uc740 \uae00\uc528(Ctrl+B)",dd:"\uc815\uc758 \uc124\uba85",dt:"\uc5b4\uad6c \uc815\uc758",samp:"\uc0d8\ud50c\ucf54\ub4dc",code:"\ucf54\ub4dc",blockquote:"\uc778\uc6a9\ubb38",h6:"\ud45c\uc81c6",h5:"\ud45c\uc81c5",h4:"\ud45c\uc81c4",h3:"\ud45c\uc81c3",h2:"\ud45c\uc81c2",h1:"\ud45c\uc81c1",pre:"pre",address:"\uc8fc\uc18c",div:"Div",paragraph:"\ub2e8\ub77d",block:"\ud3ec\ub9f7",fontdefault:"\uae00\uaf34",font_size:"\uae00\uaf34 \ud06c\uae30",style_select:"\uc2a4\ud0c0\uc77c",more_colors:"\uadf8 \uc678\uc758 \uc0c9",toolbar_focus:"\ubc84\ud2bc\uc73c\ub85c \uc810\ud504 - Alt+Q, \uc5d0\ub514\ud130\ub85c \uc810\ud504 - Alt-Z, Jump to element path - Alt-X",newdocument:"\ud3b8\uc9d1\uc911\uc758 \ub370\uc774\ud130\ub97c \ubaa8\ub450 \uc783\uc5b4\ub3c4 \uad1c\ucc2e\uc2b5\ub2c8\uae4c?",path:"Path",clipboard_msg:"\ubcf5\uc0ac/\uc798\ub77c\ub0b4\uae30/\ubd99\uc774\uae30\ub294 Mozilla \ubc0fFirefox \uc5d0\uc11c \uc0ac\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.\\n\uc0c1\uc138\uc815\ubcf4\ub97c \ud45c\uc2dc\ud569\ub2c8\uae4c?",blockquote_desc:"\uc778\uc6a9\ubb38",help_desc:"\ub3c4\uc6c0\ub9d0",newdocument_desc:"\uc2e0\uaddc\uae00 \uc791\uc131",image_props_desc:"\uc774\ubbf8\uc9c0\uc18d\uc131",paste_desc:"\ubd99\uc774\uae30",copy_desc:"\ubcf5\uc0ac",cut_desc:"\uc798\ub77c\ub0b4\uae30",anchor_desc:"\uc5e5\ucee4 \uc0bd\uc785/\ud3b8\uc9d1",visualaid_desc:"\uac00\uc774\ub4dc\ub77c\uc778 \ud45c\uc2dc/\ube44\ud45c\uc2dc",charmap_desc:"\ud2b9\uc218 \ubb38\uc790",backcolor_desc:"\ubc30\uacbd\uc0c9",forecolor_desc:"\uae00\uc790\uc0c9",custom1_desc:"\ucee4\uc2a4\ud140 \uc124\uba85",removeformat_desc:"\uc11c\uc2dd \ud574\uc81c",hr_desc:"\uad6c\ubd84\uc120",sup_desc:"\uc704\ucca8\uc790",sub_desc:"\uc544\ub798\ucca8\uc790",code_desc:"HTML \ud3b8\uc9d1",cleanup_desc:"\uc9c0\uc800\ubd84\ud55c \ucf54\ub4dc \uc0ad\uc81c",image_desc:"\uc774\ubbf8\uc9c0 \uc0bd\uc785/\ud3b8\uc9d1",unlink_desc:"\ub9c1\ud06c \uc0ad\uc81c",link_desc:"\ub9c1\ud06c\uc758 \uc0bd\uc785/\ud3b8\uc9d1",redo_desc:"\ub2e4\uc2dc\uc2e4\ud589(Ctrl+Y)",undo_desc:"\uc2e4\ud589\ucde8\uc18c(Ctrl+Z)",indent_desc:"\ub4e4\uc5ec\uc4f0\uae30",outdent_desc:"\ub0b4\uc5b4\uc4f0\uae30",numlist_desc:"\uc21c\ucc28\ubaa9\ub85d",bullist_desc:"\ube44\uc21c\ucc28\ubaa9\ub85d",justifyfull_desc:"\ubc30\ubd84 \uc815\ub82c",justifyright_desc:"\uc624\ub978\ucabd \uc815\ub82c",justifycenter_desc:"\uac00\uc6b4\ub370 \uc815\ub82c",justifyleft_desc:"\uc67c\ucabd \uc815\ub82c",striketrough_desc:"\ucde8\uc18c\uc120",anchor_delta_height:"",anchor_delta_width:"",charmap_delta_height:"",charmap_delta_width:"",colorpicker_delta_height:"",colorpicker_delta_width:"",link_delta_height:"",link_delta_width:"",image_delta_height:"",image_delta_width:""});
|
||||
@@ -0,0 +1 @@
|
||||
tinyMCE.addI18n('ko.advanced_dlg',{link_list:"\ub9c1\ud06c \ubaa9\ub85d",link_is_external:"\uc678\ubd80URL\uc774 \uc785\ub825\ub418\uc5c8\uc2b5\ub2c8\ub2e4.\\nURL\uc758 \uc55e\uc5d0 http://\ub97c \ubd99\uc785\ub2c8\uae4c?",link_is_email:"\uba54\uc77c\uc8fc\uc18c\uac00 \uc785\ub825\ub418\uc5c8\uc2b5\ub2c8\ub2e4.\\n\uba54\uc77c\uc8fc\uc18c\uc758 \uc55e\uc5d0 mailto:\ub97c \ubd99\uc785\ub2c8\uae4c?",link_titlefield:"\uc81c\ubaa9",link_target_blank:"\uc0c8\ucc3d",link_target_same:"\uac19\uc740\ucc3d",link_target:"Target",link_url:"\ub9c1\ud06c URL",link_title:"\ub9c1\ud06c\uc758 \uc0bd\uc785/\ud3b8\uc9d1",image_align_right:"Right",image_align_left:"Left",image_align_textbottom:"Text bottom",image_align_texttop:"Text top",image_align_bottom:"Bottom",image_align_middle:"Middle",image_align_top:"Top",image_align_baseline:"\uae30\uc900\uc120",image_align:"\uc815\ub82c",image_hspace:"\uc88c\uc6b0 \uc5ec\ubc31",image_vspace:"\uc0c1\ud558 \uc5ec\ubc31",image_dimensions:"\ud06c\uae30",image_alt:"\uc774\ubbf8\uc9c0 \uc124\uba85",image_list:"\uc774\ubbf8\uc9c0 \ubaa9\ub85d",image_border:"\ud14c\ub450\ub9ac\uc120",image_src:"\uc774\ubbf8\uc9c0 URL",image_title:"\uc774\ubbf8\uc9c0\uc758 \uc0bd\uc785/\ud3b8\uc9d1",charmap_title:"\ud2b9\uc218 \ubb38\uc790",colorpicker_name:"\uc0c9 \uc774\ub984:",colorpicker_color:"Color:",colorpicker_named_title:"\uc0c9",colorpicker_named_tab:"\uc0c9 \uc774\ub984",colorpicker_palette_title:"\ud314\ub808\ud2b8 \uc0c9",colorpicker_palette_tab:"\ud314\ub808\ud2b8",colorpicker_picker_title:"\uceec\ub7ec \ud53d\ucee4",colorpicker_picker_tab:"\ud53d\ucee4",colorpicker_title:"\uc0c9\uc744 \uc120\ud0dd",code_wordwrap:"\uc6cc\ub4dc\ub7a9",code_title:"\uc18c\uc2a4 \ud3b8\uc9d1",anchor_name:"\uc5e5\ucee4\uba85",anchor_title:"\uc5e5\ucee4 \uc0bd\uc785/\ud3b8\uc9d1",about_loaded:"\uc2e4\ud589\ub41c \ud50c\ub7ec\uadf8\uc778",about_version:"\ubc84\uc83c",about_author:"\uc81c\uc791\uc790",about_plugin:"\ud50c\ub7ec\uadf8\uc778",about_plugins:"\ud50c\ub7ec\uadf8\uc778",about_license:"\ub77c\uc774\uc13c\uc2a4",about_help:"\ub3c4\uc6c0\ub9d0",about_general:"About",about_title:"TinyMCE\uc5d0 \ub300\ud558\uc5ec"});
|
||||
@@ -0,0 +1,62 @@
|
||||
tinyMCE.addI18n('nl.umbraco',{
|
||||
style_select:"Stijlen",
|
||||
font_size:"Tekengrootte",
|
||||
fontdefault:"Lettertype",
|
||||
block:"Opmaak",
|
||||
paragraph:"Alinea",
|
||||
div:"Div",
|
||||
address:"Adres",
|
||||
pre:"Vaste opmaak",
|
||||
h1:"Kop 1",
|
||||
h2:"Kop 2",
|
||||
h3:"Kop 3",
|
||||
h4:"Kop 4",
|
||||
h5:"Kop 5",
|
||||
h6:"Kop 6",
|
||||
blockquote:"Citaat",
|
||||
code:"Code",
|
||||
samp:"Codevoorbeeld",
|
||||
dt:"Definitieterm",
|
||||
dd:"Definitiebeschrijving",
|
||||
bold_desc:"Vet (Ctrl+B)",
|
||||
italic_desc:"Cursief (Ctrl+I)",
|
||||
underline_desc:"Onderstrepen (Ctrl+U)",
|
||||
striketrough_desc:"Doorhalen",
|
||||
justifyleft_desc:"Links uitlijnen",
|
||||
justifycenter_desc:"Centreren",
|
||||
justifyright_desc:"Rechts uitlijnen",
|
||||
justifyfull_desc:"Uitvullen",
|
||||
bullist_desc:"Opsommingstekens",
|
||||
numlist_desc:"Nummering",
|
||||
outdent_desc:"Inspringing verkleinen",
|
||||
indent_desc:"Inspringing vergroten",
|
||||
undo_desc:"Ongedaan maken (Ctrl+Z)",
|
||||
redo_desc:"Herhalen (Ctrl+Y)",
|
||||
link_desc:"Link invoegen/bewerken",
|
||||
unlink_desc:"Link verwijderen",
|
||||
image_desc:"Afbeelding invoegen/bewerken",
|
||||
cleanup_desc:"Code opruimen",
|
||||
code_desc:"HTML bron bewerken",
|
||||
sub_desc:"Subscript",
|
||||
sup_desc:"Superscript",
|
||||
hr_desc:"Scheidingslijn invoegen",
|
||||
removeformat_desc:"Opmaak verwijderen",
|
||||
custom1_desc:"Uw eigen beschrijving hier",
|
||||
forecolor_desc:"Tekstkleur",
|
||||
backcolor_desc:"Tekstmarkeringskleur",
|
||||
charmap_desc:"Symbool invoegen",
|
||||
visualaid_desc:"Hulplijnen weergeven",
|
||||
anchor_desc:"Anker invoegen/bewerken",
|
||||
cut_desc:"Knippen",
|
||||
copy_desc:"Kopi\u00EBren",
|
||||
paste_desc:"Plakken",
|
||||
image_props_desc:"Afbeeldingseigenschappen",
|
||||
newdocument_desc:"Nieuw document",
|
||||
help_desc:"Help",
|
||||
blockquote_desc:"Citaat",
|
||||
clipboard_msg:"Kopi\u00EBren/knippen/plakken is niet beschikbaar in Mozilla en Firefox.\nWilt u meer informatie over deze beperking?",
|
||||
path:"Pad",
|
||||
newdocument:"Weet u zeker dat u alle inhoud wilt wissen?",
|
||||
toolbar_focus:"Spring naar werkbalk - Alt+Q, Spring naar tekst - Alt-Z, Spring naar elementpad - Alt-X",
|
||||
more_colors:"Meer kleuren"
|
||||
});
|
||||
@@ -0,0 +1,51 @@
|
||||
tinyMCE.addI18n('nl.umbraco_dlg',{
|
||||
about_title:"Over TinyMCE",
|
||||
about_general:"Info",
|
||||
about_help:"Help",
|
||||
about_license:"Licentie",
|
||||
about_plugins:"Invoegtoepassingen",
|
||||
about_plugin:"Invoegtoepassing",
|
||||
about_author:"Auteur",
|
||||
about_version:"Versie",
|
||||
about_loaded:"Geladen Invoegtoepassingen",
|
||||
anchor_title:"Anker invoegen/bewerken",
|
||||
anchor_name:"Ankernaam",
|
||||
code_title:"HTML Bron",
|
||||
code_wordwrap:"Automatische terugloop",
|
||||
colorpicker_title:"Kleuren",
|
||||
colorpicker_picker_tab:"Alle kleuren",
|
||||
colorpicker_picker_title:"Alle kleuren",
|
||||
colorpicker_palette_tab:"Palet",
|
||||
colorpicker_palette_title:"Paletkleuren",
|
||||
colorpicker_named_tab:"Benoemd",
|
||||
colorpicker_named_title:"Benoemde kleuren",
|
||||
colorpicker_color:"Kleur:",
|
||||
colorpicker_name:"Naam:",
|
||||
charmap_title:"Symbolen",
|
||||
image_title:"Afbeelding invoegen/bewerken",
|
||||
image_src:"Bestand/URL",
|
||||
image_alt:"Beschrijving",
|
||||
image_list:"Lijst",
|
||||
image_border:"Rand",
|
||||
image_dimensions:"Afmetingen",
|
||||
image_vspace:"Verticale ruimte",
|
||||
image_hspace:"Horizontale ruimte",
|
||||
image_align:"Uitlijning",
|
||||
image_align_baseline:"Basislijn",
|
||||
image_align_top:"Boven",
|
||||
image_align_middle:"Midden",
|
||||
image_align_bottom:"Onder",
|
||||
image_align_texttop:"Bovenkant tekst",
|
||||
image_align_textbottom:"Onderkant tekst",
|
||||
image_align_left:"Links",
|
||||
image_align_right:"Rechts",
|
||||
link_title:"Link invoegen/bewerken",
|
||||
link_url:"URL",
|
||||
link_target:"Doel",
|
||||
link_target_same:"Link in hetzelfde venster openen",
|
||||
link_target_blank:"Link in een nieuw venster openen",
|
||||
link_titlefield:"Titel",
|
||||
link_is_email:"De ingevoerde URL lijkt op een e-mailadres. Wilt u de vereiste mailto: tekst voorvoegen?",
|
||||
link_is_external:"De ingevoerde URL lijkt op een externe link. Wilt u de vereiste http:// tekst voorvoegen?",
|
||||
link_list:"Link lijst"
|
||||
});
|
||||
@@ -0,0 +1,62 @@
|
||||
tinyMCE.addI18n('no.umbraco',{
|
||||
style_select:"Stiler",
|
||||
font_size:"Skriftst\u00F8rrelse",
|
||||
fontdefault:"Skriftfamilie",
|
||||
block:"Format",
|
||||
paragraph:"Avsnitt",
|
||||
div:"Div",
|
||||
address:"Adresse",
|
||||
pre:"Pre-formatert",
|
||||
h1:"Overskrift 1",
|
||||
h2:"Overskrift 2",
|
||||
h3:"Overskrift 3",
|
||||
h4:"Overskrift 4",
|
||||
h5:"Overskrift 5",
|
||||
h6:"Overskrift 6",
|
||||
blockquote:"Innrykk",
|
||||
code:"Kode",
|
||||
samp:"Kodeeksempel",
|
||||
dt:"Definisjonsuttrykk",
|
||||
dd:"Definisjonsbeskrivelse",
|
||||
bold_desc:"Fet",
|
||||
italic_desc:"Kursiv",
|
||||
underline_desc:"Understrek",
|
||||
striketrough_desc:"Gjennomstrek",
|
||||
justifyleft_desc:"Venstrejustert",
|
||||
justifycenter_desc:"Midtstilt",
|
||||
justifyright_desc:"H\u00F8yrejustert",
|
||||
justifyfull_desc:"Blokkjustert",
|
||||
bullist_desc:"Punktliste",
|
||||
numlist_desc:"Nummerliste",
|
||||
outdent_desc:"Reduser innrykk",
|
||||
indent_desc:"\u00D8k innrykk",
|
||||
undo_desc:"Angre",
|
||||
redo_desc:"Gj\u00F8r om",
|
||||
link_desc:"Sett inn / endre lenke",
|
||||
unlink_desc:"Fjern lenke",
|
||||
image_desc:"Sett inn / endre bilde",
|
||||
cleanup_desc:"Rens grisete kode",
|
||||
code_desc:"Redigere HTML-kode",
|
||||
sub_desc:"Senk skrift",
|
||||
sup_desc:"Hev skrift",
|
||||
hr_desc:"Sett inn horisontal linje",
|
||||
removeformat_desc:"Fjern formatering",
|
||||
custom1_desc:"Din spesialfunksjondefinisjon her",
|
||||
forecolor_desc:"Vel skriftfarge",
|
||||
backcolor_desc:"Vel bakgrunnsfarge",
|
||||
charmap_desc:"Sett inn spesialtegn",
|
||||
visualaid_desc:"Sl\u00E5 av/p\u00E5 usynlige element",
|
||||
anchor_desc:"Sett inn / endre anker",
|
||||
cut_desc:"Klipp ut",
|
||||
copy_desc:"Kopier",
|
||||
paste_desc:"Lim inn",
|
||||
image_props_desc:"Egenskaper for bilde",
|
||||
newdocument_desc:"Nytt dokument",
|
||||
help_desc:"Hjelp",
|
||||
blockquote_desc:"Innrykk",
|
||||
clipboard_msg:"Klipp ut / Kopier /Lim inn fungerer ikke i Mozilla og Firefox. \r\n Vil du vite mer om dette?",
|
||||
path:"Sti",
|
||||
newdocument:"Er du sikker p\u00E5 at du vil slette alt innhold?",
|
||||
toolbar_focus:"Skift til verkt\u00F8yknapper - Alt+Q, Skift til editor - Alt-Z, Skift til elementsti - Alt-",
|
||||
more_colors:"Flere farger"
|
||||
});
|
||||
@@ -0,0 +1,51 @@
|
||||
tinyMCE.addI18n('no.umbraco_dlg',{
|
||||
about_title:"Om TinyMCE",
|
||||
about_general:"Om",
|
||||
about_help:"Hjelp",
|
||||
about_license:"Lisens",
|
||||
about_plugins:"Programtillegg",
|
||||
about_plugin:"Programtillegg",
|
||||
about_author:"Utvikler",
|
||||
about_version:"Versjon",
|
||||
about_loaded:"Last programtillegg",
|
||||
anchor_title:"Sett inn / endre anker",
|
||||
anchor_name:"Ankernavn",
|
||||
code_title:"HTML-editor",
|
||||
code_wordwrap:"Tekstbryting",
|
||||
colorpicker_title:"Velg en farge",
|
||||
colorpicker_picker_tab:"Velg farge",
|
||||
colorpicker_picker_title:"Fargevalg",
|
||||
colorpicker_palette_tab:"Palett",
|
||||
colorpicker_palette_title:"Palettfarger",
|
||||
colorpicker_named_tab:"Navnevalg",
|
||||
colorpicker_named_title:"Fargenavn",
|
||||
colorpicker_color:"Farge:",
|
||||
colorpicker_name:"Navn:",
|
||||
charmap_title:"Velg spesialtegn",
|
||||
image_title:"Sett inn / endre bilde",
|
||||
image_src:"Bilde-URL",
|
||||
image_alt:"Bildeomtale",
|
||||
image_list:"Liste med bilde",
|
||||
image_border:"Ramme",
|
||||
image_dimensions:"Dimensjoner",
|
||||
image_vspace:"Vertikal avstand",
|
||||
image_hspace:"Horisontal avstand",
|
||||
image_align:"Justering",
|
||||
image_align_baseline:"Bunnlinje",
|
||||
image_align_top:"Topp",
|
||||
image_align_middle:"Midtstilt",
|
||||
image_align_bottom:"Bunn",
|
||||
image_align_texttop:"Teksttopp",
|
||||
image_align_textbottom:"Tekstbunn",
|
||||
image_align_left:"Venstre",
|
||||
image_align_right:"H\u00F8yre",
|
||||
link_title:"Sett inn / endre lenke",
|
||||
link_url:"Lenke-URL",
|
||||
link_target:"Vindu",
|
||||
link_target_same:"\u00C5pne i dette vinduet",
|
||||
link_target_blank:"\u00C5pne i nytt vindu",
|
||||
link_titlefield:"Tittel",
|
||||
link_is_email:"Nettadressen du skrev inn ser ut til \u00E5 v\u00E6re en e-postadresse. \u00D8nsker du \u00E5 legge til det obligatoriske mailto:-prefikset?",
|
||||
link_is_external:"Nettadressen du skrev inn ser ut til \u00E5 v\u00E6re en ekstern nettadresse. \u00D8nsker du \u00E5 legge til det obligatoriske http://-prefikset?",
|
||||
link_list:"Lenkeliste"
|
||||
});
|
||||
@@ -0,0 +1,76 @@
|
||||
tinyMCE.addI18n('ru.umbraco',{
|
||||
style_select:"Стиль",
|
||||
font_size:"Размер",
|
||||
fontdefault:"Шрифт",
|
||||
block:"Формат",
|
||||
paragraph:"Абзац",
|
||||
div:"Блок",
|
||||
address:"Адрес",
|
||||
pre:"Преформатированный",
|
||||
h1:"Заголовок 1",
|
||||
h2:"Заголовок 2",
|
||||
h3:"Заголовок 3",
|
||||
h4:"Заголовок 4",
|
||||
h5:"Заголовок 5",
|
||||
h6:"Заголовок 6",
|
||||
blockquote:"Цитата",
|
||||
code:"Код",
|
||||
samp:"Пример кода",
|
||||
dt:"Термин справочника",
|
||||
dd:"Описание справочника",
|
||||
bold_desc:"Полужирный (Ctrl+B)",
|
||||
italic_desc:"Курсив (Ctrl+I)",
|
||||
underline_desc:"Подчеркнутый (Ctrl+U)",
|
||||
striketrough_desc:"Зачеркнутый",
|
||||
justifyleft_desc:"По левому краю",
|
||||
justifycenter_desc:"По центру",
|
||||
justifyright_desc:"По правому краю",
|
||||
justifyfull_desc:"По ширине",
|
||||
bullist_desc:"Маркированный список",
|
||||
numlist_desc:"Нумерованный список",
|
||||
outdent_desc:"Уменьшить отступ",
|
||||
indent_desc:"Увеличить отступ",
|
||||
undo_desc:"Отменить (Ctrl+Z)",
|
||||
redo_desc:"Вернуть (Ctrl+Y)",
|
||||
link_desc:"Добавить/Изменить ссылку",
|
||||
unlink_desc:"Удалить ссылку",
|
||||
image_desc:"Добавить/Изменить изображение",
|
||||
cleanup_desc:"Очистить лишний код",
|
||||
code_desc:"Редактировать HTML код",
|
||||
sub_desc:"Подстрочный",
|
||||
sup_desc:"Надстрочный",
|
||||
hr_desc:"Добавить черту",
|
||||
removeformat_desc:"Очистить формат",
|
||||
custom1_desc:"Собственное описание",
|
||||
forecolor_desc:"Цвет текста",
|
||||
backcolor_desc:"Цвет фона",
|
||||
charmap_desc:"Добавить символ",
|
||||
visualaid_desc:"Все знаки",
|
||||
anchor_desc:"Добавить/Изменить якорь",
|
||||
cut_desc:"Вырезать",
|
||||
copy_desc:"Копировать",
|
||||
paste_desc:"Вставить",
|
||||
image_props_desc:"Параметры изображения",
|
||||
newdocument_desc:"Новый документ",
|
||||
help_desc:"Справка",
|
||||
blockquote_desc:"Цитата",
|
||||
clipboard_msg:"Копирование, вырезка и вставка не работают в Firefox.\nХотите получить более подробную информацию?",
|
||||
path:"Путь",
|
||||
newdocument:"Вы уверены, что хотите все удалить?",
|
||||
toolbar_focus:"Перейти на панель кнопок (Alt+Q). Перейти к редактору (Alt+Z). Перейти к элементу пути (Alt+X).",
|
||||
more_colors:"Другие цвета...",
|
||||
anchor_delta_height:"",
|
||||
anchor_delta_width:"",
|
||||
charmap_delta_height:"",
|
||||
charmap_delta_width:"",
|
||||
colorpicker_delta_height:"",
|
||||
colorpicker_delta_width:"",
|
||||
link_delta_height:"",
|
||||
link_delta_width:"",
|
||||
image_delta_height:"",
|
||||
image_delta_width:"",
|
||||
help_shortcut:"Используйте клавиши Alt-F10 для панели инструментов. Используйте Alt-0 для получения справки",
|
||||
rich_text_area:"Область форматированного текста",
|
||||
shortcuts_desc:"Справка по доступности",
|
||||
umbracomacro_desc:"Вставить макрос",
|
||||
toolbar:"Панель инструментов"});
|
||||
@@ -0,0 +1,56 @@
|
||||
tinyMCE.addI18n('ru.umbraco_dlg',{
|
||||
about_title:"Описание TinyMCE",
|
||||
about_general:"Описание",
|
||||
about_help:"Помощь",
|
||||
about_license:"Лицензия",
|
||||
about_plugins:"Дополнительные модули",
|
||||
about_plugin:"Модуль",
|
||||
about_author:"Автор",
|
||||
about_version:"Версия",
|
||||
about_loaded:"Подключенные модули",
|
||||
accessibility_help:"Справка по доступности",
|
||||
accessibility_usage_title:"Общедоступное применение",
|
||||
anchor_title:"Параметры якоря",
|
||||
anchor_name:"Имя якоря",
|
||||
anchor_invalid:"Укажите корректное название якоря.",
|
||||
code_title:"Редактор HTML кода",
|
||||
code_wordwrap:"Перенос строк",
|
||||
colorpicker_title:"Цвета",
|
||||
colorpicker_picker_tab:"Спктр",
|
||||
colorpicker_picker_title:"Цвета",
|
||||
colorpicker_palette_tab:"Палитра",
|
||||
colorpicker_palette_title:"Цвета",
|
||||
colorpicker_named_tab:"Названия",
|
||||
colorpicker_named_title:"Цвета",
|
||||
colorpicker_color:"Код:",
|
||||
colorpicker_name:"Название:",
|
||||
charmap_title:"Выбор символа",
|
||||
charmap_usage:"Используйте стрелки вправо и влево для навигации.",
|
||||
image_title:"Параметры изображения",
|
||||
image_src:"Адрес",
|
||||
image_alt:"Описание",
|
||||
image_list:"Список картинок",
|
||||
image_border:"Граница",
|
||||
image_dimensions:"Размер",
|
||||
image_vspace:"Верт. отступ",
|
||||
image_hspace:"Гориз. отступ",
|
||||
image_align:"Выравнивание",
|
||||
image_align_baseline:"По базовой линии",
|
||||
image_align_top:"По верхнему краю",
|
||||
image_align_middle:"По центру",
|
||||
image_align_bottom:"По нижнему краю",
|
||||
image_align_texttop:"По верхнему краю текста",
|
||||
image_align_textbottom:"По нижнему краю текста",
|
||||
image_align_left:"По левому краю",
|
||||
image_align_right:"По правому краю",
|
||||
invalid_color_value:"Некорректное значение цвета",
|
||||
link_title:"Параметры ссылки",
|
||||
link_url:"Адрес",
|
||||
link_target:"Цель",
|
||||
link_target_same:"Открыть в этом окне",
|
||||
link_target_blank:"Открыть в новом окне",
|
||||
link_titlefield:"Заголовок",
|
||||
link_is_email:"Введенный адрес напоминает электронную почту, добавить mailto: префикс?",
|
||||
link_is_external:"Введенный адрес напоминает внешнюю ссылку, добавить http:// префикс?",
|
||||
link_list:"Список ссылок"
|
||||
"":""});
|
||||
@@ -0,0 +1,60 @@
|
||||
tinyMCE.addI18n('sv.umbraco',{
|
||||
style_select:"Stilar",
|
||||
font_size:"Fontstorlek",
|
||||
fontdefault:"Fontfamilj",
|
||||
block:"Format",
|
||||
paragraph:"Stycke",
|
||||
div:"Div",
|
||||
address:"Adress",
|
||||
pre:"F\u00F6rformaterad",
|
||||
h1:"Rubrik 1",
|
||||
h2:"Rubrik 2",
|
||||
h3:"Rubrik 3",
|
||||
h4:"Rubrik 4",
|
||||
h5:"Rubrik 5",
|
||||
h6:"Rubrik 6",
|
||||
blockquote:"Blockcitat",
|
||||
code:"Kodblock",
|
||||
samp:"Kodexempel",
|
||||
dt:"Definitionsterm",
|
||||
dd:"Definitionsbeskrivning",
|
||||
bold_desc:"Fet (Ctrl+B)",
|
||||
italic_desc:"Kursiv (Ctrl+I)",
|
||||
underline_desc:"Understruken (Ctrl+U)",
|
||||
striketrough_desc:"Genomstruken",
|
||||
justifyleft_desc:"V\u00E4nsterst\u00E4lld",
|
||||
justifycenter_desc:"Centrera",
|
||||
justifyright_desc:"H\u00F6gerst\u00E4lld",
|
||||
justifyfull_desc:"Justera",
|
||||
bullist_desc:"Punktlista",
|
||||
numlist_desc:"Nummerlista",
|
||||
outdent_desc:"Drag tillbaka",
|
||||
indent_desc:"Indrag",
|
||||
undo_desc:"\u00C5ngra (Ctrl+Z)",
|
||||
redo_desc:"G\u00F6r om (Ctrl+Y)",
|
||||
link_desc:"Infoga/redigera l\u00E4nk",
|
||||
unlink_desc:"Ta bort l\u00E4nk",
|
||||
image_desc:"Infoga/redigera bild",
|
||||
cleanup_desc:"St\u00E4da upp i k\u00E4llkoden",
|
||||
code_desc:"Redigera HTML k\u00E4llkoden",
|
||||
sub_desc:"Subscript",
|
||||
sup_desc:"Superscript",
|
||||
hr_desc:"Infoga horisontell skiljelinje",
|
||||
removeformat_desc:"Ta bort formatering",
|
||||
forecolor_desc:"V\u00E4lj textf\u00E4rg",
|
||||
backcolor_desc:"V\u00E4lj bakgrundsf\u00E4rg",
|
||||
charmap_desc:"Infoga specialtecken",
|
||||
visualaid_desc:"Visa/d\u00F6lj visuella hj\u00E4lpmedel",
|
||||
anchor_desc:"Infoga/redigera bokm\u00E4rke",
|
||||
cut_desc:"Klipp ut",
|
||||
copy_desc:"Kopiera",
|
||||
paste_desc:"Klistra in",
|
||||
image_props_desc:"Bildinst\u00E4llningar",
|
||||
newdocument_desc:"Nytt dokument",
|
||||
help_desc:"Hj\u00E4lp",
|
||||
blockquote_desc:"Blockcitat",
|
||||
clipboard_msg:"Kopiera/klipp ut/klistra in \u00E4r inte tillg\u00E4ngligt i din webbl\u00E4sare.\nVill du veta mer om detta?",
|
||||
path:"Element",
|
||||
newdocument:"\u00C4r du s\u00E4ker p\u00E5 att du vill radera allt inneh\u00E5ll?",
|
||||
toolbar_focus:"Hoppa till verktygsf\u00E4ltet - Alt+Q, Hoppa till redigeraren - Alt-Z, Hoppa till elementlistan - Alt-X"
|
||||
});
|
||||
@@ -0,0 +1,51 @@
|
||||
tinyMCE.addI18n('sv.umbraco_dlg',{
|
||||
about_title:"Om TinyMCE",
|
||||
about_general:"Om",
|
||||
about_help:"Hj\u00E4lp",
|
||||
about_license:"Licens",
|
||||
about_plugins:"Om plug-in",
|
||||
about_plugin:"Om plug-in",
|
||||
about_author:"Utvecklare",
|
||||
about_version:"Version",
|
||||
about_loaded:"Laddade plug-ins",
|
||||
anchor_title:"Infoga/redigera bokm\u00E4rke",
|
||||
anchor_name:"Namn",
|
||||
code_title:"HTML k\u00E4llkodsl\u00E4ge",
|
||||
code_wordwrap:"Bryt ord",
|
||||
colorpicker_title:"V\u00E4lj en f\u00E4rg",
|
||||
colorpicker_picker_tab:"V\u00E4ljare",
|
||||
colorpicker_picker_title:"F\u00E4rgv\u00E4ljare",
|
||||
colorpicker_palette_tab:"Palett",
|
||||
colorpicker_palette_title:"Palettf\u00E4rger",
|
||||
colorpicker_named_tab:"Namngivna",
|
||||
colorpicker_named_title:"Namngivna f\u00E4rger",
|
||||
colorpicker_color:"F\u00E4rg:",
|
||||
colorpicker_name:"Namn:",
|
||||
charmap_title:"V\u00E4lj ett specialtecken",
|
||||
image_title:"Infoga/redigera bild",
|
||||
image_src:"Bildens URL",
|
||||
image_alt:"Bildens beskrivning",
|
||||
image_list:"Bildlista",
|
||||
image_border:"Ram",
|
||||
image_dimensions:"Dimensioner",
|
||||
image_vspace:"Vertikalrymd",
|
||||
image_hspace:"Horisontalrymd",
|
||||
image_align:"Justering",
|
||||
image_align_baseline:"Baslinje",
|
||||
image_align_top:"Toppen",
|
||||
image_align_middle:"Mitten",
|
||||
image_align_bottom:"Botten",
|
||||
image_align_texttop:"Toppen av texten",
|
||||
image_align_textbottom:"Botten av texten",
|
||||
image_align_left:"V\u00E4nster",
|
||||
image_align_right:"H\u00F6ger",
|
||||
link_title:"Infoga/redigera l\u00E4nk",
|
||||
link_url:"L\u00E4nkens URL",
|
||||
link_target:"M\u00E5l",
|
||||
link_target_same:"\u00D6\u0096ppna l\u00E4nken i samma f\u00F6nster",
|
||||
link_target_blank:"\u00D6\u0096ppna l\u00E4nken i ett nytt f\u00F6nster",
|
||||
link_titlefield:"Titel",
|
||||
link_is_email:"L\u00E4nken du angav verkar vara en e-post adress. Vill du infoga mailto: prefixet p\u00E5 l\u00E4nken?",
|
||||
link_is_external:"L\u00E4nken du angav verkar vara en extern adress. Vill du infoga http:// prefixet p\u00E5 l\u00E4nken?",
|
||||
link_list:"L\u00E4nklista"
|
||||
});
|
||||
@@ -0,0 +1,74 @@
|
||||
tinyMCE.addI18n('zh.umbraco',{"underline_desc":"下划线 (Ctrl+U)",
|
||||
"italic_desc":"斜体 (Ctrl+I)",
|
||||
"bold_desc":"粗体 (Ctrl+B)",
|
||||
dd:"定义描述",
|
||||
dt:"定义条目",
|
||||
samp:"示例代码",
|
||||
code:"代码",
|
||||
blockquote:"块引用",
|
||||
h6:"标题 6",
|
||||
h5:"标题 5",
|
||||
h4:"标题 4",
|
||||
h3:"标题 3",
|
||||
h2:"标题 2",
|
||||
h1:"标题 1",
|
||||
pre:"预格式化",
|
||||
address:"地址",
|
||||
div:"DIV",
|
||||
paragraph:"段落",
|
||||
block:"格式化",
|
||||
fontdefault:"字体",
|
||||
"font_size":"字号",
|
||||
"style_select":"样式",
|
||||
"anchor_delta_height":"",
|
||||
"anchor_delta_width":"",
|
||||
"charmap_delta_height":"",
|
||||
"charmap_delta_width":"",
|
||||
"colorpicker_delta_height":"",
|
||||
"colorpicker_delta_width":"",
|
||||
"link_delta_height":"",
|
||||
"link_delta_width":"",
|
||||
"image_delta_height":"",
|
||||
"image_delta_width":"",
|
||||
"more_colors":"更多颜色…",
|
||||
"toolbar_focus":"跳转至工具按钮 - Alt+Q, 跳转至编辑器 - Alt+Z, 跳转至元素路径 - Alt+X",
|
||||
newdocument:"您确定清除所有内容吗?",
|
||||
path:"路径",
|
||||
"clipboard_msg":"复制/剪切/粘贴功能在Mozilla和Firefox中不可用,\n您想了解有关该问题的更多信息吗?",
|
||||
"blockquote_desc":"块引用",
|
||||
"help_desc":"帮助",
|
||||
"newdocument_desc":"新建文档",
|
||||
"image_props_desc":"图片属性",
|
||||
"paste_desc":"粘贴 (Ctrl+V)",
|
||||
"copy_desc":"复制 (Ctrl+C)",
|
||||
"cut_desc":"剪切 (Ctrl+X)",
|
||||
"anchor_desc":"插入/编辑锚点",
|
||||
"visualaid_desc":"显示/隐藏参考线和不可见元素",
|
||||
"charmap_desc":"插入特殊字符",
|
||||
"backcolor_desc":"设置背景色",
|
||||
"forecolor_desc":"文字颜色",
|
||||
"custom1_desc":"自定义描述",
|
||||
"removeformat_desc":"清除格式",
|
||||
"hr_desc":"插入水平线",
|
||||
"sup_desc":"上标",
|
||||
"sub_desc":"下标",
|
||||
"code_desc":"编辑代码",
|
||||
"cleanup_desc":"净化代码",
|
||||
"image_desc":"插入/编辑图片",
|
||||
"unlink_desc":"取消链接",
|
||||
"link_desc":"插入/编辑链接",
|
||||
"redo_desc":"撤消 (Ctrl+Y)",
|
||||
"undo_desc":"恢复 (Ctrl+Z)",
|
||||
"indent_desc":"增加缩进",
|
||||
"outdent_desc":"减少缩进",
|
||||
"numlist_desc":"插入/移除编号列表",
|
||||
"bullist_desc":"插入/移除非编号列表",
|
||||
"justifyfull_desc":"两端对齐",
|
||||
"justifyright_desc":"右对齐",
|
||||
"justifycenter_desc":"居中",
|
||||
"justifyleft_desc":"左对齐",
|
||||
"striketrough_desc":"删除线",
|
||||
"help_shortcut":"按 ALT+F10 调用工具栏. 按 ALT+0 寻求帮助",
|
||||
"rich_text_area":"富文本编辑区",
|
||||
"shortcuts_desc":"小提示",
|
||||
toolbar:"工具栏"});
|
||||
@@ -0,0 +1,55 @@
|
||||
tinyMCE.addI18n('zh.umbraco_dlg', {"link_list":"链接列表",
|
||||
"link_is_external":"您输入的好像是外部链接,是否需要在前面添加 http://?",
|
||||
"link_is_email":"您输入的好像是邮箱地址,是否需要在前面添加mailto:?",
|
||||
"link_titlefield":"标题",
|
||||
"link_target_blank":"在新窗口中打开链接",
|
||||
"link_target_same":"在该窗口打开链接",
|
||||
"link_target":"目标",
|
||||
"link_url":"链接URL",
|
||||
"link_title":"插入/编辑链接",
|
||||
"image_align_right":"右对齐",
|
||||
"image_align_left":"左对齐",
|
||||
"image_align_textbottom":"对齐文字底部",
|
||||
"image_align_texttop":"对齐文字顶部",
|
||||
"image_align_bottom":"对齐底部",
|
||||
"image_align_middle":"对齐中间",
|
||||
"image_align_top":"对齐顶部",
|
||||
"image_align_baseline":"基线对齐",
|
||||
"image_align":"对齐",
|
||||
"image_hspace":"水平间距",
|
||||
"image_vspace":"垂直间距",
|
||||
"image_dimensions":"约束比例",
|
||||
"image_alt":"图片描述",
|
||||
"image_list":"图片列表",
|
||||
"image_border":"边框",
|
||||
"image_src":"图片URL",
|
||||
"image_title":"插入/编辑图片",
|
||||
"charmap_title":"插入字符",
|
||||
"charmap_usage":"使用左右方向键选择",
|
||||
"colorpicker_name":"名称:",
|
||||
"colorpicker_color":"颜色:",
|
||||
"colorpicker_named_title":"命名的颜色",
|
||||
"colorpicker_named_tab":"命名的",
|
||||
"colorpicker_palette_title":"调色板颜色",
|
||||
"colorpicker_palette_tab":"调色板",
|
||||
"colorpicker_picker_title":"颜色拾取器",
|
||||
"colorpicker_picker_tab":"拾取器",
|
||||
"colorpicker_title":"选择一种颜色",
|
||||
"code_wordwrap":"自动换行",
|
||||
"code_title":"查看源码",
|
||||
"anchor_name":"名称",
|
||||
"anchor_title":"插入/编辑锚点",
|
||||
"about_loaded":"装载的插件",
|
||||
"about_version":"版本",
|
||||
"about_author":"作者",
|
||||
"about_plugin":"插件",
|
||||
"about_plugins":"插件集",
|
||||
"about_license":"授权",
|
||||
"about_help":"帮助",
|
||||
"about_general":"关于",
|
||||
"about_title":"关于TinyMCE",
|
||||
"anchor_invalid":"请输入有效的锚点名",
|
||||
"accessibility_help":"小提示",
|
||||
"accessibility_usage_title":"一般用法",
|
||||
"invalid_color_value":"错误的颜色值",
|
||||
"":""});
|
||||
|
After Width: | Height: | Size: 4.5 KiB |
|
After Width: | Height: | Size: 70 B |
|
After Width: | Height: | Size: 68 B |
|
After Width: | Height: | Size: 70 B |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1,34 @@
|
||||
body, td, pre {color:#000; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:8px;}
|
||||
body {background:#FFF;}
|
||||
body.mceForceColors {background:#FFF; color:#000;}
|
||||
h1 {font-size: 2em}
|
||||
h2 {font-size: 1.5em}
|
||||
h3 {font-size: 1.17em}
|
||||
h4 {font-size: 1em}
|
||||
h5 {font-size: .83em}
|
||||
h6 {font-size: .75em}
|
||||
.mceItemTable, .mceItemTable td, .mceItemTable th, .mceItemTable caption, .mceItemVisualAid {border: 1px dashed #BBB;}
|
||||
a.mceItemAnchor {width:12px; line-height:6px; overflow:hidden; padding-left:12px; background:url(img/items.gif) no-repeat bottom left;}
|
||||
img.mceItemAnchor {width:12px; height:12px; background:url(img/items.gif) no-repeat;}
|
||||
img {border:0;}
|
||||
table {cursor:default}
|
||||
table td, table th {cursor:text}
|
||||
ins {border-bottom:1px solid green; text-decoration: none; color:green}
|
||||
del {color:red; text-decoration:line-through}
|
||||
cite {border-bottom:1px dashed blue}
|
||||
acronym {border-bottom:1px dotted #CCC; cursor:help}
|
||||
abbr, html\:abbr {border-bottom:1px dashed #CCC; cursor:help}
|
||||
|
||||
/* IE */
|
||||
* html body {
|
||||
scrollbar-3dlight-color:#F0F0EE;
|
||||
scrollbar-arrow-color:#676662;
|
||||
scrollbar-base-color:#F0F0EE;
|
||||
scrollbar-darkshadow-color:#DDD;
|
||||
scrollbar-face-color:#E0E0DD;
|
||||
scrollbar-highlight-color:#F0F0EE;
|
||||
scrollbar-shadow-color:#F0F0EE;
|
||||
scrollbar-track-color:#F5F5F5;
|
||||
}
|
||||
|
||||
.umbMacroHolder {border: 3px dotted orange; padding: 5px;}
|
||||
@@ -0,0 +1,107 @@
|
||||
/* Generic */
|
||||
body {
|
||||
font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px;
|
||||
background:#fff;
|
||||
padding:0;
|
||||
margin:8px 8px 0 10px;
|
||||
}
|
||||
|
||||
html {background:#fff;}
|
||||
td {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;}
|
||||
textarea {resize:none;outline:none;}
|
||||
a:link, a:visited {color:blue;}
|
||||
.nowrap {white-space: nowrap}
|
||||
|
||||
/* Forms */
|
||||
fieldset {margin:0; padding:4px; border:1px solid #919B9C; font-family:Verdana, Arial; font-size:10px;}
|
||||
legend {color:#2B6FB6; font-weight:bold;}
|
||||
label.msg {display:none;}
|
||||
label.invalid {color:#EE0000; display:inline;}
|
||||
input.invalid {border:1px solid #EE0000;}
|
||||
input.text, select, textarea {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;}
|
||||
input.radio {border:1px none #000000; background:transparent; vertical-align:middle;}
|
||||
input.checkbox {border:1px none #000000; background:transparent; vertical-align:middle;}
|
||||
.input_noborder {border:0;}
|
||||
|
||||
/* Buttons */
|
||||
#insert, #cancel, input.button, .updateButton {
|
||||
border:0; margin:0; padding:0;
|
||||
font-weight:bold;
|
||||
width:94px; height:26px;
|
||||
background:url(img/buttons.png) 0 -26px;
|
||||
cursor:pointer;
|
||||
padding-bottom:2px;
|
||||
float:left;
|
||||
}
|
||||
|
||||
#insert {background:url(img/buttons.png) 0 -52px}
|
||||
#cancel {background:url(img/buttons.png) 0 0; float:right}
|
||||
|
||||
/* Browse */
|
||||
a.pickcolor, a.browse {text-decoration:none}
|
||||
a.browse span {display:block; width:20px; height:18px; background:url(../../img/icons.gif) -860px 0; border:1px solid #FFF; margin-left:1px;}
|
||||
.mceOldBoxModel a.browse span {width:22px; height:20px;}
|
||||
a.browse:hover span {border:1px solid #0A246A; background-color:#B2BBD0;}
|
||||
a.browse span.disabled {border:1px solid white; opacity:0.3; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=30)}
|
||||
a.browse:hover span.disabled {border:1px solid white; background-color:transparent;}
|
||||
a.pickcolor span {display:block; width:20px; height:16px; background:url(../../img/icons.gif) -840px 0; margin-left:2px;}
|
||||
.mceOldBoxModel a.pickcolor span {width:21px; height:17px;}
|
||||
a.pickcolor:hover span {background-color:#B2BBD0;}
|
||||
a.pickcolor:hover span.disabled {}
|
||||
|
||||
/* Charmap */
|
||||
table.charmap {border:1px solid #AAA; text-align:center}
|
||||
td.charmap, #charmap a {width:18px; height:18px; color:#000; border:1px solid #AAA; text-align:center; font-size:12px; vertical-align:middle; line-height: 18px;}
|
||||
#charmap a {display:block; color:#000; text-decoration:none; border:0}
|
||||
#charmap a:hover {background:#CCC;color:#2B6FB6}
|
||||
#charmap #codeN {font-size:10px; font-family:Arial,Helvetica,sans-serif; text-align:center}
|
||||
#charmap #codeV {font-size:40px; height:80px; border:1px solid #AAA; text-align:center}
|
||||
|
||||
/* Source */
|
||||
.wordWrapCode {vertical-align:middle; border:1px none #000000; background:transparent;}
|
||||
.mceActionPanel {margin-top:5px;}
|
||||
|
||||
/* Tabs classes */
|
||||
.tabs {width:100%; height:18px; line-height:normal; background:url(img/tabs.gif) repeat-x 0 -72px;}
|
||||
.tabs ul {margin:0; padding:0; list-style:none;}
|
||||
.tabs li {float:left; background:url(img/tabs.gif) no-repeat 0 0; margin:0 2px 0 0; padding:0 0 0 10px; line-height:17px; height:18px; display:block;}
|
||||
.tabs li.current {background:url(img/tabs.gif) no-repeat 0 -18px; margin-right:2px;}
|
||||
.tabs span {float:left; display:block; background:url(img/tabs.gif) no-repeat right -36px; padding:0px 10px 0 0;}
|
||||
.tabs .current span {background:url(img/tabs.gif) no-repeat right -54px;}
|
||||
.tabs a {text-decoration:none; font-family:Verdana, Arial; font-size:10px;}
|
||||
.tabs a:link, .tabs a:visited, .tabs a:hover {color:black;}
|
||||
|
||||
/* Panels */
|
||||
.panel_wrapper div.panel {display:none;}
|
||||
.panel_wrapper div.current {display:block; width:100%; height:300px; overflow:visible;}
|
||||
.panel_wrapper {border:1px solid #919B9C; border-top:0px; padding:10px; padding-top:5px; clear:both; background:white;}
|
||||
|
||||
/* Columns */
|
||||
.column {float:left;}
|
||||
.properties {width:100%;}
|
||||
.properties .column1 {}
|
||||
.properties .column2 {text-align:left;}
|
||||
|
||||
/* Titles */
|
||||
h1, h2, h3, h4 {color:#2B6FB6; margin:0; padding:0; padding-top:5px;}
|
||||
h3 {font-size:14px;}
|
||||
.title {font-size:12px; font-weight:bold; color:#2B6FB6;}
|
||||
|
||||
/* Dialog specific */
|
||||
#link .panel_wrapper, #link div.current {height:125px;}
|
||||
#image .panel_wrapper, #image div.current {height:200px;}
|
||||
#plugintable thead {font-weight:bold; background:#DDD;}
|
||||
#plugintable, #about #plugintable td {border:1px solid #919B9C;}
|
||||
#plugintable {width:96%; margin-top:10px;}
|
||||
#pluginscontainer {height:290px; overflow:auto;}
|
||||
#colorpicker #preview {display:inline-block; padding-left:40px; height:14px; border:1px solid black; margin-left:5px; margin-right: 5px}
|
||||
#colorpicker #previewblock {position: relative; top: -3px; padding-left:5px; padding-top: 0px; display:inline}
|
||||
#colorpicker #preview_wrapper { text-align:center; padding-top:4px; white-space: nowrap}
|
||||
#colorpicker #colors {float:left; border:1px solid gray; cursor:crosshair;}
|
||||
#colorpicker #light {border:1px solid gray; margin-left:5px; float:left;width:15px; height:150px; cursor:crosshair;}
|
||||
#colorpicker #light div {overflow:hidden;}
|
||||
#colorpicker .panel_wrapper div.current {height:175px;}
|
||||
#colorpicker #namedcolors {width:150px;}
|
||||
#colorpicker #namedcolors a {display:block; float:left; width:10px; height:10px; margin:1px 1px 0 0; overflow:hidden;}
|
||||
#colorpicker #colornamecontainer {margin-top:5px;}
|
||||
#colorpicker #picker_panel fieldset {margin:auto;width:325px;}
|
||||
@@ -0,0 +1,225 @@
|
||||
/* Reset */
|
||||
.umbracoSkin table, .umbracoSkin tbody, .umbracoSkin a, .umbracoSkin img, .umbracoSkin tr, .umbracoSkin div, .umbracoSkin td, .umbracoSkin iframe, .umbracoSkin span, .umbracoSkin *, .umbracoSkin .mceText {border:0; margin:0; padding:0; background:transparent; white-space:nowrap; text-decoration:none; font-weight:normal; cursor:default; color:#000; vertical-align:baseline; width:auto; border-collapse:separate; text-align:left}
|
||||
.umbracoSkin a:hover, .umbracoSkin a:link, .umbracoSkin a:visited, .umbracoSkin a:active {text-decoration:none; font-weight:normal; cursor:default; color:#000}
|
||||
.umbracoSkin table td {vertical-align:middle; padding: 0; margin:0;}
|
||||
|
||||
/* Containers */
|
||||
/*.umbracoSkin table {background:#F0F0EE} */
|
||||
.umbracoSkin iframe {display:block; background:#FFF}
|
||||
.umbracoSkin .mceToolbar {height:26px}
|
||||
.umbracoSkin .mceLeft {text-align:left}
|
||||
.umbracoSkin .mceRight {text-align:right}
|
||||
|
||||
/* External */
|
||||
.umbracoSkin .mceToolbarExternal {padding-left: 6px;}
|
||||
.umbracoSkin .mceExternalToolbar {position:absolute; border:1px solid #CCC; border-bottom:0; display:none; }
|
||||
.umbracoSkin .mceExternalToolbar td.mceToolbar {padding-right:13px;}
|
||||
.umbracoSkin .mceExternalClose {position:absolute; top:3px; right:3px; width:7px; height:7px; background:url(../../img/icons.gif) -820px 0}
|
||||
|
||||
/* Layout */
|
||||
.umbracoSkin table.mceLayout {border:0; border-left:1px solid #CCC; border-right:1px solid #CCC}
|
||||
.umbracoSkin table.mceLayout tr.mceFirst td {border-top:1px solid #CCC}
|
||||
.umbracoSkin table.mceLayout tr.mceLast td {border-bottom:1px solid #CCC}
|
||||
.umbracoSkin table.mceToolbar, .umbracoSkin tr.mceFirst .mceToolbar tr td, .umbracoSkin tr.mceLast .mceToolbar tr td {border:0; margin:0; padding:0;}
|
||||
.umbracoSkin td.mceToolbar {padding-top:1px; vertical-align:top}
|
||||
.umbracoSkin .mceIframeContainer {border-top:1px solid #CCC; border-bottom:1px solid #CCC}
|
||||
.umbracoSkin .mceStatusbar {font-family:'MS Sans Serif',sans-serif,Verdana,Arial; font-size:9pt; line-height:16px; overflow:visible; color:#000; display:block; height:20px}
|
||||
.umbracoSkin .mceStatusbar div {float:left; margin:2px}
|
||||
.umbracoSkin .mceStatusbar a.mceResize {display:block; float:right; background:url(../../img/icons.gif) -800px 0; width:20px; height:20px; cursor:se-resize}
|
||||
.umbracoSkin .mceStatusbar a:hover {text-decoration:underline}
|
||||
.umbracoSkin table.mceToolbar {margin-left:3px}
|
||||
.umbracoSkin span.mceIcon, .umbracoSkin img.mceIcon {display:block; width:20px; height:20px}
|
||||
.umbracoSkin .mceIcon {background:url(../../img/icons.gif) no-repeat 20px 20px}
|
||||
.umbracoSkin td.mceCenter {text-align:center;}
|
||||
.umbracoSkin td.mceCenter table {margin:0 auto; text-align:left;}
|
||||
.umbracoSkin td.mceRight table {margin:0 0 0 auto;}
|
||||
|
||||
/* Button */
|
||||
.umbracoSkin .mceButton {display:block; width:20px; height:20px; margin:2px;
|
||||
}
|
||||
|
||||
.umbracoSkin a.mceButtonEnabled:hover {margin: 1px;
|
||||
background: #EAEAEA;
|
||||
border: 1px solid #CAC9C9 !Important;}
|
||||
|
||||
.umbracoSkin a.mceButtonActive, .umbracoSkin a.mceButtonSelected {cursor: hand;
|
||||
margin: 1px;
|
||||
background: #D5EFFC;
|
||||
border: 1px solid #99DEFD !Important;}
|
||||
|
||||
.umbracoSkin .mceButtonDisabled .mceIcon {opacity:0.3; filter:alpha(opacity=30)}
|
||||
.umbracoSkin .mceButtonLabeled {width:auto}
|
||||
.umbracoSkin .mceButtonLabeled span.mceIcon {float:left}
|
||||
.umbracoSkin span.mceButtonLabel {display:block; font-size:10px; padding:4px 6px 0 22px; font-family:Tahoma,Verdana,Arial,Helvetica}
|
||||
.umbracoSkin .mceButtonDisabled .mceButtonLabel {color:#888}
|
||||
|
||||
/* Separator */
|
||||
.umbracoSkin .mceSeparator {display:block; background:url(../../img/icons.gif) -180px 0; width:2px; height:20px; margin:2px 4px 0 4px}
|
||||
|
||||
/* ListBox */
|
||||
.umbracoSkin .mceListBox {direction:ltr}
|
||||
.umbracoSkin .mceListBox, .umbracoSkin .mceListBox a {display:block}
|
||||
.umbracoSkin .mceListBox .mceText {padding-left:4px; width:70px; text-align:left; border:1px solid #CCC; border-right:0; background:#FFF; font-family:Tahoma,Verdana,Arial,Helvetica; font-size:11px; height:20px; line-height:20px; overflow:hidden}
|
||||
.umbracoSkin .mceListBox .mceOpen {width:9px; height:20px; background:url(../../img/icons.gif) -741px 0; margin-right:2px; border:1px solid #CCC;}
|
||||
.umbracoSkin table.mceListBoxEnabled:hover .mceText, .umbracoSkin .mceListBoxHover .mceText, .umbracoSkin .mceListBoxSelected .mceText {border:1px solid #A2ABC0; border-right:0; background:#FFF}
|
||||
.umbracoSkin table.mceListBoxEnabled:hover .mceOpen, .umbracoSkin .mceListBoxHover .mceOpen, .umbracoSkin .mceListBoxSelected .mceOpen {background-color:#FFF; border:1px solid #A2ABC0}
|
||||
.umbracoSkin .mceListBoxDisabled a.mceText {color:gray; background-color:transparent;}
|
||||
.umbracoSkin .mceListBoxMenu {overflow:auto; overflow-x:hidden}
|
||||
.umbracoSkin .mceOldBoxModel .mceListBox .mceText {height:22px}
|
||||
.umbracoSkin .mceOldBoxModel .mceListBox .mceOpen {width:11px; height:22px;}
|
||||
.umbracoSkin select.mceNativeListBox {font-family:'MS Sans Serif',sans-serif,Verdana,Arial; font-size:7pt; background:#F0F0EE; border:1px solid gray; margin-right:2px;}
|
||||
|
||||
/* SplitButton */
|
||||
.umbracoSkin .mceSplitButton {width:32px; height:20px; direction:ltr}
|
||||
.umbracoSkin .mceSplitButton a, .umbracoSkin .mceSplitButton span {height:20px; display:block}
|
||||
.umbracoSkin .mceSplitButton a.mceAction {width:20px; border:1px solid #F0F0EE; border-right:0;}
|
||||
.umbracoSkin .mceSplitButton span.mceAction {width:20px; background:url(../../img/icons.gif) 20px 20px;}
|
||||
.umbracoSkin .mceSplitButton a.mceOpen {width:9px; border:1px solid #F0F0EE;}
|
||||
.umbracoSkin .mceSplitButton span.mceOpen {width:9px; background:url(../../img/icons.gif) -741px 0;}
|
||||
.umbracoSkin table.mceSplitButtonEnabled:hover a.mceAction, .umbracoSkin .mceSplitButtonHover a.mceAction, .umbracoSkin .mceSplitButtonSelected a.mceAction {border:1px solid #0A246A; border-right:0; background-color:#B2BBD0}
|
||||
.umbracoSkin table.mceSplitButtonEnabled:hover a.mceOpen, .umbracoSkin .mceSplitButtonHover a.mceOpen, .umbracoSkin .mceSplitButtonSelected a.mceOpen {border:1px solid #0A246A;}
|
||||
.umbracoSkin table.mceSplitButtonEnabled:hover span.mceOpen, .umbracoSkin .mceSplitButtonHover span.mceOpen, .umbracoSkin .mceSplitButtonSelected span.mceOpen {background-color:#B2BBD0}
|
||||
.umbracoSkin .mceSplitButtonDisabled .mceAction, .umbracoSkin .mceSplitButtonDisabled span.mceOpen {opacity:0.3; filter:alpha(opacity=30)}
|
||||
.umbracoSkin .mceSplitButtonActive a.mceAction {border:1px solid #0A246A; background-color:#C2CBE0}
|
||||
.umbracoSkin .mceSplitButtonActive a.mceOpen {border-left:0;}
|
||||
|
||||
/* ColorSplitButton */
|
||||
.umbracoSkin div.mceColorSplitMenu table {background:#FFF; border:1px solid gray}
|
||||
.umbracoSkin .mceColorSplitMenu td {padding:2px}
|
||||
.umbracoSkin .mceColorSplitMenu a {display:block; width:9px; height:9px; overflow:hidden; border:1px solid #808080}
|
||||
.umbracoSkin .mceColorSplitMenu td.mceMoreColors {padding:1px 3px 1px 1px}
|
||||
.umbracoSkin .mceColorSplitMenu a.mceMoreColors {width:100%; height:auto; text-align:center; font-family:Tahoma,Verdana,Arial,Helvetica; font-size:11px; line-height:20px; border:1px solid #FFF}
|
||||
.umbracoSkin .mceColorSplitMenu a.mceMoreColors:hover {border:1px solid #0A246A; background-color:#B6BDD2}
|
||||
.umbracoSkin a.mceMoreColors:hover {border:1px solid #0A246A}
|
||||
.umbracoSkin .mceColorPreview {margin-left:2px; width:16px; height:4px; overflow:hidden; background:#9a9b9a}
|
||||
.umbracoSkin .mce_forecolor span.mceAction, .umbracoSkin .mce_backcolor span.mceAction {overflow:hidden; height:16px}
|
||||
|
||||
/* Menu */
|
||||
.umbracoSkin .mceMenu {position:absolute; left:0; top:0; z-index:1000; border:1px solid #D4D0C8}
|
||||
.umbracoSkin .mceNoIcons span.mceIcon {width:0;}
|
||||
.umbracoSkin .mceNoIcons a .mceText {padding-left:10px}
|
||||
.umbracoSkin .mceMenu table {background:#FFF}
|
||||
.umbracoSkin .mceMenu a, .umbracoSkin .mceMenu span, .umbracoSkin .mceMenu {display:block}
|
||||
.umbracoSkin .mceMenu td {height:20px}
|
||||
.umbracoSkin .mceMenu a {position:relative;padding:3px 0 4px 0}
|
||||
.umbracoSkin .mceMenu .mceText {position:relative; display:block; font-family:Tahoma,Verdana,Arial,Helvetica; color:#000; cursor:default; margin:0; padding:0 25px 0 25px; display:block}
|
||||
.umbracoSkin .mceMenu span.mceText, .umbracoSkin .mceMenu .mcePreview {font-size:11px}
|
||||
.umbracoSkin .mceMenu pre.mceText {font-family:Monospace}
|
||||
.umbracoSkin .mceMenu .mceIcon {position:absolute; top:0; left:0; width:22px;}
|
||||
.umbracoSkin .mceMenu .mceMenuItemEnabled a:hover, .umbracoSkin .mceMenu .mceMenuItemActive {background-color:#dbecf3}
|
||||
.umbracoSkin td.mceMenuItemSeparator {background:#DDD; height:1px}
|
||||
.umbracoSkin .mceMenuItemTitle a {border:0; background:#EEE; border-bottom:1px solid #DDD}
|
||||
.umbracoSkin .mceMenuItemTitle span.mceText {color:#000; font-weight:bold; padding-left:4px}
|
||||
.umbracoSkin .mceMenuItemDisabled .mceText {color:#888}
|
||||
.umbracoSkin .mceMenuItemSelected .mceIcon {background:url(img/menu_check.gif)}
|
||||
.umbracoSkin .mceNoIcons .mceMenuItemSelected a {background:url(img/menu_arrow.gif) no-repeat -6px center}
|
||||
.umbracoSkin .mceMenu span.mceMenuLine {display:none}
|
||||
.umbracoSkin .mceMenuItemSub a {background:url(img/menu_arrow.gif) no-repeat top right;}
|
||||
|
||||
/* Progress,Resize */
|
||||
.umbracoSkin .mceBlocker {position:absolute; left:0; top:0; z-index:1000; opacity:0.5; filter:alpha(opacity=50); background:#FFF}
|
||||
.umbracoSkin .mceProgress {position:absolute; left:0; top:0; z-index:1001; background:url(img/progress.gif) no-repeat; width:32px; height:32px; margin:-16px 0 0 -16px}
|
||||
.umbracoSkin .mcePlaceHolder {border:1px dotted gray}
|
||||
|
||||
/* Formats */
|
||||
.umbracoSkin .mce_formatPreview a {font-size:10px}
|
||||
.umbracoSkin .mce_p span.mceText {}
|
||||
.umbracoSkin .mce_address span.mceText {font-style:italic}
|
||||
.umbracoSkin .mce_pre span.mceText {font-family:monospace}
|
||||
.umbracoSkin .mce_h1 span.mceText {font-weight:bolder; font-size: 2em}
|
||||
.umbracoSkin .mce_h2 span.mceText {font-weight:bolder; font-size: 1.5em}
|
||||
.umbracoSkin .mce_h3 span.mceText {font-weight:bolder; font-size: 1.17em}
|
||||
.umbracoSkin .mce_h4 span.mceText {font-weight:bolder; font-size: 1em}
|
||||
.umbracoSkin .mce_h5 span.mceText {font-weight:bolder; font-size: .83em}
|
||||
.umbracoSkin .mce_h6 span.mceText {font-weight:bolder; font-size: .75em}
|
||||
|
||||
/* Theme */
|
||||
.umbracoSkin span.mce_bold {background-position:0 0}
|
||||
.umbracoSkin span.mce_italic {background-position:-60px 0}
|
||||
.umbracoSkin span.mce_underline {background-position:-140px 0}
|
||||
.umbracoSkin span.mce_strikethrough {background-position:-120px 0}
|
||||
.umbracoSkin span.mce_undo {background-position:-160px 0}
|
||||
.umbracoSkin span.mce_redo {background-position:-100px 0}
|
||||
.umbracoSkin span.mce_cleanup {background-position:-40px 0}
|
||||
.umbracoSkin span.mce_bullist {background-position:-20px 0}
|
||||
.umbracoSkin span.mce_numlist {background-position:-80px 0}
|
||||
.umbracoSkin span.mce_justifyleft {background-position:-460px 0}
|
||||
.umbracoSkin span.mce_justifyright {background-position:-480px 0}
|
||||
.umbracoSkin span.mce_justifycenter {background-position:-420px 0}
|
||||
.umbracoSkin span.mce_justifyfull {background-position:-440px 0}
|
||||
.umbracoSkin span.mce_anchor {background-position:-200px 0}
|
||||
.umbracoSkin span.mce_indent {background-position:-400px 0}
|
||||
.umbracoSkin span.mce_outdent {background-position:-540px 0}
|
||||
.umbracoSkin span.mce_link {background-position:-500px 0}
|
||||
.umbracoSkin span.mce_unlink {background-position:-640px 0}
|
||||
.umbracoSkin span.mce_sub {background-position:-600px 0}
|
||||
.umbracoSkin span.mce_sup {background-position:-620px 0}
|
||||
.umbracoSkin span.mce_removeformat {background-position:-580px 0}
|
||||
.umbracoSkin span.mce_newdocument {background-position:-520px 0}
|
||||
.umbracoSkin span.mce_image {background-position:-380px 0}
|
||||
.umbracoSkin span.mce_help {background-position:-340px 0}
|
||||
.umbracoSkin span.mce_code {background-position:-260px 0}
|
||||
.umbracoSkin span.mce_hr {background-position:-360px 0}
|
||||
.umbracoSkin span.mce_visualaid {background-position:-660px 0}
|
||||
.umbracoSkin span.mce_charmap {background-position:-240px 0}
|
||||
.umbracoSkin span.mce_paste {background-position:-560px 0}
|
||||
.umbracoSkin span.mce_copy {background-position:-700px 0}
|
||||
.umbracoSkin span.mce_cut {background-position:-680px 0}
|
||||
.umbracoSkin span.mce_blockquote {background-position:-220px 0}
|
||||
.umbracoSkin .mce_forecolor span.mceAction {background-position:-720px 0}
|
||||
.umbracoSkin .mce_backcolor span.mceAction {background-position:-760px 0}
|
||||
.umbracoSkin span.mce_forecolorpicker {background-position:-720px 0}
|
||||
.umbracoSkin span.mce_backcolorpicker {background-position:-760px 0}
|
||||
|
||||
/* Plugins */
|
||||
.umbracoSkin span.mce_advhr {background-position:-0px -20px}
|
||||
.umbracoSkin span.mce_ltr {background-position:-20px -20px}
|
||||
.umbracoSkin span.mce_rtl {background-position:-40px -20px}
|
||||
.umbracoSkin span.mce_emotions {background-position:-60px -20px}
|
||||
.umbracoSkin span.mce_fullpage {background-position:-80px -20px}
|
||||
.umbracoSkin span.mce_fullscreen {background-position:-100px -20px}
|
||||
.umbracoSkin span.mce_iespell {background-position:-120px -20px}
|
||||
.umbracoSkin span.mce_insertdate {background-position:-140px -20px}
|
||||
.umbracoSkin span.mce_inserttime {background-position:-160px -20px}
|
||||
.umbracoSkin span.mce_absolute {background-position:-180px -20px}
|
||||
.umbracoSkin span.mce_backward {background-position:-200px -20px}
|
||||
.umbracoSkin span.mce_forward {background-position:-220px -20px}
|
||||
.umbracoSkin span.mce_insert_layer {background-position:-240px -20px}
|
||||
.umbracoSkin span.mce_insertlayer {background-position:-260px -20px}
|
||||
.umbracoSkin span.mce_movebackward {background-position:-280px -20px}
|
||||
.umbracoSkin span.mce_moveforward {background-position:-300px -20px}
|
||||
.umbracoSkin span.mce_media {background-position:-320px -20px}
|
||||
.umbracoSkin span.mce_nonbreaking {background-position:-340px -20px}
|
||||
.umbracoSkin span.mce_pastetext {background-position:-360px -20px}
|
||||
.umbracoSkin span.mce_pasteword {background-position:-560px 0}
|
||||
.umbracoSkin span.mce_selectall {background-position:-400px -20px}
|
||||
.umbracoSkin span.mce_preview {background-position:-420px -20px}
|
||||
.umbracoSkin span.mce_print {background-position:-440px -20px}
|
||||
.umbracoSkin span.mce_cancel {background-position:-460px -20px}
|
||||
.umbracoSkin span.mce_save {background-position:-480px -20px}
|
||||
.umbracoSkin span.mce_replace {background-position:-500px -20px}
|
||||
.umbracoSkin span.mce_search {background-position:-520px -20px}
|
||||
.umbracoSkin span.mce_styleprops {background-position:-560px -20px}
|
||||
.umbracoSkin span.mce_table {background-position:-580px -20px}
|
||||
.umbracoSkin span.mce_cell_props {background-position:-600px -20px}
|
||||
.umbracoSkin span.mce_delete_table {background-position:-620px -20px}
|
||||
.umbracoSkin span.mce_delete_col {background-position:-640px -20px}
|
||||
.umbracoSkin span.mce_delete_row {background-position:-660px -20px}
|
||||
.umbracoSkin span.mce_col_after {background-position:-680px -20px}
|
||||
.umbracoSkin span.mce_col_before {background-position:-700px -20px}
|
||||
.umbracoSkin span.mce_row_after {background-position:-720px -20px}
|
||||
.umbracoSkin span.mce_row_before {background-position:-740px -20px}
|
||||
.umbracoSkin span.mce_merge_cells {background-position:-760px -20px}
|
||||
.umbracoSkin span.mce_table_props {background-position:-980px -20px}
|
||||
.umbracoSkin span.mce_row_props {background-position:-780px -20px}
|
||||
.umbracoSkin span.mce_split_cells {background-position:-800px -20px}
|
||||
.umbracoSkin span.mce_template {background-position:-820px -20px}
|
||||
.umbracoSkin span.mce_visualchars {background-position:-840px -20px}
|
||||
.umbracoSkin span.mce_abbr {background-position:-860px -20px}
|
||||
.umbracoSkin span.mce_acronym {background-position:-880px -20px}
|
||||
.umbracoSkin span.mce_attribs {background-position:-900px -20px}
|
||||
.umbracoSkin span.mce_cite {background-position:-920px -20px}
|
||||
.umbracoSkin span.mce_del {background-position:-940px -20px}
|
||||
.umbracoSkin span.mce_ins {background-position:-960px -20px}
|
||||
.umbracoSkin span.mce_pagebreak {background-position:0 -40px}
|
||||
.umbracoSkin .mce_spellchecker span.mceAction {background-position:-540px -20px}
|
||||
@@ -0,0 +1,52 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>{#umbraco_dlg.about_title}</title>
|
||||
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
||||
<script type="text/javascript" src="../../utils/mctabs.js"></script>
|
||||
<script type="text/javascript" src="js/about.js"></script>
|
||||
</head>
|
||||
<body id="about" style="display: none">
|
||||
<div class="tabs">
|
||||
<ul>
|
||||
<li id="general_tab" class="current" aria-controls="general_panel"><span><a href="javascript:mcTabs.displayTab('general_tab','general_panel');" onmousedown="return false;">{#umbraco_dlg.about_general}</a></span></li>
|
||||
<li id="help_tab" style="display:none" aria-hidden="true" aria-controls="help_panel"><span><a href="javascript:mcTabs.displayTab('help_tab','help_panel');" onmousedown="return false;">{#umbraco_dlg.about_help}</a></span></li>
|
||||
<li id="plugins_tab" aria-controls="plugins_panel"><span><a href="javascript:mcTabs.displayTab('plugins_tab','plugins_panel');" onmousedown="return false;">{#umbraco_dlg.about_plugins}</a></span></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="panel_wrapper">
|
||||
<div id="general_panel" class="panel current">
|
||||
<h3>{#umbraco_dlg.about_title}</h3>
|
||||
<p>Version: <span id="version"></span> (<span id="date"></span>)</p>
|
||||
<p>TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor control released as Open Source under <a href="../../license.txt" target="_blank">LGPL</a>
|
||||
by Moxiecode Systems AB. It has the ability to convert HTML TEXTAREA fields or other HTML elements to editor instances.</p>
|
||||
<p>Copyright © 2003-2008, <a href="http://www.moxiecode.com" target="_blank">Moxiecode Systems AB</a>, All rights reserved.</p>
|
||||
<p>For more information about this software visit the <a href="http://tinymce.moxiecode.com" target="_blank">TinyMCE website</a>.</p>
|
||||
|
||||
<div id="buttoncontainer">
|
||||
<a href="http://www.moxiecode.com" target="_blank"><img src="http://tinymce.moxiecode.com/images/gotmoxie.png" alt="Got Moxie?" border="0" /></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="plugins_panel" class="panel">
|
||||
<div id="pluginscontainer">
|
||||
<h3>{#umbraco_dlg.about_loaded}</h3>
|
||||
|
||||
<div id="plugintablecontainer">
|
||||
</div>
|
||||
|
||||
<p> </p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="help_panel" class="panel noscroll" style="overflow: visible;">
|
||||
<div id="iframecontainer"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mceActionPanel">
|
||||
<input type="button" id="cancel" name="cancel" value="{#close}" onclick="tinyMCEPopup.close();" />
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,24 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>{#umbraco_dlg.anchor_title}</title>
|
||||
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
||||
<script type="text/javascript" src="js/anchor.js"></script>
|
||||
<base target="_self" />
|
||||
</head>
|
||||
<body style="display: none" role="application" aria-labelledby="app_title">
|
||||
<form onsubmit="AnchorDialog.update();return false;" action="#">
|
||||
<table border="0" cellpadding="4" cellspacing="0" role="presentation">
|
||||
<tr>
|
||||
<td class="nowrap"><label for="anchorName">{#umbraco_dlg.anchor_name}:</label></td>
|
||||
<td><input name="anchorName" type="text" class="mceFocus" id="anchorName" value="" style="width: 200px" aria-required="true" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div class="mceActionPanel">
|
||||
<input type="submit" id="insert" name="insert" value="{#update}" />
|
||||
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
|
||||
</div>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,57 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>{#umbraco_dlg.charmap_title}</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
|
||||
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
||||
<script type="text/javascript" src="js/charmap.js"></script>
|
||||
<base target="_self" />
|
||||
</head>
|
||||
<body id="charmap" style="display:none" role="application">
|
||||
<table align="center" border="0" cellspacing="0" cellpadding="2" role="presentation">
|
||||
<tr>
|
||||
<td colspan="2" class="title" ><label for="charmapView" id="charmap_label">{#umbraco_dlg.charmap_title}</label></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="charmapView" rowspan="2" align="left" valign="top">
|
||||
<!-- Chars will be rendered here -->
|
||||
</td>
|
||||
<td width="100" align="center" valign="top">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="100" style="height:100px" role="presentation">
|
||||
<tr>
|
||||
<td id="codeV"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="codeN"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="bottom" style="padding-bottom: 3px;">
|
||||
<table width="100" align="center" border="0" cellpadding="2" cellspacing="0" role="presentation">
|
||||
<tr>
|
||||
<td align="center" style="border-left: 1px solid #666699; border-top: 1px solid #666699; border-right: 1px solid #666699;"><label for="codeA">HTML-Code</label></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="font-size: 16px; font-weight: bold; border-left: 1px solid #666699; border-bottom: 1px solid #666699; border-right: 1px solid #666699;" id="codeA" align="center"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="font-size: 1px;"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" style="border-left: 1px solid #666699; border-top: 1px solid #666699; border-right: 1px solid #666699;"><label for="codeB">NUM-Code</label></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="font-size: 16px; font-weight: bold; border-left: 1px solid #666699; border-bottom: 1px solid #666699; border-right: 1px solid #666699;" id="codeB" align="center"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" id="charmap_usage">{#umbraco_dlg.charmap_usage}</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,71 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>{#umbraco_dlg.colorpicker_title}</title>
|
||||
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
||||
<script type="text/javascript" src="../../utils/mctabs.js"></script>
|
||||
<script type="text/javascript" src="js/color_picker.js"></script>
|
||||
<base target="_self" />
|
||||
</head>
|
||||
<body id="colorpicker" style="display: none" role="application" aria-labelledby="app_label">
|
||||
<span class="mceVoiceLabel" id="app_label" style="display:none;">{#umbraco_dlg.colorpicker_title}</span>
|
||||
<form onsubmit="insertAction();return false" action="#">
|
||||
<div class="tabs">
|
||||
<ul>
|
||||
<li id="picker_tab" aria-controls="picker_panel" class="current"><span><a href="javascript:mcTabs.displayTab('picker_tab','picker_panel');" onmousedown="return false;">{#umbraco_dlg.colorpicker_picker_tab}</a></span></li>
|
||||
<li id="rgb_tab" aria-controls="rgb_panel"><span><a href="javascript:;" onclick="mcTabs.displayTab('rgb_tab','rgb_panel');" onmousedown="return false;">{#umbraco_dlg.colorpicker_palette_tab}</a></span></li>
|
||||
<li id="named_tab" aria-controls="named_panel"><span><a href="javascript:;" onclick="javascript:mcTabs.displayTab('named_tab','named_panel');" onmousedown="return false;">{#umbraco_dlg.colorpicker_named_tab}</a></span></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="panel_wrapper">
|
||||
<div id="picker_panel" class="panel current">
|
||||
<fieldset>
|
||||
<legend>{#umbraco_dlg.colorpicker_picker_title}</legend>
|
||||
<div id="picker">
|
||||
<img id="colors" src="img/colorpicker.jpg" onclick="computeColor(event)" onmousedown="isMouseDown = true;return false;" onmouseup="isMouseDown = false;" onmousemove="if (isMouseDown && isMouseOver) computeColor(event); return false;" onmouseover="isMouseOver=true;" onmouseout="isMouseOver=false;" alt="" />
|
||||
|
||||
<div id="light">
|
||||
<!-- Will be filled with divs -->
|
||||
</div>
|
||||
|
||||
<br style="clear: both" />
|
||||
</div>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div id="rgb_panel" class="panel">
|
||||
<fieldset>
|
||||
<legend id="webcolors_title">{#umbraco_dlg.colorpicker_palette_title}</legend>
|
||||
<div id="webcolors">
|
||||
<!-- Gets filled with web safe colors-->
|
||||
</div>
|
||||
|
||||
<br style="clear: both" />
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div id="named_panel" class="panel">
|
||||
<fieldset id="named_picker_label">
|
||||
<legend id="named_title">{#umbraco_dlg.colorpicker_named_title}</legend>
|
||||
<div id="namedcolors" role="listbox" tabindex="0" aria-labelledby="named_picker_label">
|
||||
<!-- Gets filled with named colors-->
|
||||
</div>
|
||||
|
||||
<br style="clear: both" />
|
||||
|
||||
<div id="colornamecontainer">
|
||||
{#umbraco_dlg.colorpicker_name} <span id="colorname"></span>
|
||||
</div>
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mceActionPanel">
|
||||
<input type="submit" id="insert" name="insert" value="{#apply}" />
|
||||
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();"/>
|
||||
<div id="preview_wrapper"><div id="previewblock"><label for="color">{#umbraco_dlg.colorpicker_color}</label> <input id="color" type="text" size="8" class="text mceFocus" aria-required="true" /></div><span id="preview"></span></div>
|
||||
</div>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,81 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>{#umbraco_dlg.image_title}</title>
|
||||
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
||||
<script type="text/javascript" src="../../utils/mctabs.js"></script>
|
||||
<script type="text/javascript" src="../../utils/form_utils.js"></script>
|
||||
<script type="text/javascript" src="js/image.js"></script>
|
||||
<base target="_self" />
|
||||
</head>
|
||||
<body id="image" style="display: none">
|
||||
<form onsubmit="ImageDialog.update();return false;" action="#">
|
||||
<div class="tabs">
|
||||
<ul>
|
||||
<li id="general_tab" class="current"><span><a href="javascript:mcTabs.displayTab('general_tab','general_panel');" onmousedown="return false;">{#umbraco_dlg.image_title}</a></span></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="panel_wrapper">
|
||||
<div id="general_panel" class="panel current">
|
||||
<table border="0" cellpadding="4" cellspacing="0">
|
||||
<tr>
|
||||
<td class="nowrap"><label for="src">{#umbraco_dlg.image_src}</label></td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td><input id="src" name="src" type="text" class="mceFocus" value="" style="width: 200px" onchange="ImageDialog.getImageData();" /></td>
|
||||
<td id="srcbrowsercontainer"> </td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="image_list">{#umbraco_dlg.image_list}</label></td>
|
||||
<td><select id="image_list" name="image_list" onchange="document.getElementById('src').value=this.options[this.selectedIndex].value;document.getElementById('alt').value=this.options[this.selectedIndex].text;"></select></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="nowrap"><label for="alt">{#umbraco_dlg.image_alt}</label></td>
|
||||
<td><input id="alt" name="alt" type="text" value="" style="width: 200px" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="nowrap"><label for="align">{#umbraco_dlg.image_align}</label></td>
|
||||
<td><select id="align" name="align" onchange="ImageDialog.updateStyle();">
|
||||
<option value="">{#not_set}</option>
|
||||
<option value="baseline">{#umbraco_dlg.image_align_baseline}</option>
|
||||
<option value="top">{#umbraco_dlg.image_align_top}</option>
|
||||
<option value="middle">{#umbraco_dlg.image_align_middle}</option>
|
||||
<option value="bottom">{#umbraco_dlg.image_align_bottom}</option>
|
||||
<option value="text-top">{#umbraco_dlg.image_align_texttop}</option>
|
||||
<option value="text-bottom">{#umbraco_dlg.image_align_textbottom}</option>
|
||||
<option value="left">{#umbraco_dlg.image_align_left}</option>
|
||||
<option value="right">{#umbraco_dlg.image_align_right}</option>
|
||||
</select></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="nowrap"><label for="width">{#umbraco_dlg.image_dimensions}</label></td>
|
||||
<td><input id="width" name="width" type="text" value="" size="3" maxlength="5" />
|
||||
x
|
||||
<input id="height" name="height" type="text" value="" size="3" maxlength="5" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="nowrap"><label for="border">{#umbraco_dlg.image_border}</label></td>
|
||||
<td><input id="border" name="border" type="text" value="" size="3" maxlength="3" onchange="ImageDialog.updateStyle();" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="nowrap"><label for="vspace">{#umbraco_dlg.image_vspace}</label></td>
|
||||
<td><input id="vspace" name="vspace" type="text" value="" size="3" maxlength="3" onchange="ImageDialog.updateStyle();" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="nowrap"><label for="hspace">{#umbraco_dlg.image_hspace}</label></td>
|
||||
<td><input id="hspace" name="hspace" type="text" value="" size="3" maxlength="3" onchange="ImageDialog.updateStyle();" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mceActionPanel">
|
||||
<input type="submit" id="insert" name="insert" value="{#insert}" />
|
||||
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
|
||||
</div>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,58 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>{#umbraco_dlg.link_title}</title>
|
||||
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
||||
<script type="text/javascript" src="../../utils/mctabs.js"></script>
|
||||
<script type="text/javascript" src="../../utils/form_utils.js"></script>
|
||||
<script type="text/javascript" src="../../utils/validate.js"></script>
|
||||
<script type="text/javascript" src="js/link.js"></script>
|
||||
<base target="_self" />
|
||||
</head>
|
||||
<body id="link" style="display: none">
|
||||
<form onsubmit="LinkDialog.update();return false;" action="#">
|
||||
<div class="tabs">
|
||||
<ul>
|
||||
<li id="general_tab" class="current"><span><a href="javascript:mcTabs.displayTab('general_tab','general_panel');" onmousedown="return false;">{#umbraco_dlg.link_title}</a></span></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="panel_wrapper">
|
||||
<div id="general_panel" class="panel current">
|
||||
<table border="0" cellpadding="4" cellspacing="0">
|
||||
<tr>
|
||||
<td class="nowrap"><label for="href">{#umbraco_dlg.link_url}</label></td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td><input id="href" name="href" type="text" class="mceFocus" value="" style="width: 200px" onchange="LinkDialog.checkPrefix(this);" /></td>
|
||||
<td id="hrefbrowsercontainer"> </td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="link_list">{#umbraco_dlg.link_list}</label></td>
|
||||
<td><select id="link_list" name="link_list" onchange="document.getElementById('href').value=this.options[this.selectedIndex].value;"></select></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label id="targetlistlabel" for="targetlist">{#umbraco_dlg.link_target}</label></td>
|
||||
<td><select id="target_list" name="target_list"></select></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="nowrap"><label for="linktitle">{#umbraco_dlg.link_titlefield}</label></td>
|
||||
<td><input id="linktitle" name="linktitle" type="text" value="" style="width: 200px" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="class_list">{#class_name}</label></td>
|
||||
<td><select id="class_list" name="class_list"></select></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mceActionPanel">
|
||||
<input type="submit" id="insert" name="insert" value="{#insert}" />
|
||||
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
|
||||
</div>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,47 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>{#umbraco_dlg.accessibility_help}</title>
|
||||
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
||||
<script type="text/javascript">tinyMCEPopup.requireLangPack();</script>
|
||||
</head>
|
||||
<body id="content">
|
||||
<h1>{#umbraco_dlg.accessibility_usage_title}</h1>
|
||||
<h2>Toolbars</h2>
|
||||
<p>Press ALT-F10 to move focus to the toolbars. Navigate through the buttons using the arrow keys.
|
||||
Press enter to activate a button and return focus to the editor.
|
||||
Press escape to return focus to the editor without performing any actions.</p>
|
||||
|
||||
<h2>Status Bar</h2>
|
||||
<p>To access the editor status bar, press ALT-F11. Use the left and right arrow keys to navigate between elements in the path.
|
||||
Press enter or space to select an element. Press escape to return focus to the editor without changing the selection.</p>
|
||||
|
||||
<h2>Context Menu</h2>
|
||||
<p>Press shift-F10 to activate the context menu. Use the up and down arrow keys to move between menu items. To open sub-menus press the right arrow key.
|
||||
To close submenus press the left arrow key. Press escape to close the context menu.</p>
|
||||
|
||||
<h1>Keyboard Shortcuts</h1>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Keystroke</th>
|
||||
<th>Function</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Control-B</td><td>Bold</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Control-I</td><td>Italic</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Control-Z</td><td>Undo</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Control-Y</td><td>Redo</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,27 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<title>{#umbraco_dlg.code_title}</title>
|
||||
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
||||
<script type="text/javascript" src="js/source_editor.js"></script>
|
||||
<base target="_self" />
|
||||
</head>
|
||||
<body onresize="resizeInputs();" style="display:none; overflow:hidden;">
|
||||
<form name="source" onsubmit="saveContent();return false;" action="#">
|
||||
|
||||
<div style="float: left; display: none;" class="title"><label for="htmlSource">{#umbraco_dlg.code_title}</label></div>
|
||||
<div id="wrapline" style="display: none; float: right">
|
||||
<input type="checkbox" name="wraped" id="wraped" onclick="toggleWordWrap(this);" class="wordWrapCode" /><label for="wraped">{#umbraco_dlg.code_wordwrap}</label>
|
||||
</div>
|
||||
|
||||
<br style="clear: both" />
|
||||
|
||||
<textarea name="htmlSource" id="htmlSource" rows="15" cols="100" style="width: 100%; height: 100%; font-family: 'Courier New',Courier,monospace; font-size: 12px;" dir="ltr" wrap="off" class="mceFocus"></textarea>
|
||||
|
||||
<div class="mceActionPanel">
|
||||
<input type="submit" role="button" name="insert" value="{#update}" id="insert" />
|
||||
<input type="button" role="button" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" id="cancel" />
|
||||
</div>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||