Added TinyMCE editor functions & Updated TinyMCE to TinyMCE-jQuery 3.4b1
This commit is contained in:
@@ -1,22 +0,0 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>blank_page</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<link href="css/blank.css" rel="stylesheet" type="text/css" />
|
||||
<base target="_self" />
|
||||
<script type="text/javascript">
|
||||
function init() {
|
||||
if (parent.tinymce.isIE)
|
||||
document.body.contentEditable = true;
|
||||
else
|
||||
document.designMode = 'on';
|
||||
|
||||
parent.initIframe(document);
|
||||
window.focus();
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body onload="init();">
|
||||
|
||||
</body>
|
||||
</html>
|
@@ -1,14 +0,0 @@
|
||||
html, body {height:98%}
|
||||
body {
|
||||
background-color: #FFFFFF;
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 10px;
|
||||
scrollbar-3dlight-color: #F0F0EE;
|
||||
scrollbar-arrow-color: #676662;
|
||||
scrollbar-base-color: #F0F0EE;
|
||||
scrollbar-darkshadow-color: #DDDDDD;
|
||||
scrollbar-face-color: #E0E0DD;
|
||||
scrollbar-highlight-color: #F0F0EE;
|
||||
scrollbar-shadow-color: #F0F0EE;
|
||||
scrollbar-track-color: #F5F5F5;
|
||||
}
|
@@ -1,3 +0,0 @@
|
||||
.sourceIframe {
|
||||
border: 1px solid #808080;
|
||||
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
@@ -1,42 +1,36 @@
|
||||
tinyMCEPopup.requireLangPack();
|
||||
|
||||
function saveContent() {
|
||||
if (document.forms[0].htmlSource.value == '') {
|
||||
var PasteTextDialog = {
|
||||
init : function() {
|
||||
this.resize();
|
||||
},
|
||||
|
||||
insert : function() {
|
||||
var h = tinyMCEPopup.dom.encode(document.getElementById('content').value), lines;
|
||||
|
||||
// Convert linebreaks into paragraphs
|
||||
if (document.getElementById('linebreaks').checked) {
|
||||
lines = h.split(/\r?\n/);
|
||||
if (lines.length > 1) {
|
||||
h = '';
|
||||
tinymce.each(lines, function(row) {
|
||||
h += '<p>' + row + '</p>';
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
tinyMCEPopup.editor.execCommand('mceInsertClipboardContent', false, {content : h});
|
||||
tinyMCEPopup.close();
|
||||
return false;
|
||||
},
|
||||
|
||||
resize : function() {
|
||||
var vp = tinyMCEPopup.dom.getViewPort(window), el;
|
||||
|
||||
el = document.getElementById('content');
|
||||
|
||||
el.style.width = (vp.w - 20) + 'px';
|
||||
el.style.height = (vp.h - 90) + 'px';
|
||||
}
|
||||
};
|
||||
|
||||
tinyMCEPopup.execCommand('mcePasteText', false, {
|
||||
html : document.forms[0].htmlSource.value,
|
||||
linebreaks : document.forms[0].linebreaks.checked
|
||||
});
|
||||
|
||||
tinyMCEPopup.close();
|
||||
}
|
||||
|
||||
function onLoadInit() {
|
||||
tinyMCEPopup.resizeToInnerSize();
|
||||
|
||||
// Remove Gecko spellchecking
|
||||
if (tinymce.isGecko)
|
||||
document.body.spellcheck = tinyMCEPopup.getParam("gecko_spellcheck");
|
||||
|
||||
resizeInputs();
|
||||
}
|
||||
|
||||
var wHeight=0, wWidth=0, owHeight=0, owWidth=0;
|
||||
|
||||
function resizeInputs() {
|
||||
if (!tinymce.isIE) {
|
||||
wHeight = self.innerHeight-80;
|
||||
wWidth = self.innerWidth-17;
|
||||
} else {
|
||||
wHeight = document.body.clientHeight-80;
|
||||
wWidth = document.body.clientWidth-17;
|
||||
}
|
||||
|
||||
document.forms[0].htmlSource.style.height = Math.abs(wHeight) + 'px';
|
||||
document.forms[0].htmlSource.style.width = Math.abs(wWidth) + 'px';
|
||||
}
|
||||
|
||||
tinyMCEPopup.onInit.add(onLoadInit);
|
||||
tinyMCEPopup.onInit.add(PasteTextDialog.init, PasteTextDialog);
|
||||
|
@@ -1,56 +1,51 @@
|
||||
tinyMCEPopup.requireLangPack();
|
||||
|
||||
function saveContent() {
|
||||
var html = document.getElementById("frmData").contentWindow.document.body.innerHTML;
|
||||
var PasteWordDialog = {
|
||||
init : function() {
|
||||
var ed = tinyMCEPopup.editor, el = document.getElementById('iframecontainer'), ifr, doc, css, cssHTML = '';
|
||||
|
||||
if (html == ''){
|
||||
// Create iframe
|
||||
el.innerHTML = '<iframe id="iframe" src="javascript:\'\';" frameBorder="0" style="border: 1px solid gray"></iframe>';
|
||||
ifr = document.getElementById('iframe');
|
||||
doc = ifr.contentWindow.document;
|
||||
|
||||
// Force absolute CSS urls
|
||||
css = [ed.baseURI.toAbsolute("themes/" + ed.settings.theme + "/skins/" + ed.settings.skin + "/content.css")];
|
||||
css = css.concat(tinymce.explode(ed.settings.content_css) || []);
|
||||
tinymce.each(css, function(u) {
|
||||
cssHTML += '<link href="' + ed.documentBaseURI.toAbsolute('' + u) + '" rel="stylesheet" type="text/css" />';
|
||||
});
|
||||
|
||||
// Write content into iframe
|
||||
doc.open();
|
||||
doc.write('<html><head>' + cssHTML + '</head><body class="mceContentBody" spellcheck="false"></body></html>');
|
||||
doc.close();
|
||||
|
||||
doc.designMode = 'on';
|
||||
this.resize();
|
||||
|
||||
window.setTimeout(function() {
|
||||
ifr.contentWindow.focus();
|
||||
}, 10);
|
||||
},
|
||||
|
||||
insert : function() {
|
||||
var h = document.getElementById('iframe').contentWindow.document.body.innerHTML;
|
||||
|
||||
tinyMCEPopup.editor.execCommand('mceInsertClipboardContent', false, {content : h, wordContent : true});
|
||||
tinyMCEPopup.close();
|
||||
return false;
|
||||
},
|
||||
|
||||
resize : function() {
|
||||
var vp = tinyMCEPopup.dom.getViewPort(window), el;
|
||||
|
||||
el = document.getElementById('iframe');
|
||||
|
||||
if (el) {
|
||||
el.style.width = (vp.w - 20) + 'px';
|
||||
el.style.height = (vp.h - 90) + 'px';
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
tinyMCEPopup.execCommand('mcePasteWord', false, html);
|
||||
tinyMCEPopup.close();
|
||||
}
|
||||
|
||||
function onLoadInit() {
|
||||
tinyMCEPopup.resizeToInnerSize();
|
||||
|
||||
// Fix for endless reloading in FF
|
||||
window.setTimeout(createIFrame, 10);
|
||||
}
|
||||
|
||||
function createIFrame() {
|
||||
document.getElementById('iframecontainer').innerHTML = '<iframe id="frmData" name="frmData" class="sourceIframe" src="blank.htm" height="280" width="400" frameborder="0" style="background-color:#FFFFFF; width:100%;" dir="ltr" wrap="soft"></iframe>';
|
||||
}
|
||||
|
||||
var wHeight=0, wWidth=0, owHeight=0, owWidth=0;
|
||||
|
||||
function initIframe(doc) {
|
||||
var dir = tinyMCEPopup.editor.settings.directionality;
|
||||
|
||||
doc.body.dir = dir;
|
||||
|
||||
// Remove Gecko spellchecking
|
||||
if (tinymce.isGecko)
|
||||
doc.body.spellcheck = tinyMCEPopup.getParam("gecko_spellcheck");
|
||||
|
||||
resizeInputs();
|
||||
}
|
||||
|
||||
function resizeInputs() {
|
||||
if (!tinymce.isIE) {
|
||||
wHeight = self.innerHeight - 80;
|
||||
wWidth = self.innerWidth - 18;
|
||||
} else {
|
||||
wHeight = document.body.clientHeight - 80;
|
||||
wWidth = document.body.clientWidth - 18;
|
||||
}
|
||||
|
||||
var elm = document.getElementById('frmData');
|
||||
if (elm) {
|
||||
elm.style.height = Math.abs(wHeight) + 'px';
|
||||
elm.style.width = Math.abs(wWidth) + 'px';
|
||||
}
|
||||
}
|
||||
|
||||
tinyMCEPopup.onInit.add(onLoadInit);
|
||||
tinyMCEPopup.onInit.add(PasteWordDialog.init, PasteWordDialog);
|
||||
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('ar.paste_dlg',{
|
||||
text_title:"\u0627\u0633\u062A\u062E\u062F\u0645 CTRL+V \u0641\u064A \u0644\u0648\u062D\u0629 \u0627\u0644\u0645\u0641\u0627\u062A\u064A\u062D \u0644\u0644\u0635\u0642 \u0627\u0644\u0646\u0635\u0641 \u0641\u064A \u0627\u0644\u0646\u0627\u0641\u0630\u0629.",
|
||||
text_linebreaks:"\u0627\u0628\u0642\u064A \u0641\u0648\u0627\u0635\u0644 \u0627\u0644\u0623\u0633\u0637\u0631",
|
||||
word_title:"\u0633\u062A\u062E\u062F\u0645 CTRL+V \u0641\u064A \u0644\u0648\u062D\u0629 \u0627\u0644\u0645\u0641\u0627\u062A\u064A\u062D \u0644\u0644\u0635\u0642 \u0627\u0644\u0646\u0635\u0641 \u0641\u064A \u0627\u0644\u0646\u0627\u0641\u0630\u0629."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('bg.paste_dlg',{
|
||||
text_title:"\u0418\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u0439\u0442\u0435 CTRL+V \u043D\u0430 \u043A\u043B\u0430\u0432\u0438\u0430\u0442\u0443\u0440\u0430\u0442\u0430 \u0437\u0430 \u0434\u0430 \u043F\u043E\u0441\u0442\u0430\u0432\u0438\u0442\u0435 \u0442\u0435\u043A\u0441\u0442\u0430 \u0432 \u043F\u0440\u043E\u0437\u043E\u0440\u0435\u0446\u0430.",
|
||||
text_linebreaks:"\u0417\u0430\u043F\u0430\u0437\u0438 \u043D\u043E\u0432\u0438\u0442\u0435 \u0440\u0435\u0434\u043E\u0432\u0435",
|
||||
word_title:"\u0418\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u0439\u0442\u0435 CTRL+V \u043D\u0430 \u043A\u043B\u0430\u0432\u0438\u0430\u0442\u0443\u0440\u0430\u0442\u0430 \u0437\u0430 \u0434\u0430 \u043F\u043E\u0441\u0442\u0430\u0432\u0438\u0442\u0435 \u0442\u0435\u043A\u0441\u0442\u0430 \u0432 \u043F\u0440\u043E\u0437\u043E\u0440\u0435\u0446\u0430."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('br.paste_dlg',{
|
||||
text_title:"Use CTRL+V para colar o texto na janela.",
|
||||
text_linebreaks:"Manter quebras de linha",
|
||||
word_title:"Use CTRL+V para colar o texto na janela."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('bs.paste_dlg',{
|
||||
text_title:"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor.",
|
||||
text_linebreaks:"Zadr\u017Ei prijelome",
|
||||
word_title:"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('ca.paste_dlg',{
|
||||
text_title:"Utilitza CTRL+V al teclat per enganxar el text a la finestra.",
|
||||
text_linebreaks:"Mantingues els salts de l\u00EDnia",
|
||||
word_title:"Utilitza CTRL+V al teclat per enganxar el text a la finestra."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('ch.paste_dlg',{
|
||||
text_title:"\u7528Ctrl+V\u6309\u952E\u7EC4\u5408\u5C06\u6587\u5B57\u8D34\u5165\u89C6\u7A97\u4E2D\u3002 ",
|
||||
text_linebreaks:"\u4FDD\u7559\u6362\u884C\u7B26\u53F7",
|
||||
word_title:"\u7528Ctrl+V\u6309\u952E\u7EC4\u5408\u5C06\u6587\u5B57\u8D34\u5165\u89C6\u7A97\u4E2D\u3002 "
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('cs.paste_dlg',{
|
||||
text_title:"Pou\u017Eijte CTRL+V pro vlo\u017Een\u00ED textu do okna.",
|
||||
text_linebreaks:"Zachovat \u0159\u00E1dkov\u00E1n\u00ED",
|
||||
word_title:"Pou\u017Eijte CTRL+V pro vlo\u017Een\u00ED textu do okna."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('da.paste_dlg',{
|
||||
text_title:"Anvend CTRL+V p\u00E5 tastaturet for at inds\u00E6tte teksten.",
|
||||
text_linebreaks:"Bevar linieskift",
|
||||
word_title:"Anvend CTRL+V p\u00E5 tastaturet for at inds\u00E6tte teksten."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('de.paste_dlg',{
|
||||
text_title:"Dr\u00FCcken Sie auf Ihrer Tastatur Strg+V, um den Text einzuf\u00FCgen.",
|
||||
text_linebreaks:"Zeilenumbr\u00FCche beibehalten",
|
||||
word_title:"Dr\u00FCcken Sie auf Ihrer Tastatur Strg+V, um den Text einzuf\u00FCgen."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('dv.paste_dlg',{
|
||||
text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
|
||||
text_linebreaks:"Keep linebreaks",
|
||||
word_title:"Use CTRL+V on your keyboard to paste the text into the window."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('el.paste_dlg',{
|
||||
text_title:"\u03A7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03C4\u03B5 CTRL+V \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03BA\u03AC\u03BD\u03B5\u03C4\u03B5 \u03B5\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C3\u03C4\u03BF \u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF.",
|
||||
text_linebreaks:"\u039D\u03B1 \u03BA\u03C1\u03B1\u03C4\u03B7\u03B8\u03BF\u03CD\u03BD \u03C4\u03B1 linebreaks",
|
||||
word_title:"\u03A7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03C4\u03B5 CTRL+V \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03BA\u03AC\u03BD\u03B5\u03C4\u03B5 \u03B5\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C3\u03C4\u03BF \u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('es.paste_dlg',{
|
||||
text_title:"Use CTRL+V en su teclado para pegar el texto en la ventana.",
|
||||
text_linebreaks:"Keep linebreaks",
|
||||
word_title:"Use CTRL+V en su teclado para pegar el texto en la ventana."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('et.paste_dlg',{
|
||||
text_title:"Vajuta CTRL+V oma klaviatuuril teksti aknasse kleepimiseks.",
|
||||
text_linebreaks:"J\u00E4ta reavahetused",
|
||||
word_title:"Vajuta CTRL+V oma klaviatuuril teksti aknasse kleepimiseks."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('fa.paste_dlg',{
|
||||
text_title:"\u062C\u0647\u062A \u0686\u0633\u0628\u0627\u0646\u062F\u0646 (Paste) \u0643\u0631\u062F\u0646 \u0645\u062A\u0646 \u062F\u0631 \u067E\u0646\u062C\u0631\u0647 \u0627\u0632 CTRL+V \u0628\u0631 \u0631\u0648\u06CC \u0635\u0641\u062D\u0647 \u0643\u0644\u06CC\u062F \u062E\u0648\u062F \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0646\u0645\u0627\u0626\u06CC\u062F.",
|
||||
text_linebreaks:"\u062D\u0641\u0638 \u0642\u0637\u0639 \u062E\u0637\u0648\u0637",
|
||||
word_title:"\u062C\u0647\u062A \u0686\u0633\u0628\u0627\u0646\u062F\u0646 (Paste) \u0643\u0631\u062F\u0646 \u0645\u062A\u0646 \u062F\u0631 \u067E\u0646\u062C\u0631\u0647 \u0627\u0632 CTRL+V \u0628\u0631 \u0631\u0648\u06CC \u0635\u0641\u062D\u0647 \u0643\u0644\u06CC\u062F \u062E\u0648\u062F \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0646\u0645\u0627\u0626\u06CC\u062F."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('fi.paste_dlg',{
|
||||
text_title:"Paina CTRL+V liitt\u00E4\u00E4ksesi teksti ikkunaan.",
|
||||
text_linebreaks:"S\u00E4ilyt\u00E4 rivinvaihdot",
|
||||
word_title:"Paina CTRL+V liitt\u00E4\u00E4ksesi teksti ikkunaan."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('fr.paste_dlg',{
|
||||
text_title:"Utilisez CTRL+V sur votre clavier pour coller le texte dans la fen\u00EAtre.",
|
||||
text_linebreaks:"Conserver les sauts de ligne",
|
||||
word_title:"Utilisez CTRL+V sur votre clavier pour coller le texte dans la fen\u00EAtre."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('gl.paste_dlg',{
|
||||
text_title:"Use CTRL+V no teclado pra pega-lo texto na vent\u00E1.",
|
||||
text_linebreaks:"Manter salto de li\u00F1as",
|
||||
word_title:"Use CTRL+V no teclado pra pega-lo texto na vent\u00E1."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('he.paste_dlg',{
|
||||
text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
|
||||
text_linebreaks:"Keep linebreaks",
|
||||
word_title:"Use CTRL+V on your keyboard to paste the text into the window."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('hr.paste_dlg',{
|
||||
text_title:"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor.",
|
||||
text_linebreaks:"Zadr\u017Ei prijelome",
|
||||
word_title:"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('hu.paste_dlg',{
|
||||
text_title:"Haszn\u00E1lja a Ctrl+V-t a billenty\u0171zet\u00E9n a beilleszt\u00E9shez.",
|
||||
text_linebreaks:"Sort\u00F6r\u00E9sek megtart\u00E1sa",
|
||||
word_title:"Haszn\u00E1lja a Ctrl+V-t a billenty\u0171zet\u00E9n a beilleszt\u00E9shez."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('ia.paste_dlg',{
|
||||
text_title:"\u5C06\u590D\u5236(CTRL + C)\u7684\u5185\u5BB9\u7C98\u8D34(CTRL + V)\u5230\u7A97\u53E3\u3002",
|
||||
text_linebreaks:"\u4FDD\u7559\u5206\u884C\u7B26\u53F7\u53F7",
|
||||
word_title:"\u5C06\u590D\u5236(CTRL + C)\u7684\u5185\u5BB9\u7C98\u8D34(CTRL + V)\u5230\u7A97\u53E3\u3002"
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('ii.paste_dlg',{
|
||||
text_title:"\u7528 Ctrl+V \u7EC4\u5408\u952E\u5C06\u6587\u5B57\u8D34\u5165\u7A97\u53E3\u4E2D\u3002",
|
||||
text_linebreaks:"\u4FDD\u7559\u6362\u884C\u7B26\u53F7",
|
||||
word_title:"\u7528 Ctrl+V \u7EC4\u5408\u952E\u5C06\u6587\u5B57\u8D34\u5165\u7A97\u53E3\u4E2D\u3002"
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('is.paste_dlg',{
|
||||
text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
|
||||
text_linebreaks:"Keep linebreaks",
|
||||
word_title:"Use CTRL+V on your keyboard to paste the text into the window."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('it.paste_dlg',{
|
||||
text_title:"Premere CTRL+V sulla tastiera per incollare il testo nella finestra.",
|
||||
text_linebreaks:"Mantieni interruzioni di riga",
|
||||
word_title:"Premere CTRL+V sulla tastiera per incollare il testo nella finestra."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('ja.paste_dlg',{
|
||||
text_title:"\u30AD\u30FC\u30DC\u30FC\u30C9\u3067CTRL+V\u3068\u5165\u529B\u3057\u30C6\u30AD\u30B9\u30C8\u3092\u8CBC\u308A\u4ED8\u3051\u3066\u304F\u3060\u3055\u3044\u3002",
|
||||
text_linebreaks:"\u6539\u884C\u3092\u4FDD\u6301\u3059\u308B",
|
||||
word_title:"\u30AD\u30FC\u30DC\u30FC\u30C9\u3067CTRL+V\u3068\u5165\u529B\u3057\u30C6\u30AD\u30B9\u30C8\u3092\u8CBC\u308A\u4ED8\u3051\u3066\u304F\u3060\u3055\u3044\u3002"
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('ko.paste_dlg',{
|
||||
text_title:"\uC708\uB3C4\uC6B0\uC5D0 \uD14D\uC2A4\uD2B8\uB97C \uBD99\uC774\uB824\uBA74 \uD0A4\uBCF4\uB4DC\uB85C Ctrl+V\uB97C \uC785\uB825\uD574 \uC8FC\uC138\uC694.",
|
||||
text_linebreaks:"\uAC1C\uD589\uC744 \uBCF4\uAD00 \uC720\uC9C0",
|
||||
word_title:"\uC708\uB3C4\uC6B0\uC5D0 \uD14D\uC2A4\uD2B8\uB97C \uBD99\uC774\uB824\uBA74 \uD0A4\uBCF4\uB4DC\uB85CCtrl+V\uB97C \uC785\uB825\uD574 \uC8FC\uC138\uC694."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('lt.paste_dlg',{
|
||||
text_title:"Naudokite CTRL+V, kad \u012Fklijuoti tekst\u0105 \u012F \u0161\u012F lang\u0105.",
|
||||
text_linebreaks:"Palikti eilu\u010Di\u0173 l\u016B\u017Eius",
|
||||
word_title:"Naudokite CTRL+V, kad \u012Fklijuoti tekst\u0105 \u012F \u0161\u012F lang\u0105."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('lv.paste_dlg',{
|
||||
text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
|
||||
text_linebreaks:"Keep linebreaks",
|
||||
word_title:"Use CTRL+V on your keyboard to paste the text into the window."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('mk.paste_dlg',{
|
||||
text_title:"Koristite CTRL+V na tipkovnici da zalepite tekst u prozor.",
|
||||
text_linebreaks:"Zadr\u017Ei prelome",
|
||||
word_title:"Koristite CTRL+V na tipkovnici da zalepite tekst u prozor."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('mn.paste_dlg',{
|
||||
text_title:"\u0422\u0430 \u0431\u0438\u0447\u0432\u044D\u0440 \u043E\u0440\u0443\u0443\u043B\u0430\u0445\u044B\u0433 \u0445\u04AF\u0441\u0432\u044D\u043B Ctrl+V \u0434\u044D\u044D\u0440 \u0434\u0430\u0440\u043D\u0430 \u0443\u0443.",
|
||||
text_linebreaks:"\u041C\u04E9\u0440 \u0442\u0430\u0441\u043B\u0430\u043B\u0442\u044B\u0433 \u04AF\u043B\u0434\u044D\u044D\u043D\u044D",
|
||||
word_title:"\u0422\u0430 \u0431\u0438\u0447\u0432\u044D\u0440 \u043E\u0440\u0443\u0443\u043B\u0430\u0445\u044B\u0433 \u0445\u04AF\u0441\u0432\u044D\u043B Ctrl+V \u0434\u044D\u044D\u0440 \u0434\u0430\u0440\u043D\u0430 \u0443\u0443."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('ms.paste_dlg',{
|
||||
text_title:"Guna CTRL+V pada papan kekunci anda untuk Tempel teks ke dalam tetingkap.",
|
||||
text_linebreaks:"Biarkan garisan pemisah",
|
||||
word_title:"Guna CTRL+V pada papan kekunci anda untuk teks ke dalam tetingkap."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('nb.paste_dlg',{
|
||||
text_title:"Bruk CTRL+V p\u00E5 tastaturet for \u00E5 lime inn i dette vinduet.",
|
||||
text_linebreaks:"Behold tekstbryting",
|
||||
word_title:"Bruk CTRL+V p\u00E5 tastaturet for \u00E5 lime inn i dette vinduet."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('nl.paste_dlg',{
|
||||
text_title:"Gebruik Ctrl+V om tekst in het venster te plakken.",
|
||||
text_linebreaks:"Regelafbreking bewaren",
|
||||
word_title:"Gebruik Ctrl+V om tekst in het venster te plakken."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('nn.paste_dlg',{
|
||||
text_title:"Bruk CTRL+V p\u00E5 tastaturet for \u00E5 lime inn i dette vindauget.",
|
||||
text_linebreaks:"Behald tekstbryting",
|
||||
word_title:"Bruk CTRL+V p\u00E5 tastaturet for \u00E5 lime inn i dette vindauget."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('pl.paste_dlg',{
|
||||
text_title:"U\u017Cyj CTRL+V na swojej klawiaturze \u017Ceby wklei\u0107 tekst do okna.",
|
||||
text_linebreaks:"Zachowaj ko\u0144ce linii.",
|
||||
word_title:"U\u017Cyj CTRL+V na swojej klawiaturze \u017Ceby wklei\u0107 tekst do okna."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('pt.paste_dlg',{
|
||||
text_title:"Use CTRL+V para colar o texto na janela.",
|
||||
text_linebreaks:"Manter quebras de linha",
|
||||
word_title:"Use CTRL+V para colar o texto na janela."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('ro.paste_dlg',{
|
||||
text_title:"Folosi\u0163i CTRL+V pentru a lipi \u00EEn aceast\u0103 zon\u0103.",
|
||||
text_linebreaks:"Pastreaza linii noi.",
|
||||
word_title:"Folosi\u0163i CTRL+V pentru a lipi \u00EEn aceast\u0103 zon\u0103."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('ru.paste_dlg',{
|
||||
text_title:"\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0439\u0442\u0435 \u0441\u043E\u0447\u0435\u0442\u0430\u043D\u0438\u0435 \u043A\u043B\u0430\u0432\u0438\u0448 CTRL+V \u0447\u0442\u043E\u0431\u044B \u0432\u0441\u0442\u0430\u0432\u0438\u0442\u044C \u0442\u0435\u043A\u0441\u0442 \u0432 \u043E\u043A\u043D\u043E.",
|
||||
text_linebreaks:"\u0421\u043E\u0445\u0440\u0430\u043D\u044F\u0442\u044C \u0440\u0430\u0437\u0440\u044B\u0432\u044B \u0441\u0442\u0440\u043E\u043A",
|
||||
word_title:"\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0439\u0442\u0435 \u0441\u043E\u0447\u0435\u0442\u0430\u043D\u0438\u0435 \u043A\u043B\u0430\u0432\u0438\u0448 CTRL+V \u0447\u0442\u043E\u0431\u044B \u0432\u0441\u0442\u0430\u0432\u0438\u0442\u044C \u0442\u0435\u043A\u0441\u0442 \u0432 \u043E\u043A\u043D\u043E."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('sc.paste_dlg',{
|
||||
text_title:"\u5C06\u590D\u5236(CTRL + C)\u7684\u5185\u5BB9\u7C98\u8D34(CTRL + V)\u5230\u7A97\u53E3\u3002",
|
||||
text_linebreaks:"\u4FDD\u7559\u5206\u884C\u7B26\u53F7\u53F7",
|
||||
word_title:"\u5C06\u590D\u5236(CTRL + C)\u7684\u5185\u5BB9\u7C98\u8D34(CTRL + V)\u5230\u7A97\u53E3\u3002"
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('se.paste_dlg',{
|
||||
text_title:"Anv\u00E4nd ctrl-v p\u00E5 ditt tangentbord f\u00F6r att klistra in i detta f\u00F6nster.",
|
||||
text_linebreaks:"Spara radbrytningar",
|
||||
word_title:"Anv\u00E4nd ctrl-v p\u00E5 ditt tangentbord f\u00F6r att klistra in i detta f\u00F6nster."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('si.paste_dlg',{
|
||||
text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
|
||||
text_linebreaks:"Keep linebreaks",
|
||||
word_title:"Use CTRL+V on your keyboard to paste the text into the window."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('sk.paste_dlg',{
|
||||
text_title:"Pou\u017Ei CTRL+V na kl\u00E1vesnici pre vlo\u017Eenie textu do okna.",
|
||||
text_linebreaks:"Zachova\u0165 zalamovanie riadkov",
|
||||
word_title:"Pou\u017Ei CTRL+V na kl\u00E1vesnici pre vlo\u017Eenie textu do okna."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('sl.paste_dlg',{
|
||||
text_title:"Uporabite kombinacijo tipk CTRL+V, da prilepite vsebino v okno.",
|
||||
text_linebreaks:"Obdr\u017Ei prelome vrstic",
|
||||
word_title:"Uporabite kombinacijo tipk CTRL+V, da prilepite vsebino v okno."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('sq.paste_dlg',{
|
||||
text_title:"P\u00EBrdor CTRL+V p\u00EBr t\u00EB ngjitur tekstin.",
|
||||
text_linebreaks:"Ruaj linjat e reja",
|
||||
word_title:"P\u00EBrdor CTRL+V p\u00EBr t\u00EB ngjitur tekstin."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('sr.paste_dlg',{
|
||||
text_title:"Koristite CTRL+V na tipkovnici da zalepite tekst u prozor.",
|
||||
text_linebreaks:"Zadr\u017Ei prelome",
|
||||
word_title:"Koristite CTRL+V na tipkovnici da zalepite tekst u prozor."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('sv.paste_dlg',{
|
||||
text_title:"Anv\u00E4nd ctrl-v p\u00E5 ditt tangentbord f\u00F6r att klistra in i detta f\u00F6nster.",
|
||||
text_linebreaks:"Spara radbrytningar",
|
||||
word_title:"Anv\u00E4nd ctrl-v p\u00E5 ditt tangentbord f\u00F6r att klistra in i detta f\u00F6nster."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('tr.paste_dlg',{
|
||||
text_title:"Pencereye metin yap\u0131\u015Ft\u0131rmak i\u00E7in CTRL+V tu\u015Funu kullan\u0131n\u0131z.",
|
||||
text_linebreaks:"Sat\u0131r k\u0131r\u0131l\u0131mlar\u0131n\u0131 koru",
|
||||
word_title:"Pencereye metin yap\u0131\u015Ft\u0131rmak i\u00E7in CTRL+V tu\u015Funu kullan\u0131n\u0131z."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('tt.paste_dlg',{
|
||||
text_title:"\u5C07\u8907\u88FD(CTRL + C)\u7684\u5167\u5BB9\u8CBC\u4E0A(CTRL + V)\u5230\u8996\u7A97\u3002",
|
||||
text_linebreaks:"\u4FDD\u7559\u5206\u884C\u7B26\u865F\u865F",
|
||||
word_title:"\u5C07\u8907\u88FD(CTRL + C)\u7684\u5167\u5BB9\u8CBC\u4E0A(CTRL + V)\u5230\u8996\u7A97\u3002"
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('tw.paste_dlg',{
|
||||
text_title:"\u5728\u9375\u76E4\u4E0A\u540C\u6642\u6309\u4E0BCTRL\u548CV\u9375\uFF0C\u4EE5\u8CBC\u4E0A\u6587\u5B57\u5230\u6B64\u8996\u7A97\u3002",
|
||||
text_linebreaks:"\u4FDD\u7559\u63DB\u884C\u7B26\u865F",
|
||||
word_title:"\u5728\u9375\u76E4\u4E0A\u540C\u6642\u6309\u4E0BCTRL\u548CV\u9375\uFF0C\u4EE5\u8CBC\u4E0A\u6587\u5B57\u5230\u6B64\u8996\u7A97\u3002"
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('uk.paste_dlg',{
|
||||
text_title:"\u0412\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0439\u0442\u0435 CTRL+V \u0434\u043B\u044F \u0432\u0441\u0442\u0430\u0432\u043A\u0438 \u0442\u0435\u043A\u0441\u0442\u0443 \u0443 \u0432\u0456\u043A\u043D\u043E.",
|
||||
text_linebreaks:"\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438 \u043F\u0435\u0440\u0435\u043D\u043E\u0441\u044B \u0441\u0442\u0440\u043E\u043A",
|
||||
word_title:"\u0412\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0439\u0442\u0435 CTRL+V \u0434\u043B\u044F \u0432\u0441\u0442\u0430\u0432\u043A\u0438 \u0442\u0435\u043A\u0441\u0442\u0443 \u0443 \u0432\u0456\u043A\u043D\u043E."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('vi.paste_dlg',{
|
||||
text_title:"S\u1EED d\u1EE5ng t\u1ED5 h\u1EE3p ph\u00EDm CTRL+V \u0111\u1EC3 d\u00E1n n\u1ED9i dung v\u00E0o khung b\u00EAn d\u01B0\u1EDBi.",
|
||||
text_linebreaks:"Gi\u1EEF nguy\u00EAn nh\u1EEFng ch\u1ED7 xu\u1ED1ng h\u00E0ng",
|
||||
word_title:"S\u1EED d\u1EE5ng t\u1ED5 h\u1EE3p ph\u00EDm CTRL+V \u0111\u1EC3 d\u00E1n n\u1ED9i dung v\u00E0o khung b\u00EAn d\u01B0\u1EDBi."
|
||||
});
|
@@ -1,5 +0,0 @@
|
||||
tinyMCE.addI18n('zh.paste_dlg',{
|
||||
text_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u4EE5\u8D34\u4E0A\u6587\u5B57\u5230\u6B64\u7A97\u53E3\u3002",
|
||||
text_linebreaks:"\u4FDD\u7559\u6362\u884C\u7B26\u53F7",
|
||||
word_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u4EE5\u8D34\u4E0A\u6587\u5B57\u5230\u6B64\u7A97\u53E3\u3002"
|
||||
});
|
@@ -1,34 +1,27 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>{#paste.paste_text_desc}</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/pastetext.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" class="title">{#paste.paste_text_desc}</div>
|
||||
|
||||
<div style="float: right">
|
||||
<input type="checkbox" name="linebreaks" id="linebreaks" class="wordWrapCode" checked="checked" /><label for="linebreaks">{#paste_dlg.text_linebreaks}</label>
|
||||
</div>
|
||||
|
||||
<br style="clear: both" />
|
||||
|
||||
<div>{#paste_dlg.text_title}</div>
|
||||
|
||||
<textarea name="htmlSource" id="htmlSource" rows="15" cols="100" style="width: 100%; height: 100%; font-family: 'Courier New',Courier,mono; font-size: 12px;" dir="ltr" wrap="soft" class="mceFocus"></textarea>
|
||||
|
||||
<div class="mceActionPanel">
|
||||
<div style="float: left">
|
||||
<input type="submit" name="insert" value="{#insert}" id="insert" />
|
||||
</div>
|
||||
<body onresize="PasteTextDialog.resize();" style="display:none; overflow:hidden;">
|
||||
<form name="source" onsubmit="return PasteTextDialog.insert();" action="#">
|
||||
<div style="float: left" class="title">{#paste.paste_text_desc}</div>
|
||||
|
||||
<div style="float: right">
|
||||
<input type="checkbox" name="linebreaks" id="linebreaks" class="wordWrapCode" checked="checked" /><label for="linebreaks">{#paste_dlg.text_linebreaks}</label>
|
||||
</div>
|
||||
|
||||
<br style="clear: both" />
|
||||
|
||||
<div>{#paste_dlg.text_title}</div>
|
||||
|
||||
<textarea id="content" name="content" rows="15" cols="100" style="width: 100%; height: 100%; font-family: 'Courier New',Courier,mono; font-size: 12px;" dir="ltr" wrap="soft" class="mceFocus"></textarea>
|
||||
|
||||
<div class="mceActionPanel">
|
||||
<input type="submit" name="insert" value="{#insert}" id="insert" />
|
||||
<input type="button" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" id="cancel" />
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
@@ -1,14 +1,11 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<title>{#paste.paste_word_desc}</title>
|
||||
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
||||
<script type="text/javascript" src="js/pasteword.js"></script>
|
||||
<link href="css/pasteword.css" rel="stylesheet" type="text/css" />
|
||||
<base target="_self" />
|
||||
</head>
|
||||
<body onresize="resizeInputs();" style="display:none; overflow:hidden;">
|
||||
<form name="source" onsubmit="saveContent();" action="#">
|
||||
<body onresize="PasteWordDialog.resize();" style="display:none; overflow:hidden;">
|
||||
<form name="source" onsubmit="return PasteWordDialog.insert();" action="#">
|
||||
<div class="title">{#paste.paste_word_desc}</div>
|
||||
|
||||
<div>{#paste_dlg.word_title}</div>
|
||||
@@ -16,13 +13,8 @@
|
||||
<div id="iframecontainer"></div>
|
||||
|
||||
<div class="mceActionPanel">
|
||||
<div style="float: left">
|
||||
<input type="button" id="insert" name="insert" value="{#insert}" onclick="saveContent();" />
|
||||
</div>
|
||||
|
||||
<div style="float: right">
|
||||
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
|
||||
</div>
|
||||
<input type="submit" id="insert" name="insert" value="{#insert}" />
|
||||
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
|
||||
</div>
|
||||
</form>
|
||||
</body>
|
||||
|
Reference in New Issue
Block a user