more tinymce stuff
This commit is contained in:
parent
5a60010a6f
commit
b19f4cf952
468 changed files with 11635 additions and 0 deletions
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/css/content.css
vendored
Normal file
7
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/css/content.css
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
.mceItemFlash {
|
||||
border: 1px dotted #cc0000;
|
||||
background-image: url('../images/flash.gif');
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-color: #ffffcc;
|
||||
}
|
||||
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/css/flash.css
vendored
Normal file
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/css/flash.css
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
.panel_wrapper div.current {
|
||||
height: 100px;
|
||||
}
|
||||
|
||||
#width, #height {
|
||||
width: 50px;
|
||||
}
|
||||
|
||||
#file {
|
||||
width: 250px;
|
||||
}
|
||||
1
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/editor_plugin.js
vendored
Normal file
1
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/editor_plugin.js
vendored
Normal file
File diff suppressed because one or more lines are too long
270
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/editor_plugin_src.js
vendored
Normal file
270
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/editor_plugin_src.js
vendored
Normal file
|
|
@ -0,0 +1,270 @@
|
|||
/* Import plugin specific language pack */
|
||||
tinyMCE.importPluginLanguagePack('flash', 'en,de,sv,zh_cn,cs,fa,fr_ca,fr,pl,pt_br,nl,da,he,nb,hu,ru,ru_KOI8-R,ru_UTF-8,nn,es,cy,is,zh_tw,zh_tw_utf8,sk,pt_br');
|
||||
|
||||
function TinyMCE_flash_getInfo() {
|
||||
return {
|
||||
longname : 'Flash',
|
||||
author : 'Moxiecode Systems',
|
||||
authorurl : 'http://tinymce.moxiecode.com',
|
||||
infourl : 'http://tinymce.moxiecode.com/tinymce/docs/plugin_flash.html',
|
||||
version : tinyMCE.majorVersion + "." + tinyMCE.minorVersion
|
||||
};
|
||||
};
|
||||
|
||||
function TinyMCE_flash_initInstance(inst) {
|
||||
if (!tinyMCE.settings['flash_skip_plugin_css'])
|
||||
tinyMCE.importCSS(inst.getDoc(), tinyMCE.baseURL + "/plugins/flash/css/content.css");
|
||||
}
|
||||
|
||||
function TinyMCE_flash_getControlHTML(control_name) {
|
||||
switch (control_name) {
|
||||
case "flash":
|
||||
var cmd = 'tinyMCE.execInstanceCommand(\'{$editor_id}\',\'mceFlash\');return false;';
|
||||
return '<a href="javascript:' + cmd + '" onclick="' + cmd + '" target="_self" onmousedown="return false;"><img id="{$editor_id}_flash" src="{$pluginurl}/images/flash.gif" title="{$lang_flash_desc}" width="20" height="20" class="mceButtonNormal" onmouseover="tinyMCE.switchClass(this,\'mceButtonOver\');" onmouseout="tinyMCE.restoreClass(this);" onmousedown="tinyMCE.restoreAndSwitchClass(this,\'mceButtonDown\');" /></a>';
|
||||
}
|
||||
|
||||
return "";
|
||||
}
|
||||
|
||||
function TinyMCE_flash_parseAttributes(attribute_string) {
|
||||
var attributeName = "";
|
||||
var attributeValue = "";
|
||||
var withInName;
|
||||
var withInValue;
|
||||
var attributes = new Array();
|
||||
var whiteSpaceRegExp = new RegExp('^[ \n\r\t]+', 'g');
|
||||
|
||||
if (attribute_string == null || attribute_string.length < 2)
|
||||
return null;
|
||||
|
||||
withInName = withInValue = false;
|
||||
|
||||
for (var i=0; i<attribute_string.length; i++) {
|
||||
var chr = attribute_string.charAt(i);
|
||||
|
||||
if ((chr == '"' || chr == "'") && !withInValue)
|
||||
withInValue = true;
|
||||
else if ((chr == '"' || chr == "'") && withInValue) {
|
||||
withInValue = false;
|
||||
|
||||
var pos = attributeName.lastIndexOf(' ');
|
||||
if (pos != -1)
|
||||
attributeName = attributeName.substring(pos+1);
|
||||
|
||||
attributes[attributeName.toLowerCase()] = attributeValue.substring(1);
|
||||
|
||||
attributeName = "";
|
||||
attributeValue = "";
|
||||
} else if (!whiteSpaceRegExp.test(chr) && !withInName && !withInValue)
|
||||
withInName = true;
|
||||
|
||||
if (chr == '=' && withInName)
|
||||
withInName = false;
|
||||
|
||||
if (withInName)
|
||||
attributeName += chr;
|
||||
|
||||
if (withInValue)
|
||||
attributeValue += chr;
|
||||
}
|
||||
|
||||
return attributes;
|
||||
}
|
||||
|
||||
function TinyMCE_flash_execCommand(editor_id, element, command, user_interface, value) {
|
||||
// Handle commands
|
||||
switch (command) {
|
||||
case "mceFlash":
|
||||
var name = "", swffile = "", swfwidth = "", swfheight = "", action = "insert";
|
||||
var template = new Array();
|
||||
var inst = tinyMCE.getInstanceById(editor_id);
|
||||
var focusElm = inst.getFocusElement();
|
||||
|
||||
template['file'] = '../../plugins/flash/flash.htm'; // Relative to theme
|
||||
template['width'] = 430;
|
||||
template['height'] = 175;
|
||||
|
||||
template['width'] += tinyMCE.getLang('lang_flash_delta_width', 0);
|
||||
template['height'] += tinyMCE.getLang('lang_flash_delta_height', 0);
|
||||
|
||||
// Is selection a image
|
||||
if (focusElm != null && focusElm.nodeName.toLowerCase() == "img") {
|
||||
name = tinyMCE.getAttrib(focusElm, 'class');
|
||||
|
||||
if (name.indexOf('mceItemFlash') == -1) // Not a Flash
|
||||
return true;
|
||||
|
||||
// Get rest of Flash items
|
||||
swffile = tinyMCE.getAttrib(focusElm, 'alt');
|
||||
|
||||
if (tinyMCE.getParam('convert_urls'))
|
||||
swffile = eval(tinyMCE.settings['urlconverter_callback'] + "(swffile, null, true);");
|
||||
|
||||
swfwidth = tinyMCE.getAttrib(focusElm, 'width');
|
||||
swfheight = tinyMCE.getAttrib(focusElm, 'height');
|
||||
action = "update";
|
||||
}
|
||||
|
||||
tinyMCE.openWindow(template, {editor_id : editor_id, inline : "yes", swffile : swffile, swfwidth : swfwidth, swfheight : swfheight, action : action});
|
||||
return true;
|
||||
}
|
||||
|
||||
// Pass to next handler in chain
|
||||
return false;
|
||||
}
|
||||
|
||||
function TinyMCE_flash_cleanup(type, content) {
|
||||
switch (type) {
|
||||
case "insert_to_editor_dom":
|
||||
// Force relative/absolute
|
||||
if (tinyMCE.getParam('convert_urls')) {
|
||||
var imgs = content.getElementsByTagName("img");
|
||||
for (var i=0; i<imgs.length; i++) {
|
||||
if (tinyMCE.getAttrib(imgs[i], "class") == "mceItemFlash") {
|
||||
var src = tinyMCE.getAttrib(imgs[i], "alt");
|
||||
|
||||
if (tinyMCE.getParam('convert_urls'))
|
||||
src = eval(tinyMCE.settings['urlconverter_callback'] + "(src, null, true);");
|
||||
|
||||
imgs[i].setAttribute('alt', src);
|
||||
imgs[i].setAttribute('title', src);
|
||||
}
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
case "get_from_editor_dom":
|
||||
var imgs = content.getElementsByTagName("img");
|
||||
for (var i=0; i<imgs.length; i++) {
|
||||
if (tinyMCE.getAttrib(imgs[i], "class") == "mceItemFlash") {
|
||||
var src = tinyMCE.getAttrib(imgs[i], "alt");
|
||||
|
||||
if (tinyMCE.getParam('convert_urls'))
|
||||
src = eval(tinyMCE.settings['urlconverter_callback'] + "(src, null, true);");
|
||||
|
||||
imgs[i].setAttribute('alt', src);
|
||||
imgs[i].setAttribute('title', src);
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
case "insert_to_editor":
|
||||
var startPos = 0;
|
||||
var embedList = new Array();
|
||||
|
||||
// Fix the embed and object elements
|
||||
content = content.replace(new RegExp('<[ ]*embed','gi'),'<embed');
|
||||
content = content.replace(new RegExp('<[ ]*/embed[ ]*>','gi'),'</embed>');
|
||||
content = content.replace(new RegExp('<[ ]*object','gi'),'<object');
|
||||
content = content.replace(new RegExp('<[ ]*/object[ ]*>','gi'),'</object>');
|
||||
|
||||
// Parse all embed tags
|
||||
while ((startPos = content.indexOf('<embed', startPos+1)) != -1) {
|
||||
var endPos = content.indexOf('>', startPos);
|
||||
var attribs = TinyMCE_flash_parseAttributes(content.substring(startPos + 6, endPos));
|
||||
embedList[embedList.length] = attribs;
|
||||
}
|
||||
|
||||
// Parse all object tags and replace them with images from the embed data
|
||||
var index = 0;
|
||||
while ((startPos = content.indexOf('<object', startPos)) != -1) {
|
||||
if (index >= embedList.length)
|
||||
break;
|
||||
|
||||
var attribs = embedList[index];
|
||||
|
||||
// Find end of object
|
||||
endPos = content.indexOf('</object>', startPos);
|
||||
endPos += 9;
|
||||
|
||||
// Insert image
|
||||
var contentAfter = content.substring(endPos);
|
||||
content = content.substring(0, startPos);
|
||||
content += '<img width="' + attribs["width"] + '" height="' + attribs["height"] + '"';
|
||||
content += ' src="' + (tinyMCE.getParam("theme_href") + '/images/spacer.gif') + '" title="' + attribs["src"] + '"';
|
||||
content += ' alt="' + attribs["src"] + '" class="mceItemFlash" />' + content.substring(endPos);
|
||||
content += contentAfter;
|
||||
index++;
|
||||
|
||||
startPos++;
|
||||
}
|
||||
|
||||
// Parse all embed tags and replace them with images from the embed data
|
||||
var index = 0;
|
||||
while ((startPos = content.indexOf('<embed', startPos)) != -1) {
|
||||
if (index >= embedList.length)
|
||||
break;
|
||||
|
||||
var attribs = embedList[index];
|
||||
|
||||
// Find end of embed
|
||||
endPos = content.indexOf('>', startPos);
|
||||
endPos += 9;
|
||||
|
||||
// Insert image
|
||||
var contentAfter = content.substring(endPos);
|
||||
content = content.substring(0, startPos);
|
||||
content += '<img width="' + attribs["width"] + '" height="' + attribs["height"] + '"';
|
||||
content += ' src="' + (tinyMCE.getParam("theme_href") + '/images/spacer.gif') + '" title="' + attribs["src"] + '"';
|
||||
content += ' alt="' + attribs["src"] + '" class="mceItemFlash" />' + content.substring(endPos);
|
||||
content += contentAfter;
|
||||
index++;
|
||||
|
||||
startPos++;
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
case "get_from_editor":
|
||||
// Parse all img tags and replace them with object+embed
|
||||
var startPos = -1;
|
||||
while ((startPos = content.indexOf('<img', startPos+1)) != -1) {
|
||||
var endPos = content.indexOf('/>', startPos);
|
||||
var attribs = TinyMCE_flash_parseAttributes(content.substring(startPos + 4, endPos));
|
||||
|
||||
// Is not flash, skip it
|
||||
if (attribs['class'] != "mceItemFlash")
|
||||
continue;
|
||||
|
||||
endPos += 2;
|
||||
|
||||
var embedHTML = '';
|
||||
var wmode = tinyMCE.getParam("flash_wmode", "");
|
||||
var quality = tinyMCE.getParam("flash_quality", "high");
|
||||
var menu = tinyMCE.getParam("flash_menu", "false");
|
||||
|
||||
// Insert object + embed
|
||||
embedHTML += '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"';
|
||||
embedHTML += ' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"';
|
||||
embedHTML += ' width="' + attribs["width"] + '" height="' + attribs["height"] + '">';
|
||||
embedHTML += '<param name="movie" value="' + attribs["title"] + '" />';
|
||||
embedHTML += '<param name="quality" value="' + quality + '" />';
|
||||
embedHTML += '<param name="menu" value="' + menu + '" />';
|
||||
embedHTML += '<param name="wmode" value="' + wmode + '" />';
|
||||
embedHTML += '<embed src="' + attribs["title"] + '" wmode="' + wmode + '" quality="' + quality + '" menu="' + menu + '" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + attribs["width"] + '" height="' + attribs["height"] + '"></embed></object>';
|
||||
|
||||
// Insert embed/object chunk
|
||||
chunkBefore = content.substring(0, startPos);
|
||||
chunkAfter = content.substring(endPos);
|
||||
content = chunkBefore + embedHTML + chunkAfter;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
// Pass through to next handler in chain
|
||||
return content;
|
||||
}
|
||||
|
||||
function TinyMCE_flash_handleNodeChange(editor_id, node, undo_index, undo_levels, visual_aid, any_selection) {
|
||||
tinyMCE.switchClassSticky(editor_id + '_flash', 'mceButtonNormal');
|
||||
|
||||
if (node == null)
|
||||
return;
|
||||
|
||||
do {
|
||||
if (node.nodeName.toLowerCase() == "img" && tinyMCE.getAttrib(node, 'class').indexOf('mceItemFlash') == 0)
|
||||
tinyMCE.switchClassSticky(editor_id + '_flash', 'mceButtonSelected');
|
||||
} while ((node = node.parentNode));
|
||||
|
||||
return true;
|
||||
}
|
||||
70
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/flash.htm
vendored
Normal file
70
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/flash.htm
vendored
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>{$lang_flash_title}</title>
|
||||
<script language="javascript" type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
||||
<script language="javascript" type="text/javascript" src="jscripts/flash.js"></script>
|
||||
<script language="javascript" type="text/javascript" src="../../utils/mctabs.js"></script>
|
||||
<script language="javascript" type="text/javascript" src="../../utils/form_utils.js"></script>
|
||||
<link href="css/flash.css" rel="stylesheet" type="text/css" />
|
||||
<base target="_self" />
|
||||
</head>
|
||||
<body onload="tinyMCEPopup.executeOnLoad('init();');" style="display: none">
|
||||
<form onsubmit="insertFlash();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;">{$lang_flash_general}</a></span></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="panel_wrapper">
|
||||
<div id="general_panel" class="panel current">
|
||||
<fieldset>
|
||||
<legend>{$lang_flash_general}</legend>
|
||||
|
||||
<table border="0" cellpadding="4" cellspacing="0">
|
||||
<tr>
|
||||
<td nowrap="nowrap"><label for="file">{$lang_flash_file}</label></td>
|
||||
<td nowrap="nowrap">
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td><input id="file" name="file" type="text" value="" onfocus="this.select();" /></td>
|
||||
<td id="filebrowsercontainer"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="linklistrow">
|
||||
<td><label for="linklist">{$lang_flash_list}</label></td>
|
||||
<td id="linklistcontainer"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td nowrap="nowrap"><label>{$lang_flash_size}</label></td>
|
||||
<td nowrap="nowrap">
|
||||
<input type="text" id="width" name="width" value="" onfocus="this.select();" />
|
||||
<select name="width2" id="width2" style="width: 50px">
|
||||
<option value="">px</option>
|
||||
<option value="%">%</option>
|
||||
</select> x <input id="height" name="height" type="text" value="" onfocus="this.select();" />
|
||||
<select name="height2" id="height2" style="width: 50px">
|
||||
<option value="">px</option>
|
||||
<option value="%">%</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mceActionPanel">
|
||||
<div style="float: left">
|
||||
<input type="button" id="insert" name="insert" value="{$lang_insert}" onclick="insertFlash();" />
|
||||
</div>
|
||||
|
||||
<div style="float: right">
|
||||
<input type="button" id="cancel" name="cancel" value="{$lang_cancel}" onclick="tinyMCEPopup.close();" />
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
BIN
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/images/flash.gif
vendored
Normal file
BIN
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/images/flash.gif
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 241 B |
107
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/jscripts/flash.js
vendored
Normal file
107
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/jscripts/flash.js
vendored
Normal file
|
|
@ -0,0 +1,107 @@
|
|||
var url = tinyMCE.getParam("flash_external_list_url");
|
||||
if (url != null) {
|
||||
// Fix relative
|
||||
if (url.charAt(0) != '/' && url.indexOf('://') == -1)
|
||||
url = tinyMCE.documentBasePath + "/" + url;
|
||||
|
||||
document.write('<sc'+'ript language="javascript" type="text/javascript" src="' + url + '"></sc'+'ript>');
|
||||
}
|
||||
|
||||
function init() {
|
||||
tinyMCEPopup.resizeToInnerSize();
|
||||
|
||||
document.getElementById("filebrowsercontainer").innerHTML = getBrowserHTML('filebrowser','file','flash','flash');
|
||||
|
||||
// Image list outsrc
|
||||
var html = getFlashListHTML('filebrowser','file','flash','flash');
|
||||
if (html == "")
|
||||
document.getElementById("linklistrow").style.display = 'none';
|
||||
else
|
||||
document.getElementById("linklistcontainer").innerHTML = html;
|
||||
|
||||
var formObj = document.forms[0];
|
||||
var swffile = tinyMCE.getWindowArg('swffile');
|
||||
var swfwidth = '' + tinyMCE.getWindowArg('swfwidth');
|
||||
var swfheight = '' + tinyMCE.getWindowArg('swfheight');
|
||||
|
||||
if (swfwidth.indexOf('%')!=-1) {
|
||||
formObj.width2.value = "%";
|
||||
formObj.width.value = swfwidth.substring(0,swfwidth.length-1);
|
||||
} else {
|
||||
formObj.width2.value = "px";
|
||||
formObj.width.value = swfwidth;
|
||||
}
|
||||
|
||||
if (swfheight.indexOf('%')!=-1) {
|
||||
formObj.height2.value = "%";
|
||||
formObj.height.value = swfheight.substring(0,swfheight.length-1);
|
||||
} else {
|
||||
formObj.height2.value = "px";
|
||||
formObj.height.value = swfheight;
|
||||
}
|
||||
|
||||
formObj.file.value = swffile;
|
||||
formObj.insert.value = tinyMCE.getLang('lang_' + tinyMCE.getWindowArg('action'), 'Insert', true);
|
||||
|
||||
selectByValue(formObj, 'linklist', swffile);
|
||||
|
||||
// Handle file browser
|
||||
if (isVisible('filebrowser'))
|
||||
document.getElementById('file').style.width = '230px';
|
||||
|
||||
// Auto select flash in list
|
||||
if (typeof(tinyMCEFlashList) != "undefined" && tinyMCEFlashList.length > 0) {
|
||||
for (var i=0; i<formObj.linklist.length; i++) {
|
||||
if (formObj.linklist.options[i].value == tinyMCE.getWindowArg('swffile'))
|
||||
formObj.linklist.options[i].selected = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function getFlashListHTML() {
|
||||
if (typeof(tinyMCEFlashList) != "undefined" && tinyMCEFlashList.length > 0) {
|
||||
var html = "";
|
||||
|
||||
html += '<select id="linklist" name="linklist" style="width: 250px" onfocus="tinyMCE.addSelectAccessibility(event, this, window);" onchange="this.form.file.value=this.options[this.selectedIndex].value;">';
|
||||
html += '<option value="">---</option>';
|
||||
|
||||
for (var i=0; i<tinyMCEFlashList.length; i++)
|
||||
html += '<option value="' + tinyMCEFlashList[i][1] + '">' + tinyMCEFlashList[i][0] + '</option>';
|
||||
|
||||
html += '</select>';
|
||||
|
||||
return html;
|
||||
}
|
||||
|
||||
return "";
|
||||
}
|
||||
|
||||
function insertFlash() {
|
||||
var formObj = document.forms[0];
|
||||
var html = '';
|
||||
var file = formObj.file.value;
|
||||
var width = formObj.width.value;
|
||||
var height = formObj.height.value;
|
||||
if (formObj.width2.value=='%') {
|
||||
width = width + '%';
|
||||
}
|
||||
if (formObj.height2.value=='%') {
|
||||
height = height + '%';
|
||||
}
|
||||
|
||||
if (width == "")
|
||||
width = 100;
|
||||
|
||||
if (height == "")
|
||||
height = 100;
|
||||
|
||||
html += ''
|
||||
+ '<img src="' + (tinyMCE.getParam("theme_href") + "/images/spacer.gif") + '" mce_src="' + (tinyMCE.getParam("theme_href") + "/images/spacer.gif") + '" '
|
||||
+ 'width="' + width + '" height="' + height + '" '
|
||||
+ 'border="0" alt="' + file + '" title="' + file + '" class="mceItemFlash" />';
|
||||
|
||||
tinyMCEPopup.execCommand("mceInsertContent", true, html);
|
||||
tinyMCE.selectedInstance.repaint();
|
||||
|
||||
tinyMCEPopup.close();
|
||||
}
|
||||
14
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/cs.js
vendored
Normal file
14
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/cs.js
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
/**
|
||||
* Czech lang variables
|
||||
* encoding: utf-8
|
||||
*
|
||||
* $Id: cs.js,v 1.6 2005/10/18 13:59:42 spocke Exp $
|
||||
*/
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
insert_flash : 'Vložit/editovat Flash Movie',
|
||||
insert_flash_file : 'Flash soubor (.swf)',
|
||||
insert_flash_size : 'Velikost',
|
||||
insert_flash_list : 'Seznam',
|
||||
flash_props : 'Vlastnosti Flash'
|
||||
});
|
||||
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/cy.js
vendored
Normal file
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/cy.js
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('flash',{
|
||||
title : 'Mewnosod/golygu Ffilm Flash',
|
||||
desc : 'Mewnosod/golygu Ffilm Flash',
|
||||
file : 'Ffeil Flash (.swf)',
|
||||
size : 'Maint',
|
||||
list : 'Ffeiliau Flash',
|
||||
props : 'Priodoleddau Flash',
|
||||
general : 'Cyffredinol'
|
||||
});
|
||||
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/da.js
vendored
Normal file
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/da.js
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
// DK lang variables contributed by Jan Moelgaard
|
||||
|
||||
tinyMCE.addToLang('flash',{
|
||||
title : 'Indsæt / rediger Flash-film',
|
||||
desc : 'Indsæt / rediger Flash-film',
|
||||
file : 'Flash-Fil (.swf)',
|
||||
size : 'Størrelse',
|
||||
list : 'Flash filer',
|
||||
props : 'Flash egenskaber',
|
||||
general : 'Genererelt'
|
||||
});
|
||||
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/de.js
vendored
Normal file
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/de.js
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
// DE lang variables
|
||||
|
||||
tinyMCE.addToLang('flash',{
|
||||
title : 'Flash-Datei einfügen/bearbeiten',
|
||||
desc : 'Flash-Datei einfügen/bearbeiten',
|
||||
file : 'Flash-Datei (.swf)',
|
||||
size : 'Größe',
|
||||
list : 'Flash-Dateien',
|
||||
props : 'Flash-Eigenschaften',
|
||||
general : 'Allgemein'
|
||||
});
|
||||
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/en.js
vendored
Normal file
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/en.js
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('flash',{
|
||||
title : 'Insert / edit Flash Movie',
|
||||
desc : 'Insert / edit Flash Movie',
|
||||
file : 'Flash-File (.swf)',
|
||||
size : 'Size',
|
||||
list : 'Flash files',
|
||||
props : 'Flash properties',
|
||||
general : 'General'
|
||||
});
|
||||
19
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/es.js
vendored
Normal file
19
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/es.js
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
/**
|
||||
* ES lang variables
|
||||
*
|
||||
* Authors : Alvaro Velasco,
|
||||
* Adolfo Sanz De Diego (asanzdiego) <asanzdiego@yahoo.es>,
|
||||
* Carlos C Soto (eclipxe) <csoto@sia-solutions.com>
|
||||
* Last Updated : October 17, 2005
|
||||
* TinyMCE Version : 2.0RC3
|
||||
*/
|
||||
|
||||
tinyMCE.addToLang('flash',{
|
||||
title : 'Insertar / editar pelicula Flash',
|
||||
desc : 'Insert / edit Flash Movie',
|
||||
file : 'Fichero Flash (.swf)',
|
||||
size : 'Tamaño',
|
||||
list : 'Ficheros Flash',
|
||||
props : 'Propiedades del Flash',
|
||||
general : 'General'
|
||||
});
|
||||
13
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/fa.js
vendored
Normal file
13
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/fa.js
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
// IR lang variables
|
||||
// Persian (Farsi) language pack (for IRAN)
|
||||
// By: Morteza Zafari
|
||||
// Lost@LostLord.com
|
||||
// http://www.LostLord.com
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
dir : 'rtl',
|
||||
insert_flash : '?????? ? ?????? ???? ???',
|
||||
insert_flash_file : '???? ??? (.swf)',
|
||||
insert_flash_size : '?????',
|
||||
flash_props : 'Flash properties'
|
||||
});
|
||||
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/fr.js
vendored
Normal file
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/fr.js
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
// Traduit par Normand Lamoureux le 2005-11-12
|
||||
|
||||
tinyMCE.addToLang('flash',{
|
||||
title : 'Gestionnaire d\'animation Flash',
|
||||
desc : 'Insérer une animation Flash',
|
||||
file : 'Fichier Flash (.swf)',
|
||||
size : 'Taille',
|
||||
list : 'Fichiers Flash',
|
||||
props : 'Propriétés Flash',
|
||||
general : 'Général'
|
||||
});
|
||||
9
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/fr_ca.js
vendored
Normal file
9
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/fr_ca.js
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
// Canadian French lang variables by Virtuelcom last modification: 2005-06-15
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
insert_flash : 'Insérer / Modifier une animation Flash',
|
||||
insert_flash_file : 'Fichier Flash (.swf)',
|
||||
insert_flash_size : 'Dimension',
|
||||
insert_flash_list : 'Fichiers Flash',
|
||||
flash_props : 'Propriétés Flash'
|
||||
});
|
||||
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/he.js
vendored
Normal file
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/he.js
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
// HE lang variables
|
||||
|
||||
tinyMCE.addToLang('flash',{
|
||||
title : 'äëðñ/òøåê ñøèåï Flash',
|
||||
desc : 'äëðñ/òøåê ñøèåï Flash',
|
||||
file : '÷åáõ Flash (.swf)',
|
||||
size : 'âåãì',
|
||||
list : '÷áöé Flash',
|
||||
props : 'îàôééðé Flash',
|
||||
general : 'ëììé'
|
||||
});
|
||||
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/hu.js
vendored
Normal file
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/hu.js
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
// HU lang variables
|
||||
|
||||
tinyMCE.addToLang('flash',{
|
||||
title : 'Flash animáció beszúrása / szerkesztése',
|
||||
desc : 'Flash animáció beszúrása / szerkesztése',
|
||||
file : 'Flash-Fájl (.swf)',
|
||||
size : 'Méret',
|
||||
list : 'Flash fájlok',
|
||||
props : 'Flash tulajdonságok',
|
||||
general : 'Általános'
|
||||
});
|
||||
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/is.js
vendored
Normal file
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/is.js
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
// Iceland lang variables by Johannes Birgir Jensson
|
||||
|
||||
tinyMCE.addToLang('flash',{
|
||||
title : 'Bæta við / breyta Flash-mynd',
|
||||
desc : 'Bæta við / breyta Flash-mynd',
|
||||
file : 'Flash-skrá (.swf)',
|
||||
size : 'Stærð',
|
||||
list : 'Flash skrár',
|
||||
props : 'Flash stillingar',
|
||||
general : 'Almennt'
|
||||
});
|
||||
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/nb.js
vendored
Normal file
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/nb.js
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
// nb = Norwegian (bokmål) lang variables by Knut B. Jacobsen
|
||||
|
||||
tinyMCE.addToLang('flash',{
|
||||
title : 'Lag/oppdater flash-film',
|
||||
desc : 'Lag/oppdater flash-film',
|
||||
file : 'Flash-film (.swf)',
|
||||
size : 'Størrelse',
|
||||
list : 'Flash-filer',
|
||||
props : 'Flash egenskaper',
|
||||
general : 'Generelle innstillinger'
|
||||
});
|
||||
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/nl.js
vendored
Normal file
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/nl.js
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
// NL lang variables
|
||||
|
||||
tinyMCE.addToLang('flash',{
|
||||
title : 'Flash bestand invoegen/bewerken',
|
||||
desc : 'Flash bestand invoegen/bewerken',
|
||||
file : 'Flash bestand (.swf)',
|
||||
size : 'Grootte',
|
||||
list : 'Flash bestanden',
|
||||
props : 'Flash eigenschappen',
|
||||
general : 'Algemeen'
|
||||
});
|
||||
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/nn.js
vendored
Normal file
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/nn.js
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
// nn = Norwegian (nynorsk) lang variables by Knut B. Jacobsen
|
||||
|
||||
tinyMCE.addToLang('flash',{
|
||||
title : 'Lag/oppdater flash-film',
|
||||
desc : 'Lag/oppdater flash-film',
|
||||
file : 'Flash-film (.swf)',
|
||||
size : 'Størrelse',
|
||||
list : 'Flash-filer',
|
||||
props : 'Flash egenskaper',
|
||||
general : 'Generelle innstillinger'
|
||||
});
|
||||
14
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/pl.js
vendored
Normal file
14
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/pl.js
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
// PL lang variables
|
||||
// fixed by Wooya
|
||||
// http://www.mfusion.prv.pl
|
||||
// fixed by lemiel 14.11.2005
|
||||
|
||||
tinyMCE.addToLang('flash',{
|
||||
title : 'Wstaw/edytuj film flash',
|
||||
desc : 'Wstaw/edytuj film flash',
|
||||
file : 'Plik flash (.swf)',
|
||||
size : 'Rozmiar',
|
||||
list : 'Pliki flash',
|
||||
props : 'W³a¶ciwo¶ci flash',
|
||||
general : 'G³ówne'
|
||||
});
|
||||
19
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/pt_br.js
vendored
Normal file
19
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/pt_br.js
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
/**
|
||||
* pt_br lang variables
|
||||
* Brazilian Portuguese
|
||||
*
|
||||
* Authors : ????
|
||||
* Revision and modifications:
|
||||
* Marcio Barbosa (mpg) <mpg@mpg.com.br>
|
||||
* Last Updated : November 26, 2005
|
||||
* TinyMCE Version : 2.0RC4
|
||||
*/
|
||||
tinyMCE.addToLang('flash',{
|
||||
title : 'Inserir / editar Arquivo Flash',
|
||||
desc : 'Inserir / editar Arquivo Flash',
|
||||
file : 'Arquivo Flash (.swf)',
|
||||
size : 'Tamanho',
|
||||
list : 'Lista de arquivos Flash',
|
||||
props : 'Propriedades do Flash',
|
||||
general : 'Geral'
|
||||
});
|
||||
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/ru.js
vendored
Normal file
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/ru.js
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
// RU lang variables cp1251
|
||||
|
||||
tinyMCE.addToLang('flash',{
|
||||
title : 'Вставить / Редактировать Flash ролик',
|
||||
desc : 'Вставить / Редактировать Flash ролик',
|
||||
file : 'Flash-Файл (.swf)',
|
||||
size : 'Размер',
|
||||
list : 'Flash файлы',
|
||||
props : 'Свойства Flash',
|
||||
general : 'Основное'
|
||||
});
|
||||
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/ru_KOI8-R.js
vendored
Normal file
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/ru_KOI8-R.js
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
// RU lang variables KOI8-R
|
||||
|
||||
tinyMCE.addToLang('flash',{
|
||||
title : 'Вставить / Редактировать Flash ролик',
|
||||
desc : 'Вставить / Редактировать Flash ролик',
|
||||
file : 'Flash-Файл (.swf)',
|
||||
size : 'Размер',
|
||||
list : 'Flash файлы',
|
||||
props : 'Свойства Flash',
|
||||
general : 'Основное'
|
||||
});
|
||||
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/ru_UTF-8.js
vendored
Normal file
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/ru_UTF-8.js
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
// RU lang variables UTF-8
|
||||
|
||||
tinyMCE.addToLang('flash',{
|
||||
title : 'Вставить / Редактировать Flash ролик',
|
||||
desc : 'Вставить / Редактировать Flash ролик',
|
||||
file : 'Flash-Файл (.swf)',
|
||||
size : 'Размер',
|
||||
list : 'Flash файлы',
|
||||
props : 'Свойства Flash',
|
||||
general : 'Основное'
|
||||
});
|
||||
16
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/sk.js
vendored
Normal file
16
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/sk.js
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
/**
|
||||
* Slovak lang variables
|
||||
* encoding: utf-8
|
||||
*
|
||||
* @author Vladimir VASIL vvasil@post.sk
|
||||
*
|
||||
* $Id: sk.js,v 1.1 2005/11/22 20:56:44 spocke Exp $
|
||||
*/
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
insert_flash : 'Vložiť/editovať Flash Movie',
|
||||
insert_flash_file : 'Flash súbor (.swf)',
|
||||
insert_flash_size : 'Veľkosť',
|
||||
insert_flash_list : 'Zoznam',
|
||||
flash_props : 'Vlastnosti Flash'
|
||||
});
|
||||
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/sv.js
vendored
Normal file
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/sv.js
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
// SE lang variables
|
||||
|
||||
tinyMCE.addToLang('flash',{
|
||||
title : 'Skapa/uppdatera flash-film',
|
||||
desc : 'Skapa/uppdatera flash-film',
|
||||
file : 'Flash-film (.swf)',
|
||||
size : 'Storlek',
|
||||
list : 'Flash-filer',
|
||||
props : 'Flash egenskaper',
|
||||
general : 'Generella inställningar'
|
||||
});
|
||||
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/zh_cn.js
vendored
Normal file
11
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/zh_cn.js
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
// Simplified Chinese lang variables contributed by tom_cat (thomaswangyang@gmail.com)
|
||||
|
||||
tinyMCE.addToLang('flash',{
|
||||
title : '插入/编辑 Flash电影',
|
||||
desc : 'Flash电影描述',
|
||||
file : 'Flash插件(.swf)',
|
||||
size : '尺寸',
|
||||
list : 'Flash插件列表',
|
||||
props : 'Flash属性',
|
||||
general : '一般'
|
||||
});
|
||||
12
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/zh_tw.js
vendored
Normal file
12
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/zh_tw.js
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
// Traditional Chinese BIG-5; Twapweb Site translated; twapweb_AT_gmail_DOT_com
|
||||
// 繁體中文 BIG-5 ;數位應用坊製作; twapweb_AT_gmail_DOT_com
|
||||
|
||||
tinyMCE.addToLang('flash',{
|
||||
title : '插入或編輯 Flash 動畫檔',
|
||||
desc : '插入或編輯 Flash 動畫檔',
|
||||
file : 'Flash 動畫檔( .swf )',
|
||||
size : '大小',
|
||||
list : 'Flash 動畫檔',
|
||||
props : 'Flash 動畫檔屬性',
|
||||
general : '一般'
|
||||
});
|
||||
12
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/zh_tw_utf8.js
vendored
Normal file
12
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/langs/zh_tw_utf8.js
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
// Traditional Chinese UTF-8; Twapweb Site translated; twapweb_AT_gmail_DOT_com
|
||||
// 繁體中文 UTF-8 ;數位應用坊製作; twapweb_AT_gmail_DOT_com
|
||||
|
||||
tinyMCE.addToLang('flash',{
|
||||
title : '插入或編輯 Flash 動畫檔',
|
||||
desc : '插入或編輯 Flash 動畫檔',
|
||||
file : 'Flash 動畫檔( .swf )',
|
||||
size : '大小',
|
||||
list : 'Flash 動畫檔',
|
||||
props : 'Flash 動畫檔屬性',
|
||||
general : '一般'
|
||||
});
|
||||
1
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/readme.txt
vendored
Normal file
1
www/extras/tinymce2/jscripts/tiny_mce/plugins/flash/readme.txt
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
Check the TinyMCE documentation for details on this plugin.
|
||||
Loading…
Add table
Add a link
Reference in a new issue