upgrade to tinymce 2.1.1.1
|
|
@ -21,7 +21,7 @@
|
|||
<p>Version: {$tinymce_version} ({$tinymce_releasedate})</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-2006, <a href="http://www.moxiecode.com" target="_blank">Moxiecode Systems AB</a>, All rights reserved.</p>
|
||||
<p>Copyright © 2003-2007, <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"></div>
|
||||
|
|
|
|||
|
|
@ -2,12 +2,73 @@
|
|||
<head>
|
||||
<title>{$lang_theme_colorpicker_title}</title>
|
||||
<script language="javascript" type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
||||
<script language="javascript" type="text/javascript" src="../../utils/mctabs.js"></script>
|
||||
<script language="javascript" type="text/javascript" src="jscripts/color_picker.js"></script>
|
||||
<link href="css/colorpicker.css" rel="stylesheet" type="text/css" />
|
||||
<base target="_self" />
|
||||
</head>
|
||||
<body onload="tinyMCEPopup.executeOnLoad('init();');" style="margin: 3px; display: none">
|
||||
<div align="center">
|
||||
<script language="javascript" type="text/javascript">renderColorMap();</script>
|
||||
<body onload="tinyMCEPopup.executeOnLoad('init();');" style="display: none">
|
||||
<div class="tabs">
|
||||
<ul>
|
||||
<li id="picker_tab" class="current"><span><a href="javascript:mcTabs.displayTab('picker_tab','picker_panel');" onmousedown="return false;">{$lang_color_picker_tab}</a></span></li>
|
||||
<li id="rgb_tab"><span><a href="#" onclick="generateWebColors();mcTabs.displayTab('rgb_tab','rgb_panel');" onmousedown="return false;">{$lang_web_colors_tab}</a></span></li>
|
||||
<li id="named_tab"><span><a href="#" onclick="generateNamedColors();javascript:mcTabs.displayTab('named_tab','named_panel');" onmousedown="return false;">{$lang_named_colors_tab}</a></span></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="panel_wrapper">
|
||||
<div id="picker_panel" class="panel current">
|
||||
<fieldset>
|
||||
<legend>{$lang_color_picker}</legend>
|
||||
<div id="picker">
|
||||
<img id="colorpicker" src="images/colors.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;" />
|
||||
|
||||
<div id="light">
|
||||
<!-- Will be filled with divs -->
|
||||
</div>
|
||||
|
||||
<br style="clear: both" />
|
||||
</div>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div id="rgb_panel" class="panel">
|
||||
<fieldset>
|
||||
<legend>{$lang_web_colors}</legend>
|
||||
<div id="webcolors">
|
||||
<!-- Gets filled with web safe colors-->
|
||||
</div>
|
||||
|
||||
<br style="clear: both" />
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div id="named_panel" class="panel">
|
||||
<fieldset>
|
||||
<legend>{$lang_named_colors}</legend>
|
||||
<div id="namedcolors">
|
||||
<!-- Gets filled with named colors-->
|
||||
</div>
|
||||
|
||||
<br style="clear: both" />
|
||||
|
||||
<div id="colornamecontainer">
|
||||
{$lang_color_name} <span id="colorname"></span>
|
||||
</div>
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mceActionPanel">
|
||||
<div style="float: left">
|
||||
<input type="button" id="insert" name="insert" value="{$lang_theme_colorpicker_apply}" onclick="insertAction();" />
|
||||
</div>
|
||||
|
||||
<div id="preview"></div>
|
||||
|
||||
<div id="previewblock">
|
||||
<label for="color">{$lang_color}</label> <input id="color" type="text" size="8" maxlength="8" class="text" />
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
53
www/extras/tinymce2/jscripts/tiny_mce/themes/advanced/css/colorpicker.css
vendored
Executable file
|
|
@ -0,0 +1,53 @@
|
|||
/* Colorpicker dialog specific CSS */
|
||||
|
||||
#preview {
|
||||
float: right;
|
||||
width: 50px;
|
||||
height: 14px;
|
||||
line-height: 1px;
|
||||
border: 1px solid black;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
#colorpicker {
|
||||
float: left;
|
||||
cursor: crosshair;
|
||||
}
|
||||
|
||||
#light {
|
||||
border: 1px solid gray;
|
||||
margin-left: 5px;
|
||||
float: left;
|
||||
width: 15px;
|
||||
cursor: crosshair;
|
||||
}
|
||||
|
||||
#light div {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#previewblock {
|
||||
float: right;
|
||||
padding-left: 10px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.panel_wrapper div.current {
|
||||
height: 175px;
|
||||
}
|
||||
|
||||
#namedcolors {
|
||||
width: 150px;
|
||||
}
|
||||
|
||||
#namedcolors a {
|
||||
display: block;
|
||||
float: left;
|
||||
width: 10px; height: 10px;
|
||||
margin: 1px 1px 0 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#colornamecontainer {
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
|
@ -312,6 +312,10 @@ h3 {
|
|||
height: 190px;
|
||||
}
|
||||
|
||||
label.msg { display: none; }
|
||||
label.invalid { color: #EE0000; display: inline; }
|
||||
input.invalid { border: 1px solid #EE0000; }
|
||||
|
||||
/* Disables the advanced tab in the table plugin. */
|
||||
/*
|
||||
#table #advanced_tab {
|
||||
|
|
|
|||
|
|
@ -1,353 +1,97 @@
|
|||
/* This file contains the CSS data for the editor UI of TinyMCE instances */
|
||||
|
||||
.mceToolbarTop a, .mceToolbarTop a:visited, .mceToolbarTop a:hover, .mceToolbarBottom a, .mceToolbarBottom a:visited, .mceToolbarBottom a:hover {
|
||||
border: 0; margin: 0; padding: 0; background: transparent;
|
||||
}
|
||||
|
||||
.mceSeparatorLine {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
margin-left: 4px;
|
||||
margin-right: 2px;
|
||||
}
|
||||
|
||||
.mceSelectList {
|
||||
font-family: 'MS Sans Serif', sans-serif, Verdana, Arial;
|
||||
font-size: 7pt !important;
|
||||
font-weight: normal;
|
||||
margin-top: 3px;
|
||||
padding: 0;
|
||||
display: inline;
|
||||
vertical-align: top;
|
||||
background-color: #F0F0EE;
|
||||
}
|
||||
|
||||
.mceLabel, .mceLabelDisabled {
|
||||
font-family: 'MS Sans Serif', sans-serif, Verdana, Arial;
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
.mceLabel {
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.mceLabelDisabled {
|
||||
cursor: text;
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.mceEditor {
|
||||
background: #F0F0EE;
|
||||
border: 1px solid #cccccc;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.mceEditorArea {
|
||||
font-family: 'MS Sans Serif', sans-serif, Verdana, Arial;
|
||||
background: #FFFFFF;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.mceToolbarTop, .mceToolbarBottom {
|
||||
background: #F0F0EE;
|
||||
line-height: 1px;
|
||||
font-size: 1px;
|
||||
}
|
||||
|
||||
.mceToolbarTop {
|
||||
border-bottom: 1px solid #cccccc;
|
||||
padding-bottom: 1px;
|
||||
}
|
||||
|
||||
.mceToolbarBottom {
|
||||
border-top: 1px solid #cccccc;
|
||||
}
|
||||
|
||||
.mceStatusbarTop, .mceStatusbarBottom, .mceStatusbar {
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.mceStatusbarTop .mceStatusbarPathText, .mceStatusbarBottom .mceStatusbarPathText, .mceStatusbar .mceStatusbarPathText {
|
||||
font-family: 'MS Sans Serif', sans-serif, Verdana, Arial;
|
||||
font-size: 9pt;
|
||||
padding: 2px;
|
||||
line-height: 16px;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.mceStatusbarTop {
|
||||
border-bottom: 1px solid #cccccc;
|
||||
}
|
||||
|
||||
.mceStatusbarBottom {
|
||||
border-top: 1px solid #cccccc;
|
||||
}
|
||||
|
||||
.mceStatusbar {
|
||||
border-bottom: 1px solid #cccccc;
|
||||
}
|
||||
|
||||
.mcePathItem, .mcePathItem:link, .mcePathItem:visited, .mcePathItem:hover {
|
||||
text-decoration: none;
|
||||
font-family: 'MS Sans Serif', sans-serif, Verdana, Arial;
|
||||
font-size: 9pt;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.mcePathItem:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.mceStatusbarPathText {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.mceStatusbarResize {
|
||||
float: right;
|
||||
background-image: url('../images/statusbar_resize.gif');
|
||||
background-repeat: no-repeat;
|
||||
width: 11px;
|
||||
height: 20px;
|
||||
cursor: se-resize;
|
||||
}
|
||||
|
||||
.mceResizeBox {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
display: none;
|
||||
border: 1px dotted gray;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.mceEditorIframe {
|
||||
border: 0;
|
||||
}
|
||||
.mceToolbarTop a, .mceToolbarTop a:visited, .mceToolbarTop a:hover, .mceToolbarBottom a, .mceToolbarBottom a:visited, .mceToolbarBottom a:hover {border: 0; margin: 0; padding: 0; background: transparent;}
|
||||
.mceSeparatorLine {border: 0; padding: 0; margin-left: 4px; margin-right: 2px;}
|
||||
.mceSelectList {font-family: 'MS Sans Serif', sans-serif, Verdana, Arial; font-size: 7pt !important; font-weight: normal; margin-top: 3px; padding: 0; display: inline; vertical-align: top; background-color: #F0F0EE;}
|
||||
.mceLabel, .mceLabelDisabled {font-family: 'MS Sans Serif', sans-serif, Verdana, Arial; font-size: 9pt;}
|
||||
.mceLabel {color: #000000;}
|
||||
.mceLabelDisabled {cursor: text; color: #999999;}
|
||||
.mceEditor {background: #F0F0EE; border: 1px solid #cccccc; padding: 0; margin: 0;}
|
||||
.mceEditorArea { font-family: 'MS Sans Serif', sans-serif, Verdana, Arial; background: #FFFFFF; padding: 0; margin: 0; }
|
||||
.mceToolbarTop, .mceToolbarBottom {background: #F0F0EE; line-height: 1px; font-size: 1px;}
|
||||
.mceToolbarTop {border-bottom: 1px solid #cccccc; padding-bottom: 1px;}
|
||||
.mceToolbarBottom {border-top: 1px solid #cccccc;}
|
||||
.mceToolbarContainer {display: block; position: relative; left: 0; top: 0; width: 100%;}
|
||||
.mceStatusbarTop, .mceStatusbarBottom, .mceStatusbar {height: 20px;}
|
||||
.mceStatusbarTop .mceStatusbarPathText, .mceStatusbarBottom .mceStatusbarPathText, .mceStatusbar .mceStatusbarPathText {font-family: 'MS Sans Serif', sans-serif, Verdana, Arial; font-size: 9pt; padding: 2px; line-height: 16px; overflow: visible;}
|
||||
.mceStatusbarTop {border-bottom: 1px solid #cccccc;}
|
||||
.mceStatusbarBottom {border-top: 1px solid #cccccc;}
|
||||
.mceStatusbar {border-bottom: 1px solid #cccccc;}
|
||||
.mcePathItem, .mcePathItem:link, .mcePathItem:visited, .mcePathItem:hover {text-decoration: none; font-family: 'MS Sans Serif', sans-serif, Verdana, Arial; font-size: 9pt; color: #000000;}
|
||||
.mcePathItem:hover {text-decoration: underline;}
|
||||
.mceStatusbarPathText {float: left;}
|
||||
.mceStatusbarResize {float: right; background-image: url('../images/statusbar_resize.gif'); background-repeat: no-repeat; width: 11px; height: 20px; cursor: se-resize;}
|
||||
.mceResizeBox {width: 10px; height: 10px; display: none; border: 1px dotted gray; margin: 0; padding: 0;}
|
||||
.mceEditorIframe {border: 0;}
|
||||
|
||||
/* Button CSS rules */
|
||||
|
||||
a.mceButtonDisabled img, a.mceButtonNormal img, a.mceButtonSelected img {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
cursor: default;
|
||||
margin-top: 1px;
|
||||
margin-left: 1px;
|
||||
}
|
||||
|
||||
a.mceButtonDisabled img {
|
||||
border: 0 !important;
|
||||
}
|
||||
|
||||
a.mceButtonNormal img, a.mceButtonSelected img {
|
||||
border: 1px solid #F0F0EE !important;
|
||||
}
|
||||
|
||||
a.mceButtonSelected img {
|
||||
border: 1px solid #6779AA !important;
|
||||
background-color: #D4D5D8;
|
||||
}
|
||||
|
||||
a.mceButtonNormal img:hover, a.mceButtonSelected img:hover {
|
||||
border: 1px solid #0A246A !important;
|
||||
cursor: default;
|
||||
background-color: #B6BDD2;
|
||||
}
|
||||
|
||||
a.mceButtonDisabled img {
|
||||
-moz-opacity:0.3;
|
||||
opacity: 0.3;
|
||||
border: 1px solid #F0F0EE !important;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
a.mceTiledButton img {
|
||||
background-image: url('../images/buttons.gif');
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
/* MSIE specific rules */
|
||||
|
||||
* html a.mceButtonNormal img, * html a.mceButtonSelected img, * html a.mceButtonDisabled img {
|
||||
border: 0 !important;
|
||||
margin-top: 2px;
|
||||
margin-bottom: 1px;
|
||||
}
|
||||
|
||||
* html a.mceButtonDisabled img {
|
||||
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=30);
|
||||
border: 0 !important;
|
||||
}
|
||||
|
||||
* html a.mceButtonDisabled {
|
||||
border: 1px solid #F0F0EE !important;
|
||||
}
|
||||
|
||||
* html a.mceButtonNormal, * html a.mceButtonSelected {
|
||||
border: 1px solid #F0F0EE !important;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
* html a.mceButtonSelected {
|
||||
border: 1px solid #6779AA !important;
|
||||
background-color: #D4D5D8;
|
||||
}
|
||||
|
||||
* html a.mceButtonNormal:hover, * html a.mceButtonSelected:hover {
|
||||
border: 1px solid #0A246A !important;
|
||||
cursor: default;
|
||||
background-color: #B6BDD2;
|
||||
}
|
||||
|
||||
* html .mceSelectList {
|
||||
margin-top: 2px;
|
||||
}
|
||||
a.mceButtonDisabled img, a.mceButtonNormal img, a.mceButtonSelected img {width: 20px; height: 20px; cursor: default; margin-top: 1px; margin-left: 1px;}
|
||||
a.mceButtonDisabled img {border: 0 !important;}
|
||||
a.mceButtonNormal img, a.mceButtonSelected img {border: 1px solid #F0F0EE !important;}
|
||||
a.mceButtonSelected img {border: 1px solid #6779AA !important; background-color: #D4D5D8;}
|
||||
a.mceButtonNormal img:hover, a.mceButtonSelected img:hover {border: 1px solid #0A246A !important; cursor: default; background-color: #B6BDD2;}
|
||||
a.mceButtonDisabled img {-moz-opacity:0.3; opacity: 0.3; border: 1px solid #F0F0EE !important; cursor: default;}
|
||||
a.mceTiledButton img {background-image: url('../images/buttons.gif'); background-repeat: no-repeat;}
|
||||
|
||||
/* Menu button CSS rules */
|
||||
|
||||
span.mceMenuButton img, span.mceMenuButtonSelected img {
|
||||
border: 1px solid #F0F0EE;
|
||||
margin-left: 1px;
|
||||
}
|
||||
|
||||
span.mceMenuButtonSelected img {
|
||||
border: 1px solid #6779AA;
|
||||
background-color: #B6BDD2;
|
||||
}
|
||||
|
||||
span.mceMenuButtonSelected img.mceMenuButton {
|
||||
border: 1px solid #F0F0EE;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
span.mceMenuButton img.mceMenuButton, span.mceMenuButtonSelected img.mceMenuButton {
|
||||
border-left: 0;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
span.mceMenuButton:hover img, span.mceMenuButtonSelected:hover img {
|
||||
border: 1px solid #0A246A;
|
||||
background-color: #B6BDD2;
|
||||
}
|
||||
|
||||
span.mceMenuButton:hover img.mceMenuButton, span.mceMenuButtonSelected:hover img.mceMenuButton {
|
||||
border-left: 0;
|
||||
}
|
||||
|
||||
span.mceMenuButtonFocus img {
|
||||
border: 1px solid gray;
|
||||
border-right: 0;
|
||||
margin-left: 1px;
|
||||
background-color: #F5F4F2;
|
||||
}
|
||||
|
||||
span.mceMenuButtonFocus img.mceMenuButton {
|
||||
border: 1px solid gray;
|
||||
border-left: 1px solid #F5F4F2;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
/* Menu button MSIE specific rules */
|
||||
|
||||
* html span.mceMenuButton, * html span.mceMenuButtonFocus {
|
||||
position: relative;
|
||||
left: 0;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
* html span.mceMenuButton img, * html span.mceMenuButtonSelected img, * html span.mceMenuButtonFocus img {
|
||||
position: relative;
|
||||
top: 1px;
|
||||
}
|
||||
|
||||
* html span.mceMenuHover img {
|
||||
border: 1px solid #0A246A;
|
||||
background-color: #B6BDD2;
|
||||
}
|
||||
|
||||
* html span.mceMenuButtonSelected.mceMenuHover img.mceMenuButton {
|
||||
border: 1px solid #0A246A;
|
||||
background-color: #B6BDD2;
|
||||
border-left: 0;
|
||||
}
|
||||
span.mceMenuButton img, span.mceMenuButtonSelected img {border: 1px solid #F0F0EE; margin-left: 1px;}
|
||||
span.mceMenuButtonSelected img {border: 1px solid #6779AA; background-color: #B6BDD2;}
|
||||
span.mceMenuButtonSelected img.mceMenuButton {border: 1px solid #F0F0EE; background-color: transparent;}
|
||||
span.mceMenuButton img.mceMenuButton, span.mceMenuButtonSelected img.mceMenuButton {border-left: 0; margin-left: 0;}
|
||||
span.mceMenuButton:hover img, span.mceMenuButtonSelected:hover img {border: 1px solid #0A246A; background-color: #B6BDD2;}
|
||||
span.mceMenuButton:hover img.mceMenuButton, span.mceMenuButtonSelected:hover img.mceMenuButton {border-left: 0;}
|
||||
span.mceMenuButtonFocus img {border: 1px solid gray; border-right: 0; margin-left: 1px; background-color: #F5F4F2;}
|
||||
span.mceMenuButtonFocus img.mceMenuButton {border: 1px solid gray; border-left: 1px solid #F5F4F2; margin-left: 0;}
|
||||
span.mceMenuHover img {border: 1px solid #0A246A; background-color: #B6BDD2;}
|
||||
span.mceMenuButtonSelected.mceMenuHover img.mceMenuButton {border: 1px solid #0A246A; background-color: #B6BDD2; border-left: 0;}
|
||||
|
||||
/* Menu */
|
||||
|
||||
.mceMenu {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
display: none;
|
||||
z-index: 100;
|
||||
background-color: white;
|
||||
border: 1px solid gray;
|
||||
font-weight: normal;
|
||||
}
|
||||
.mceMenu {position: absolute; left: 0; top: 0; display: none; z-index: 1000; background-color: white; border: 1px solid gray; font-weight: normal;}
|
||||
.mceMenu a, .mceMenuTitle, .mceMenuDisabled {display: block; width: 100%; text-decoration: none; background-color: white; font-family: Tahoma, Verdana, Arial, Helvetica; font-size: 11px; line-height: 20px; color: black;}
|
||||
.mceMenu a:hover {background-color: #B6BDD2; color: black; text-decoration: none !important;}
|
||||
.mceMenu span {padding-left: 10px; padding-right: 10px; display: block; line-height: 20px;}
|
||||
.mceMenuSeparator {border-bottom: 1px solid gray; background-color: gray; height: 1px;}
|
||||
.mceMenuTitle span {padding-left: 5px;}
|
||||
.mceMenuTitle {background-color: #DDDDDD; font-weight: bold;}
|
||||
.mceMenuDisabled {color: gray;}
|
||||
span.mceMenuSelectedItem {background-image: url('../images/menu_check.gif'); background-repeat: no-repeat; background-position: 5px 8px; padding-left: 20px;}
|
||||
span.mceMenuCheckItem {padding-left: 20px;}
|
||||
span.mceMenuLine {display: block; position: absolute; left: 0; top: -1px; background-color: #F5F4F2; width: 30px; height: 1px; overflow: hidden; padding-left: 0; padding-right: 0;}
|
||||
.mceColors table, .mceColors td {margin: 0; padding: 2px;}
|
||||
a.mceMoreColors {width: auto; padding: 0; margin: 0 3px 3px 3px; text-align: center; border: 1px solid white; text-decoration: none !important;}
|
||||
.mceColorPreview {position: absolute; overflow:hidden; left: 0; top: 0; margin-left: 3px; margin-top: 15px; width: 16px; height: 4px; background-color: red;}
|
||||
a.mceMoreColors:hover {border: 1px solid #0A246A;}
|
||||
.mceColors td a {width: 9px; height: 9px; overflow: hidden; border: 1px solid #808080;}
|
||||
|
||||
.mceMenu a, .mceMenuTitle, .mceMenuDisabled {
|
||||
display: block;
|
||||
width: 100%;
|
||||
text-decoration: none;
|
||||
background-color: white;
|
||||
font-family: Tahoma, Verdana, Arial, Helvetica;
|
||||
font-size: 11px;
|
||||
line-height: 20px;
|
||||
color: black;
|
||||
}
|
||||
/* MSIE 6 specific rules */
|
||||
|
||||
.mceMenu a:hover {
|
||||
background-color: #B6BDD2;
|
||||
color: black;
|
||||
text-decoration: none !important;
|
||||
}
|
||||
* html a.mceButtonNormal img, * html a.mceButtonSelected img, * html a.mceButtonDisabled img {border: 0 !important; margin-top: 2px; margin-bottom: 1px;}
|
||||
* html a.mceButtonDisabled img {filter:progid:DXImageTransform.Microsoft.Alpha(opacity=30); border: 0 !important;}
|
||||
* html a.mceButtonDisabled {border: 1px solid #F0F0EE !important;}
|
||||
* html a.mceButtonNormal, * html a.mceButtonSelected {border: 1px solid #F0F0EE !important; cursor: default;}
|
||||
* html a.mceButtonSelected {border: 1px solid #6779AA !important; background-color: #D4D5D8;}
|
||||
* html a.mceButtonNormal:hover, * html a.mceButtonSelected:hover {border: 1px solid #0A246A !important; background-color: #B6BDD2; cursor: default;}
|
||||
* html .mceSelectList {margin-top: 2px;}
|
||||
* html span.mceMenuButton, * html span.mceMenuButtonFocus {position: relative; left: 0; top: 0;}
|
||||
* html span.mceMenuButton img, * html span.mceMenuButtonSelected img, * html span.mceMenuButtonFocus img {position: relative; top: 1px;}
|
||||
* html a.mceMoreColors {width: auto;}
|
||||
* html .mceColors td a {width: 10px; height: 10px;}
|
||||
* html .mceColorPreview {margin-left: 2px; margin-top: 14px;}
|
||||
|
||||
.mceMenu span {
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
display: block;
|
||||
line-height: 20px;
|
||||
}
|
||||
/* MSIE 7 specific rules */
|
||||
|
||||
.mceMenuSeparator {
|
||||
border-bottom: 1px solid gray;
|
||||
background-color: gray;
|
||||
height: 1px;
|
||||
}
|
||||
|
||||
.mceMenuTitle span {
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
.mceMenuTitle {
|
||||
background-color: #DDDDDD;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.mceMenuDisabled {
|
||||
color: gray;
|
||||
}
|
||||
|
||||
span.mceMenuSelectedItem {
|
||||
background-image: url('../images/menu_check.gif');
|
||||
background-repeat: no-repeat;
|
||||
background-position: 5px 8px;
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
span.mceMenuCheckItem {
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
span.mceMenuLine {
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: -1px;
|
||||
background-color: #F5F4F2;
|
||||
width: 30px;
|
||||
height: 1px;
|
||||
overflow: hidden;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
*:first-child+html a.mceButtonNormal img, *:first-child+html a.mceButtonSelected img, *:first-child+html a.mceButtonDisabled img {border: 0 !important; margin-top: 2px; margin-bottom: 1px;}
|
||||
*:first-child+html a.mceButtonDisabled img {filter:progid:DXImageTransform.Microsoft.Alpha(opacity=30); border: 0 !important;}
|
||||
*:first-child+html a.mceButtonDisabled {border: 1px solid #F0F0EE !important;}
|
||||
*:first-child+html a.mceButtonNormal, *:first-child+html a.mceButtonSelected {border: 1px solid #F0F0EE !important; cursor: default;}
|
||||
*:first-child+html a.mceButtonSelected {border: 1px solid #6779AA !important; background-color: #D4D5D8;}
|
||||
*:first-child+html a.mceButtonNormal:hover, *:first-child+html a.mceButtonSelected:hover {border: 1px solid #0A246A !important; background-color: #B6BDD2; cursor: default;}
|
||||
*:first-child+html .mceSelectList {margin-top: 2px;}
|
||||
*:first-child+html span.mceMenuButton, *:first-child+html span.mceMenuButtonFocus {position: relative; left: 0; top: 0;}
|
||||
*:first-child+html span.mceMenuButton img, *:first-child+html span.mceMenuButtonSelected img, *:first-child+html span.mceMenuButtonFocus img {position: relative; top: 1px;}
|
||||
*:first-child+html a.mceMoreColors {width: 137px;}
|
||||
*:first-child+html .mceColors td a {width: 10px; height: 10px;}
|
||||
*:first-child+html .mceColorPreview {margin: 0; padding-left: 4px; margin-top: 14px; width: 14px;}
|
||||
|
|
|
|||
|
|
@ -1,10 +1,8 @@
|
|||
/**
|
||||
* $RCSfile: editor_template_src.js,v $
|
||||
* $Revision: 1.96 $
|
||||
* $Date: 2006/04/18 13:32:52 $
|
||||
* $Id: editor_template_src.js 256 2007-04-24 09:03:20Z spocke $
|
||||
*
|
||||
* @author Moxiecode
|
||||
* @copyright Copyright © 2004-2006, Moxiecode Systems AB, All rights reserved.
|
||||
* @copyright Copyright © 2004-2007, Moxiecode Systems AB, All rights reserved.
|
||||
*/
|
||||
|
||||
/* Import theme specific language pack */
|
||||
|
|
@ -12,6 +10,7 @@ tinyMCE.importThemeLanguagePack('advanced');
|
|||
|
||||
var TinyMCE_AdvancedTheme = {
|
||||
// Private theme fields
|
||||
_defColors : "000000,993300,333300,003300,003366,000080,333399,333333,800000,FF6600,808000,008000,008080,0000FF,666699,808080,FF0000,FF9900,99CC00,339966,33CCCC,3366FF,800080,999999,FF00FF,FFCC00,FFFF00,00FF00,00FFFF,00CCFF,993366,C0C0C0,FF99CC,FFCC99,FFFF99,CCFFCC,CCFFFF,99CCFF,CC99FF,FFFFFF",
|
||||
_autoImportCSSClasses : true,
|
||||
_resizer : {},
|
||||
_buttons : [
|
||||
|
|
@ -43,25 +42,30 @@ var TinyMCE_AdvancedTheme = {
|
|||
['removeformat', 'removeformat.gif', 'lang_theme_removeformat_desc', 'removeformat'],
|
||||
['sub', 'sub.gif', 'lang_theme_sub_desc', 'subscript'],
|
||||
['sup', 'sup.gif', 'lang_theme_sup_desc', 'superscript'],
|
||||
['forecolor', 'forecolor.gif', 'lang_theme_forecolor_desc', 'mceForeColor', true],
|
||||
['backcolor', 'backcolor.gif', 'lang_theme_backcolor_desc', 'mceBackColor', true],
|
||||
['forecolor', 'forecolor.gif', 'lang_theme_forecolor_desc', 'forecolor', true],
|
||||
['forecolorpicker', 'forecolor.gif', 'lang_theme_forecolor_desc', 'forecolorpicker', true],
|
||||
['backcolor', 'backcolor.gif', 'lang_theme_backcolor_desc', 'HiliteColor', true],
|
||||
['backcolorpicker', 'backcolor.gif', 'lang_theme_backcolor_desc', 'backcolorpicker', true],
|
||||
['charmap', 'charmap.gif', 'lang_theme_charmap_desc', 'mceCharMap'],
|
||||
['visualaid', 'visualaid.gif', 'lang_theme_visualaid_desc', 'mceToggleVisualAid'],
|
||||
['anchor', 'anchor.gif', 'lang_theme_anchor_desc', 'mceInsertAnchor'],
|
||||
['newdocument', 'newdocument.gif', 'lang_newdocument_desc', 'mceNewDocument']
|
||||
],
|
||||
|
||||
_buttonMap : 'anchor,backcolor,bold,bullist,charmap,cleanup,code,copy,cut,forecolor,help,hr,image,indent,italic,justifycenter,justifyfull,justifyleft,justifyright,link,newdocument,numlist,outdent,paste,redo,removeformat,strikethrough,sub,sup,underline,undo,unlink,visualaid,advhr,ltr,rtl,emotions,flash,fullpage,fullscreen,iespell,insertdate,inserttime,pastetext,pasteword,selectall,preview,print,save,replace,search,table,cell_props,delete_col,delete_row,col_after,col_before,row_after,row_before,merge_cells,row_props,split_cells',
|
||||
_buttonMap : 'anchor,backcolor,bold,bullist,charmap,cleanup,code,copy,cut,forecolor,help,hr,image,indent,italic,justifycenter,justifyfull,justifyleft,justifyright,link,newdocument,numlist,outdent,paste,redo,removeformat,strikethrough,sub,sup,underline,undo,unlink,visualaid,advhr,ltr,rtl,emotions,flash,fullpage,fullscreen,iespell,insertdate,inserttime,pastetext,pasteword,selectall,preview,print,save,replace,search,table,cell_props,delete_col,delete_row,col_after,col_before,row_after,row_before,merge_cells,row_props,split_cells,delete_table',
|
||||
|
||||
/**
|
||||
* Returns HTML code for the specificed control.
|
||||
*/
|
||||
getControlHTML : function(button_name) {
|
||||
var i, x;
|
||||
var i, x, but;
|
||||
|
||||
// Lookup button in button list
|
||||
for (i=0; i<TinyMCE_AdvancedTheme._buttons.length; i++) {
|
||||
var but = TinyMCE_AdvancedTheme._buttons[i];
|
||||
but = TinyMCE_AdvancedTheme._buttons[i];
|
||||
|
||||
if (but[0] == button_name && (button_name == "forecolor" || button_name == "backcolor"))
|
||||
return tinyMCE.getMenuButtonHTML(but[0], but[2], '{$themeurl}/images/' + but[1], but[3] + "Menu", but[3], (but.length > 4 ? but[4] : false), (but.length > 5 ? but[5] : null));
|
||||
|
||||
if (but[0] == button_name)
|
||||
return tinyMCE.getButtonHTML(but[0], but[2], '{$themeurl}/images/' + but[1], but[3], (but.length > 4 ? but[4] : false), (but.length > 5 ? but[5] : null));
|
||||
|
|
@ -136,10 +140,10 @@ var TinyMCE_AdvancedTheme = {
|
|||
|
||||
case "|":
|
||||
case "separator":
|
||||
return '<img src="{$themeurl}/images/separator.gif" width="2" height="20" class="mceSeparatorLine" />';
|
||||
return '<img src="{$themeurl}/images/separator.gif" width="2" height="20" class="mceSeparatorLine" alt="" />';
|
||||
|
||||
case "spacer":
|
||||
return '<img src="{$themeurl}/images/separator.gif" width="2" height="15" border="0" class="mceSeparatorLine" style="vertical-align: middle" />';
|
||||
return '<img src="{$themeurl}/images/separator.gif" width="2" height="15" border="0" class="mceSeparatorLine" style="vertical-align: middle" alt="" />';
|
||||
|
||||
case "rowseparator":
|
||||
return '<br />';
|
||||
|
|
@ -153,6 +157,18 @@ var TinyMCE_AdvancedTheme = {
|
|||
*/
|
||||
execCommand : function(editor_id, element, command, user_interface, value) {
|
||||
switch (command) {
|
||||
case 'mceHelp':
|
||||
tinyMCE.openWindow({
|
||||
file : 'about.htm',
|
||||
width : 480,
|
||||
height : 380
|
||||
}, {
|
||||
tinymce_version : tinyMCE.majorVersion + "." + tinyMCE.minorVersion,
|
||||
tinymce_releasedate : tinyMCE.releaseDate,
|
||||
inline : "yes"
|
||||
});
|
||||
return true;
|
||||
|
||||
case "mceLink":
|
||||
var inst = tinyMCE.getInstanceById(editor_id);
|
||||
var doc = inst.getDoc();
|
||||
|
|
@ -317,51 +333,114 @@ var TinyMCE_AdvancedTheme = {
|
|||
|
||||
return true;
|
||||
|
||||
case "mceForeColor":
|
||||
var template = new Array();
|
||||
var elm = tinyMCE.selectedInstance.getFocusElement();
|
||||
var inputColor = tinyMCE.getAttrib(elm, "color");
|
||||
case "forecolor":
|
||||
var fcp = new TinyMCE_Layer(editor_id + '_fcPreview', false), p, img, elm;
|
||||
|
||||
if (inputColor == '')
|
||||
inputColor = elm.style.color;
|
||||
TinyMCE_AdvancedTheme._hideMenus(editor_id);
|
||||
|
||||
if (!inputColor)
|
||||
inputColor = "#000000";
|
||||
if (!fcp.exists()) {
|
||||
fcp.create('div', 'mceColorPreview', document.getElementById(editor_id + '_toolbar'));
|
||||
elm = fcp.getElement();
|
||||
elm._editor_id = editor_id;
|
||||
elm._command = "forecolor";
|
||||
elm._switchId = editor_id + "_forecolor";
|
||||
tinyMCE.addEvent(elm, 'click', TinyMCE_AdvancedTheme._handleMenuEvent);
|
||||
tinyMCE.addEvent(elm, 'mouseover', TinyMCE_AdvancedTheme._handleMenuEvent);
|
||||
tinyMCE.addEvent(elm, 'mouseout', TinyMCE_AdvancedTheme._handleMenuEvent);
|
||||
}
|
||||
|
||||
template['file'] = 'color_picker.htm';
|
||||
template['width'] = 220;
|
||||
template['height'] = 190;
|
||||
img = tinyMCE.selectNodes(document.getElementById(editor_id + "_forecolor"), function(n) {return n.nodeName == "IMG";})[0];
|
||||
p = tinyMCE.getAbsPosition(img, document.getElementById(editor_id + '_toolbar'));
|
||||
|
||||
tinyMCE.openWindow(template, {editor_id : editor_id, inline : "yes", command : "forecolor", input_color : inputColor});
|
||||
fcp.moveTo(p.absLeft, p.absTop);
|
||||
fcp.getElement().style.backgroundColor = value != null ? value : tinyMCE.getInstanceById(editor_id).foreColor;
|
||||
fcp.show();
|
||||
|
||||
return false;
|
||||
|
||||
case "forecolorpicker":
|
||||
this._pickColor(editor_id, 'forecolor');
|
||||
return true;
|
||||
|
||||
case "forecolorMenu":
|
||||
TinyMCE_AdvancedTheme._hideMenus(editor_id);
|
||||
|
||||
// Create color layer
|
||||
var ml = new TinyMCE_Layer(editor_id + '_fcMenu');
|
||||
|
||||
if (!ml.exists())
|
||||
ml.create('div', 'mceMenu', document.body, TinyMCE_AdvancedTheme._getColorHTML(editor_id, 'theme_advanced_text_colors', 'forecolor'));
|
||||
|
||||
tinyMCE.switchClass(editor_id + '_forecolor', 'mceMenuButtonFocus');
|
||||
ml.moveRelativeTo(document.getElementById(editor_id + "_forecolor"), 'bl');
|
||||
|
||||
ml.moveBy(tinyMCE.isMSIE && !tinyMCE.isOpera ? -1 : 1, -1);
|
||||
|
||||
if (tinyMCE.isOpera)
|
||||
ml.moveBy(0, -2);
|
||||
|
||||
ml.show();
|
||||
return true;
|
||||
|
||||
case "mceBackColor":
|
||||
var template = new Array();
|
||||
var elm = tinyMCE.selectedInstance.getFocusElement();
|
||||
var inputColor = elm.style.backgroundColor;
|
||||
case "HiliteColor":
|
||||
var bcp = new TinyMCE_Layer(editor_id + '_bcPreview', false), p, img;
|
||||
|
||||
if (!inputColor)
|
||||
inputColor = "#000000";
|
||||
TinyMCE_AdvancedTheme._hideMenus(editor_id);
|
||||
|
||||
template['file'] = 'color_picker.htm';
|
||||
template['width'] = 220;
|
||||
template['height'] = 190;
|
||||
if (!bcp.exists()) {
|
||||
bcp.create('div', 'mceColorPreview', document.getElementById(editor_id + '_toolbar'));
|
||||
elm = bcp.getElement();
|
||||
elm._editor_id = editor_id;
|
||||
elm._command = "HiliteColor";
|
||||
elm._switchId = editor_id + "_backcolor";
|
||||
tinyMCE.addEvent(elm, 'click', TinyMCE_AdvancedTheme._handleMenuEvent);
|
||||
tinyMCE.addEvent(elm, 'mouseover', TinyMCE_AdvancedTheme._handleMenuEvent);
|
||||
tinyMCE.addEvent(elm, 'mouseout', TinyMCE_AdvancedTheme._handleMenuEvent);
|
||||
}
|
||||
|
||||
template['width'] += tinyMCE.getLang('lang_theme_advanced_backcolor_delta_width', 0);
|
||||
template['height'] += tinyMCE.getLang('lang_theme_advanced_backcolor_delta_height', 0);
|
||||
img = tinyMCE.selectNodes(document.getElementById(editor_id + "_backcolor"), function(n) {return n.nodeName == "IMG";})[0];
|
||||
p = tinyMCE.getAbsPosition(img, document.getElementById(editor_id + '_toolbar'));
|
||||
|
||||
tinyMCE.openWindow(template, {editor_id : editor_id, inline : "yes", command : "HiliteColor", input_color : inputColor});
|
||||
//mceBackColor
|
||||
bcp.moveTo(p.absLeft, p.absTop);
|
||||
bcp.getElement().style.backgroundColor = value != null ? value : tinyMCE.getInstanceById(editor_id).backColor;
|
||||
bcp.show();
|
||||
|
||||
return false;
|
||||
|
||||
case "HiliteColorMenu":
|
||||
TinyMCE_AdvancedTheme._hideMenus(editor_id);
|
||||
|
||||
// Create color layer
|
||||
var ml = new TinyMCE_Layer(editor_id + '_bcMenu');
|
||||
|
||||
if (!ml.exists())
|
||||
ml.create('div', 'mceMenu', document.body, TinyMCE_AdvancedTheme._getColorHTML(editor_id, 'theme_advanced_background_colors', 'HiliteColor'));
|
||||
|
||||
tinyMCE.switchClass(editor_id + '_backcolor', 'mceMenuButtonFocus');
|
||||
ml.moveRelativeTo(document.getElementById(editor_id + "_backcolor"), 'bl');
|
||||
|
||||
ml.moveBy(tinyMCE.isMSIE && !tinyMCE.isOpera ? -1 : 1, -1);
|
||||
|
||||
if (tinyMCE.isOpera)
|
||||
ml.moveBy(0, -2);
|
||||
|
||||
ml.show();
|
||||
return true;
|
||||
|
||||
case "backcolorpicker":
|
||||
this._pickColor(editor_id, 'HiliteColor');
|
||||
return true;
|
||||
|
||||
case "mceColorPicker":
|
||||
if (user_interface) {
|
||||
var template = new Array();
|
||||
var inputColor = value['document'].getElementById(value['element_id']).value;
|
||||
var template = [];
|
||||
|
||||
if (!value['callback'] && !value['color'])
|
||||
value['color'] = value['document'].getElementById(value['element_id']).value;
|
||||
|
||||
template['file'] = 'color_picker.htm';
|
||||
template['width'] = 220;
|
||||
template['height'] = 190;
|
||||
template['width'] = 380;
|
||||
template['height'] = 250;
|
||||
template['close_previous'] = "no";
|
||||
|
||||
template['width'] += tinyMCE.getLang('lang_theme_advanced_colorpicker_delta_width', 0);
|
||||
|
|
@ -371,10 +450,16 @@ var TinyMCE_AdvancedTheme = {
|
|||
value['store_selection'] = true;
|
||||
|
||||
tinyMCE.lastColorPickerValue = value;
|
||||
tinyMCE.openWindow(template, {editor_id : editor_id, mce_store_selection : value['store_selection'], inline : "yes", command : "mceColorPicker", input_color : inputColor});
|
||||
tinyMCE.openWindow(template, {editor_id : editor_id, mce_store_selection : value['store_selection'], inline : "yes", command : "mceColorPicker", input_color : value['color']});
|
||||
} else {
|
||||
var savedVal = tinyMCE.lastColorPickerValue;
|
||||
var elm = savedVal['document'].getElementById(savedVal['element_id']);
|
||||
var savedVal = tinyMCE.lastColorPickerValue, elm;
|
||||
|
||||
if (savedVal['callback']) {
|
||||
savedVal['callback'](value);
|
||||
return true;
|
||||
}
|
||||
|
||||
elm = savedVal['document'].getElementById(savedVal['element_id']);
|
||||
elm.value = value;
|
||||
|
||||
if (elm.onchange != null && elm.onchange != '')
|
||||
|
|
@ -433,7 +518,7 @@ var TinyMCE_AdvancedTheme = {
|
|||
*/
|
||||
getEditorTemplate : function(settings, editorId) {
|
||||
function removeFromArray(in_array, remove_array) {
|
||||
var outArray = new Array();
|
||||
var outArray = new Array(), skip;
|
||||
|
||||
for (var i=0; i<in_array.length; i++) {
|
||||
skip = false;
|
||||
|
|
@ -530,11 +615,10 @@ var TinyMCE_AdvancedTheme = {
|
|||
toolbarHTML += '<a href="#" accesskey="z" onfocus="tinyMCE.getInstanceById(\'' + editorId + '\').getWin().focus();"></a>';
|
||||
|
||||
// Setup template html
|
||||
template['html'] = '<table class="mceEditor" border="0" cellpadding="0" cellspacing="0" width="{$width}" height="{$height}" style="width:{$width}px;height:{$height}px"><tbody>';
|
||||
template['html'] = '<table class="mceEditor" border="0" cellpadding="0" cellspacing="0" width="{$width}" height="{$height}" style="width:{$width_style};height:{$height_style}"><tbody>';
|
||||
|
||||
if (toolbarLocation == "top") {
|
||||
template['html'] += '<tr><td class="mceToolbarTop" align="' + toolbarAlign + '" height="1" nowrap="nowrap">' + toolbarHTML + '</td></tr>';
|
||||
}
|
||||
if (toolbarLocation == "top")
|
||||
template['html'] += '<tr><td dir="ltr" class="mceToolbarTop" align="' + toolbarAlign + '" height="1" nowrap="nowrap"><span id="' + editorId + '_toolbar" class="mceToolbarContainer">' + toolbarHTML + '</span></td></tr>';
|
||||
|
||||
if (statusbarLocation == "top") {
|
||||
template['html'] += '<tr><td class="mceStatusbarTop" height="1">' + statusbarHTML + '</td></tr>';
|
||||
|
|
@ -543,9 +627,8 @@ var TinyMCE_AdvancedTheme = {
|
|||
|
||||
template['html'] += '<tr><td align="center"><span id="{$editor_id}"></span></td></tr>';
|
||||
|
||||
if (toolbarLocation == "bottom") {
|
||||
template['html'] += '<tr><td class="mceToolbarBottom" align="' + toolbarAlign + '" height="1">' + toolbarHTML + '</td></tr>';
|
||||
}
|
||||
if (toolbarLocation == "bottom")
|
||||
template['html'] += '<tr><td dir="ltr" class="mceToolbarBottom" align="' + toolbarAlign + '" height="1"><span id="' + editorId + '_toolbar" class="mceToolbarContainer">' + toolbarHTML + '</span></td></tr>';
|
||||
|
||||
// External toolbar changes
|
||||
if (toolbarLocation == "external") {
|
||||
|
|
@ -615,9 +698,10 @@ var TinyMCE_AdvancedTheme = {
|
|||
var curAlign = tinyMCE.getParam("theme_advanced_container_"+containers[i]+"_align", defaultContainerAlign);
|
||||
var curCSS = tinyMCE.getParam("theme_advanced_container_"+containers[i]+"_class", defaultContainerCSS);
|
||||
|
||||
for (var j=0; j<curContainer.length; j++) {
|
||||
curContainer = removeFromArray(curContainer, tinyMCE.getParam("theme_advanced_disable", "", true, ','));
|
||||
|
||||
for (var j=0; j<curContainer.length; j++)
|
||||
curContainerHTML += tinyMCE.getControlHTML(curContainer[j]);
|
||||
}
|
||||
|
||||
if (curContainer.length > 0) {
|
||||
curContainerHTML += "<br />";
|
||||
|
|
@ -645,8 +729,13 @@ var TinyMCE_AdvancedTheme = {
|
|||
template['html'] += '<span id="{$editor_id}_resize_box" class="mceResizeBox"></span>';
|
||||
|
||||
template['html'] = tinyMCE.replaceVar(template['html'], 'style_select_options', styleSelectHTML);
|
||||
template['delta_width'] = 0;
|
||||
template['delta_height'] = deltaHeight;
|
||||
|
||||
// Set to default values
|
||||
if (!template['delta_width'])
|
||||
template['delta_width'] = 0;
|
||||
|
||||
if (!template['delta_height'])
|
||||
template['delta_height'] = deltaHeight;
|
||||
|
||||
return template;
|
||||
},
|
||||
|
|
@ -664,10 +753,43 @@ var TinyMCE_AdvancedTheme = {
|
|||
inst.addShortcut('ctrl', 'k', 'lang_link_desc', 'mceLink');
|
||||
},
|
||||
|
||||
removeInstance : function(inst) {
|
||||
new TinyMCE_Layer(inst.editorId + '_fcMenu').remove();
|
||||
new TinyMCE_Layer(inst.editorId + '_bcMenu').remove();
|
||||
},
|
||||
|
||||
hideInstance : function(inst) {
|
||||
TinyMCE_AdvancedTheme._hideMenus(inst.editorId);
|
||||
},
|
||||
|
||||
_handleMenuEvent : function(e) {
|
||||
var te = tinyMCE.isMSIE ? window.event.srcElement : e.target;
|
||||
tinyMCE._menuButtonEvent(e.type == "mouseover" ? "over" : "out", document.getElementById(te._switchId));
|
||||
|
||||
if (e.type == "click")
|
||||
tinyMCE.execInstanceCommand(te._editor_id, te._command);
|
||||
},
|
||||
|
||||
_hideMenus : function(id) {
|
||||
var fcml = new TinyMCE_Layer(id + '_fcMenu'), bcml = new TinyMCE_Layer(id + '_bcMenu');
|
||||
|
||||
if (fcml.exists() && fcml.isVisible()) {
|
||||
tinyMCE.switchClass(id + '_forecolor', 'mceMenuButton');
|
||||
fcml.hide();
|
||||
}
|
||||
|
||||
if (bcml.exists() && bcml.isVisible()) {
|
||||
tinyMCE.switchClass(id + '_backcolor', 'mceMenuButton');
|
||||
bcml.hide();
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* Node change handler.
|
||||
*/
|
||||
handleNodeChange : function(editor_id, node, undo_index, undo_levels, visual_aid, any_selection, setup_content) {
|
||||
var alignNode, breakOut, classNode;
|
||||
|
||||
function selectByValue(select_elm, value, first_index) {
|
||||
first_index = typeof(first_index) == "undefined" ? false : true;
|
||||
|
||||
|
|
@ -690,10 +812,6 @@ var TinyMCE_AdvancedTheme = {
|
|||
return false;
|
||||
};
|
||||
|
||||
function getAttrib(elm, name) {
|
||||
return elm.getAttribute(name) ? elm.getAttribute(name) : "";
|
||||
};
|
||||
|
||||
// No node provided
|
||||
if (node == null)
|
||||
return;
|
||||
|
|
@ -702,6 +820,7 @@ var TinyMCE_AdvancedTheme = {
|
|||
var pathElm = document.getElementById(editor_id + "_path");
|
||||
var inst = tinyMCE.getInstanceById(editor_id);
|
||||
var doc = inst.getDoc();
|
||||
TinyMCE_AdvancedTheme._hideMenus(editor_id);
|
||||
|
||||
if (pathElm) {
|
||||
// Get node path
|
||||
|
|
@ -727,6 +846,9 @@ var TinyMCE_AdvancedTheme = {
|
|||
var nodeName = path[i].nodeName.toLowerCase();
|
||||
var nodeData = "";
|
||||
|
||||
if (nodeName.indexOf("html:") == 0)
|
||||
nodeName = nodeName.substring(5);
|
||||
|
||||
if (nodeName == "b") {
|
||||
nodeName = "strong";
|
||||
}
|
||||
|
|
@ -743,7 +865,7 @@ var TinyMCE_AdvancedTheme = {
|
|||
var st = tinyMCE.getAttrib(path[i], "style");
|
||||
if (st != "") {
|
||||
st = tinyMCE.serializeStyle(tinyMCE.parseStyle(st));
|
||||
nodeData += "style: " + st + " ";
|
||||
nodeData += "style: " + tinyMCE.xmlEncode(st) + " ";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -753,18 +875,18 @@ var TinyMCE_AdvancedTheme = {
|
|||
|
||||
var face = tinyMCE.getAttrib(path[i], "face");
|
||||
if (face != "")
|
||||
nodeData += "font: " + face + " ";
|
||||
nodeData += "font: " + tinyMCE.xmlEncode(face) + " ";
|
||||
|
||||
var size = tinyMCE.getAttrib(path[i], "size");
|
||||
if (size != "")
|
||||
nodeData += "size: " + size + " ";
|
||||
nodeData += "size: " + tinyMCE.xmlEncode(size) + " ";
|
||||
|
||||
var color = tinyMCE.getAttrib(path[i], "color");
|
||||
if (color != "")
|
||||
nodeData += "color: " + color + " ";
|
||||
nodeData += "color: " + tinyMCE.xmlEncode(color) + " ";
|
||||
}
|
||||
|
||||
if (getAttrib(path[i], 'id') != "") {
|
||||
if (tinyMCE.getAttrib(path[i], 'id') != "") {
|
||||
nodeData += "id: " + path[i].getAttribute('id') + " ";
|
||||
}
|
||||
|
||||
|
|
@ -772,36 +894,37 @@ var TinyMCE_AdvancedTheme = {
|
|||
if (className != "" && className.indexOf('mceItem') == -1)
|
||||
nodeData += "class: " + className + " ";
|
||||
|
||||
if (getAttrib(path[i], 'src') != "") {
|
||||
if (tinyMCE.getAttrib(path[i], 'src') != "") {
|
||||
var src = tinyMCE.getAttrib(path[i], "mce_src");
|
||||
|
||||
if (src == "")
|
||||
src = tinyMCE.getAttrib(path[i], "src");
|
||||
|
||||
nodeData += "src: " + src + " ";
|
||||
nodeData += "src: " + tinyMCE.xmlEncode(src) + " ";
|
||||
}
|
||||
|
||||
if (getAttrib(path[i], 'href') != "") {
|
||||
if (path[i].nodeName == 'A' && tinyMCE.getAttrib(path[i], 'href') != "") {
|
||||
var href = tinyMCE.getAttrib(path[i], "mce_href");
|
||||
|
||||
if (href == "")
|
||||
href = tinyMCE.getAttrib(path[i], "href");
|
||||
|
||||
nodeData += "href: " + href + " ";
|
||||
nodeData += "href: " + tinyMCE.xmlEncode(href) + " ";
|
||||
}
|
||||
|
||||
if (nodeName == "img" && tinyMCE.getAttrib(path[i], "class").indexOf('mceItemFlash') != -1) {
|
||||
nodeName = "flash";
|
||||
nodeData = "src: " + path[i].getAttribute('title');
|
||||
className = tinyMCE.getAttrib(path[i], "class");
|
||||
if ((nodeName == "img" || nodeName == "span") && className.indexOf('mceItem') != -1) {
|
||||
nodeName = className.replace(/mceItem([a-z]+)/gi, '$1').toLowerCase();
|
||||
nodeData = path[i].getAttribute('title');
|
||||
}
|
||||
|
||||
if (nodeName == "a" && (anchor = tinyMCE.getAttrib(path[i], "name")) != "") {
|
||||
nodeName = "a";
|
||||
nodeName += "#" + anchor;
|
||||
nodeName += "#" + tinyMCE.xmlEncode(anchor);
|
||||
nodeData = "";
|
||||
}
|
||||
|
||||
if (getAttrib(path[i], 'name').indexOf("mce_") != 0) {
|
||||
if (tinyMCE.getAttrib(path[i], 'name').indexOf("mce_") != 0) {
|
||||
var className = tinyMCE.getVisualAidClass(tinyMCE.getAttrib(path[i], "class"), false);
|
||||
if (className != "" && className.indexOf('mceItem') == -1) {
|
||||
nodeName += "." + className;
|
||||
|
|
@ -1027,7 +1150,7 @@ var TinyMCE_AdvancedTheme = {
|
|||
break;
|
||||
|
||||
case "IMG":
|
||||
if (getAttrib(node, 'name').indexOf('mce_') != 0) {
|
||||
if (tinyMCE.getAttrib(node, 'name').indexOf('mce_') != 0 && tinyMCE.getAttrib(node, 'class').indexOf('mceItem') == -1) {
|
||||
tinyMCE.switchClass(editor_id + '_image', 'mceButtonSelected');
|
||||
}
|
||||
break;
|
||||
|
|
@ -1148,6 +1271,9 @@ var TinyMCE_AdvancedTheme = {
|
|||
inst.iframeElement.style.width = (iw + dx) + "px";
|
||||
}
|
||||
}
|
||||
|
||||
// Remove pesky table controls
|
||||
inst.useCSS = false;
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
@ -1255,79 +1381,58 @@ var TinyMCE_AdvancedTheme = {
|
|||
}
|
||||
},
|
||||
|
||||
_getColorHTML : function(id, n, cm) {
|
||||
var i, h, cl;
|
||||
|
||||
h = '<span class="mceMenuLine"></span>';
|
||||
cl = tinyMCE.getParam(n, TinyMCE_AdvancedTheme._defColors).split(',');
|
||||
|
||||
h += '<table class="mceColors"><tr>';
|
||||
for (i=0; i<cl.length; i++) {
|
||||
c = 'tinyMCE.execInstanceCommand(\'' + id + '\', \'' + cm + '\', false, \'#' + cl[i] + '\');';
|
||||
h += '<td><a href="javascript:' + c + '" style="background-color: #' + cl[i] + '" onclick="' + c + ';return false;"></a></td>';
|
||||
|
||||
if ((i+1) % 8 == 0)
|
||||
h += '</tr><tr>';
|
||||
}
|
||||
|
||||
h += '</tr></table>';
|
||||
|
||||
if (tinyMCE.getParam("theme_advanced_more_colors", true))
|
||||
h += '<a href="javascript:void(0);" onclick="TinyMCE_AdvancedTheme._pickColor(\'' + id + '\',\'' + cm + '\');" class="mceMoreColors">' + tinyMCE.getLang('lang_more_colors') + '</a>';
|
||||
|
||||
return h;
|
||||
},
|
||||
|
||||
_pickColor : function(id, cm) {
|
||||
var inputColor, inst = tinyMCE.selectedInstance;
|
||||
|
||||
if (cm == 'forecolor' && inst)
|
||||
inputColor = inst.foreColor;
|
||||
|
||||
if ((cm == 'backcolor' || cm == 'HiliteColor') && inst)
|
||||
inputColor = inst.backColor;
|
||||
|
||||
tinyMCE.execCommand('mceColorPicker', true, {color : inputColor, callback : function(c) {
|
||||
tinyMCE.execInstanceCommand(id, cm, false, c);
|
||||
}});
|
||||
},
|
||||
|
||||
_insertImage : function(src, alt, border, hspace, vspace, width, height, align, title, onmouseover, onmouseout) {
|
||||
tinyMCE.execCommand('mceBeginUndoLevel');
|
||||
|
||||
if (src == "")
|
||||
return;
|
||||
|
||||
if (!tinyMCE.imgElement && tinyMCE.isSafari) {
|
||||
var html = "";
|
||||
|
||||
html += '<img src="' + src + '" alt="' + alt + '"';
|
||||
html += ' border="' + border + '" hspace="' + hspace + '"';
|
||||
html += ' vspace="' + vspace + '" width="' + width + '"';
|
||||
html += ' height="' + height + '" align="' + align + '" title="' + title + '" onmouseover="' + onmouseover + '" onmouseout="' + onmouseout + '" />';
|
||||
|
||||
tinyMCE.execCommand("mceInsertContent", false, html);
|
||||
} else {
|
||||
if (!tinyMCE.imgElement && tinyMCE.selectedInstance) {
|
||||
if (tinyMCE.isSafari)
|
||||
tinyMCE.execCommand("mceInsertContent", false, '<img src="' + tinyMCE.uniqueURL + '" />');
|
||||
else
|
||||
tinyMCE.selectedInstance.contentDocument.execCommand("insertimage", false, tinyMCE.uniqueURL);
|
||||
|
||||
tinyMCE.imgElement = tinyMCE.getElementByAttributeValue(tinyMCE.selectedInstance.contentDocument.body, "img", "src", tinyMCE.uniqueURL);
|
||||
}
|
||||
}
|
||||
|
||||
if (tinyMCE.imgElement) {
|
||||
var needsRepaint = false;
|
||||
var msrc = src;
|
||||
|
||||
src = eval(tinyMCE.settings['urlconverter_callback'] + "(src, tinyMCE.imgElement);");
|
||||
|
||||
if (tinyMCE.getParam('convert_urls'))
|
||||
msrc = src;
|
||||
|
||||
if (onmouseover && onmouseover != "")
|
||||
onmouseover = "this.src='" + eval(tinyMCE.settings['urlconverter_callback'] + "(onmouseover, tinyMCE.imgElement);") + "';";
|
||||
|
||||
if (onmouseout && onmouseout != "")
|
||||
onmouseout = "this.src='" + eval(tinyMCE.settings['urlconverter_callback'] + "(onmouseout, tinyMCE.imgElement);") + "';";
|
||||
|
||||
// Use alt as title if it's undefined
|
||||
if (typeof(title) == "undefined")
|
||||
title = alt;
|
||||
|
||||
if (width != tinyMCE.imgElement.getAttribute("width") || height != tinyMCE.imgElement.getAttribute("height") || align != tinyMCE.imgElement.getAttribute("align"))
|
||||
needsRepaint = true;
|
||||
|
||||
tinyMCE.setAttrib(tinyMCE.imgElement, 'src', src);
|
||||
tinyMCE.setAttrib(tinyMCE.imgElement, 'mce_src', msrc);
|
||||
tinyMCE.setAttrib(tinyMCE.imgElement, 'alt', alt);
|
||||
tinyMCE.setAttrib(tinyMCE.imgElement, 'title', title);
|
||||
tinyMCE.setAttrib(tinyMCE.imgElement, 'align', align);
|
||||
tinyMCE.setAttrib(tinyMCE.imgElement, 'border', border, true);
|
||||
tinyMCE.setAttrib(tinyMCE.imgElement, 'hspace', hspace, true);
|
||||
tinyMCE.setAttrib(tinyMCE.imgElement, 'vspace', vspace, true);
|
||||
tinyMCE.setAttrib(tinyMCE.imgElement, 'width', width, true);
|
||||
tinyMCE.setAttrib(tinyMCE.imgElement, 'height', height, true);
|
||||
tinyMCE.setAttrib(tinyMCE.imgElement, 'onmouseover', onmouseover);
|
||||
tinyMCE.setAttrib(tinyMCE.imgElement, 'onmouseout', onmouseout);
|
||||
|
||||
// Fix for bug #989846 - Image resize bug
|
||||
if (width && width != "")
|
||||
tinyMCE.imgElement.style.pixelWidth = width;
|
||||
|
||||
if (height && height != "")
|
||||
tinyMCE.imgElement.style.pixelHeight = height;
|
||||
|
||||
if (needsRepaint)
|
||||
tinyMCE.selectedInstance.repaint();
|
||||
}
|
||||
|
||||
tinyMCE.execCommand('mceEndUndoLevel');
|
||||
tinyMCE.execCommand("mceInsertContent", false, tinyMCE.createTagHTML('img', {
|
||||
src : tinyMCE.convertRelativeToAbsoluteURL(tinyMCE.settings['base_href'], src), // Force absolute
|
||||
mce_src : src,
|
||||
alt : alt,
|
||||
border : border,
|
||||
hspace : hspace,
|
||||
vspace : vspace,
|
||||
width : width,
|
||||
height : height,
|
||||
align : align,
|
||||
title : title,
|
||||
onmouseover : onmouseover,
|
||||
onmouseout : onmouseout
|
||||
}));
|
||||
},
|
||||
|
||||
_insertLink : function(href, target, title, onclick, style_class) {
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
<td nowrap="nowrap"><label for="src">{$lang_insert_image_src}</label></td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td><input id="src" name="src" type="text" value="" style="width: 200px" onchange="getImageData();"></td>
|
||||
<td><input id="src" name="src" type="text" value="" style="width: 200px" onchange="getImageData();" /></td>
|
||||
<td id="srcbrowsercontainer"> </td>
|
||||
</tr>
|
||||
</table></td>
|
||||
|
|
@ -47,7 +47,7 @@
|
|||
<!-- /Image list -->
|
||||
<tr>
|
||||
<td nowrap="nowrap"><label for="alt">{$lang_insert_image_alt}</label></td>
|
||||
<td><input id="alt" name="alt" type="text" value="" style="width: 200px"></td>
|
||||
<td><input id="alt" name="alt" type="text" value="" style="width: 200px" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td nowrap="nowrap"><label for="align">{$lang_insert_image_align}</label></td>
|
||||
|
|
@ -66,21 +66,21 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td nowrap="nowrap"><label for="width">{$lang_insert_image_dimensions}</label></td>
|
||||
<td><input id="width" name="width" type="text" value="" size="3" maxlength="3">
|
||||
<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="3"></td>
|
||||
<input id="height" name="height" type="text" value="" size="3" maxlength="5" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td nowrap="nowrap"><label for="border">{$lang_insert_image_border}</label></td>
|
||||
<td><input id="border" name="border" type="text" value="" size="3" maxlength="3"></td>
|
||||
<td><input id="border" name="border" type="text" value="" size="3" maxlength="3" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td nowrap="nowrap"><label for="vspace">{$lang_insert_image_vspace}</label></td>
|
||||
<td><input id="vspace" name="vspace" type="text" value="" size="3" maxlength="3"></td>
|
||||
<td><input id="vspace" name="vspace" type="text" value="" size="3" maxlength="3" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td nowrap="nowrap"><label for="hspace">{$lang_insert_image_hspace}</label></td>
|
||||
<td><input id="hspace" name="hspace" type="text" value="" size="3" maxlength="3"></td>
|
||||
<td><input id="hspace" name="hspace" type="text" value="" size="3" maxlength="3" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 174 B After Width: | Height: | Size: 359 B |
|
Before Width: | Height: | Size: 8.2 KiB After Width: | Height: | Size: 5.5 KiB |
BIN
www/extras/tinymce2/jscripts/tiny_mce/themes/advanced/images/colors.jpg
vendored
Executable file
|
After Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 272 B After Width: | Height: | Size: 342 B |
|
|
@ -1,19 +1,4 @@
|
|||
function init() {
|
||||
if (tinyMCE.isMSIE)
|
||||
tinyMCEPopup.resizeToInnerSize();
|
||||
}
|
||||
|
||||
function selectColor() {
|
||||
var color = document.getElementById("selectedColorBox").value;
|
||||
|
||||
tinyMCEPopup.execCommand(tinyMCE.getWindowArg('command'), false, color);
|
||||
tinyMCEPopup.close();
|
||||
}
|
||||
|
||||
function showColor(color) {
|
||||
document.getElementById("selectedColor").style.backgroundColor = color;
|
||||
document.getElementById("selectedColorBox").value = color;
|
||||
}
|
||||
var detail = 50, strhex = "0123456789abcdef", i, isMouseDown = false, isMouseOver = false;
|
||||
|
||||
var colors = new Array(
|
||||
"#000000","#000033","#000066","#000099","#0000cc","#0000ff","#330000","#330033",
|
||||
|
|
@ -45,9 +30,71 @@ var colors = new Array(
|
|||
"#ccffcc","#ccffff","#ffff00","#ffff33","#ffff66","#ffff99","#ffffcc","#ffffff"
|
||||
);
|
||||
|
||||
var named = {
|
||||
'#F0F8FF':'AliceBlue','#FAEBD7':'AntiqueWhite','#00FFFF':'Aqua','#7FFFD4':'Aquamarine','#F0FFFF':'Azure','#F5F5DC':'Beige',
|
||||
'#FFE4C4':'Bisque','#000000':'Black','#FFEBCD':'BlanchedAlmond','#0000FF':'Blue','#8A2BE2':'BlueViolet','#A52A2A':'Brown',
|
||||
'#DEB887':'BurlyWood','#5F9EA0':'CadetBlue','#7FFF00':'Chartreuse','#D2691E':'Chocolate','#FF7F50':'Coral','#6495ED':'CornflowerBlue',
|
||||
'#FFF8DC':'Cornsilk','#DC143C':'Crimson','#00FFFF':'Cyan','#00008B':'DarkBlue','#008B8B':'DarkCyan','#B8860B':'DarkGoldenRod',
|
||||
'#A9A9A9':'DarkGray','#A9A9A9':'DarkGrey','#006400':'DarkGreen','#BDB76B':'DarkKhaki','#8B008B':'DarkMagenta','#556B2F':'DarkOliveGreen',
|
||||
'#FF8C00':'Darkorange','#9932CC':'DarkOrchid','#8B0000':'DarkRed','#E9967A':'DarkSalmon','#8FBC8F':'DarkSeaGreen','#483D8B':'DarkSlateBlue',
|
||||
'#2F4F4F':'DarkSlateGray','#2F4F4F':'DarkSlateGrey','#00CED1':'DarkTurquoise','#9400D3':'DarkViolet','#FF1493':'DeepPink','#00BFFF':'DeepSkyBlue',
|
||||
'#696969':'DimGray','#696969':'DimGrey','#1E90FF':'DodgerBlue','#B22222':'FireBrick','#FFFAF0':'FloralWhite','#228B22':'ForestGreen',
|
||||
'#FF00FF':'Fuchsia','#DCDCDC':'Gainsboro','#F8F8FF':'GhostWhite','#FFD700':'Gold','#DAA520':'GoldenRod','#808080':'Gray','#808080':'Grey',
|
||||
'#008000':'Green','#ADFF2F':'GreenYellow','#F0FFF0':'HoneyDew','#FF69B4':'HotPink','#CD5C5C':'IndianRed','#4B0082':'Indigo','#FFFFF0':'Ivory',
|
||||
'#F0E68C':'Khaki','#E6E6FA':'Lavender','#FFF0F5':'LavenderBlush','#7CFC00':'LawnGreen','#FFFACD':'LemonChiffon','#ADD8E6':'LightBlue',
|
||||
'#F08080':'LightCoral','#E0FFFF':'LightCyan','#FAFAD2':'LightGoldenRodYellow','#D3D3D3':'LightGray','#D3D3D3':'LightGrey','#90EE90':'LightGreen',
|
||||
'#FFB6C1':'LightPink','#FFA07A':'LightSalmon','#20B2AA':'LightSeaGreen','#87CEFA':'LightSkyBlue','#778899':'LightSlateGray','#778899':'LightSlateGrey',
|
||||
'#B0C4DE':'LightSteelBlue','#FFFFE0':'LightYellow','#00FF00':'Lime','#32CD32':'LimeGreen','#FAF0E6':'Linen','#FF00FF':'Magenta','#800000':'Maroon',
|
||||
'#66CDAA':'MediumAquaMarine','#0000CD':'MediumBlue','#BA55D3':'MediumOrchid','#9370D8':'MediumPurple','#3CB371':'MediumSeaGreen','#7B68EE':'MediumSlateBlue',
|
||||
'#00FA9A':'MediumSpringGreen','#48D1CC':'MediumTurquoise','#C71585':'MediumVioletRed','#191970':'MidnightBlue','#F5FFFA':'MintCream','#FFE4E1':'MistyRose','#FFE4B5':'Moccasin',
|
||||
'#FFDEAD':'NavajoWhite','#000080':'Navy','#FDF5E6':'OldLace','#808000':'Olive','#6B8E23':'OliveDrab','#FFA500':'Orange','#FF4500':'OrangeRed','#DA70D6':'Orchid',
|
||||
'#EEE8AA':'PaleGoldenRod','#98FB98':'PaleGreen','#AFEEEE':'PaleTurquoise','#D87093':'PaleVioletRed','#FFEFD5':'PapayaWhip','#FFDAB9':'PeachPuff',
|
||||
'#CD853F':'Peru','#FFC0CB':'Pink','#DDA0DD':'Plum','#B0E0E6':'PowderBlue','#800080':'Purple','#FF0000':'Red','#BC8F8F':'RosyBrown','#4169E1':'RoyalBlue',
|
||||
'#8B4513':'SaddleBrown','#FA8072':'Salmon','#F4A460':'SandyBrown','#2E8B57':'SeaGreen','#FFF5EE':'SeaShell','#A0522D':'Sienna','#C0C0C0':'Silver',
|
||||
'#87CEEB':'SkyBlue','#6A5ACD':'SlateBlue','#708090':'SlateGray','#708090':'SlateGrey','#FFFAFA':'Snow','#00FF7F':'SpringGreen',
|
||||
'#4682B4':'SteelBlue','#D2B48C':'Tan','#008080':'Teal','#D8BFD8':'Thistle','#FF6347':'Tomato','#40E0D0':'Turquoise','#EE82EE':'Violet',
|
||||
'#F5DEB3':'Wheat','#FFFFFF':'White','#F5F5F5':'WhiteSmoke','#FFFF00':'Yellow','#9ACD32':'YellowGreen'
|
||||
};
|
||||
|
||||
function init() {
|
||||
var inputColor = convertRGBToHex(tinyMCE.getWindowArg('input_color'));
|
||||
|
||||
if (tinyMCE.isMSIE)
|
||||
tinyMCEPopup.resizeToInnerSize();
|
||||
|
||||
generatePicker();
|
||||
|
||||
if (inputColor) {
|
||||
changeFinalColor(inputColor);
|
||||
|
||||
col = convertHexToRGB(inputColor);
|
||||
|
||||
if (col)
|
||||
updateLight(col.r, col.g, col.b);
|
||||
}
|
||||
}
|
||||
|
||||
function insertAction() {
|
||||
var color = document.getElementById("color").value;
|
||||
|
||||
tinyMCEPopup.execCommand(tinyMCE.getWindowArg('command'), false, color);
|
||||
tinyMCEPopup.close();
|
||||
}
|
||||
|
||||
function showColor(color, name) {
|
||||
if (name)
|
||||
document.getElementById("colorname").innerHTML = name;
|
||||
|
||||
document.getElementById("preview").style.backgroundColor = color;
|
||||
document.getElementById("color").value = color;
|
||||
}
|
||||
|
||||
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);
|
||||
|
|
@ -72,37 +119,122 @@ function convertHexToRGB(col) {
|
|||
g = parseInt(col.substring(2, 4), 16);
|
||||
b = parseInt(col.substring(4, 6), 16);
|
||||
|
||||
return "rgb(" + r + "," + g + "," + b + ")";
|
||||
return {r : r, g : g, b : b};
|
||||
}
|
||||
|
||||
return col;
|
||||
return null;
|
||||
}
|
||||
|
||||
function renderColorMap() {
|
||||
var html = "";
|
||||
var inputColor = convertRGBToHex(tinyMCE.getWindowArg('input_color'));
|
||||
function generatePicker() {
|
||||
var el = document.getElementById('light'), h = '', i;
|
||||
|
||||
html += '<table border="0" cellspacing="1" cellpadding="0">'
|
||||
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;
|
||||
|
||||
h += '<table border="0" cellspacing="1" cellpadding="0">'
|
||||
+ '<tr>';
|
||||
for (var i=0; i<colors.length; i++) {
|
||||
html += '<td bgcolor="' + colors[i] + '">'
|
||||
+ '<a href="javascript:selectColor();" onfocus="showColor(\'' + colors[i] + '\');" onmouseover="showColor(\'' + colors[i] + '\');">'
|
||||
|
||||
for (i=0; i<colors.length; i++) {
|
||||
h += '<td bgcolor="' + colors[i] + '">'
|
||||
+ '<a href="javascript:insertAction();" onfocus="showColor(\'' + colors[i] + '\');" onmouseover="showColor(\'' + colors[i] + '\');">'
|
||||
+ '<img border="0" src="images/spacer.gif" width="10" height="10" title="' + colors[i] + '" alt="' + colors[i] + '" /></a></td>';
|
||||
if ((i+1) % 18 == 0)
|
||||
html += '</tr><tr>';
|
||||
h += '</tr><tr>';
|
||||
}
|
||||
html += '<tr><td colspan="18">'
|
||||
+ '<table width="100%" border="0" cellspacing="0" cellpadding="0">'
|
||||
+ '<tr><td>'
|
||||
+ '<img id="selectedColor" style="background-color:' + tinyMCE.getWindowArg('input_color') + '" border="0" src="images/spacer.gif" width="80" height="16" />'
|
||||
+ '</td><td align="right">'
|
||||
+ '<input id="selectedColorBox" name="selectedColorBox" type="text" size="7" maxlength="7" style="width:65px" value="' + inputColor + '" />'
|
||||
+ '</td></tr>'
|
||||
+ '</table>'
|
||||
+ '<div style="float: left"><input type="button" id="insert" name="insert" value="{$lang_theme_colorpicker_apply}" style="margin-top:3px" onclick="selectColor();"></div>'
|
||||
+ '<div style="float: right"><input type="button" name="cancel" value="{$lang_cancel}" style="margin-top:3px" onclick="tinyMCEPopup.close();" id="cancel" /></div>'
|
||||
+ '</td></tr>'
|
||||
+ '</table>';
|
||||
|
||||
document.write(html);
|
||||
}
|
||||
h += '</table>';
|
||||
|
||||
el.innerHTML = h;
|
||||
el.className = 'generated';
|
||||
}
|
||||
|
||||
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();" onmouseover="showColor(\'' + n + '\',\'' + v + '\');" style="background-color: ' + n + '"><!-- IE --></a>'
|
||||
}
|
||||
|
||||
el.innerHTML = h;
|
||||
el.className = 'generated';
|
||||
}
|
||||
|
||||
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;
|
||||
|
||||
x = e.offsetX ? e.offsetX : (e.target ? e.clientX - e.target.x : 0);
|
||||
y = e.offsetY ? e.offsetY : (e.target ? e.clientY - e.target.y : 0);
|
||||
|
||||
partWidth = document.getElementById('colorpicker').width / 6;
|
||||
partDetail = detail / 2;
|
||||
imHeight = document.getElementById('colorpicker').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;
|
||||
|
||||
document.getElementById('gs' + i).style.backgroundColor = '#'+color;
|
||||
}
|
||||
}
|
||||
|
||||
function changeFinalColor(color) {
|
||||
if (color.indexOf('#') == -1)
|
||||
color = convertRGBToHex(color);
|
||||
|
||||
document.getElementById('preview').style.backgroundColor = color;
|
||||
document.getElementById('color').value = color;
|
||||
}
|
||||
|
||||
window.focus();
|
||||
|
|
@ -50,6 +50,14 @@ function init() {
|
|||
}
|
||||
}
|
||||
|
||||
function checkPrefix(n) {
|
||||
if (Validator.isEmail(n) && !/^\s*mailto:/i.test(n.value) && confirm(tinyMCE.getLang('lang_is_email')))
|
||||
n.value = 'mailto:' + n.value;
|
||||
|
||||
if (/^\s*www./i.test(n.value) && confirm(tinyMCE.getLang('lang_is_external')))
|
||||
n.value = 'http://' + n.value;
|
||||
}
|
||||
|
||||
function insertLink() {
|
||||
var href = document.forms[0].href.value;
|
||||
var target = document.forms[0].target.options[document.forms[0].target.selectedIndex].value;
|
||||
|
|
@ -57,10 +65,6 @@ function insertLink() {
|
|||
var style_class = document.forms[0].styleSelect ? document.forms[0].styleSelect.value : "";
|
||||
var dummy;
|
||||
|
||||
// Make anchors absolute
|
||||
if (href.charAt(0) == '#')
|
||||
href = tinyMCE.settings['document_base_url'] + href;
|
||||
|
||||
if (target == '_self')
|
||||
target = '';
|
||||
|
||||
|
|
|
|||
|
|
@ -3,33 +3,29 @@ function saveContent() {
|
|||
tinyMCE.closeWindow(window);
|
||||
}
|
||||
|
||||
// Fixes some charcode issues
|
||||
function fixContent(html) {
|
||||
/* html = html.replace(new RegExp('<(p|hr|table|tr|td|ol|ul|object|embed|li|blockquote)', 'gi'),'\n<$1');
|
||||
html = html.replace(new RegExp('<\/(p|ol|ul|li|table|tr|td|blockquote|object)>', 'gi'),'</$1>\n');
|
||||
html = tinyMCE.regexpReplace(html, '<br />','<br />\n','gi');
|
||||
html = tinyMCE.regexpReplace(html, '\n\n','\n','gi');*/
|
||||
return html;
|
||||
}
|
||||
|
||||
function onLoadInit() {
|
||||
tinyMCEPopup.resizeToInnerSize();
|
||||
|
||||
document.forms[0].htmlSource.value = fixContent(tinyMCE.getContent(tinyMCE.getWindowArg('editor_id')));
|
||||
// Remove Gecko spellchecking
|
||||
if (tinyMCE.isGecko)
|
||||
document.body.spellcheck = tinyMCE.getParam("gecko_spellcheck");
|
||||
|
||||
document.getElementById('htmlSource').value = tinyMCE.getContent(tinyMCE.getWindowArg('editor_id'));
|
||||
|
||||
resizeInputs();
|
||||
|
||||
if (tinyMCE.getParam("theme_advanced_source_editor_wrap", true)) {
|
||||
setWrap('soft');
|
||||
document.forms[0].wraped.checked = true;
|
||||
document.getElementById('wraped').checked = true;
|
||||
}
|
||||
}
|
||||
|
||||
function setWrap(val) {
|
||||
var s = document.forms[0].htmlSource;
|
||||
var s = document.getElementById('htmlSource');
|
||||
|
||||
s.wrap = val;
|
||||
|
||||
if (tinyMCE.isGecko) {
|
||||
if (tinyMCE.isGecko || tinyMCE.isOpera) {
|
||||
var v = s.value;
|
||||
var n = s.cloneNode(false);
|
||||
n.setAttribute("wrap", val);
|
||||
|
|
@ -48,19 +44,16 @@ function toggleWordWrap(elm) {
|
|||
var wHeight=0, wWidth=0, owHeight=0, owWidth=0;
|
||||
|
||||
function resizeInputs() {
|
||||
var el = document.getElementById('htmlSource');
|
||||
|
||||
if (!tinyMCE.isMSIE) {
|
||||
wHeight = self.innerHeight-80;
|
||||
wWidth = self.innerWidth-16;
|
||||
wHeight = self.innerHeight - 60;
|
||||
wWidth = self.innerWidth - 16;
|
||||
} else {
|
||||
wHeight = document.body.clientHeight - 80;
|
||||
wHeight = document.body.clientHeight - 60;
|
||||
wWidth = document.body.clientWidth - 16;
|
||||
}
|
||||
|
||||
document.forms[0].htmlSource.style.height = Math.abs(wHeight) + 'px';
|
||||
document.forms[0].htmlSource.style.width = Math.abs(wWidth) + 'px';
|
||||
}
|
||||
|
||||
function renderWordWrap() {
|
||||
if (tinyMCE.isMSIE || tinyMCE.isGecko)
|
||||
document.write('<input type="checkbox" name="wraped" id="wraped" onclick="toggleWordWrap(this);" class="wordWrapCode" /><label for="wraped">{$lang_theme_code_wordwrap}</label>');
|
||||
el.style.height = Math.abs(wHeight) + 'px';
|
||||
el.style.width = Math.abs(wWidth) + 'px';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,64 +1,76 @@
|
|||
// CA lang variables by Marc Bria
|
||||
// CA lang variables by Marc Bria and Marc Folch
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
theme_style_select : 'Estils',
|
||||
theme_code_desc : 'Editar codi HTML',
|
||||
theme_code_title : 'Editor codi HTML',
|
||||
theme_code_wordwrap : 'Ajustar salt de línea',
|
||||
theme_sub_desc : 'Subíndex',
|
||||
theme_sup_desc : 'Superíndex',
|
||||
theme_hr_desc : 'Insertar un separador horitzontal',
|
||||
theme_removeformat_desc : 'Eliminar format',
|
||||
theme_custom1_desc : 'La teva descripció',
|
||||
theme_code_desc : 'Edita codi HTML',
|
||||
theme_code_title : 'Editor de codi HTML',
|
||||
theme_code_wordwrap : 'Ajusta el salt de línea',
|
||||
theme_sub_desc : 'Subíndex',
|
||||
theme_sup_desc : 'Superíndex',
|
||||
theme_hr_desc : 'Insereix un separador horitzontal',
|
||||
theme_removeformat_desc : 'Elimina format',
|
||||
theme_custom1_desc : 'La teva descripció',
|
||||
insert_image_border : 'Marc',
|
||||
insert_image_dimensions : 'Dimensions',
|
||||
insert_image_vspace : 'Espai vertical',
|
||||
insert_image_hspace : 'Espai horizontal',
|
||||
insert_image_align : 'Alineament',
|
||||
insert_image_align_default : 'Per defecte',
|
||||
insert_image_align_baseline : 'Línea base',
|
||||
insert_image_align_baseline : 'Línia base',
|
||||
insert_image_align_top : 'Superior',
|
||||
insert_image_align_middle : 'Centre',
|
||||
insert_image_align_bottom : 'Inferior',
|
||||
insert_image_align_texttop : 'Alinear text amunt',
|
||||
insert_image_align_texttop : 'Alinea text amunt',
|
||||
insert_image_align_absmiddle : 'Centrat horitzontal',
|
||||
insert_image_align_absbottom : 'Centrat a baix',
|
||||
insert_image_align_left : 'Esquerra',
|
||||
insert_image_align_right : 'Dreta',
|
||||
insert_image_delta_height : 10,
|
||||
theme_font_size : '-- Mida font --',
|
||||
theme_fontdefault : '-- Font family --',
|
||||
theme_block : '-- Format --',
|
||||
theme_paragraph : 'Paragraph',
|
||||
theme_font_size : '-- Mida lletra --',
|
||||
theme_fontdefault : '-- Tipus lletra --',
|
||||
theme_block : '-- Format text --',
|
||||
theme_paragraph : 'Paràgraf',
|
||||
theme_div : 'Div',
|
||||
theme_address : 'Address',
|
||||
theme_pre : 'Preformatejat',
|
||||
theme_h1 : 'Capçalera 1',
|
||||
theme_h2 : 'Capçalera 2',
|
||||
theme_h3 : 'Capçalera 3',
|
||||
theme_h4 : 'Capçalera 4',
|
||||
theme_h5 : 'Capçalera 5',
|
||||
theme_h6 : 'Capçalera 6',
|
||||
theme_address : 'Adreça',
|
||||
theme_pre : 'Pre-format',
|
||||
theme_h1 : 'Encapçalament 1',
|
||||
theme_h2 : 'Encapçalament 2',
|
||||
theme_h3 : 'Encapçalament 3',
|
||||
theme_h4 : 'Encapçalament 4',
|
||||
theme_h5 : 'Encapçalament 5',
|
||||
theme_h6 : 'Encapçalament 6',
|
||||
theme_colorpicker_title : 'Selecciona el color',
|
||||
theme_colorpicker_apply : 'Apply',
|
||||
theme_forecolor_desc : 'Selecciona color frontal',
|
||||
theme_backcolor_desc : 'Selecciona color de fons',
|
||||
theme_charmap_title : 'Selecciona un caràcter especial',
|
||||
theme_charmap_desc : 'Inserta un caràcter especial',
|
||||
theme_visualaid_desc : 'Alterna líniesguia/elements invisibles',
|
||||
insert_anchor_title : 'Inserta/edita àncora',
|
||||
insert_anchor_name : 'Nom de l´àncora',
|
||||
theme_anchor_desc : 'Inserta/edita un àncora',
|
||||
theme_insert_link_titlefield : 'Títlo',
|
||||
theme_clipboard_msg : 'Copiar/Tallar/Enganxar no és possible amb Mozilla i Firefox.\nVols més informació sobre aquest problema de seguretat?',
|
||||
theme_path : 'Camí',
|
||||
cut_desc : 'Retallar',
|
||||
copy_desc : 'Copiar',
|
||||
paste_desc : 'Enganxar',
|
||||
link_list : 'Llistat d´enllaços',
|
||||
image_list : 'Llistat d´imatges',
|
||||
browse : 'Explorar',
|
||||
image_props_desc : 'Image properties',
|
||||
newdocument_desc : 'New document',
|
||||
newdocument : 'Are you sure you want clear all contents?'
|
||||
theme_colorpicker_apply : 'Aplica',
|
||||
theme_forecolor_desc : 'Color de la lletra',
|
||||
theme_backcolor_desc : 'Color de fons',
|
||||
theme_charmap_title : 'Selecciona un caràcter especial',
|
||||
theme_charmap_desc : 'Insereix un caràcter especial',
|
||||
theme_visualaid_desc : 'Alterna línies guia/elements invisibles',
|
||||
insert_anchor_title : 'Insereix/edita àncora',
|
||||
insert_anchor_name : 'Nom de l'àncora',
|
||||
theme_anchor_desc : 'Insereix/edita àncora',
|
||||
theme_insert_link_titlefield : 'Títol',
|
||||
theme_clipboard_msg : 'Copiar, retallar i enganxar no és possible amb Mozilla i Firefox.\nVols més informació sobre aquesta qëestió?',
|
||||
theme_path : 'Camí',
|
||||
cut_desc : 'Retalla',
|
||||
copy_desc : 'Copia',
|
||||
paste_desc : 'Enganxa',
|
||||
link_list : 'Llistat d'enllaços',
|
||||
image_list : 'Llistat d'imatges',
|
||||
browse : 'Explora',
|
||||
image_props_desc : 'Propietats de la imatge',
|
||||
newdocument_desc : 'Nou document',
|
||||
class_name : 'Classe',
|
||||
newdocument : 'Esteu segurs que voleu netejar tot el contingut?',
|
||||
about_title : 'Quant a TinyMCE',
|
||||
about : 'Quant a',
|
||||
license : 'Llicència',
|
||||
plugins : 'Plugins',
|
||||
plugin : 'Plugin',
|
||||
author : 'Autor',
|
||||
version : 'Versió',
|
||||
loaded_plugins : 'Plugins carregats',
|
||||
help : 'Ajuda',
|
||||
not_set : '-- No ajustat --',
|
||||
close : 'Tanca',
|
||||
toolbar_focus : 'Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - Alt-X'
|
||||
});
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
// DK lang variables contributed by Jan Moelgaard, John Dalsgaard and Bo Frederiksen.
|
||||
// DK lang variables - Transl.:Jan Moelgaard, Bo Frederiksen, John Dalsgaard - Corr.: Ronny Buelund
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
theme_style_select : '-- Styles --',
|
||||
theme_style_select : '-- Stilarter --',
|
||||
theme_code_desc : 'Rediger HTML kode',
|
||||
theme_code_title : 'HTML Kodeeditor',
|
||||
theme_code_wordwrap : 'Ombrydning',
|
||||
|
|
@ -18,8 +18,8 @@ insert_image_align : 'Justering',
|
|||
insert_image_align_default : 'Standard',
|
||||
insert_image_align_baseline : 'Bundlinje',
|
||||
insert_image_align_top : 'Top',
|
||||
insert_image_align_middle : 'Midt i',
|
||||
insert_image_align_bottom : 'I bunden',
|
||||
insert_image_align_middle : 'Midt',
|
||||
insert_image_align_bottom : 'Bund',
|
||||
insert_image_align_texttop : 'I toppen af teksten',
|
||||
insert_image_align_absmiddle : 'Absolut midte',
|
||||
insert_image_align_absbottom : 'Absolut bund',
|
||||
|
|
@ -38,6 +38,11 @@ theme_h3 : 'Overskrift 3',
|
|||
theme_h4 : 'Overskrift 4',
|
||||
theme_h5 : 'Overskrift 5',
|
||||
theme_h6 : 'Overskrift 6',
|
||||
theme_blockquote : 'Firkantklamme',
|
||||
theme_code : 'Kode',
|
||||
theme_samp : 'Kodeeksempel',
|
||||
theme_dt : 'Definitionsterm ',
|
||||
theme_dd : 'Definitionsbeskrivelse',
|
||||
theme_colorpicker_title : 'Vælg en farve',
|
||||
theme_colorpicker_apply : 'Anvend',
|
||||
theme_forecolor_desc : 'Vælg forgrundsfarve',
|
||||
|
|
@ -72,5 +77,15 @@ loaded_plugins : 'Indlæste plugins',
|
|||
help : 'Hjælp',
|
||||
not_set : '-- Ikke valgt --',
|
||||
close : 'Luk',
|
||||
toolbar_focus : 'Hop til værktøjslinje - Alt+Q, Hop til editor - Alt-Z, Hop til element sti - Alt-X'
|
||||
});
|
||||
toolbar_focus : 'Hop til værktøjslinje - Alt+Q, Hop til editor - Alt-Z, Hop til element sti - Alt-X',
|
||||
invalid_data : 'FEJL: Ugyldige værdier angivet, disse er markerede med rød.',
|
||||
more_colors : 'Flere farver',
|
||||
color_picker_tab : 'Vælger',
|
||||
color_picker : 'Farvevælger',
|
||||
web_colors_tab : 'Web sikker',
|
||||
web_colors : 'Web sikre farver',
|
||||
named_colors_tab : 'Navngivet',
|
||||
named_colors : 'Navngivne farver',
|
||||
color : 'Farve:',
|
||||
color_name : 'Navn:'
|
||||
});
|
||||
|
|
@ -2,12 +2,12 @@
|
|||
|
||||
tinyMCE.addToLang('',{
|
||||
theme_style_select : '-- CSS-Stile --',
|
||||
theme_code_desc : 'HTML-Quelltext editieren',
|
||||
theme_code_desc : 'HTML-Quelltext bearbeiten',
|
||||
theme_code_title : 'HTML-Quelltexteditor',
|
||||
theme_code_wordwrap : 'Zeilenumbruch',
|
||||
theme_sub_desc : 'Tiefergestellt',
|
||||
theme_sup_desc : 'Hochgestellt',
|
||||
theme_hr_desc : 'Horizontalen Balken einfügen',
|
||||
theme_hr_desc : 'Horizontale Linie einfügen',
|
||||
theme_removeformat_desc : 'Formatierung löschen',
|
||||
theme_custom1_desc : 'Eigene Beschreibung',
|
||||
insert_image_border : 'Rahmen',
|
||||
|
|
@ -15,21 +15,21 @@ insert_image_dimensions : 'Größe',
|
|||
insert_image_vspace : 'Vertikaler Raum',
|
||||
insert_image_hspace : 'Horizontaler Raum',
|
||||
insert_image_align : 'Ausrichtung',
|
||||
insert_image_align_default : '-- Nicht festgelegt --',
|
||||
insert_image_align_default : '- Nicht gesetzt -',
|
||||
insert_image_align_baseline : 'Grundlinie',
|
||||
insert_image_align_top : 'Oben',
|
||||
insert_image_align_middle : 'Mitte',
|
||||
insert_image_align_bottom : 'Unten',
|
||||
insert_image_align_texttop : 'Mit dem Text',
|
||||
insert_image_align_absmiddle : 'Absolute mittig',
|
||||
insert_image_align_absmiddle : 'Absolut mittig',
|
||||
insert_image_align_absbottom : 'Absolut unten',
|
||||
insert_image_align_left : 'Links',
|
||||
insert_image_align_right : 'Rechts',
|
||||
theme_font_size : '-- Schriftgröße --',
|
||||
theme_fontdefault : '-- Schriftfamilie --',
|
||||
theme_fontdefault : '-- Schriftart --',
|
||||
theme_block : '-- Format --',
|
||||
theme_paragraph : 'Absatz',
|
||||
theme_div : 'Block',
|
||||
theme_div : 'Div',
|
||||
theme_address : 'Adresse',
|
||||
theme_pre : 'Vorformatiert',
|
||||
theme_h1 : 'Überschrift 1',
|
||||
|
|
@ -38,6 +38,11 @@ theme_h3 : 'Überschrift 3',
|
|||
theme_h4 : 'Überschrift 4',
|
||||
theme_h5 : 'Überschrift 5',
|
||||
theme_h6 : 'Überschrift 6',
|
||||
theme_blockquote : 'Blockzitat',
|
||||
theme_code : 'Code',
|
||||
theme_samp : 'Code Beispiel',
|
||||
theme_dt : 'Definition Begriff ',
|
||||
theme_dd : 'Definition Beschreibung',
|
||||
theme_colorpicker_title : 'Farbe auswählen',
|
||||
theme_colorpicker_apply : 'Farbe festlegen',
|
||||
theme_forecolor_desc : 'Schriftfarbe auswählen',
|
||||
|
|
@ -70,8 +75,8 @@ author : 'Autor',
|
|||
version : 'Version',
|
||||
loaded_plugins : 'Geladene Plugins',
|
||||
help : 'Hilfe',
|
||||
not_set : '-- Nicht festgelegt --',
|
||||
not_set : '- Nicht gesetzt -',
|
||||
close : 'Schließen',
|
||||
toolbar_focus : 'Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - Alt-X',
|
||||
insert_link_delta_width : 40
|
||||
toolbar_focus : 'Zu den Tool Buttons springen - Alt+Q, Zum Editor springen - Alt-Z, Zum Elementpfad springen - Alt-X',
|
||||
insert_link_delta_width : 50
|
||||
});
|
||||
|
|
|
|||
|
|
@ -1,64 +1,65 @@
|
|||
// Greek lang variables by Jacaranda Bill
|
||||
// Revised by Dimitris Giannitsaros / MediSign SA
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
theme_style_select : 'ÈÝìáôá',
|
||||
theme_code_desc : 'Åðåîåñãáóßá HTML êþäéêá',
|
||||
theme_code_title : 'ÅðåîåñãáóôÞò HTML',
|
||||
theme_code_desc : 'Åðåîåñãáóßá HTML êþäéêá',
|
||||
theme_code_title : 'ÅðåîåñãáóôÞò HTML',
|
||||
theme_code_wordwrap : 'Word wrap',
|
||||
theme_sub_desc : 'Äåßêôçò',
|
||||
theme_sup_desc : 'ÅêèÝôçò',
|
||||
theme_hr_desc : 'ÅéóáãùãÞ ïñéæüíôéáò ãñáììÞò',
|
||||
theme_removeformat_desc : 'ÁðáëïéöÞ ìïñöïðïßçóçò',
|
||||
theme_custom1_desc : 'ÐåñéãñáöÞ',
|
||||
insert_image_border : 'Ðåñßãñáììá',
|
||||
insert_image_dimensions : 'ÄéáóôÜóåéò',
|
||||
insert_image_vspace : 'ÊÜè. ðåñéèþñéï',
|
||||
insert_image_hspace : 'Ïñéæ. ðåñéèþñéï',
|
||||
theme_sub_desc : 'Äåßêôçò',
|
||||
theme_sup_desc : 'ÅêèÝôçò',
|
||||
theme_hr_desc : 'ÅéóáãùãÞ ïñéæüíôéáò ãñáììÞò',
|
||||
theme_removeformat_desc : 'ÁðáëïéöÞ ìïñöïðïßçóçò',
|
||||
theme_custom1_desc : 'ÐåñéãñáöÞ',
|
||||
insert_image_border : 'Ðåñßãñáììá',
|
||||
insert_image_dimensions : 'ÄéáóôÜóåéò',
|
||||
insert_image_vspace : 'ÊÜè. ðåñéèþñéï',
|
||||
insert_image_hspace : 'Ïñéæ. ðåñéèþñéï',
|
||||
insert_image_align : 'Óôïß÷éóç',
|
||||
insert_image_align_default : 'ÐñïêáèïñéóìÝíç',
|
||||
insert_image_align_baseline : 'Óå åõèõãñÜììéóç ìå ôï êåßìåíï',
|
||||
insert_image_align_baseline : 'Óå åõèõãñÜììéóç ìå ôï êåßìåíï',
|
||||
insert_image_align_top : 'ÐÜíù',
|
||||
insert_image_align_middle : 'Óôï êÝíôñï',
|
||||
insert_image_align_bottom : 'ÊÜôù',
|
||||
insert_image_align_texttop : 'Ôï êåßìåíï ðÜíù',
|
||||
insert_image_align_texttop : 'Ôï êåßìåíï ðÜíù',
|
||||
insert_image_align_absmiddle : 'Áðüëõôá óôï êÝíôñï',
|
||||
insert_image_align_absbottom : 'Áðüëõôá êÜôù',
|
||||
insert_image_align_left : 'ÁñéóôåñÜ',
|
||||
insert_image_align_right : 'ÄåîéÜ',
|
||||
theme_font_size : '-- Font size --',
|
||||
theme_fontdefault : '-- Font family --',
|
||||
theme_block : '-- Format --',
|
||||
theme_paragraph : 'ÐáñÜãñáöïò',
|
||||
insert_image_align_left : 'ÁñéóôåñÜ',
|
||||
insert_image_align_right : 'ÄåîéÜ',
|
||||
theme_font_size : '-- ÌÝãåèïò ãñáììáôïóåéñÜò --',
|
||||
theme_fontdefault : '-- Åßäïò ãñáììáôïóåéñÜò --',
|
||||
theme_block : '-- ÖïñìÜ --',
|
||||
theme_paragraph : 'ÐáñÜãñáöïò',
|
||||
theme_div : 'Div',
|
||||
theme_address : 'Äéåýèõíóç',
|
||||
theme_pre : 'Preformatted',
|
||||
theme_h1 : 'Åðéêåöáëßäá 1',
|
||||
theme_h2 : 'Åðéêåöáëßäá 2',
|
||||
theme_h3 : 'Åðéêåöáëßäá 3',
|
||||
theme_h4 : 'Åðéêåöáëßäá 4',
|
||||
theme_h5 : 'Åðéêåöáëßäá 5',
|
||||
theme_h6 : 'Åðéêåöáëßäá 6',
|
||||
theme_address : 'Äéåýèõíóç',
|
||||
theme_pre : 'Áêñéâþò',
|
||||
theme_h1 : 'Åðéêåöáëßäá 1',
|
||||
theme_h2 : 'Åðéêåöáëßäá 2',
|
||||
theme_h3 : 'Åðéêåöáëßäá 3',
|
||||
theme_h4 : 'Åðéêåöáëßäá 4',
|
||||
theme_h5 : 'Åðéêåöáëßäá 5',
|
||||
theme_h6 : 'Åðéêåöáëßäá 6',
|
||||
theme_colorpicker_title : '×ñþìáôá',
|
||||
theme_colorpicker_apply : 'ÅöáñìïãÞ',
|
||||
theme_forecolor_desc : 'ÅðéëïãÞ ÷ñþìáôïò ãñáììáôïóåéñÜò',
|
||||
theme_backcolor_desc : 'Select background color',
|
||||
theme_charmap_title : 'ÅðéëïãÞ åéäéêïý ÷áñáêôÞñá',
|
||||
theme_charmap_desc : 'ÅéóáãùãÞ åéäéêïý ÷áñáêôÞñá',
|
||||
theme_visualaid_desc : 'ÅìöÜíéóç/Áðüêñõøç ãñáììþí',
|
||||
insert_anchor_title : 'ÅéóáãùãÞ/Äéüñèùóç Üãêõñáò',
|
||||
theme_colorpicker_apply : 'ÅöáñìïãÞ',
|
||||
theme_forecolor_desc : 'ÅðéëïãÞ ÷ñþìáôïò ãñáììáôïóåéñÜò',
|
||||
theme_backcolor_desc : 'ÅðéëïãÞ ÷ñþìáôïò background',
|
||||
theme_charmap_title : 'ÅðéëïãÞ åéäéêïý ÷áñáêôÞñá',
|
||||
theme_charmap_desc : 'ÅéóáãùãÞ åéäéêïý ÷áñáêôÞñá',
|
||||
theme_visualaid_desc : 'ÅìöÜíéóç/Áðüêñõøç ãñáììþí',
|
||||
insert_anchor_title : 'ÅéóáãùãÞ/Äéüñèùóç Üãêõñáò',
|
||||
insert_anchor_name : 'Ïíïìáóßá Üãêõñáò',
|
||||
theme_anchor_desc : 'ÅéóáãùãÞ/Äéüñèùóç Üãêõñáò',
|
||||
theme_anchor_desc : 'ÅéóáãùãÞ/Äéüñèùóç Üãêõñáò',
|
||||
theme_insert_link_titlefield : 'Ôßôëïò',
|
||||
theme_clipboard_msg : 'Copy/Cut/Paste is not available in Mozilla and Firefox.\nDo you want more information about this issue?',
|
||||
theme_path : 'Path',
|
||||
cut_desc : 'Cut',
|
||||
copy_desc : 'Copy',
|
||||
paste_desc : 'Paste',
|
||||
link_list : 'Link list',
|
||||
image_list : 'Image list',
|
||||
browse : 'Browse',
|
||||
image_props_desc : 'Image properties',
|
||||
newdocument_desc : 'New document',
|
||||
class_name : 'ÊëÜóç',
|
||||
newdocument : 'Are you sure you want clear all contents?'
|
||||
theme_clipboard_msg : 'Ç ÁíôéãñáöÞ/ÁðïêïðÞ/Åðéêüëëçóç äåí åßíáé äéáèÝóéìåò óôï Mozilla êáé óôï Firefox.\nÈÝëåôå ðëçñïöïñßåò ãéá áõôü ôï èÝìá;',
|
||||
theme_path : 'ÄéáäñïìÞ',
|
||||
cut_desc : 'ÁðïêïðÞ',
|
||||
copy_desc : 'ÁíôéãñáöÞ',
|
||||
paste_desc : 'Åðéêüëëçóç',
|
||||
link_list : 'Ëßóôá óõíäÝóìùí',
|
||||
image_list : 'Ëßóôá åéêüíùí',
|
||||
browse : 'ÐåñéÞãçóç',
|
||||
image_props_desc : 'Éäéüôçôåò åéêüíáò',
|
||||
newdocument_desc : 'ÍÝï Ýããñáöï',
|
||||
class_name : 'ÊëÜóç',
|
||||
newdocument : 'ÈÝëåôå óßãïõñá íá êáèáñßóåôå üëá ôá ðåñéå÷üìåíá;'
|
||||
});
|
||||
|
|
|
|||
|
|
@ -38,6 +38,11 @@ theme_h3 : 'Heading 3',
|
|||
theme_h4 : 'Heading 4',
|
||||
theme_h5 : 'Heading 5',
|
||||
theme_h6 : 'Heading 6',
|
||||
theme_blockquote : 'Blockquote',
|
||||
theme_code : 'Code',
|
||||
theme_samp : 'Code sample',
|
||||
theme_dt : 'Definition term ',
|
||||
theme_dd : 'Definition description',
|
||||
theme_colorpicker_title : 'Select a color',
|
||||
theme_colorpicker_apply : 'Apply',
|
||||
theme_forecolor_desc : 'Select text color',
|
||||
|
|
@ -72,5 +77,17 @@ loaded_plugins : 'Loaded plugins',
|
|||
help : 'Help',
|
||||
not_set : '-- Not set --',
|
||||
close : 'Close',
|
||||
toolbar_focus : 'Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - Alt-X'
|
||||
toolbar_focus : 'Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - Alt-X',
|
||||
invalid_data : 'Error: Invalid values entered, these are marked in red.',
|
||||
more_colors : 'More colors',
|
||||
color_picker_tab : 'Picker',
|
||||
color_picker : 'Color picker',
|
||||
web_colors_tab : 'Palette',
|
||||
web_colors : 'Palette colors',
|
||||
named_colors_tab : 'Named',
|
||||
named_colors : 'Named colors',
|
||||
color : 'Color:',
|
||||
color_name : 'Name:',
|
||||
is_email : 'The URL you entered seems to be an email address, do you want to add the required mailto: prefix?',
|
||||
is_external : 'The URL you entered seems to external link, do you want to add the required http:// prefix?'
|
||||
});
|
||||
|
|
|
|||
|
|
@ -4,25 +4,26 @@
|
|||
* 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
|
||||
* Eneko Castresana Vara
|
||||
* Last Updated : July 14, 2006
|
||||
* TinyMCE Version : 2.0.6.1
|
||||
*/
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
theme_style_select : '-- Estilos --',
|
||||
theme_code_desc : 'Editar código HTML',
|
||||
theme_code_title : 'Editor código HTML',
|
||||
theme_code_wordwrap : 'Ajuste de línea',
|
||||
theme_sub_desc : 'Subíndice',
|
||||
theme_sup_desc : 'Superíndice',
|
||||
theme_code_desc : 'Editar código HTML',
|
||||
theme_code_title : 'Editor código HTML',
|
||||
theme_code_wordwrap : 'Ajuste de línea',
|
||||
theme_sub_desc : 'Subíndice',
|
||||
theme_sup_desc : 'Superíndice',
|
||||
theme_hr_desc : 'Insertar una barra horizontal',
|
||||
theme_removeformat_desc : 'Quitar formato',
|
||||
theme_custom1_desc : 'Tu descripción aquí',
|
||||
theme_custom1_desc : 'Tu descripción aquí',
|
||||
insert_image_border : 'Borde',
|
||||
insert_image_dimensions : 'Dimensiones',
|
||||
insert_image_vspace : 'Espacio vertical',
|
||||
insert_image_hspace : 'Espacio horizontal',
|
||||
insert_image_align : 'Alineación',
|
||||
insert_image_align : 'Alineación',
|
||||
insert_image_align_default : '-- Por defecto --',
|
||||
insert_image_align_baseline : 'Linea base',
|
||||
insert_image_align_top : 'Arriba',
|
||||
|
|
@ -33,65 +34,65 @@ insert_image_align_absmiddle : 'Centrado total',
|
|||
insert_image_align_absbottom : 'Abajo total',
|
||||
insert_image_align_left : 'Izquierda',
|
||||
insert_image_align_right : 'Derecha',
|
||||
theme_font_size : '-- Tamaño del texto --',
|
||||
theme_font_size : '-- Tamaño del texto --',
|
||||
theme_fontdefault : '-- Tipo de fuente --',
|
||||
theme_block : '-- Formato del texto --',
|
||||
theme_paragraph : 'Párrafo',
|
||||
theme_paragraph : 'Párrafo',
|
||||
theme_div : 'Capa',
|
||||
theme_address : 'Dirección',
|
||||
theme_address : 'Dirección',
|
||||
theme_pre : 'Preformateado',
|
||||
theme_h1 : 'Título 1',
|
||||
theme_h2 : 'Título 2',
|
||||
theme_h3 : 'Título 3',
|
||||
theme_h4 : 'Título 4',
|
||||
theme_h5 : 'Título 5',
|
||||
theme_h6 : 'Título 6',
|
||||
theme_h1 : 'Título 1',
|
||||
theme_h2 : 'Título 2',
|
||||
theme_h3 : 'Título 3',
|
||||
theme_h4 : 'Título 4',
|
||||
theme_h5 : 'Título 5',
|
||||
theme_h6 : 'Título 6',
|
||||
theme_colorpicker_title : 'Selecciona un color',
|
||||
theme_colorpicker_apply : 'Aplicar',
|
||||
theme_forecolor_desc : 'Selecciona un color para el texto',
|
||||
theme_backcolor_desc : 'Selecciona un color de fondo',
|
||||
theme_charmap_title : 'Selecciona un carácter especial',
|
||||
theme_charmap_desc : 'Inserta un carácter especial',
|
||||
theme_charmap_title : 'Selecciona un carácter especial',
|
||||
theme_charmap_desc : 'Inserta un carácter especial',
|
||||
theme_charmap_all_title : 'Todos',
|
||||
theme_charmap_all_desc : 'Todos los caracteres',
|
||||
theme_charmap_alpha_title : 'Alfabéticos',
|
||||
theme_charmap_alpha_desc : 'Caracteres alfabéticos',
|
||||
theme_charmap_alpha_title : 'Alfabéticos',
|
||||
theme_charmap_alpha_desc : 'Caracteres alfabéticos',
|
||||
theme_charmap_arrows_title : 'Flechas',
|
||||
theme_charmap_arrows_desc : 'Caracteres de flechas',
|
||||
theme_charmap_greek_title : 'Griegos',
|
||||
theme_charmap_greek_desc : 'Caracteres Griegos',
|
||||
theme_charmap_math_title : 'Mathemáticos',
|
||||
theme_charmap_math_desc : 'Caracteres mathemáticos',
|
||||
theme_charmap_misc_title : 'Misceláneos',
|
||||
theme_charmap_misc_desc : 'Caracteres misceláneos',
|
||||
theme_charmap_math_title : 'Mathemáticos',
|
||||
theme_charmap_math_desc : 'Caracteres mathemáticos',
|
||||
theme_charmap_misc_title : 'Misceláneos',
|
||||
theme_charmap_misc_desc : 'Caracteres misceláneos',
|
||||
theme_charmap_money_title : 'Monedas',
|
||||
theme_charmap_money_desc : 'Caracteres de monedas',
|
||||
theme_charmap_quotaion_title : 'Comillas',
|
||||
theme_charmap_quotaion_desc : 'Caracteres de comillas',
|
||||
theme_visualaid_desc : 'Cambiar las líneas de ayuda por elementos invisibles',
|
||||
theme_visualaid_desc : 'Cambiar las líneas de ayuda por elementos invisibles',
|
||||
insert_anchor_title : 'Insertar/editar ancla',
|
||||
insert_anchor_name : 'Nombre del ancla',
|
||||
theme_anchor_desc : 'Insertar/editar ancla',
|
||||
theme_insert_link_titlefield : 'Título',
|
||||
theme_clipboard_msg : 'No se pueden utilizar los comandos Copiar / Cortar / Pegar en Mozilla y en Firefox.\r\nUse el teclado Copiar (Ctrl+C) / Cortar (Ctrl+X) / Pegar (Ctrl+V)\r\n¿Quieres obtener más información?',
|
||||
theme_insert_link_titlefield : 'Título',
|
||||
theme_clipboard_msg : 'No se pueden utilizar los comandos Copiar / Cortar / Pegar en Mozilla y en Firefox.\r\nUse el teclado Copiar (Ctrl+C) / Cortar (Ctrl+X) / Pegar (Ctrl+V)\r\n¿Quieres obtener más información?',
|
||||
theme_path : 'Ruta',
|
||||
cut_desc : 'Cortar (Ctrl+X)',
|
||||
copy_desc : 'Copiar (Ctrl+C)',
|
||||
paste_desc : 'Pegar (Ctrl+V)',
|
||||
link_list : 'Lista de enlaces',
|
||||
image_list : 'Lista de imágenes',
|
||||
image_list : 'Lista de imágenes',
|
||||
browse : 'Navegar',
|
||||
image_props_desc : 'Propiedades de la imagen',
|
||||
newdocument_desc : 'Nuevo documento',
|
||||
class_name : 'Clase',
|
||||
newdocument : '¿Estás seguro de que quieres borrar todo el contenido?',
|
||||
newdocument : '¿Estás seguro de que quieres borrar todo el contenido?',
|
||||
about_title : 'Acerca de TinyMCE',
|
||||
about : 'Acerca',
|
||||
license : 'Licencia',
|
||||
plugins : 'Plugins',
|
||||
plugin : 'Plugin',
|
||||
author : 'Autor',
|
||||
version : 'Versión',
|
||||
version : 'Versión',
|
||||
loaded_plugins : 'Plugins cargados',
|
||||
help : 'Ayuda',
|
||||
not_set : '-- Por defecto --',
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
// FR lang variables
|
||||
// Modified by Motte, last updated 2006-03-23
|
||||
// Modified by shadow walker, last updated 2007-03-16, based on the work of Motte
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
theme_style_select : '-- Style --',
|
||||
|
|
@ -39,12 +39,17 @@ theme_h3 : 'Titre de niveau 3',
|
|||
theme_h4 : 'Titre de niveau 4',
|
||||
theme_h5 : 'Titre de niveau 5',
|
||||
theme_h6 : 'Titre de niveau 6',
|
||||
theme_blockquote : 'Citation',
|
||||
theme_code : 'Code',
|
||||
theme_samp : 'Exemple de code',
|
||||
theme_dt : 'Definition du therme ',
|
||||
theme_dd : 'Definition de la description',
|
||||
theme_colorpicker_title : 'Choisir une couleur',
|
||||
theme_colorpicker_apply : 'Appliquer',
|
||||
theme_forecolor_desc : 'Couleur du texte',
|
||||
theme_backcolor_desc : 'Couleur d\'arrière-plan',
|
||||
theme_charmap_title : 'Sélectionner un charactère spécial',
|
||||
theme_charmap_desc : 'Insérer un charactère spécial',
|
||||
theme_charmap_title : 'Sélectionner un caractère spécial',
|
||||
theme_charmap_desc : 'Insérer un caractère spécial',
|
||||
theme_visualaid_desc : 'Activer/Désactiver les lignes guides et les éléments invisibles',
|
||||
insert_anchor_title : 'Gestionnaire d\'ancre',
|
||||
insert_anchor_name : 'Nom de l\'ancre',
|
||||
|
|
@ -73,5 +78,15 @@ loaded_plugins : 'Extensions installées',
|
|||
help : 'Aide',
|
||||
not_set : '-- Indéfini --',
|
||||
close : 'Fermer',
|
||||
toolbar_focus : 'Atteindre la barre d\'outils (Alt+Q), Atteindre l\'éditeur (Alt-Z), Atteindre l\'élément en cours (Alt-X)'
|
||||
toolbar_focus : 'Atteindre la barre d\'outils (Alt+Q), Atteindre l\'éditeur (Alt-Z), Atteindre l\'élément en cours (Alt-X)',
|
||||
invalid_data : 'Erreur: La valeur en rouge est incorrecte.',
|
||||
more_colors : 'Plus de couleurs',
|
||||
color_picker_tab : 'Pipette',
|
||||
color_picker : 'Palette de couleur',
|
||||
web_colors_tab : 'Sécurisé pour le web',
|
||||
web_colors : 'Couleur sécurisée pour le web',
|
||||
named_colors_tab : 'Nom',
|
||||
named_colors : 'Nom de la couleur',
|
||||
color : 'Couleur:',
|
||||
color_name : 'Nom:'
|
||||
});
|
||||
|
|
|
|||
|
|
@ -1,82 +1,98 @@
|
|||
// IT lang variables
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
theme_style_select : '-- Stili --',
|
||||
theme_code_desc : 'Modifica codice HTML',
|
||||
theme_code_title : 'Editor HTML',
|
||||
theme_code_wordwrap : 'A capo',
|
||||
theme_sub_desc : 'Apice',
|
||||
theme_sup_desc : 'Pedice',
|
||||
theme_hr_desc : 'Inserisci riga orizzontale',
|
||||
theme_removeformat_desc : 'Rimuovi formattazione',
|
||||
theme_custom1_desc : 'La tua descrizione personalizzata',
|
||||
insert_image_border : 'Bordo',
|
||||
insert_image_dimensions : 'Dimensioni',
|
||||
insert_image_vspace : 'Spaziatura verticale',
|
||||
insert_image_hspace : 'Spaziatura orizzontale',
|
||||
insert_image_align : 'Allineamento',
|
||||
insert_image_align_default : '-- Non impostato --',
|
||||
insert_image_align_baseline : 'Alla base',
|
||||
insert_image_align_top : 'In alto',
|
||||
insert_image_align_middle : 'In mezzo',
|
||||
insert_image_align_bottom : 'In basso',
|
||||
insert_image_align_texttop : 'In alto col testo',
|
||||
insert_image_align_absmiddle : 'In mezzo (assoluto)',
|
||||
insert_image_align_absbottom : 'In basso (assoluto)',
|
||||
insert_image_align_left : 'A sinistra',
|
||||
insert_image_align_right : 'A destra',
|
||||
theme_font_size : '-- Dimensione --',
|
||||
theme_fontdefault : '-- Font --',
|
||||
theme_block : '-- Formato --',
|
||||
theme_paragraph : 'Paragrafo',
|
||||
theme_div : 'Div',
|
||||
theme_address : 'Indirizzo',
|
||||
theme_pre : 'Preformattato',
|
||||
theme_h1 : 'Intestazione 1',
|
||||
theme_h2 : 'Intestazione 2',
|
||||
theme_h3 : 'Intestazione 3',
|
||||
theme_h4 : 'Intestazione 4',
|
||||
theme_h5 : 'Intestazione 5',
|
||||
theme_h6 : 'Intestazione 6',
|
||||
theme_blockquote : 'Blockquote',
|
||||
theme_code : 'Codice',
|
||||
theme_samp : 'Esempio di codice',
|
||||
theme_dt : 'Definizione',
|
||||
theme_dd : 'Descrizione di definizione',
|
||||
theme_colorpicker_title : 'Seleziona un colore',
|
||||
theme_colorpicker_apply : 'Applica',
|
||||
theme_forecolor_desc : 'Seleziona il colore del testo',
|
||||
theme_backcolor_desc : 'Seleziona il colore di sfondo',
|
||||
theme_charmap_title : 'Seleziona un carattere personalizzato',
|
||||
theme_charmap_desc : 'Inserisci un carattere personalizzato',
|
||||
theme_visualaid_desc : 'Abilita o disabilita guide visuali',
|
||||
insert_anchor_title : 'Inserisci o modifica un\'ancora',
|
||||
insert_anchor_name : 'Nome dell\'ancora',
|
||||
theme_anchor_desc : 'Inserisci o modifica l\'ancora',
|
||||
theme_insert_link_titlefield : 'Titolo',
|
||||
theme_clipboard_msg : 'Le operazioni di taglia, copia e incolla non sono disponibili in Firefox. Vuoi ricevere ulteriori informazioni al riguardo?',
|
||||
theme_path : 'Percorso',
|
||||
cut_desc : 'Taglia',
|
||||
copy_desc : 'Copia',
|
||||
paste_desc : 'Incolla',
|
||||
link_list : 'Lista di link',
|
||||
image_list : 'Lista di immagini',
|
||||
browse : 'Sfoglia',
|
||||
image_props_desc : 'Proprietà dell\'immagine',
|
||||
newdocument_desc : 'Nuovo documento',
|
||||
class_name : 'Classe',
|
||||
newdocument : 'Sei sicuro di voler cancellare tutto?',
|
||||
about_title : 'Informazioni su TinyMCE',
|
||||
about : 'Informazioni',
|
||||
license : 'Licenza',
|
||||
plugins : 'Plugin',
|
||||
plugin : 'Plugin',
|
||||
author : 'Autore',
|
||||
version : 'Versione',
|
||||
loaded_plugins : 'Plugin caricati',
|
||||
help : 'Aiuto',
|
||||
not_set : '-- Non impostato --',
|
||||
close : 'Chiudi',
|
||||
toolbar_focus : 'Passa ai bottoni - Alt+Q, Passa all\'editor - Alt-Z, Passa al percorso - Alt-X',
|
||||
theme_advanced_anchor_delta_width : 25
|
||||
});
|
||||
/**
|
||||
* IT lang variables
|
||||
*
|
||||
* Author : Luciano Vernaschi <luciano@virgilio.it>
|
||||
* Last Updated : Mar. 1st, 2007
|
||||
* TinyMCE Version : 2.1.0
|
||||
*/
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
theme_style_select : '-- Stili --',
|
||||
theme_code_desc : 'Modifica codice HTML',
|
||||
theme_code_title : 'Editor HTML',
|
||||
theme_code_wordwrap : 'A capo',
|
||||
theme_sub_desc : 'Apice',
|
||||
theme_sup_desc : 'Pedice',
|
||||
theme_hr_desc : 'Inserisci riga orizzontale',
|
||||
theme_removeformat_desc : 'Rimuovi formattazione',
|
||||
theme_custom1_desc : 'La tua descrizione personalizzata',
|
||||
insert_image_border : 'Bordo',
|
||||
insert_image_dimensions : 'Dimensioni',
|
||||
insert_image_vspace : 'Spaziatura verticale',
|
||||
insert_image_hspace : 'Spaziatura orizzontale',
|
||||
insert_image_align : 'Allineamento',
|
||||
insert_image_align_default : '-- Non impostato --',
|
||||
insert_image_align_baseline : 'Alla base',
|
||||
insert_image_align_top : 'In alto',
|
||||
insert_image_align_middle : 'In mezzo',
|
||||
insert_image_align_bottom : 'In basso',
|
||||
insert_image_align_texttop : 'In alto col testo',
|
||||
insert_image_align_absmiddle : 'In mezzo (assoluto)',
|
||||
insert_image_align_absbottom : 'In basso (assoluto)',
|
||||
insert_image_align_left : 'A sinistra',
|
||||
insert_image_align_right : 'A destra',
|
||||
theme_font_size : '-- Dimensione --',
|
||||
theme_fontdefault : '-- Font --',
|
||||
theme_block : '-- Formato --',
|
||||
theme_paragraph : 'Paragrafo',
|
||||
theme_div : 'Div',
|
||||
theme_address : 'Indirizzo',
|
||||
theme_pre : 'Preformattato',
|
||||
theme_h1 : 'Intestazione 1',
|
||||
theme_h2 : 'Intestazione 2',
|
||||
theme_h3 : 'Intestazione 3',
|
||||
theme_h4 : 'Intestazione 4',
|
||||
theme_h5 : 'Intestazione 5',
|
||||
theme_h6 : 'Intestazione 6',
|
||||
theme_blockquote : 'Blockquote',
|
||||
theme_code : 'Codice',
|
||||
theme_samp : 'Esempio di codice',
|
||||
theme_dt : 'Definizione',
|
||||
theme_dd : 'Descrizione di definizione',
|
||||
theme_colorpicker_title : 'Seleziona un colore',
|
||||
theme_colorpicker_apply : 'Applica',
|
||||
theme_forecolor_desc : 'Seleziona il colore del testo',
|
||||
theme_backcolor_desc : 'Seleziona il colore di sfondo',
|
||||
theme_charmap_title : 'Seleziona un carattere personalizzato',
|
||||
theme_charmap_desc : 'Inserisci un carattere personalizzato',
|
||||
theme_visualaid_desc : 'Abilita o disabilita guide visuali',
|
||||
insert_anchor_title : 'Inserisci o modifica un\'ancora',
|
||||
insert_anchor_name : 'Nome dell\'ancora',
|
||||
theme_anchor_desc : 'Inserisci o modifica l\'ancora',
|
||||
theme_insert_link_titlefield : 'Titolo',
|
||||
theme_clipboard_msg : 'Le operazioni di taglia, copia e incolla non sono disponibili in Firefox. Vuoi ricevere ulteriori informazioni al riguardo?',
|
||||
theme_path : 'Percorso',
|
||||
cut_desc : 'Taglia',
|
||||
copy_desc : 'Copia',
|
||||
paste_desc : 'Incolla',
|
||||
link_list : 'Lista di link',
|
||||
image_list : 'Lista di immagini',
|
||||
browse : 'Sfoglia',
|
||||
image_props_desc : 'Proprietà dell\'immagine',
|
||||
newdocument_desc : 'Nuovo documento',
|
||||
class_name : 'Classe',
|
||||
newdocument : 'Sei sicuro di voler cancellare tutto?',
|
||||
about_title : 'Informazioni su TinyMCE',
|
||||
about : 'Informazioni',
|
||||
license : 'Licenza',
|
||||
plugins : 'Plugin',
|
||||
plugin : 'Plugin',
|
||||
author : 'Autore',
|
||||
version : 'Versione',
|
||||
loaded_plugins : 'Plugin caricati',
|
||||
help : 'Aiuto',
|
||||
not_set : '-- Non impostato --',
|
||||
close : 'Chiudi',
|
||||
toolbar_focus : 'Passa ai bottoni - Alt+Q, Passa all\'editor - Alt-Z, Passa al percorso - Alt-X',
|
||||
invalid_data : 'Errore: introdotti valori non validi (sono indicati in rosso).',
|
||||
more_colors : 'Più colori',
|
||||
color_picker_tab : 'Selettore',
|
||||
color_picker : 'Selettore di colori',
|
||||
web_colors_tab : 'Web safe',
|
||||
web_colors : 'Colori web safe',
|
||||
named_colors_tab : 'Per nome',
|
||||
named_colors : 'Colori per nome',
|
||||
color : 'Colore:',
|
||||
color_name : 'Nome:',
|
||||
theme_advanced_anchor_delta_width : 25
|
||||
});
|
||||
|
|
|
|||
|
|
@ -1,62 +1,82 @@
|
|||
// JP lang variables
|
||||
// JA lang variables
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
theme_style_select : '$B%9%?%$%k(B',
|
||||
theme_paragraph : '$BJ8L.(B',
|
||||
theme_address : '$B%"%I%l%9(B',
|
||||
theme_pre : '$B@07A:Q$_(B',
|
||||
theme_h1 : 'H1',
|
||||
theme_h2 : 'H2',
|
||||
theme_h3 : 'H3',
|
||||
theme_h4 : 'H4',
|
||||
theme_h5 : 'H5',
|
||||
theme_h6 : 'H6',
|
||||
theme_div : 'Div',
|
||||
insert_anchor_title : '$B%"%s%+!<$NA^F~(B/$BJT=8(B',
|
||||
insert_anchor_name : '$B%"%s%+!<$NL>A0(B',
|
||||
theme_anchor_desc : '$B%"%s%+!<$NA^F~(B/$BJT=8(B',
|
||||
theme_code_desc : 'HTML$B$ND>@\JT=8(B',
|
||||
theme_code_title : 'HTML$B$NJT=8(B',
|
||||
theme_code_wordwrap : 'Word wrap',
|
||||
theme_hr_desc : '$B?eJ?@~(B',
|
||||
theme_removeformat_desc : '$B@07A>pJs:o=|(B',
|
||||
theme_visualaid_desc : '$BJd=u>pJs$N;k3P2=(B($B%H%0%k(B)',
|
||||
theme_sub_desc : '$BE:;z2<(B',
|
||||
theme_sup_desc : '$BE:;z>e(B',
|
||||
theme_charmap_desc : '$BFC<lJ8;z$NF~NO(B',
|
||||
theme_charmap_title : '$BFC<lJ8;z$rA*Br$7$F2<$5$$(B',
|
||||
insert_image_dimensions : '$BBg$-$5;XDj(B',
|
||||
insert_image_border : '$B6-3&I}(B',
|
||||
insert_image_vspace : '$B=DM>Gr(B',
|
||||
insert_image_hspace : '$B2#M>Gr(B',
|
||||
insert_image_align : '$B0LCV9g$o$;(B',
|
||||
insert_image_align_default : '$B0EL[(B',
|
||||
insert_image_align_baseline : '$B4p=`@~(B',
|
||||
insert_image_align_top : '$B>e(B',
|
||||
insert_image_align_middle : '$BCf(B',
|
||||
insert_image_align_bottom : '$B2<(B',
|
||||
insert_image_align_texttop : '$BJ8;z$N>e(B',
|
||||
insert_image_align_absmiddle : '$B@dBP$KCf(B',
|
||||
insert_image_align_absbottom : '$B@dBP$K2<(B',
|
||||
insert_image_align_left : '$B:8(B',
|
||||
insert_image_align_right : '$B1&(B',
|
||||
theme_font_size : '-- Font size --',
|
||||
theme_fontdefault : '-- Font family --',
|
||||
theme_block : '-- Format --',
|
||||
theme_colorpicker_title : '$B?\'$N;XDj(B',
|
||||
theme_colorpicker_apply : '$BE,MQ(B',
|
||||
theme_forecolor_desc : '$BA07J?\'(B',
|
||||
theme_backcolor_desc : 'Select background color',
|
||||
theme_clipboard_msg : 'Copy/Cut/Paste is not available in Mozilla and Firefox.\nDo you want more information about this issue?',
|
||||
theme_path : 'Path',
|
||||
cut_desc : 'Cut',
|
||||
copy_desc : 'Copy',
|
||||
paste_desc : 'Paste',
|
||||
link_list : 'Link list',
|
||||
image_list : 'Image list',
|
||||
browse : 'Browse',
|
||||
image_props_desc : 'Image properties',
|
||||
newdocument_desc : 'New document',
|
||||
class_name : '$B%/%i%9(B',
|
||||
newdocument : 'Are you sure you want clear all contents?'
|
||||
theme_style_select : '-- スタイル --',
|
||||
theme_code_desc : 'HTMLで編集する',
|
||||
theme_code_title : 'HTMLの編集',
|
||||
theme_code_wordwrap : '折り返し',
|
||||
theme_sub_desc : '下付き',
|
||||
theme_sup_desc : '上付き',
|
||||
theme_hr_desc : '水平線を挿入する',
|
||||
theme_removeformat_desc : '書式を削除する',
|
||||
theme_custom1_desc : 'Your custom description here',
|
||||
insert_image_border : '枠線',
|
||||
insert_image_dimensions : 'サイズ',
|
||||
insert_image_vspace : '垂直方向の余白',
|
||||
insert_image_hspace : '水平方向の余白',
|
||||
insert_image_align : '表示位置',
|
||||
insert_image_align_default : '-- 指定しない --',
|
||||
insert_image_align_baseline : '文字の下端に揃える',
|
||||
insert_image_align_top : '上に揃える',
|
||||
insert_image_align_middle : '中央に揃える',
|
||||
insert_image_align_bottom : '下に揃える',
|
||||
insert_image_align_texttop : '文字の上端に揃える',
|
||||
insert_image_align_absmiddle : '中央に揃える(絶対位置)',
|
||||
insert_image_align_absbottom : '下に揃える(絶対位置)',
|
||||
insert_image_align_left : '左に揃える',
|
||||
insert_image_align_right : '右に揃える',
|
||||
theme_font_size : '-- フォントサイズ --',
|
||||
theme_fontdefault : '-- フォントの種類 --',
|
||||
theme_block : '-- 書式 --',
|
||||
theme_paragraph : '標準(<P>)',
|
||||
theme_div : 'グループ(<DIV>)',
|
||||
theme_address : 'シグネチャ(<ADDRESS>)',
|
||||
theme_pre : '整形済み(<PRE>)',
|
||||
theme_h1 : '見出し1(<H1>)',
|
||||
theme_h2 : '見出し2(<H2>)',
|
||||
theme_h3 : '見出し3(<H3>)',
|
||||
theme_h4 : '見出し4(<H4>)',
|
||||
theme_h5 : '見出し5(<H5>)',
|
||||
theme_h6 : '見出し6(<H6>)',
|
||||
theme_blockquote : '引用(<BLOCKQUOTE>)',
|
||||
theme_code : 'コード(<CODE>)',
|
||||
theme_samp : 'サンプルコード(<SAMP>)',
|
||||
theme_dt : '定義語(<DT>)',
|
||||
theme_dd : '定義の説明(<DD>)',
|
||||
theme_colorpicker_title : '色の選択',
|
||||
theme_colorpicker_apply : '選択',
|
||||
theme_forecolor_desc : '文字色の選択',
|
||||
theme_backcolor_desc : '背景色の選択',
|
||||
theme_charmap_title : '記号の選択',
|
||||
theme_charmap_desc : '記号の挿入',
|
||||
theme_visualaid_desc : 'ガイドライン/非表示部品の表示を切り替える',
|
||||
insert_anchor_title : 'しおりの編集',
|
||||
insert_anchor_name : '名前',
|
||||
theme_anchor_desc : 'しおりの追加',
|
||||
theme_insert_link_titlefield : 'タイトル',
|
||||
theme_clipboard_msg : 'コピー/切り取り/貼り付けはMozillaまたはFirefoxでは使用できません\nこの警告に関する詳細情報を表示しますか?',
|
||||
theme_path : 'パス',
|
||||
cut_desc : '切り取り',
|
||||
copy_desc : 'コピー',
|
||||
paste_desc : '貼り付け',
|
||||
link_list : 'ハイパーリンクの一覧',
|
||||
image_list : '画像の一覧',
|
||||
browse : 'ブラウズ',
|
||||
image_props_desc : '画像のプロパティ',
|
||||
newdocument_desc : '新しい文書の作成',
|
||||
class_name : 'クラス',
|
||||
newdocument : '編集中の文書を破棄してもよろしいですか?',
|
||||
about_title : 'TinyMCEについて',
|
||||
about : 'TinyMCEについて',
|
||||
license : 'ライセンス',
|
||||
plugins : 'プラグイン',
|
||||
plugin : 'プラグイン',
|
||||
author : '作成者',
|
||||
version : 'バージョン',
|
||||
loaded_plugins : '読み込み済みのプラグイン',
|
||||
help : 'ヘルプ',
|
||||
not_set : '-- 未設定 --',
|
||||
close : '閉じる',
|
||||
toolbar_focus : 'ツールバーへ移動 - Alt+Q, エディタへ移動 - Alt-Z, エレメントパスへ移動 - Alt-X',
|
||||
invalid_data : 'エラー:正しくない値が入力されました。赤く表示してある項目を修正してください'
|
||||
});
|
||||
|
|
|
|||
|
|
@ -5,27 +5,27 @@
|
|||
|
||||
tinyMCE.addToLang('',{
|
||||
theme_style_select : 'Styl',
|
||||
theme_code_desc : 'Edytuj zródd³o html',
|
||||
theme_code_title : 'Edytor zród³a html',
|
||||
theme_code_desc : 'Edytuj zróddło html',
|
||||
theme_code_title : 'Edytor zródła html',
|
||||
theme_code_wordwrap : 'Zawijanie wierszy',
|
||||
theme_sub_desc : 'Nadpisywanie',
|
||||
theme_sup_desc : 'Podpisywanie',
|
||||
theme_hr_desc : 'Wstaw poziom± liniê',
|
||||
theme_removeformat_desc : 'Usuñ formatowanie',
|
||||
theme_custom1_desc : 'Wstaw w³asny opis',
|
||||
theme_hr_desc : 'Wstaw poziomą linię',
|
||||
theme_removeformat_desc : 'Usuń formatowanie',
|
||||
theme_custom1_desc : 'Wstaw własny opis',
|
||||
insert_image_border : 'Ramka',
|
||||
insert_image_dimensions : 'Wymiary',
|
||||
insert_image_vspace : 'Pionowy odstêp',
|
||||
insert_image_hspace : 'Poziomy odstêp',
|
||||
insert_image_vspace : 'Pionowy odstęp',
|
||||
insert_image_hspace : 'Poziomy odstęp',
|
||||
insert_image_align : 'Otaczanie',
|
||||
insert_image_align_default : 'Domy¶lne',
|
||||
insert_image_align_default : 'Domyślne',
|
||||
insert_image_align_baseline : 'Do linii bazowej',
|
||||
insert_image_align_top : 'Górne',
|
||||
insert_image_align_middle : '¦rodkowe',
|
||||
insert_image_align_top : 'Górne',
|
||||
insert_image_align_middle : '¦rodkowe',
|
||||
insert_image_align_bottom : 'Dolne',
|
||||
insert_image_align_texttop : 'Tekst powy¿ej',
|
||||
insert_image_align_absmiddle : 'Absolutny ¶rodek',
|
||||
insert_image_align_absbottom : 'Absolutny dó³',
|
||||
insert_image_align_texttop : 'Tekst powyżej',
|
||||
insert_image_align_absmiddle : 'Absolutny środek',
|
||||
insert_image_align_absbottom : 'Absolutny dół',
|
||||
insert_image_align_left : 'Lewe',
|
||||
insert_image_align_right : 'Prawe',
|
||||
theme_font_size : '-- Rozmiar czcionki --',
|
||||
|
|
@ -35,35 +35,35 @@ theme_paragraph : '-- Paragraf --',
|
|||
theme_div : 'Div',
|
||||
theme_address : 'Adres',
|
||||
theme_pre : 'Preformatowanie',
|
||||
theme_h1 : 'Nag³ówek 1',
|
||||
theme_h2 : 'Nag³ówek 2',
|
||||
theme_h3 : 'Nag³ówek 3',
|
||||
theme_h4 : 'Nag³ówek 4',
|
||||
theme_h5 : 'Nag³ówek 5',
|
||||
theme_h6 : 'Nag³ówek 6',
|
||||
theme_h1 : 'Nagłówek 1',
|
||||
theme_h2 : 'Nagłówek 2',
|
||||
theme_h3 : 'Nagłówek 3',
|
||||
theme_h4 : 'Nagłówek 4',
|
||||
theme_h5 : 'Nagłówek 5',
|
||||
theme_h6 : 'Nagłówek 6',
|
||||
theme_colorpicker_title : 'Wybierz kolor',
|
||||
theme_colorpicker_apply : 'Wybierz',
|
||||
theme_forecolor_desc : 'Wybierz kolor tekstu',
|
||||
theme_backcolor_desc : 'Wybierz kolor t³a',
|
||||
theme_backcolor_desc : 'Wybierz kolor tła',
|
||||
theme_charmap_title : 'Wybierz znak',
|
||||
theme_charmap_desc : 'Wstaw znak',
|
||||
theme_visualaid_desc : 'Prze³±cz linie prowadz±ce/niewidoczne elementy',
|
||||
theme_visualaid_desc : 'Przełącz linie prowadzące/niewidoczne elementy',
|
||||
insert_anchor_title : 'Kotwica',
|
||||
insert_anchor_name : 'Nazwa kotwicy',
|
||||
theme_anchor_desc : 'Wstaw/Edytuj kotwicê',
|
||||
theme_insert_link_titlefield : 'Tytu³',
|
||||
theme_clipboard_msg : 'Kopiuj/Edytuj/Wklej nie jest dostêpne w przegl±darkach Mozilla i Firefox.\nPotrzebujesz wiêcej informacji na ten temat?',
|
||||
theme_path : 'Œcie¿ka',
|
||||
theme_anchor_desc : 'Wstaw/Edytuj kotwicę',
|
||||
theme_insert_link_titlefield : 'Tytuł',
|
||||
theme_clipboard_msg : 'Kopiuj/Edytuj/Wklej nie jest dostępne w przeglądarkach Mozilla i Firefox.\nPotrzebujesz więcej informacji na ten temat?',
|
||||
theme_path : 'Ścieżka',
|
||||
cut_desc : 'Wytnij',
|
||||
copy_desc : 'Kopiuj',
|
||||
paste_desc : 'Wklej',
|
||||
link_list : 'Lista linków',
|
||||
image_list : 'Lista obrazków',
|
||||
browse : 'Przegl±daj',
|
||||
image_props_desc : 'W³a¶ciwosci obrazka',
|
||||
link_list : 'Lista linków',
|
||||
image_list : 'Lista obrazków',
|
||||
browse : 'Przeglądaj',
|
||||
image_props_desc : 'Właściwosci obrazka',
|
||||
newdocument_desc : 'Nowy dokument',
|
||||
class_name : 'Klasa',
|
||||
newdocument : 'Czy jeste¶ pewien, ¿e chcesz wyczy¶ciæ zawarto¶æ tego dokumentu?',
|
||||
newdocument : 'Czy jesteś pewien, że chcesz wyczyścić zawartość tego dokumentu?',
|
||||
about_title : 'O TinyMCE ...',
|
||||
about : 'O ...',
|
||||
license : 'Licencja',
|
||||
|
|
@ -71,9 +71,9 @@ plugins : 'Pluginy',
|
|||
plugin : 'Plugin',
|
||||
author : 'Autor',
|
||||
version : 'Wersja',
|
||||
loaded_plugins : 'Za³adowane pluginy',
|
||||
loaded_plugins : 'Załadowane pluginy',
|
||||
help : 'Pomoc',
|
||||
not_set : '-- Nie wybrano --',
|
||||
close : 'Zamknij',
|
||||
toolbar_focus : 'Skocz do przycisków narzêdzi - Alt+Q, Skocz do edytora - Alt-Z, Skocz do ¶cie¿ki elementu - Alt-X'
|
||||
toolbar_focus : 'Skocz do przycisków narzędzi - Alt+Q, Skocz do edytora - Alt-Z, Skocz do ścieżki elementu - Alt-X'
|
||||
});
|
||||
|
|
|
|||
|
|
@ -2,39 +2,39 @@
|
|||
* pt_br lang variables
|
||||
* Brazilian Portuguese
|
||||
*
|
||||
* Authors : ????
|
||||
* Author
|
||||
* Revision and modifications:
|
||||
* Marcio Barbosa (mpg) <mpg@mpg.com.br>
|
||||
* Last Updated : November 26, 2005
|
||||
* TinyMCE Version : 2.0RC4
|
||||
* First Release : November 26, 2005 - TinyMCE Version : 2.0RC4
|
||||
* Last Updated : November 20, 2006 - TinyMCE Version : 2.0.8
|
||||
*/
|
||||
tinyMCE.addToLang('',{
|
||||
theme_style_select : 'Estilos',
|
||||
theme_code_desc : 'Editar Código HTML',
|
||||
theme_code_title : 'Editor de Código HTML',
|
||||
theme_code_wordwrap : 'Quebrar Linhas',
|
||||
theme_code_desc : 'Editar código HTML',
|
||||
theme_code_title : 'Editor de código HTML',
|
||||
theme_code_wordwrap : 'Quebrar linhas',
|
||||
theme_sub_desc : 'Subscrito',
|
||||
theme_sup_desc : 'Subrescrito',
|
||||
theme_sup_desc : 'Sobrescrito',
|
||||
theme_hr_desc : 'Inserir linha horizontal',
|
||||
theme_removeformat_desc : 'Remover formatação',
|
||||
theme_custom1_desc : 'Sua descrição personalizada aqui',
|
||||
insert_image_border : 'Borda',
|
||||
insert_image_dimensions : 'Dimensões',
|
||||
insert_image_vspace : 'Espaço Vertical',
|
||||
insert_image_hspace : 'Espaço Horizontal',
|
||||
insert_image_vspace : 'Espaço vertical',
|
||||
insert_image_hspace : 'Espaço horizontal',
|
||||
insert_image_align : 'Alinhamento',
|
||||
insert_image_align_default : 'Padrão',
|
||||
insert_image_align_baseline : 'Linha base',
|
||||
insert_image_align_top : 'Topo',
|
||||
insert_image_align_middle : 'Centro',
|
||||
insert_image_align_bottom : 'Fundo',
|
||||
insert_image_align_texttop : 'Texto ao Topo',
|
||||
insert_image_align_absmiddle : 'Centro Absoluto',
|
||||
insert_image_align_absbottom : 'Fundo Absoluto',
|
||||
insert_image_align_texttop : 'Texto ao topo',
|
||||
insert_image_align_absmiddle : 'Centro absoluto',
|
||||
insert_image_align_absbottom : 'Fundo absoluto',
|
||||
insert_image_align_left : 'Esquerda',
|
||||
insert_image_align_right : 'Direita',
|
||||
theme_font_size : '-- Corpo --',
|
||||
theme_fontdefault : '-- Tipo de Fonte --',
|
||||
theme_font_size : '-- Tamanho --',
|
||||
theme_fontdefault : '-- Tipo de fonte --',
|
||||
theme_block : '-- Formato --',
|
||||
theme_paragraph : 'Parágrafo',
|
||||
theme_div : 'Div',
|
||||
|
|
@ -46,33 +46,25 @@ theme_h3 : 'Cabe
|
|||
theme_h4 : 'Cabeçalho 4',
|
||||
theme_h5 : 'Cabeçalho 5',
|
||||
theme_h6 : 'Cabeçalho 6',
|
||||
theme_colorpicker_title : 'Selecionar côr',
|
||||
theme_blockquote : 'Blockquote',
|
||||
theme_code : 'Code',
|
||||
theme_samp : 'Code sample',
|
||||
theme_dt : 'Definition term ',
|
||||
theme_dd : 'Definition description',
|
||||
theme_colorpicker_title : 'Selecionar cor',
|
||||
theme_colorpicker_apply : 'Aplicar',
|
||||
theme_forecolor_desc : 'Selecionar côr do texto',
|
||||
theme_backcolor_desc : 'Selecionar côr de fundo',
|
||||
theme_forecolor_desc : 'Selecionar cor do texto',
|
||||
theme_backcolor_desc : 'Selecionar cor de fundo',
|
||||
theme_charmap_title : 'Selecionar caracter especial',
|
||||
theme_charmap_desc : 'Inserir caracter especial',
|
||||
theme_charmap_alpha_desc : 'Caracteres alfabéticos',
|
||||
theme_charmap_arrows_title : 'Flechas',
|
||||
theme_charmap_arrows_desc : 'Caracteres de flechas',
|
||||
theme_charmap_greek_title : 'Gregos',
|
||||
theme_charmap_greek_desc : 'Caracteres Gregos',
|
||||
theme_charmap_math_title : 'Mathematicos',
|
||||
theme_charmap_math_desc : 'Caracteres mathematicos',
|
||||
theme_charmap_misc_title : 'Diversos',
|
||||
theme_charmap_misc_desc : 'Caracteres diversos',
|
||||
theme_charmap_money_title : 'Moedas',
|
||||
theme_charmap_money_desc : 'Caracteres de moedas',
|
||||
theme_charmap_quotaion_title : 'Apóstrofes',
|
||||
theme_charmap_quotaion_desc : 'Caracteres de Apóstrofe',
|
||||
theme_visualaid_desc : 'Trocar as linhas de ajuda por elementos invisíveis',
|
||||
insert_anchor_title : 'Inserir/editar âncora',
|
||||
insert_anchor_name : 'Nome da âncora',
|
||||
theme_anchor_desc : 'Inserir/editar âncora',
|
||||
theme_insert_link_titlefield : 'Título',
|
||||
theme_clipboard_msg : 'Não se pode utiliza os comando de Copiar / Cortar / Colar no Mozilla e Firefox.\r\nUse o teclado para Copiar (Ctrl+C) / Cortar (Ctrl+X) / Colar (Ctrl+V)\r\nQuer obter mais informação?',
|
||||
theme_path : 'Rota',
|
||||
cut_desc : 'Cortar (Ctrl+X)',
|
||||
theme_clipboard_msg : 'Não se pode utilizar os comandos de copiar/recortar/colar no Mozilla e Firefox.\r\nUse o teclado para copiar(Ctrl+C)/ cortar(Ctrl+X)/ colar(Ctrl+V)\r\nQuer obter mais informação?',
|
||||
theme_path : 'Caminho',
|
||||
cut_desc : 'Recortar (Ctrl+X)',
|
||||
copy_desc : 'Copiar (Ctrl+C)',
|
||||
paste_desc : 'Colar (Ctrl+V)',
|
||||
link_list : 'Lista de links',
|
||||
|
|
@ -81,7 +73,7 @@ browse : 'Navegar',
|
|||
image_props_desc : 'Propriedades da imagem',
|
||||
newdocument_desc : 'Novo documento',
|
||||
class_name : 'Classe',
|
||||
newdocument : 'Tem certesa que deseja apagar todo o conteúdo?',
|
||||
newdocument : 'Tem certeza que deseja apagar todo o conteúdo?',
|
||||
about_title : 'Sobre o TinyMCE',
|
||||
about : 'Sobre',
|
||||
license : 'Licença',
|
||||
|
|
@ -93,23 +85,16 @@ loaded_plugins : 'Plugins carregados',
|
|||
help : 'Ajuda',
|
||||
not_set : '-- Por padrão --',
|
||||
close : 'Fechar',
|
||||
toolbar_focus : 'Ir para a barra de ferramentas - Alt+Q, Ir para o editor - Alt+Z, Ir para o elemento de destino - Alt+X',
|
||||
theme_visualaid_desc : 'Tornar linhas visíveis/invisíveis',
|
||||
insert_anchor_title : 'Inserir/editar âncora',
|
||||
insert_anchor_name : 'Nome da âncora',
|
||||
theme_anchor_desc : 'Inserir/editar âncora',
|
||||
theme_insert_link_titlefield : 'Título',
|
||||
theme_clipboard_msg : 'Copiar/Recortar/Colar não é permitido no Mozilla e Firefox.\nQuer mais informações sobre isso?',
|
||||
theme_path : 'Caminho',
|
||||
cut_desc : 'Recortar',
|
||||
copy_desc : 'Copiar',
|
||||
paste_desc : 'Colar',
|
||||
link_list : 'Lista de Links',
|
||||
image_list : 'Lista de Imagens',
|
||||
browse : 'Navegar',
|
||||
image_props_desc : 'Propriedades da Imagem',
|
||||
newdocument_desc : 'Novo Documento',
|
||||
class_name : 'Classe',
|
||||
newdocument : 'Tem certeza que deseja limpar todo o conteúdo?',
|
||||
toolbar_focus : 'Ir para a barra de ferramentas(Alt+Q), Ir para o editor(Alt+Z), Ir para o elemento de destino(Alt+X)',
|
||||
invalid_data : 'Erro: há valores inválidos e estão marcados em vermelho.',
|
||||
more_colors : 'Mais cores',
|
||||
color_picker_tab : 'Conta-gota',
|
||||
color_picker : 'Conta-gota',
|
||||
web_colors_tab : 'Web segura',
|
||||
web_colors : 'Cores web segura',
|
||||
named_colors_tab : 'Nomeadas',
|
||||
named_colors : 'Cores nomeadas',
|
||||
color : 'Cor:',
|
||||
color_name : 'Nome:',
|
||||
theme_advanced_anchor_delta_width : 20
|
||||
});
|
||||
|
|
|
|||
76
www/extras/tinymce2/jscripts/tiny_mce/themes/advanced/langs/ro.js
vendored
Executable file
|
|
@ -0,0 +1,76 @@
|
|||
// RO lang variables
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
theme_style_select : '-- Stiluri --',
|
||||
theme_code_desc : 'Editare sursă HTML',
|
||||
theme_code_title : 'Editor sursă HTML',
|
||||
theme_code_wordwrap : 'Tăiere cuvinte',
|
||||
theme_sub_desc : 'Subscript',
|
||||
theme_sup_desc : 'Superscript',
|
||||
theme_hr_desc : 'Inserare riglă orizontală',
|
||||
theme_removeformat_desc : 'Elimină formatarea',
|
||||
theme_custom1_desc : 'Descrierea personalizată aici',
|
||||
insert_image_border : 'Margine',
|
||||
insert_image_dimensions : 'Dimensiuni',
|
||||
insert_image_vspace : 'Spaţiu vertical',
|
||||
insert_image_hspace : 'Spaţiu orizontal',
|
||||
insert_image_align : 'Aliniament',
|
||||
insert_image_align_default : '-- Nestabilit --',
|
||||
insert_image_align_baseline : 'Linie de bază',
|
||||
insert_image_align_top : 'Sus',
|
||||
insert_image_align_middle : 'Mijloc',
|
||||
insert_image_align_bottom : 'Jos',
|
||||
insert_image_align_texttop : 'TextSus',
|
||||
insert_image_align_absmiddle : 'Mijloc absolut',
|
||||
insert_image_align_absbottom : 'Jos absolut',
|
||||
insert_image_align_left : 'Stânga',
|
||||
insert_image_align_right : 'Dreapta',
|
||||
theme_font_size : '-- Dimensiune font --',
|
||||
theme_fontdefault : '-- Familie font --',
|
||||
theme_block : '-- Format --',
|
||||
theme_paragraph : 'Paragraf',
|
||||
theme_div : 'Div',
|
||||
theme_address : 'Adresă',
|
||||
theme_pre : 'Preformatat',
|
||||
theme_h1 : 'Aliniament 1',
|
||||
theme_h2 : 'Aliniament 2',
|
||||
theme_h3 : 'Aliniament 3',
|
||||
theme_h4 : 'Aliniament 4',
|
||||
theme_h5 : 'Aliniament 5',
|
||||
theme_h6 : 'Aliniament 6',
|
||||
theme_colorpicker_title : 'Alege o culoare',
|
||||
theme_colorpicker_apply : 'Aplică',
|
||||
theme_forecolor_desc : 'Alege culoarea textului',
|
||||
theme_backcolor_desc : 'Alege culoarea fundalului',
|
||||
theme_charmap_title : 'Alege caractere personalizate',
|
||||
theme_charmap_desc : 'Inserează caracter personalizat',
|
||||
theme_visualaid_desc : 'Comută ghidajele/elementele invizibile',
|
||||
insert_anchor_title : 'Inserează/editează ancoră',
|
||||
insert_anchor_name : 'Nume ancoră',
|
||||
theme_anchor_desc : 'Inserează/editează ancoră',
|
||||
theme_insert_link_titlefield : 'Titlu',
|
||||
theme_clipboard_msg : 'Copierea/Tăierea/Lipirea nu sunt disponibile în Mozilla şi Firefox.\nVrei mai multe informaţii despre acest lucru?',
|
||||
theme_path : 'Cale',
|
||||
cut_desc : 'Taie',
|
||||
copy_desc : 'Copiază',
|
||||
paste_desc : 'Lipeşte',
|
||||
link_list : 'Listă de legături',
|
||||
image_list : 'Listă de imagini',
|
||||
browse : 'Răsfoieşte',
|
||||
image_props_desc : 'Proprietăţi imagine',
|
||||
newdocument_desc : 'Document nou',
|
||||
class_name : 'Clasă',
|
||||
newdocument : 'Eşti sigur că vrei să cureţi întregul conţinut?',
|
||||
about_title : 'Despre TinyMCE',
|
||||
about : 'Despre',
|
||||
license : 'Licenţă',
|
||||
plugins : 'Plugin-uri',
|
||||
plugin : 'Plugin',
|
||||
author : 'Autor',
|
||||
version : 'Versiune',
|
||||
loaded_plugins : 'Plugin-uri încărcate',
|
||||
help : 'Ajutor',
|
||||
not_set : '-- Nestabilit --',
|
||||
close : 'Închide',
|
||||
toolbar_focus : 'Salt la butoanele unelte - Alt+Q, Salt la editor - Alt-Z, Salt la cale elemente - Alt-X'
|
||||
});
|
||||
|
|
@ -1,76 +1,90 @@
|
|||
// Russian lang variables cp1251
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
theme_style_select : '-- Стили --',
|
||||
theme_code_desc : 'Редактировать HTML коды',
|
||||
theme_code_title : 'Редактор HTML кодов',
|
||||
theme_code_wordwrap : 'Перенос по словам',
|
||||
theme_sub_desc : 'Нижний индекс',
|
||||
theme_sup_desc : 'Верхний индекс',
|
||||
theme_hr_desc : 'Вставить горизонтальный разделитель',
|
||||
theme_removeformat_desc : 'Убрать форматирование',
|
||||
theme_custom1_desc : 'Ваше произвольное описание',
|
||||
insert_image_border : 'Рамка',
|
||||
insert_image_dimensions : 'Размеры',
|
||||
insert_image_vspace : 'Вертикальный отступ',
|
||||
insert_image_hspace : 'Горизонтальный отступ',
|
||||
insert_image_align : 'Выравнивание',
|
||||
insert_image_align_default : '-- Не задано --',
|
||||
insert_image_align_baseline : 'По базовой линии',
|
||||
insert_image_align_top : 'По верху',
|
||||
insert_image_align_middle : 'Посредине',
|
||||
insert_image_align_bottom : 'По низу',
|
||||
insert_image_align_texttop : 'По верху текста',
|
||||
insert_image_align_absmiddle : 'Абсолютно посредине',
|
||||
insert_image_align_absbottom : 'Абсолютно сверху',
|
||||
insert_image_align_left : 'Влево',
|
||||
insert_image_align_right : 'Вправо',
|
||||
theme_font_size : '-- Размер шрифта --',
|
||||
theme_fontdefault : '-- Семейство шрифтов --',
|
||||
theme_block : '-- Формат --',
|
||||
theme_paragraph : 'Абзац',
|
||||
theme_div : 'Div',
|
||||
theme_address : 'Стиль адреса',
|
||||
theme_pre : ':`Предварительно форматированный',
|
||||
theme_h1 : 'Заголовок 1',
|
||||
theme_h2 : 'Заголовок 2',
|
||||
theme_h3 : 'Заголовок 3',
|
||||
theme_h4 : 'Заголовок 4',
|
||||
theme_h5 : 'Заголовок 5',
|
||||
theme_h6 : 'Заголовок 6',
|
||||
theme_colorpicker_title : 'Выбрать цвет',
|
||||
theme_colorpicker_apply : 'Применить',
|
||||
theme_forecolor_desc : 'Выбрать цвет текста',
|
||||
theme_backcolor_desc : 'Выбрать цвет фона',
|
||||
theme_charmap_title : 'Выбор произвольного символа',
|
||||
theme_charmap_desc : 'Вставить произвольный символ',
|
||||
theme_visualaid_desc : 'Показать границы скрытых элементов',
|
||||
insert_anchor_title : 'Вставить/редактировать якорь',
|
||||
insert_anchor_name : 'Имя якоря',
|
||||
theme_anchor_desc : 'Вставить/редактировать якорь',
|
||||
theme_insert_link_titlefield : 'Заголовок',
|
||||
theme_clipboard_msg : 'Копировать/Вырезать/Вставить недоступны для Mozilla и Firefox.\nХотите узнать об этом подробнее?',
|
||||
theme_path : 'Путь',
|
||||
cut_desc : 'Вырезать',
|
||||
copy_desc : 'Копировать',
|
||||
paste_desc : 'Вставить',
|
||||
link_list : 'Перечань ссылок',
|
||||
image_list : 'Перечень картинок',
|
||||
browse : 'Подобрать',
|
||||
image_props_desc : 'Свойства картинки',
|
||||
newdocument_desc : 'Новый документ',
|
||||
class_name : 'Класс',
|
||||
newdocument : 'Вы уверены, что хотите очистить всё содержимое?',
|
||||
about_title : 'О TinyMCE',
|
||||
about : 'О TinyMCE',
|
||||
license : 'Лицензия',
|
||||
plugins : 'Плагины',
|
||||
plugin : 'Плагин',
|
||||
author : 'Автор',
|
||||
version : 'Версия',
|
||||
loaded_plugins : 'Загруженные плагины',
|
||||
help : 'Помощь',
|
||||
not_set : '-- не установлено --',
|
||||
close : 'Закрыть',
|
||||
toolbar_focus : 'Переместить фокус на панель инструментов - Alt+Q, Переместить фокус в редактор - Alt-Z, Переместить фокус на элемент пути - Alt-X'
|
||||
});
|
||||
// Russian lang variables cp1251
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
theme_style_select : '-- Стили --',
|
||||
theme_code_desc : 'Редактировать HTML коды',
|
||||
theme_code_title : 'Редактор HTML кодов',
|
||||
theme_code_wordwrap : 'Перенос по словам',
|
||||
theme_sub_desc : 'Нижний индекс',
|
||||
theme_sup_desc : 'Верхний индекс',
|
||||
theme_hr_desc : 'Вставить горизонтальный разделитель',
|
||||
theme_removeformat_desc : 'Убрать форматирование',
|
||||
theme_custom1_desc : 'Ваше произвольное описание',
|
||||
insert_image_border : 'Рамка',
|
||||
insert_image_dimensions : 'Размеры',
|
||||
insert_image_vspace : 'Вертикальный отступ',
|
||||
insert_image_hspace : 'Горизонтальный отступ',
|
||||
insert_image_align : 'Выравнивание',
|
||||
insert_image_align_default : '-- Не задано --',
|
||||
insert_image_align_baseline : 'По базовой линии',
|
||||
insert_image_align_top : 'По верху',
|
||||
insert_image_align_middle : 'Посредине',
|
||||
insert_image_align_bottom : 'По низу',
|
||||
insert_image_align_texttop : 'По верху текста',
|
||||
insert_image_align_absmiddle : 'Абсолютно посредине',
|
||||
insert_image_align_absbottom : 'Абсолютно сверху',
|
||||
insert_image_align_left : 'Влево',
|
||||
insert_image_align_right : 'Вправо',
|
||||
theme_font_size : '-- Размер шрифта --',
|
||||
theme_fontdefault : '-- Семейство шрифтов --',
|
||||
theme_block : '-- Формат --',
|
||||
theme_paragraph : 'Абзац',
|
||||
theme_div : 'Div',
|
||||
theme_address : 'Стиль адреса',
|
||||
theme_pre : ':`Предварительно форматированный',
|
||||
theme_h1 : 'Заголовок 1',
|
||||
theme_h2 : 'Заголовок 2',
|
||||
theme_h3 : 'Заголовок 3',
|
||||
theme_h4 : 'Заголовок 4',
|
||||
theme_h5 : 'Заголовок 5',
|
||||
theme_h6 : 'Заголовок 6',
|
||||
theme_blockquote : 'Цитата',
|
||||
theme_samp : 'Образец кода',
|
||||
theme_dt : 'Термин ',
|
||||
theme_dd : 'Определение термина',
|
||||
ttheme_colorpicker_title : 'Выбрать цвет',
|
||||
theme_colorpicker_apply : 'Применить',
|
||||
theme_forecolor_desc : 'Выбрать цвет текста',
|
||||
theme_backcolor_desc : 'Выбрать цвет фона',
|
||||
theme_charmap_title : 'Выбор произвольного символа',
|
||||
theme_charmap_desc : 'Вставить произвольный символ',
|
||||
theme_visualaid_desc : 'Показать границы скрытых элементов',
|
||||
insert_anchor_title : 'Вставить/редактировать якорь',
|
||||
insert_anchor_name : 'Имя якоря',
|
||||
theme_anchor_desc : 'Вставить/редактировать якорь',
|
||||
theme_insert_link_titlefield : 'Заголовок',
|
||||
theme_clipboard_msg : 'Копировать/Вырезать/Вставить недоступны для Mozilla и Firefox.\nХотите узнать об этом подробнее?',
|
||||
theme_path : 'Путь',
|
||||
cut_desc : 'Вырезать',
|
||||
copy_desc : 'Копировать',
|
||||
paste_desc : 'Вставить',
|
||||
link_list : 'Перечень ссылок',
|
||||
image_list : 'Перечень картинок',
|
||||
browse : 'Подобрать',
|
||||
image_props_desc : 'Свойства картинки',
|
||||
newdocument_desc : 'Новый документ',
|
||||
class_name : 'Класс',
|
||||
newdocument : 'Вы уверены, что хотите очистить всё содержимое?',
|
||||
about_title : 'О TinyMCE',
|
||||
about : 'О TinyMCE',
|
||||
license : 'Лицензия',
|
||||
plugins : 'Плагины',
|
||||
plugin : 'Плагин',
|
||||
author : 'Автор',
|
||||
version : 'Версия',
|
||||
loaded_plugins : 'Загруженные плагины',
|
||||
help : 'Помощь',
|
||||
not_set : '-- не установлено --',
|
||||
close : 'Закрыть',
|
||||
toolbar_focus : 'Переместить фокус на панель инструментов - Alt+Q, Переместить фокус в редактор - Alt-Z, Переместить фокус на элемент пути - Alt-X',
|
||||
invalid_data : 'Ошибка: Введены некорректные значения, они помечены красным.',
|
||||
more_colors : 'Еще цвета',
|
||||
color_picker_tab : 'Выбор',
|
||||
color_picker : 'Выбор цветов',
|
||||
web_colors_tab : 'Для веб',
|
||||
web_colors : 'Цвета для веб',
|
||||
named_colors_tab : 'Названия',
|
||||
named_colors : 'Названия цветов',
|
||||
color : 'Цвет:',
|
||||
color_name : 'Название:'
|
||||
});
|
||||
|
|
|
|||
90
www/extras/tinymce2/jscripts/tiny_mce/themes/advanced/langs/ru_CP1251.js
vendored
Executable file
|
|
@ -0,0 +1,90 @@
|
|||
// Russian lang variables cp1251
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
theme_style_select : '-- Стили --',
|
||||
theme_code_desc : 'Редактировать HTML коды',
|
||||
theme_code_title : 'Редактор HTML кодов',
|
||||
theme_code_wordwrap : 'Перенос по словам',
|
||||
theme_sub_desc : 'Нижний индекс',
|
||||
theme_sup_desc : 'Верхний индекс',
|
||||
theme_hr_desc : 'Вставить горизонтальный разделитель',
|
||||
theme_removeformat_desc : 'Убрать форматирование',
|
||||
theme_custom1_desc : 'Ваше произвольное описание',
|
||||
insert_image_border : 'Рамка',
|
||||
insert_image_dimensions : 'Размеры',
|
||||
insert_image_vspace : 'Вертикальный отступ',
|
||||
insert_image_hspace : 'Горизонтальный отступ',
|
||||
insert_image_align : 'Выравнивание',
|
||||
insert_image_align_default : '-- Не задано --',
|
||||
insert_image_align_baseline : 'По базовой линии',
|
||||
insert_image_align_top : 'По верху',
|
||||
insert_image_align_middle : 'Посредине',
|
||||
insert_image_align_bottom : 'По низу',
|
||||
insert_image_align_texttop : 'По верху текста',
|
||||
insert_image_align_absmiddle : 'Абсолютно посредине',
|
||||
insert_image_align_absbottom : 'Абсолютно сверху',
|
||||
insert_image_align_left : 'Влево',
|
||||
insert_image_align_right : 'Вправо',
|
||||
theme_font_size : '-- Размер шрифта --',
|
||||
theme_fontdefault : '-- Семейство шрифтов --',
|
||||
theme_block : '-- Формат --',
|
||||
theme_paragraph : 'Абзац',
|
||||
theme_div : 'Div',
|
||||
theme_address : 'Стиль адреса',
|
||||
theme_pre : ':`Предварительно форматированный',
|
||||
theme_h1 : 'Заголовок 1',
|
||||
theme_h2 : 'Заголовок 2',
|
||||
theme_h3 : 'Заголовок 3',
|
||||
theme_h4 : 'Заголовок 4',
|
||||
theme_h5 : 'Заголовок 5',
|
||||
theme_h6 : 'Заголовок 6',
|
||||
theme_blockquote : 'Цитата',
|
||||
theme_samp : 'Образец кода',
|
||||
theme_dt : 'Термин ',
|
||||
theme_dd : 'Определение термина',
|
||||
ttheme_colorpicker_title : 'Выбрать цвет',
|
||||
theme_colorpicker_apply : 'Применить',
|
||||
theme_forecolor_desc : 'Выбрать цвет текста',
|
||||
theme_backcolor_desc : 'Выбрать цвет фона',
|
||||
theme_charmap_title : 'Выбор произвольного символа',
|
||||
theme_charmap_desc : 'Вставить произвольный символ',
|
||||
theme_visualaid_desc : 'Показать границы скрытых элементов',
|
||||
insert_anchor_title : 'Вставить/редактировать якорь',
|
||||
insert_anchor_name : 'Имя якоря',
|
||||
theme_anchor_desc : 'Вставить/редактировать якорь',
|
||||
theme_insert_link_titlefield : 'Заголовок',
|
||||
theme_clipboard_msg : 'Копировать/Вырезать/Вставить недоступны для Mozilla и Firefox.\nХотите узнать об этом подробнее?',
|
||||
theme_path : 'Путь',
|
||||
cut_desc : 'Вырезать',
|
||||
copy_desc : 'Копировать',
|
||||
paste_desc : 'Вставить',
|
||||
link_list : 'Перечень ссылок',
|
||||
image_list : 'Перечень картинок',
|
||||
browse : 'Подобрать',
|
||||
image_props_desc : 'Свойства картинки',
|
||||
newdocument_desc : 'Новый документ',
|
||||
class_name : 'Класс',
|
||||
newdocument : 'Вы уверены, что хотите очистить всё содержимое?',
|
||||
about_title : 'О TinyMCE',
|
||||
about : 'О TinyMCE',
|
||||
license : 'Лицензия',
|
||||
plugins : 'Плагины',
|
||||
plugin : 'Плагин',
|
||||
author : 'Автор',
|
||||
version : 'Версия',
|
||||
loaded_plugins : 'Загруженные плагины',
|
||||
help : 'Помощь',
|
||||
not_set : '-- не установлено --',
|
||||
close : 'Закрыть',
|
||||
toolbar_focus : 'Переместить фокус на панель инструментов - Alt+Q, Переместить фокус в редактор - Alt-Z, Переместить фокус на элемент пути - Alt-X',
|
||||
invalid_data : 'Ошибка: Введены некорректные значения, они помечены красным.',
|
||||
more_colors : 'Еще цвета',
|
||||
color_picker_tab : 'Выбор',
|
||||
color_picker : 'Выбор цветов',
|
||||
web_colors_tab : 'Для веб',
|
||||
web_colors : 'Цвета для веб',
|
||||
named_colors_tab : 'Названия',
|
||||
named_colors : 'Названия цветов',
|
||||
color : 'Цвет:',
|
||||
color_name : 'Название:'
|
||||
});
|
||||
|
|
@ -1,76 +1,90 @@
|
|||
// Russian lang variables KOI8-R
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
theme_style_select : '-- Стили --',
|
||||
theme_code_desc : 'Редактировать HTML коды',
|
||||
theme_code_title : 'Редактор HTML кодов',
|
||||
theme_code_wordwrap : 'Перенос по словам',
|
||||
theme_sub_desc : 'Нижний индекс',
|
||||
theme_sup_desc : 'Верхний индекс',
|
||||
theme_hr_desc : 'Вставить горизонтальный разделитель',
|
||||
theme_removeformat_desc : 'Убрать форматирование',
|
||||
theme_custom1_desc : 'Ваше произвольное описание',
|
||||
insert_image_border : 'Рамка',
|
||||
insert_image_dimensions : 'Размеры',
|
||||
insert_image_vspace : 'Вертикальный отступ',
|
||||
insert_image_hspace : 'Горизонтальный отступ',
|
||||
insert_image_align : 'Выравнивание',
|
||||
insert_image_align_default : '-- Не задано --',
|
||||
insert_image_align_baseline : 'По базовой линии',
|
||||
insert_image_align_top : 'По верху',
|
||||
insert_image_align_middle : 'Посредине',
|
||||
insert_image_align_bottom : 'По низу',
|
||||
insert_image_align_texttop : 'По верху текста',
|
||||
insert_image_align_absmiddle : 'Абсолютно посредине',
|
||||
insert_image_align_absbottom : 'Абсолютно сверху',
|
||||
insert_image_align_left : 'Влево',
|
||||
insert_image_align_right : 'Вправо',
|
||||
theme_font_size : '-- Размер шрифта --',
|
||||
theme_fontdefault : '-- Семейство шрифтов --',
|
||||
theme_block : '-- Формат --',
|
||||
theme_paragraph : 'Абзац',
|
||||
theme_div : 'Div',
|
||||
theme_address : 'Стиль адреса',
|
||||
theme_pre : ':`Предварительно форматированный',
|
||||
theme_h1 : 'Заголовок 1',
|
||||
theme_h2 : 'Заголовок 2',
|
||||
theme_h3 : 'Заголовок 3',
|
||||
theme_h4 : 'Заголовок 4',
|
||||
theme_h5 : 'Заголовок 5',
|
||||
theme_h6 : 'Заголовок 6',
|
||||
theme_colorpicker_title : 'Выбрать цвет',
|
||||
theme_colorpicker_apply : 'Применить',
|
||||
theme_forecolor_desc : 'Выбрать цвет текста',
|
||||
theme_backcolor_desc : 'Выбрать цвет фона',
|
||||
theme_charmap_title : 'Выбор произвольного символа',
|
||||
theme_charmap_desc : 'Вставить произвольный символ',
|
||||
theme_visualaid_desc : 'Показать границы скрытых элементов',
|
||||
insert_anchor_title : 'Вставить/редактировать якорь',
|
||||
insert_anchor_name : 'Имя якоря',
|
||||
theme_anchor_desc : 'Вставить/редактировать якорь',
|
||||
theme_insert_link_titlefield : 'Заголовок',
|
||||
theme_clipboard_msg : 'Копировать/Вырезать/Вставить недоступны для Mozilla и Firefox.\nХотите узнать об этом подробнее?',
|
||||
theme_path : 'Путь',
|
||||
cut_desc : 'Вырезать',
|
||||
copy_desc : 'Копировать',
|
||||
paste_desc : 'Вставить',
|
||||
link_list : 'Перечань ссылок',
|
||||
image_list : 'Перечень картинок',
|
||||
browse : 'Подобрать',
|
||||
image_props_desc : 'Свойства картинки',
|
||||
newdocument_desc : 'Новый документ',
|
||||
class_name : 'Класс',
|
||||
newdocument : 'Вы уверены, что хотите очистить всё содержимое?',
|
||||
about_title : 'О TinyMCE',
|
||||
about : 'О TinyMCE',
|
||||
license : 'Лицензия',
|
||||
plugins : 'Плагины',
|
||||
plugin : 'Плагин',
|
||||
author : 'Автор',
|
||||
version : 'Версия',
|
||||
loaded_plugins : 'Загруженные плагины',
|
||||
help : 'Помощь',
|
||||
not_set : '-- не установлено --',
|
||||
close : 'Закрыть',
|
||||
toolbar_focus : 'Переместить фокус на панель инструментов - Alt+Q, Переместить фокус в редактор - Alt-Z, Переместить фокус на элемент пути - Alt-X'
|
||||
});
|
||||
// Russian lang variables cp1251
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
theme_style_select : '-- Стили --',
|
||||
theme_code_desc : 'Редактировать HTML коды',
|
||||
theme_code_title : 'Редактор HTML кодов',
|
||||
theme_code_wordwrap : 'Перенос по словам',
|
||||
theme_sub_desc : 'Нижний индекс',
|
||||
theme_sup_desc : 'Верхний индекс',
|
||||
theme_hr_desc : 'Вставить горизонтальный разделитель',
|
||||
theme_removeformat_desc : 'Убрать форматирование',
|
||||
theme_custom1_desc : 'Ваше произвольное описание',
|
||||
insert_image_border : 'Рамка',
|
||||
insert_image_dimensions : 'Размеры',
|
||||
insert_image_vspace : 'Вертикальный отступ',
|
||||
insert_image_hspace : 'Горизонтальный отступ',
|
||||
insert_image_align : 'Выравнивание',
|
||||
insert_image_align_default : '-- Не задано --',
|
||||
insert_image_align_baseline : 'По базовой линии',
|
||||
insert_image_align_top : 'По верху',
|
||||
insert_image_align_middle : 'Посредине',
|
||||
insert_image_align_bottom : 'По низу',
|
||||
insert_image_align_texttop : 'По верху текста',
|
||||
insert_image_align_absmiddle : 'Абсолютно посредине',
|
||||
insert_image_align_absbottom : 'Абсолютно сверху',
|
||||
insert_image_align_left : 'Влево',
|
||||
insert_image_align_right : 'Вправо',
|
||||
theme_font_size : '-- Размер шрифта --',
|
||||
theme_fontdefault : '-- Семейство шрифтов --',
|
||||
theme_block : '-- Формат --',
|
||||
theme_paragraph : 'Абзац',
|
||||
theme_div : 'Div',
|
||||
theme_address : 'Стиль адреса',
|
||||
theme_pre : ':`Предварительно форматированный',
|
||||
theme_h1 : 'Заголовок 1',
|
||||
theme_h2 : 'Заголовок 2',
|
||||
theme_h3 : 'Заголовок 3',
|
||||
theme_h4 : 'Заголовок 4',
|
||||
theme_h5 : 'Заголовок 5',
|
||||
theme_h6 : 'Заголовок 6',
|
||||
theme_blockquote : 'Цитата',
|
||||
theme_samp : 'Образец кода',
|
||||
theme_dt : 'Термин ',
|
||||
theme_dd : 'Определение термина',
|
||||
ttheme_colorpicker_title : 'Выбрать цвет',
|
||||
theme_colorpicker_apply : 'Применить',
|
||||
theme_forecolor_desc : 'Выбрать цвет текста',
|
||||
theme_backcolor_desc : 'Выбрать цвет фона',
|
||||
theme_charmap_title : 'Выбор произвольного символа',
|
||||
theme_charmap_desc : 'Вставить произвольный символ',
|
||||
theme_visualaid_desc : 'Показать границы скрытых элементов',
|
||||
insert_anchor_title : 'Вставить/редактировать якорь',
|
||||
insert_anchor_name : 'Имя якоря',
|
||||
theme_anchor_desc : 'Вставить/редактировать якорь',
|
||||
theme_insert_link_titlefield : 'Заголовок',
|
||||
theme_clipboard_msg : 'Копировать/Вырезать/Вставить недоступны для Mozilla и Firefox.\nХотите узнать об этом подробнее?',
|
||||
theme_path : 'Путь',
|
||||
cut_desc : 'Вырезать',
|
||||
copy_desc : 'Копировать',
|
||||
paste_desc : 'Вставить',
|
||||
link_list : 'Перечень ссылок',
|
||||
image_list : 'Перечень картинок',
|
||||
browse : 'Подобрать',
|
||||
image_props_desc : 'Свойства картинки',
|
||||
newdocument_desc : 'Новый документ',
|
||||
class_name : 'Класс',
|
||||
newdocument : 'Вы уверены, что хотите очистить всё содержимое?',
|
||||
about_title : 'О TinyMCE',
|
||||
about : 'О TinyMCE',
|
||||
license : 'Лицензия',
|
||||
plugins : 'Плагины',
|
||||
plugin : 'Плагин',
|
||||
author : 'Автор',
|
||||
version : 'Версия',
|
||||
loaded_plugins : 'Загруженные плагины',
|
||||
help : 'Помощь',
|
||||
not_set : '-- не установлено --',
|
||||
close : 'Закрыть',
|
||||
toolbar_focus : 'Переместить фокус на панель инструментов - Alt+Q, Переместить фокус в редактор - Alt-Z, Переместить фокус на элемент пути - Alt-X',
|
||||
invalid_data : 'Ошибка: Введены некорректные значения, они помечены красным.',
|
||||
more_colors : 'Еще цвета',
|
||||
color_picker_tab : 'Выбор',
|
||||
color_picker : 'Выбор цветов',
|
||||
web_colors_tab : 'Для веб',
|
||||
web_colors : 'Цвета для веб',
|
||||
named_colors_tab : 'Названия',
|
||||
named_colors : 'Названия цветов',
|
||||
color : 'Цвет:',
|
||||
color_name : 'Название:'
|
||||
});
|
||||
|
|
|
|||
81
www/extras/tinymce2/jscripts/tiny_mce/themes/advanced/langs/sq.js
vendored
Executable file
|
|
@ -0,0 +1,81 @@
|
|||
// UK lang variables
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
theme_style_select : '-- Stilet --',
|
||||
theme_code_desc : 'Ndrysho kodin HTML',
|
||||
theme_code_title : 'Ndryshues i kodit HTML',
|
||||
theme_code_wordwrap : 'Shko sipas fjales',
|
||||
theme_sub_desc : 'Nenshkrim',
|
||||
theme_sup_desc : 'Mbishkrim',
|
||||
theme_hr_desc : 'Nderfut vizore horizontale',
|
||||
theme_removeformat_desc : 'Hiq formatimin',
|
||||
theme_custom1_desc : 'Pershkrimi juaj ketu',
|
||||
insert_image_border : 'Kufiri',
|
||||
insert_image_dimensions : 'Dimensionet',
|
||||
insert_image_vspace : 'Hapesira vertikale',
|
||||
insert_image_hspace : 'Hapesira horizontal',
|
||||
insert_image_align : 'Perngjitja',
|
||||
insert_image_align_default : '-- I pacaktuar --',
|
||||
insert_image_align_baseline : 'Linja baze',
|
||||
insert_image_align_top : 'Siper',
|
||||
insert_image_align_middle : 'Mes',
|
||||
insert_image_align_bottom : 'Poshte',
|
||||
insert_image_align_texttop : 'Mbi Tekst',
|
||||
insert_image_align_absmiddle : 'Mesi Absolut',
|
||||
insert_image_align_absbottom : 'Poshte Absolut',
|
||||
insert_image_align_left : 'Majtas',
|
||||
insert_image_align_right : 'Djathas',
|
||||
theme_font_size : '-- Madhesia e fontit --',
|
||||
theme_fontdefault : '-- Familja e fonteve --',
|
||||
theme_block : '-- Formati --',
|
||||
theme_paragraph : 'Paragrafi',
|
||||
theme_div : 'Divizion',
|
||||
theme_address : 'Adresa',
|
||||
theme_pre : 'Para-formatuar',
|
||||
theme_h1 : 'Koke 1',
|
||||
theme_h2 : 'Koke 2',
|
||||
theme_h3 : 'Koke 3',
|
||||
theme_h4 : 'Koke 4',
|
||||
theme_h5 : 'Koke 5',
|
||||
theme_h6 : 'Koke 6',
|
||||
theme_blockquote : 'Thonjez',
|
||||
theme_code : 'Kod',
|
||||
theme_samp : 'Shembull Kodi',
|
||||
theme_dt : 'Term i percaktimit',
|
||||
theme_dd : 'Pershkrim i percaktimit',
|
||||
theme_colorpicker_title : 'Zgjidh nje ngjyre',
|
||||
theme_colorpicker_apply : 'Apliko',
|
||||
theme_forecolor_desc : 'Zgjidh nje ngjyre teksti',
|
||||
theme_backcolor_desc : 'Zgjidh nje ngjyre sfondi',
|
||||
theme_charmap_title : 'Zgjidh nje karakter special',
|
||||
theme_charmap_desc : 'Nderfut nje karakter special',
|
||||
theme_visualaid_desc : 'Cakto vizat drejtuese/elemntet e padukshem',
|
||||
insert_anchor_title : 'Nderfut/ndrysho caktues',
|
||||
insert_anchor_name : 'Emri i caktuesit',
|
||||
theme_anchor_desc : 'Nderfut/ndrysho caktues',
|
||||
theme_insert_link_titlefield : 'Titulli',
|
||||
theme_clipboard_msg : '?',
|
||||
theme_path : 'Rruga',
|
||||
cut_desc : 'Prij',
|
||||
copy_desc : 'Kopjo',
|
||||
paste_desc : 'Ngjit',
|
||||
link_list : 'Liste lidhjesh',
|
||||
image_list : 'Liste imazhesh',
|
||||
browse : 'Kerko',
|
||||
image_props_desc : 'Te dhenat e imazhit',
|
||||
newdocument_desc : 'Dokument i ri',
|
||||
class_name : 'Klasa',
|
||||
newdocument : 'Jeni i sigurte se doni ta pastroni permbajtjen?',
|
||||
about_title : 'Rreth TinyMCE',
|
||||
about : 'Rreth',
|
||||
license : 'Liçensa',
|
||||
plugins : 'Pluginet',
|
||||
plugin : 'Plugin',
|
||||
author : 'Autori',
|
||||
version : 'Versioni',
|
||||
loaded_plugins : 'Pluginet e ngarkuara',
|
||||
help : 'Ndihme',
|
||||
not_set : '-- i pa caktuar --',
|
||||
close : 'Mbyll',
|
||||
toolbar_focus : 'Kerce tek butonat - Alt+Q, kerce tek ndryshuesi - Alt-Z, Kerce tek ruga e elementeve - Alt-X'
|
||||
});
|
||||
81
www/extras/tinymce2/jscripts/tiny_mce/themes/advanced/langs/sr.js
vendored
Executable file
|
|
@ -0,0 +1,81 @@
|
|||
// Serbian (SR) lang variables
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
theme_style_select : '-- Stilovi --',
|
||||
theme_code_desc : 'Promena HTML Koda',
|
||||
theme_code_title : 'HTML Kod Editor',
|
||||
theme_code_wordwrap : 'Prelamanje teksta',
|
||||
theme_sub_desc : 'Subscript',
|
||||
theme_sup_desc : 'Superscript',
|
||||
theme_hr_desc : 'Ubacivanje horizontalnog lenjira',
|
||||
theme_removeformat_desc : 'Brisanje formatiranja',
|
||||
theme_custom1_desc : 'Vaš opis ovde',
|
||||
insert_image_border : 'Okvir',
|
||||
insert_image_dimensions : 'Dimenzije',
|
||||
insert_image_vspace : 'Vertikalni prostor',
|
||||
insert_image_hspace : 'Horizontalni prostor',
|
||||
insert_image_align : 'Poravnanje',
|
||||
insert_image_align_default : '-- Nije podešeno --',
|
||||
insert_image_align_baseline : 'Donja linija',
|
||||
insert_image_align_top : 'Vrh',
|
||||
insert_image_align_middle : 'Sredina',
|
||||
insert_image_align_bottom : 'Dno',
|
||||
insert_image_align_texttop : 'TextTop',
|
||||
insert_image_align_absmiddle : 'Apsolutna sredina',
|
||||
insert_image_align_absbottom : 'Apsolutno dno',
|
||||
insert_image_align_left : 'Levo',
|
||||
insert_image_align_right : 'Desno',
|
||||
theme_font_size : '-- Veličina fonta --',
|
||||
theme_fontdefault : '-- Font familija --',
|
||||
theme_block : '-- Format --',
|
||||
theme_paragraph : 'Paragraf',
|
||||
theme_div : 'Div',
|
||||
theme_address : 'Adresa',
|
||||
theme_pre : 'Preformatirano',
|
||||
theme_h1 : 'Heading 1',
|
||||
theme_h2 : 'Heading 2',
|
||||
theme_h3 : 'Heading 3',
|
||||
theme_h4 : 'Heading 4',
|
||||
theme_h5 : 'Heading 5',
|
||||
theme_h6 : 'Heading 6',
|
||||
theme_blockquote : 'Blockquote',
|
||||
theme_code : 'Kod',
|
||||
theme_samp : 'Kod primer',
|
||||
theme_dt : 'Izraz za definiciju ',
|
||||
theme_dd : 'Opis definicije',
|
||||
theme_colorpicker_title : 'Izaberite boju',
|
||||
theme_colorpicker_apply : 'Primena',
|
||||
theme_forecolor_desc : 'Odaberite boju teksta',
|
||||
theme_backcolor_desc : 'Odaberite pozadinsku boju',
|
||||
theme_charmap_title : 'Odaberite proizvoljni karakter',
|
||||
theme_charmap_desc : 'Ubacite proizvoljni karakter',
|
||||
theme_visualaid_desc : 'Linije vodilje/nevidljivi elementi',
|
||||
insert_anchor_title : 'Ubacite/promenite link',
|
||||
insert_anchor_name : 'Ime linka',
|
||||
theme_anchor_desc : 'Ubacite/promenite link',
|
||||
theme_insert_link_titlefield : 'Naslov',
|
||||
theme_clipboard_msg : 'Copy/Cut/Paste nije moguće u Mozilli and Firefox-u.\nDa li želite više informacija o ovoj temi?',
|
||||
theme_path : 'Putanja',
|
||||
cut_desc : 'Cut',
|
||||
copy_desc : 'Copy',
|
||||
paste_desc : 'Paste',
|
||||
link_list : 'Lista linkova',
|
||||
image_list : 'Lista slika',
|
||||
browse : 'Pronadjite',
|
||||
image_props_desc : 'Parametri slike',
|
||||
newdocument_desc : 'Novi dokument',
|
||||
class_name : 'Class',
|
||||
newdocument : 'Da li ste sigurno da želite da izbrišete sav sadržaj?',
|
||||
about_title : 'O TinyMCE editoru',
|
||||
about : 'O editoru',
|
||||
license : 'Licenca',
|
||||
plugins : 'Pluginovi',
|
||||
plugin : 'Plugin',
|
||||
author : 'Autor',
|
||||
version : 'Verzija',
|
||||
loaded_plugins : 'Učitani pluginovi',
|
||||
help : 'Pomoć',
|
||||
not_set : '-- Nije podešeno --',
|
||||
close : 'Zatvaranje',
|
||||
toolbar_focus : 'Skok na dugmad za alate - Alt+Q, Skok na editor - Alt-Z, Skok na putanju elementa - Alt-X'
|
||||
});
|
||||
|
|
@ -3,13 +3,13 @@
|
|||
tinyMCE.addToLang('',{
|
||||
theme_style_select : '-- Stilar --',
|
||||
theme_code_desc : 'Editera HTML-koden',
|
||||
theme_code_title : 'HTML-källkodseditor',
|
||||
theme_code_title : 'HTML-källkodseditor',
|
||||
theme_code_wordwrap : 'Automatiskt radbyte',
|
||||
theme_sub_desc : 'Nedsänkt text',
|
||||
theme_sup_desc : 'Upphöjd text',
|
||||
theme_hr_desc : 'Sätt in horisontell linje',
|
||||
theme_sub_desc : 'Nedsänkt text',
|
||||
theme_sup_desc : 'Upphöjd text',
|
||||
theme_hr_desc : 'Sätt in horisontell linje',
|
||||
theme_removeformat_desc : 'Ta bort formatering',
|
||||
theme_custom1_desc : 'Din specialbeskriving här',
|
||||
theme_custom1_desc : 'Din specialbeskriving här',
|
||||
insert_image_border : 'Ram',
|
||||
insert_image_dimensions : 'Dimensioner',
|
||||
insert_image_vspace : 'Vertikalt tomrum',
|
||||
|
|
@ -17,14 +17,14 @@ insert_image_hspace : 'Horisontellt tomrum',
|
|||
insert_image_align : 'Justering',
|
||||
insert_image_align_default : 'Ingen',
|
||||
insert_image_align_baseline : 'Bottenlinjen',
|
||||
insert_image_align_top : 'Längst upp',
|
||||
insert_image_align_top : 'Längst upp',
|
||||
insert_image_align_middle : 'Mitten',
|
||||
insert_image_align_bottom : 'Längst ner',
|
||||
insert_image_align_bottom : 'Längst ner',
|
||||
insert_image_align_texttop : 'Textens top',
|
||||
insert_image_align_absmiddle : 'Absoluta mitten',
|
||||
insert_image_align_absbottom : 'Absolut längst ner',
|
||||
insert_image_align_left : 'Vänster',
|
||||
insert_image_align_right : 'Höger',
|
||||
insert_image_align_absbottom : 'Absolut längst ner',
|
||||
insert_image_align_left : 'Vänster',
|
||||
insert_image_align_right : 'Höger',
|
||||
insert_image_delta_width : 30,
|
||||
insert_image_delta_height : 10,
|
||||
theme_font_size : '-- Fontstorlek --',
|
||||
|
|
@ -33,36 +33,36 @@ theme_block : '-- Stycke --',
|
|||
theme_paragraph : 'Paragraf',
|
||||
theme_div : 'Div',
|
||||
theme_address : 'Adress',
|
||||
theme_pre : 'Förformatterad',
|
||||
theme_pre : 'Förformatterad',
|
||||
theme_h1 : 'Rubrik 1',
|
||||
theme_h2 : 'Rubrik 2',
|
||||
theme_h3 : 'Rubrik 3',
|
||||
theme_h4 : 'Rubrik 4',
|
||||
theme_h5 : 'Rubrik 5',
|
||||
theme_h6 : 'Rubrik 6',
|
||||
theme_colorpicker_title : 'Välj en färg',
|
||||
theme_colorpicker_apply : 'Verkställ',
|
||||
theme_forecolor_desc : 'Välj förgrundsfärg',
|
||||
theme_backcolor_desc : 'Välj bakgrundsfärg',
|
||||
theme_charmap_title : 'Välj specialtecken',
|
||||
theme_charmap_desc : 'Sätt in specialtecken',
|
||||
theme_visualaid_desc : 'Slå av/på osynliga element',
|
||||
theme_colorpicker_title : 'Välj en färg',
|
||||
theme_colorpicker_apply : 'Verkställ',
|
||||
theme_forecolor_desc : 'Välj förgrundsfärg',
|
||||
theme_backcolor_desc : 'Välj bakgrundsfärg',
|
||||
theme_charmap_title : 'Välj specialtecken',
|
||||
theme_charmap_desc : 'Sätt in specialtecken',
|
||||
theme_visualaid_desc : 'Slå av/på osynliga element',
|
||||
insert_anchor_title : 'Skapa/redigera ankare',
|
||||
insert_anchor_name : 'Ankarnamn',
|
||||
theme_anchor_desc : 'Skapa/redigera ankare',
|
||||
theme_insert_link_titlefield : 'Titel',
|
||||
theme_clipboard_msg : 'Klipput/Kopiera/Klistra fungerar inte Mozilla och Firefox. Vill du veta mer om detta?',
|
||||
theme_path : 'Sökväg',
|
||||
theme_clipboard_msg : 'Klipp ut/Kopiera/Klistra in fungerar inte Mozilla och Firefox. Vill du veta mer om detta?',
|
||||
theme_path : 'Sökväg',
|
||||
cut_desc : 'Klipp ut',
|
||||
copy_desc : 'Kopiera',
|
||||
paste_desc : 'Klistra in',
|
||||
link_list : 'Länkar',
|
||||
link_list : 'Länkar',
|
||||
image_list : 'Bilder',
|
||||
browse : 'Bläddra',
|
||||
image_props_desc : 'Bild egenskaper',
|
||||
browse : 'Bläddra',
|
||||
image_props_desc : 'Bildegenskaper',
|
||||
newdocument_desc : 'Nytt dokument',
|
||||
class_name : 'Stil',
|
||||
newdocument : 'Är du säker på att du vill tömma hela redigerings ytan?',
|
||||
class_name : 'Stilmallsklass',
|
||||
newdocument : 'Är du säker på att du vill tömma hela redigeringsytan?',
|
||||
about_title : 'Om TinyMCE',
|
||||
about : 'Om',
|
||||
license : 'Licens',
|
||||
|
|
@ -71,7 +71,7 @@ plugin : 'Insticksprogram',
|
|||
author : 'Utvecklare',
|
||||
version : 'Version',
|
||||
loaded_plugins : 'Laddade insticksprogram',
|
||||
help : 'Hjälp',
|
||||
help : 'Hjälp',
|
||||
not_set : '-- Inte satt --',
|
||||
close : 'Stäng'
|
||||
close : 'Stäng'
|
||||
});
|
||||
|
|
|
|||
77
www/extras/tinymce2/jscripts/tiny_mce/themes/advanced/langs/sv_utf8.js
vendored
Executable file
|
|
@ -0,0 +1,77 @@
|
|||
// SE lang variables
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
theme_style_select : '-- Stilar --',
|
||||
theme_code_desc : 'Editera HTML-koden',
|
||||
theme_code_title : 'HTML-källkodseditor',
|
||||
theme_code_wordwrap : 'Automatiskt radbyte',
|
||||
theme_sub_desc : 'Nedsänkt text',
|
||||
theme_sup_desc : 'Upphöjd text',
|
||||
theme_hr_desc : 'Sätt in horisontell linje',
|
||||
theme_removeformat_desc : 'Ta bort formatering',
|
||||
theme_custom1_desc : 'Din specialbeskriving här',
|
||||
insert_image_border : 'Ram',
|
||||
insert_image_dimensions : 'Dimensioner',
|
||||
insert_image_vspace : 'Vertikalt tomrum',
|
||||
insert_image_hspace : 'Horisontellt tomrum',
|
||||
insert_image_align : 'Justering',
|
||||
insert_image_align_default : 'Ingen',
|
||||
insert_image_align_baseline : 'Bottenlinjen',
|
||||
insert_image_align_top : 'Längst upp',
|
||||
insert_image_align_middle : 'Mitten',
|
||||
insert_image_align_bottom : 'Längst ner',
|
||||
insert_image_align_texttop : 'Textens top',
|
||||
insert_image_align_absmiddle : 'Absoluta mitten',
|
||||
insert_image_align_absbottom : 'Absolut längst ner',
|
||||
insert_image_align_left : 'Vänster',
|
||||
insert_image_align_right : 'Höger',
|
||||
insert_image_delta_width : 30,
|
||||
insert_image_delta_height : 10,
|
||||
theme_font_size : '-- Fontstorlek --',
|
||||
theme_fontdefault : '-- Font familj --',
|
||||
theme_block : '-- Stycke --',
|
||||
theme_paragraph : 'Paragraf',
|
||||
theme_div : 'Div',
|
||||
theme_address : 'Adress',
|
||||
theme_pre : 'Förformatterad',
|
||||
theme_h1 : 'Rubrik 1',
|
||||
theme_h2 : 'Rubrik 2',
|
||||
theme_h3 : 'Rubrik 3',
|
||||
theme_h4 : 'Rubrik 4',
|
||||
theme_h5 : 'Rubrik 5',
|
||||
theme_h6 : 'Rubrik 6',
|
||||
theme_colorpicker_title : 'Välj en färg',
|
||||
theme_colorpicker_apply : 'Verkställ',
|
||||
theme_forecolor_desc : 'Välj förgrundsfärg',
|
||||
theme_backcolor_desc : 'Välj bakgrundsfärg',
|
||||
theme_charmap_title : 'Välj specialtecken',
|
||||
theme_charmap_desc : 'Sätt in specialtecken',
|
||||
theme_visualaid_desc : 'Slå av/på osynliga element',
|
||||
insert_anchor_title : 'Skapa/redigera ankare',
|
||||
insert_anchor_name : 'Ankarnamn',
|
||||
theme_anchor_desc : 'Skapa/redigera ankare',
|
||||
theme_insert_link_titlefield : 'Titel',
|
||||
theme_clipboard_msg : 'Klipp ut/Kopiera/Klistra in fungerar inte Mozilla och Firefox. Vill du veta mer om detta?',
|
||||
theme_path : 'Sökväg',
|
||||
cut_desc : 'Klipp ut',
|
||||
copy_desc : 'Kopiera',
|
||||
paste_desc : 'Klistra in',
|
||||
link_list : 'Länkar',
|
||||
image_list : 'Bilder',
|
||||
browse : 'Bläddra',
|
||||
image_props_desc : 'Bildegenskaper',
|
||||
newdocument_desc : 'Nytt dokument',
|
||||
class_name : 'Stilmallsklass',
|
||||
newdocument : 'Är du säker på att du vill tömma hela redigeringsytan?',
|
||||
about_title : 'Om TinyMCE',
|
||||
about : 'Om',
|
||||
license : 'Licens',
|
||||
plugins : 'Insticksprogram',
|
||||
plugin : 'Insticksprogram',
|
||||
author : 'Utvecklare',
|
||||
version : 'Version',
|
||||
loaded_plugins : 'Laddade insticksprogram',
|
||||
help : 'Hjälp',
|
||||
not_set : '-- Inte satt --',
|
||||
close : 'Stäng'
|
||||
});
|
||||
89
www/extras/tinymce2/jscripts/tiny_mce/themes/advanced/langs/uk.js
vendored
Executable file
|
|
@ -0,0 +1,89 @@
|
|||
// Ukrainian translation
|
||||
tinyMCE.addToLang('',{
|
||||
theme_style_select : '-- Стилі --',
|
||||
theme_code_desc : 'Редагувати HTML коди',
|
||||
theme_code_title : 'Редактор HTML кодів',
|
||||
theme_code_wordwrap : 'Перенесення по словах',
|
||||
theme_sub_desc : 'Нижній індекс',
|
||||
theme_sup_desc : 'Верхній індекс',
|
||||
theme_hr_desc : 'Вставити горизонтальний роздільник',
|
||||
theme_removeformat_desc : 'Прибрати форматування',
|
||||
theme_custom1_desc : 'Ваш довільний опис',
|
||||
insert_image_border : 'Рамка',
|
||||
insert_image_dimensions : 'Розміри',
|
||||
insert_image_vspace : 'Вертикальний відступ',
|
||||
insert_image_hspace : 'Горизонтальний відступ',
|
||||
insert_image_align : 'Вирівнювання',
|
||||
insert_image_align_default : '-- Не поставлено --',
|
||||
insert_image_align_baseline : 'По базової лінії',
|
||||
insert_image_align_top : 'Вгору',
|
||||
insert_image_align_middle : 'До середини',
|
||||
insert_image_align_bottom : 'Вниз',
|
||||
insert_image_align_texttop : 'До гори тексту',
|
||||
insert_image_align_absmiddle : 'До абсолютної середини',
|
||||
insert_image_align_absbottom : 'До абсолютної гори',
|
||||
insert_image_align_left : 'Вліво',
|
||||
insert_image_align_right : 'Вправо',
|
||||
theme_font_size : '-- Розмір шрифту --',
|
||||
theme_fontdefault : '-- Сімейство шрифтів --',
|
||||
theme_block : '-- Формат --',
|
||||
theme_paragraph : 'Абзац',
|
||||
theme_div : 'DivX',
|
||||
theme_address : 'Стиль адреси',
|
||||
theme_pre : ':`Попередньо форматированный',
|
||||
theme_h1 : 'Заголовок 1',
|
||||
theme_h2 : 'Заголовок 2',
|
||||
theme_h3 : 'Заголовок 3',
|
||||
theme_h4 : 'Заголовок 4',
|
||||
theme_h5 : 'Заголовок 5',
|
||||
theme_h6 : 'Заголовок 6',
|
||||
theme_blockquote : 'Цитата',
|
||||
theme_samp : 'Зразок коду',
|
||||
theme_dt : 'Термін ',
|
||||
theme_dd : 'Визначення терміна',
|
||||
ttheme_colorpicker_title : 'Вибрати колір',
|
||||
theme_colorpicker_apply : 'Застосувати',
|
||||
theme_forecolor_desc : 'Вибрати колір тексту',
|
||||
theme_backcolor_desc : 'Вибрати колір фону',
|
||||
theme_charmap_title : 'Вибір довільного символу',
|
||||
theme_charmap_desc : 'Вставити довільний символ',
|
||||
theme_visualaid_desc : 'Показати межі прихованих елементів',
|
||||
insert_anchor_title : 'Вставити/змінити якір',
|
||||
insert_anchor_name : 'Ім\'я якоря',
|
||||
theme_anchor_desc : 'Вставити/змінити якір',
|
||||
theme_insert_link_titlefield : 'Заголовок',
|
||||
theme_clipboard_msg : 'Копіювати/Вирізати/Вставити недоступні для Mozilla і Firefox.\nХочете дізнатися про це докладніше?',
|
||||
theme_path : 'Шлях',
|
||||
cut_desc : 'Вирізати',
|
||||
copy_desc : 'Копіювати',
|
||||
paste_desc : 'Вставити',
|
||||
link_list : 'Перелік посилань',
|
||||
image_list : 'Перелік картинок',
|
||||
browse : 'Підібрати адекватні фігури',
|
||||
image_props_desc : 'Властивості картинки',
|
||||
newdocument_desc : 'Новий документ',
|
||||
class_name : 'Клас',
|
||||
newdocument : 'Ви абсолютно впевнені, що хочете очистити весь вміст?',
|
||||
about_title : 'Про TinyMCE',
|
||||
about : 'Про TinyMCE',
|
||||
license : 'Ліцензія',
|
||||
plugins : 'Плаґіни',
|
||||
plugin : 'Плаґін',
|
||||
author : 'Автор',
|
||||
version : 'Версія',
|
||||
loaded_plugins : 'Завантажені плаґіни',
|
||||
help : 'Допомога',
|
||||
not_set : '-- встановлено --',
|
||||
close : 'Закрити',
|
||||
toolbar_focus : 'Перемістити фокус на панель інструментів - Alt+Q, Перемістити фокус в редактор - Alt-Z, Перемістити фокус на елемент шляху - Alt-X',
|
||||
invalid_data : 'Помилка: Введені некоректні значення, їх позначено червоним.',
|
||||
more_colors : 'Ще кольору',
|
||||
color_picker_tab : 'Вибір',
|
||||
color_picker : 'Вибір кольорів',
|
||||
web_colors_tab : 'Для веб',
|
||||
web_colors : 'Кольори для веб',
|
||||
named_colors_tab : 'Назви',
|
||||
named_colors : 'Назви кольорів',
|
||||
color : 'Колір:',
|
||||
color_name : 'Назва:'
|
||||
});
|
||||
89
www/extras/tinymce2/jscripts/tiny_mce/themes/advanced/langs/uk_CP1251.js
vendored
Executable file
|
|
@ -0,0 +1,89 @@
|
|||
// Ukrainian translation
|
||||
tinyMCE.addToLang('',{
|
||||
theme_style_select : '-- Ñòèë³ --',
|
||||
theme_code_desc : 'Ðåäàãóâàòè HTML êîäè',
|
||||
theme_code_title : 'Ðåäàêòîð HTML êîä³â',
|
||||
theme_code_wordwrap : 'Ïåðåíåñåííÿ ïî ñëîâàõ',
|
||||
theme_sub_desc : 'Íèæí³é ³íäåêñ',
|
||||
theme_sup_desc : 'Âåðõí³é ³íäåêñ',
|
||||
theme_hr_desc : 'Âñòàâèòè ãîðèçîíòàëüíèé ðîçä³ëüíèê',
|
||||
theme_removeformat_desc : 'Ïðèáðàòè ôîðìàòóâàííÿ',
|
||||
theme_custom1_desc : 'Âàø äîâ³ëüíèé îïèñ',
|
||||
insert_image_border : 'Ðàìêà',
|
||||
insert_image_dimensions : 'Ðîçì³ðè',
|
||||
insert_image_vspace : 'Âåðòèêàëüíèé â³äñòóï',
|
||||
insert_image_hspace : 'Ãîðèçîíòàëüíèé â³äñòóï',
|
||||
insert_image_align : 'Âèð³âíþâàííÿ',
|
||||
insert_image_align_default : '-- Íå ïîñòàâëåíî --',
|
||||
insert_image_align_baseline : 'Ïî áàçîâî¿ ë³í³¿',
|
||||
insert_image_align_top : 'Âãîðó',
|
||||
insert_image_align_middle : 'Äî ñåðåäèíè',
|
||||
insert_image_align_bottom : 'Âíèç',
|
||||
insert_image_align_texttop : 'Äî ãîðè òåêñòó',
|
||||
insert_image_align_absmiddle : 'Äî àáñîëþòíî¿ ñåðåäèíè',
|
||||
insert_image_align_absbottom : 'Äî àáñîëþòíî¿ ãîðè',
|
||||
insert_image_align_left : 'Âë³âî',
|
||||
insert_image_align_right : 'Âïðàâî',
|
||||
theme_font_size : '-- Ðîçì³ð øðèôòó --',
|
||||
theme_fontdefault : '-- ѳìåéñòâî øðèôò³â --',
|
||||
theme_block : '-- Ôîðìàò --',
|
||||
theme_paragraph : 'Àáçàö',
|
||||
theme_div : 'DivX',
|
||||
theme_address : 'Ñòèëü àäðåñè',
|
||||
theme_pre : ':`Ïîïåðåäíüî ôîðìàòèðîâàííûé',
|
||||
theme_h1 : 'Çàãîëîâîê 1',
|
||||
theme_h2 : 'Çàãîëîâîê 2',
|
||||
theme_h3 : 'Çàãîëîâîê 3',
|
||||
theme_h4 : 'Çàãîëîâîê 4',
|
||||
theme_h5 : 'Çàãîëîâîê 5',
|
||||
theme_h6 : 'Çàãîëîâîê 6',
|
||||
theme_blockquote : 'Öèòàòà',
|
||||
theme_samp : 'Çðàçîê êîäó',
|
||||
theme_dt : 'Òåðì³í ',
|
||||
theme_dd : 'Âèçíà÷åííÿ òåðì³íà',
|
||||
ttheme_colorpicker_title : 'Âèáðàòè êîë³ð',
|
||||
theme_colorpicker_apply : 'Çàñòîñóâàòè',
|
||||
theme_forecolor_desc : 'Âèáðàòè êîë³ð òåêñòó',
|
||||
theme_backcolor_desc : 'Âèáðàòè êîë³ð ôîíó',
|
||||
theme_charmap_title : 'Âèá³ð äîâ³ëüíîãî ñèìâîëó',
|
||||
theme_charmap_desc : 'Âñòàâèòè äîâ³ëüíèé ñèìâîë',
|
||||
theme_visualaid_desc : 'Ïîêàçàòè ìåæ³ ïðèõîâàíèõ åëåìåíò³â',
|
||||
insert_anchor_title : 'Âñòàâèòè/çì³íèòè ÿê³ð',
|
||||
insert_anchor_name : '²ì\'ÿ ÿêîðÿ',
|
||||
theme_anchor_desc : 'Âñòàâèòè/çì³íèòè ÿê³ð',
|
||||
theme_insert_link_titlefield : 'Çàãîëîâîê',
|
||||
theme_clipboard_msg : 'Êîï³þâàòè/Âèð³çàòè/Âñòàâèòè íåäîñòóïí³ äëÿ Mozilla ³ Firefox.\nÕî÷åòå ä³çíàòèñÿ ïðî öå äîêëàäí³øå?',
|
||||
theme_path : 'Øëÿõ',
|
||||
cut_desc : 'Âèð³çàòè',
|
||||
copy_desc : 'Êîï³þâàòè',
|
||||
paste_desc : 'Âñòàâèòè',
|
||||
link_list : 'Ïåðåë³ê ïîñèëàíü',
|
||||
image_list : 'Ïåðåë³ê êàðòèíîê',
|
||||
browse : 'ϳä³áðàòè àäåêâàòí³ ô³ãóðè',
|
||||
image_props_desc : 'Âëàñòèâîñò³ êàðòèíêè',
|
||||
newdocument_desc : 'Íîâèé äîêóìåíò',
|
||||
class_name : 'Êëàñ',
|
||||
newdocument : 'Âè àáñîëþòíî âïåâíåí³, ùî õî÷åòå î÷èñòèòè âåñü âì³ñò?',
|
||||
about_title : 'Ïðî TinyMCE',
|
||||
about : 'Ïðî TinyMCE',
|
||||
license : '˳öåíç³ÿ',
|
||||
plugins : 'Ïëà´³íè',
|
||||
plugin : 'Ïëà´³í',
|
||||
author : 'Àâòîð',
|
||||
version : 'Âåðñ³ÿ',
|
||||
loaded_plugins : 'Çàâàíòàæåí³ ïëà´³íè',
|
||||
help : 'Äîïîìîãà',
|
||||
not_set : '-- âñòàíîâëåíî --',
|
||||
close : 'Çàêðèòè',
|
||||
toolbar_focus : 'Ïåðåì³ñòèòè ôîêóñ íà ïàíåëü ³íñòðóìåíò³â - Alt+Q, Ïåðåì³ñòèòè ôîêóñ â ðåäàêòîð - Alt-Z, Ïåðåì³ñòèòè ôîêóñ íà åëåìåíò øëÿõó - Alt-X',
|
||||
invalid_data : 'Ïîìèëêà: Ââåäåí³ íåêîðåêòí³ çíà÷åííÿ, ¿õ ïîçíà÷åíî ÷åðâîíèì.',
|
||||
more_colors : 'Ùå êîëüîðó',
|
||||
color_picker_tab : 'Âèá³ð',
|
||||
color_picker : 'Âèá³ð êîëüîð³â',
|
||||
web_colors_tab : 'Äëÿ âåá',
|
||||
web_colors : 'Êîëüîðè äëÿ âåá',
|
||||
named_colors_tab : 'Íàçâè',
|
||||
named_colors : 'Íàçâè êîëüîð³â',
|
||||
color : 'Êîë³ð:',
|
||||
color_name : 'Íàçâà:'
|
||||
});
|
||||
89
www/extras/tinymce2/jscripts/tiny_mce/themes/advanced/langs/uk_KOI8-U.js
vendored
Executable file
|
|
@ -0,0 +1,89 @@
|
|||
// Ukrainian translation
|
||||
tinyMCE.addToLang('',{
|
||||
theme_style_select : '-- óÔÉ̦ --',
|
||||
theme_code_desc : 'òÅÄÁÇÕ×ÁÔÉ HTML ËÏÄÉ',
|
||||
theme_code_title : 'òÅÄÁËÔÏÒ HTML ËÏĦ×',
|
||||
theme_code_wordwrap : 'ðÅÒÅÎÅÓÅÎÎÑ ÐÏ ÓÌÏ×ÁÈ',
|
||||
theme_sub_desc : 'îÉÖÎ¦Ê ¦ÎÄÅËÓ',
|
||||
theme_sup_desc : '÷ÅÒÈÎ¦Ê ¦ÎÄÅËÓ',
|
||||
theme_hr_desc : '÷ÓÔÁ×ÉÔÉ ÇÏÒÉÚÏÎÔÁÌØÎÉÊ ÒÏÚÄ¦ÌØÎÉË',
|
||||
theme_removeformat_desc : 'ðÒÉÂÒÁÔÉ ÆÏÒÍÁÔÕ×ÁÎÎÑ',
|
||||
theme_custom1_desc : '÷ÁÛ ÄÏ×¦ÌØÎÉÊ ÏÐÉÓ',
|
||||
insert_image_border : 'òÁÍËÁ',
|
||||
insert_image_dimensions : 'òÏÚͦÒÉ',
|
||||
insert_image_vspace : '÷ÅÒÔÉËÁÌØÎÉÊ ×¦ÄÓÔÕÐ',
|
||||
insert_image_hspace : 'çÏÒÉÚÏÎÔÁÌØÎÉÊ ×¦ÄÓÔÕÐ',
|
||||
insert_image_align : '÷ÉÒ¦×ÎÀ×ÁÎÎÑ',
|
||||
insert_image_align_default : '-- îÅ ÐÏÓÔÁ×ÌÅÎÏ --',
|
||||
insert_image_align_baseline : 'ðÏ ÂÁÚÏ×ϧ ̦Φ§',
|
||||
insert_image_align_top : '÷ÇÏÒÕ',
|
||||
insert_image_align_middle : 'äÏ ÓÅÒÅÄÉÎÉ',
|
||||
insert_image_align_bottom : '÷ÎÉÚ',
|
||||
insert_image_align_texttop : 'äÏ ÇÏÒÉ ÔÅËÓÔÕ',
|
||||
insert_image_align_absmiddle : 'äÏ ÁÂÓÏÌÀÔÎϧ ÓÅÒÅÄÉÎÉ',
|
||||
insert_image_align_absbottom : 'äÏ ÁÂÓÏÌÀÔÎϧ ÇÏÒÉ',
|
||||
insert_image_align_left : '÷̦×Ï',
|
||||
insert_image_align_right : '÷ÐÒÁ×Ï',
|
||||
theme_font_size : '-- òÏÚÍ¦Ò ÛÒÉÆÔÕ --',
|
||||
theme_fontdefault : '-- ó¦ÍÅÊÓÔ×Ï ÛÒÉÆÔ¦× --',
|
||||
theme_block : '-- æÏÒÍÁÔ --',
|
||||
theme_paragraph : 'áÂÚÁÃ',
|
||||
theme_div : 'DivX',
|
||||
theme_address : 'óÔÉÌØ ÁÄÒÅÓÉ',
|
||||
theme_pre : ':`ðÏÐÅÒÅÄÎØÏ ÆÏÒÍÁÔÉÒÏ×ÁÎÎÙÊ',
|
||||
theme_h1 : 'úÁÇÏÌÏ×ÏË 1',
|
||||
theme_h2 : 'úÁÇÏÌÏ×ÏË 2',
|
||||
theme_h3 : 'úÁÇÏÌÏ×ÏË 3',
|
||||
theme_h4 : 'úÁÇÏÌÏ×ÏË 4',
|
||||
theme_h5 : 'úÁÇÏÌÏ×ÏË 5',
|
||||
theme_h6 : 'úÁÇÏÌÏ×ÏË 6',
|
||||
theme_blockquote : 'ãÉÔÁÔÁ',
|
||||
theme_samp : 'úÒÁÚÏË ËÏÄÕ',
|
||||
theme_dt : 'ôÅÒͦΠ',
|
||||
theme_dd : '÷ÉÚÎÁÞÅÎÎÑ ÔÅÒͦÎÁ',
|
||||
ttheme_colorpicker_title : '÷ÉÂÒÁÔÉ ËÏ̦Ò',
|
||||
theme_colorpicker_apply : 'úÁÓÔÏÓÕ×ÁÔÉ',
|
||||
theme_forecolor_desc : '÷ÉÂÒÁÔÉ ËÏÌ¦Ò ÔÅËÓÔÕ',
|
||||
theme_backcolor_desc : '÷ÉÂÒÁÔÉ ËÏÌ¦Ò ÆÏÎÕ',
|
||||
theme_charmap_title : '÷ÉÂ¦Ò ÄÏ×¦ÌØÎÏÇÏ ÓÉÍ×ÏÌÕ',
|
||||
theme_charmap_desc : '÷ÓÔÁ×ÉÔÉ ÄÏ×¦ÌØÎÉÊ ÓÉÍ×ÏÌ',
|
||||
theme_visualaid_desc : 'ðÏËÁÚÁÔÉ ÍÅÖ¦ ÐÒÉÈÏ×ÁÎÉÈ ÅÌÅÍÅÎÔ¦×',
|
||||
insert_anchor_title : '÷ÓÔÁ×ÉÔÉ/ÚͦÎÉÔÉ Ñ˦Ò',
|
||||
insert_anchor_name : '¶Í\'Ñ ÑËÏÒÑ',
|
||||
theme_anchor_desc : '÷ÓÔÁ×ÉÔÉ/ÚͦÎÉÔÉ Ñ˦Ò',
|
||||
theme_insert_link_titlefield : 'úÁÇÏÌÏ×ÏË',
|
||||
theme_clipboard_msg : 'ëÏЦÀ×ÁÔÉ/÷ÉÒ¦ÚÁÔÉ/÷ÓÔÁ×ÉÔÉ ÎÅÄÏÓÔÕÐΦ ÄÌÑ Mozilla ¦ Firefox.\nèÏÞÅÔŠĦÚÎÁÔÉÓÑ ÐÒÏ ÃÅ ÄÏËÌÁÄΦÛÅ?',
|
||||
theme_path : 'ûÌÑÈ',
|
||||
cut_desc : '÷ÉÒ¦ÚÁÔÉ',
|
||||
copy_desc : 'ëÏЦÀ×ÁÔÉ',
|
||||
paste_desc : '÷ÓÔÁ×ÉÔÉ',
|
||||
link_list : 'ðÅÒÅÌ¦Ë ÐÏÓÉÌÁÎØ',
|
||||
image_list : 'ðÅÒÅÌ¦Ë ËÁÒÔÉÎÏË',
|
||||
browse : 'ð¦Ä¦ÂÒÁÔÉ ÁÄÅË×ÁÔΦ ƦÇÕÒÉ',
|
||||
image_props_desc : '÷ÌÁÓÔÉ×ÏÓÔ¦ ËÁÒÔÉÎËÉ',
|
||||
newdocument_desc : 'îÏ×ÉÊ ÄÏËÕÍÅÎÔ',
|
||||
class_name : 'ëÌÁÓ',
|
||||
newdocument : '÷É ÁÂÓÏÌÀÔÎÏ ×ÐÅ×ÎÅΦ, ÝÏ ÈÏÞÅÔÅ ÏÞÉÓÔÉÔÉ ×ÅÓØ ×ͦÓÔ?',
|
||||
about_title : 'ðÒÏ TinyMCE',
|
||||
about : 'ðÒÏ TinyMCE',
|
||||
license : 'ì¦ÃÅÎÚ¦Ñ',
|
||||
plugins : 'ðÌÁ¦ÎÉ',
|
||||
plugin : 'ðÌÁ¦Î',
|
||||
author : 'á×ÔÏÒ',
|
||||
version : '÷ÅÒÓ¦Ñ',
|
||||
loaded_plugins : 'úÁ×ÁÎÔÁÖÅΦ ÐÌÁ¦ÎÉ',
|
||||
help : 'äÏÐÏÍÏÇÁ',
|
||||
not_set : '-- ×ÓÔÁÎÏ×ÌÅÎÏ --',
|
||||
close : 'úÁËÒÉÔÉ',
|
||||
toolbar_focus : 'ðÅÒÅͦÓÔÉÔÉ ÆÏËÕÓ ÎÁ ÐÁÎÅÌØ ¦ÎÓÔÒÕÍÅÎÔ¦× - Alt+Q, ðÅÒÅͦÓÔÉÔÉ ÆÏËÕÓ × ÒÅÄÁËÔÏÒ - Alt-Z, ðÅÒÅͦÓÔÉÔÉ ÆÏËÕÓ ÎÁ ÅÌÅÍÅÎÔ ÛÌÑÈÕ - Alt-X',
|
||||
invalid_data : 'ðÏÍÉÌËÁ: ÷×ÅÄÅΦ ÎÅËÏÒÅËÔΦ ÚÎÁÞÅÎÎÑ, §È ÐÏÚÎÁÞÅÎÏ ÞÅÒ×ÏÎÉÍ.',
|
||||
more_colors : 'ýÅ ËÏÌØÏÒÕ',
|
||||
color_picker_tab : '÷ɦÒ',
|
||||
color_picker : '÷ÉÂ¦Ò ËÏÌØÏÒ¦×',
|
||||
web_colors_tab : 'äÌÑ ×ÅÂ',
|
||||
web_colors : 'ëÏÌØÏÒÉ ÄÌÑ ×ÅÂ',
|
||||
named_colors_tab : 'îÁÚ×É',
|
||||
named_colors : 'îÁÚ×É ËÏÌØÏÒ¦×',
|
||||
color : 'ëÏ̦Ò:',
|
||||
color_name : 'îÁÚ×Á:'
|
||||
});
|
||||
|
|
@ -4,6 +4,7 @@
|
|||
<script language="javascript" type="text/javascript" src="../../tiny_mce_popup.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>
|
||||
<script language="javascript" type="text/javascript" src="../../utils/validate.js"></script>
|
||||
<script language="javascript" type="text/javascript" src="jscripts/link.js"></script>
|
||||
<base target="_self" />
|
||||
</head>
|
||||
|
|
@ -23,7 +24,7 @@
|
|||
<td nowrap="nowrap"><label for="href">{$lang_insert_link_url}</label></td>
|
||||
<td><table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td><input id="href" name="href" type="text" value="" style="width: 200px" /></td>
|
||||
<td><input id="href" name="href" type="text" value="" style="width: 200px" onchange="checkPrefix(this);" /></td>
|
||||
<td id="hrefbrowsercontainer"> </td>
|
||||
</tr>
|
||||
</table></td>
|
||||
|
|
|
|||
|
|
@ -10,11 +10,13 @@
|
|||
<form name="source" onsubmit="saveContent();" action="#">
|
||||
<div style="float: left" class="title">{$lang_theme_code_title}</div>
|
||||
|
||||
<div style="float: right">
|
||||
<script language="javascript" type="text/javascript">renderWordWrap();</script>
|
||||
<div id="wrapline" style="float: right">
|
||||
<input type="checkbox" name="wraped" id="wraped" onclick="toggleWordWrap(this);" class="wordWrapCode" /><label for="wraped">{$lang_theme_code_wordwrap}</label>
|
||||
</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="off"></textarea>
|
||||
<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"></textarea>
|
||||
|
||||
<div class="mceActionPanel">
|
||||
<div style="float: left">
|
||||
|
|
|
|||
|
|
@ -1,4 +1 @@
|
|||
var TinyMCE_SimpleTheme={_buttonMap:'bold,bullist,cleanup,italic,numlist,redo,strikethrough,underline,undo',getEditorTemplate:function(){var html='';html+='<table class="mceEditor" border="0" cellpadding="0" cellspacing="0" width="{$width}" height="{$height}">';html+='<tr><td align="center">';html+='<span id="{$editor_id}">IFRAME</span>';html+='</td></tr>';html+='<tr><td class="mceToolbar" align="center" height="1">';html+=tinyMCE.getButtonHTML('bold','lang_bold_desc','{$themeurl}/images/{$lang_bold_img}','Bold');html+=tinyMCE.getButtonHTML('italic','lang_italic_desc','{$themeurl}/images/{$lang_italic_img}','Italic');html+=tinyMCE.getButtonHTML('underline','lang_underline_desc','{$themeurl}/images/{$lang_underline_img}','Underline');html+=tinyMCE.getButtonHTML('strikethrough','lang_striketrough_desc','{$themeurl}/images/strikethrough.gif','Strikethrough');html+='<img src="{$themeurl}/images/separator.gif" width="2" height="20" class="mceSeparatorLine" />';html+=tinyMCE.getButtonHTML('undo','lang_undo_desc','{$themeurl}/images/undo.gif','Undo');html+=tinyMCE.getButtonHTML('redo','lang_redo_desc','{$themeurl}/images/redo.gif','Redo');html+='<img src="{$themeurl}/images/separator.gif" width="2" height="20" class="mceSeparatorLine" />';html+=tinyMCE.getButtonHTML('cleanup','lang_cleanup_desc','{$themeurl}/images/cleanup.gif','mceCleanup')
|
||||
html+='<img src="{$themeurl}/images/separator.gif" width="2" height="20" class="mceSeparatorLine" />';html+=tinyMCE.getButtonHTML('bullist','lang_bullist_desc','{$themeurl}/images/bullist.gif','InsertUnorderedList')
|
||||
html+=tinyMCE.getButtonHTML('numlist','lang_numlist_desc','{$themeurl}/images/numlist.gif','InsertOrderedList')
|
||||
html+='</td></tr></table>';return{delta_width:0,delta_height:20,html:html};},handleNodeChange:function(editor_id,node){tinyMCE.switchClass(editor_id+'_bold','mceButtonNormal');tinyMCE.switchClass(editor_id+'_italic','mceButtonNormal');tinyMCE.switchClass(editor_id+'_underline','mceButtonNormal');tinyMCE.switchClass(editor_id+'_strikethrough','mceButtonNormal');tinyMCE.switchClass(editor_id+'_bullist','mceButtonNormal');tinyMCE.switchClass(editor_id+'_numlist','mceButtonNormal');do{switch(node.nodeName.toLowerCase()){case"b":case"strong":tinyMCE.switchClass(editor_id+'_bold','mceButtonSelected');break;case"i":case"em":tinyMCE.switchClass(editor_id+'_italic','mceButtonSelected');break;case"u":tinyMCE.switchClass(editor_id+'_underline','mceButtonSelected');break;case"strike":tinyMCE.switchClass(editor_id+'_strikethrough','mceButtonSelected');break;case"ul":tinyMCE.switchClass(editor_id+'_bullist','mceButtonSelected');break;case"ol":tinyMCE.switchClass(editor_id+'_numlist','mceButtonSelected');break;}}while((node=node.parentNode)!=null);}};tinyMCE.addTheme("simple",TinyMCE_SimpleTheme);tinyMCE.addButtonMap(TinyMCE_SimpleTheme._buttonMap);
|
||||
var TinyMCE_SimpleTheme={_buttonMap:'bold,bullist,cleanup,italic,numlist,redo,strikethrough,underline,undo',getEditorTemplate:function(){var html='';html+='<table class="mceEditor" border="0" cellpadding="0" cellspacing="0" width="{$width}" height="{$height}">';html+='<tr><td align="center">';html+='<span id="{$editor_id}">IFRAME</span>';html+='</td></tr>';html+='<tr><td class="mceToolbar" align="center" height="1">';html+=tinyMCE.getButtonHTML('bold','lang_bold_desc','{$themeurl}/images/{$lang_bold_img}','Bold');html+=tinyMCE.getButtonHTML('italic','lang_italic_desc','{$themeurl}/images/{$lang_italic_img}','Italic');html+=tinyMCE.getButtonHTML('underline','lang_underline_desc','{$themeurl}/images/{$lang_underline_img}','Underline');html+=tinyMCE.getButtonHTML('strikethrough','lang_striketrough_desc','{$themeurl}/images/strikethrough.gif','Strikethrough');html+='<img src="{$themeurl}/images/separator.gif" width="2" height="20" class="mceSeparatorLine" />';html+=tinyMCE.getButtonHTML('undo','lang_undo_desc','{$themeurl}/images/undo.gif','Undo');html+=tinyMCE.getButtonHTML('redo','lang_redo_desc','{$themeurl}/images/redo.gif','Redo');html+='<img src="{$themeurl}/images/separator.gif" width="2" height="20" class="mceSeparatorLine" />';html+=tinyMCE.getButtonHTML('cleanup','lang_cleanup_desc','{$themeurl}/images/cleanup.gif','mceCleanup');html+='<img src="{$themeurl}/images/separator.gif" width="2" height="20" class="mceSeparatorLine" />';html+=tinyMCE.getButtonHTML('bullist','lang_bullist_desc','{$themeurl}/images/bullist.gif','InsertUnorderedList');html+=tinyMCE.getButtonHTML('numlist','lang_numlist_desc','{$themeurl}/images/numlist.gif','InsertOrderedList');html+='</td></tr></table>';return{delta_width:0,delta_height:20,html:html}},handleNodeChange:function(editor_id,node){tinyMCE.switchClass(editor_id+'_bold','mceButtonNormal');tinyMCE.switchClass(editor_id+'_italic','mceButtonNormal');tinyMCE.switchClass(editor_id+'_underline','mceButtonNormal');tinyMCE.switchClass(editor_id+'_strikethrough','mceButtonNormal');tinyMCE.switchClass(editor_id+'_bullist','mceButtonNormal');tinyMCE.switchClass(editor_id+'_numlist','mceButtonNormal');do{switch(node.nodeName.toLowerCase()){case"b":case"strong":tinyMCE.switchClass(editor_id+'_bold','mceButtonSelected');break;case"i":case"em":tinyMCE.switchClass(editor_id+'_italic','mceButtonSelected');break;case"u":tinyMCE.switchClass(editor_id+'_underline','mceButtonSelected');break;case"strike":tinyMCE.switchClass(editor_id+'_strikethrough','mceButtonSelected');break;case"ul":tinyMCE.switchClass(editor_id+'_bullist','mceButtonSelected');break;case"ol":tinyMCE.switchClass(editor_id+'_numlist','mceButtonSelected');break}}while((node=node.parentNode)!=null)}};tinyMCE.addTheme("simple",TinyMCE_SimpleTheme);tinyMCE.addButtonMap(TinyMCE_SimpleTheme._buttonMap);
|
||||
|
|
@ -1,10 +1,8 @@
|
|||
/**
|
||||
* $RCSfile: editor_template_src.js,v $
|
||||
* $Revision: 1.9 $
|
||||
* $Date: 2006/04/18 13:32:53 $
|
||||
* $Id: editor_template_src.js 162 2007-01-03 16:16:52Z spocke $
|
||||
*
|
||||
* @author Moxiecode
|
||||
* @copyright Copyright © 2004-2006, Moxiecode Systems AB, All rights reserved.
|
||||
* @copyright Copyright © 2004-2007, Moxiecode Systems AB, All rights reserved.
|
||||
*/
|
||||
|
||||
var TinyMCE_SimpleTheme = {
|
||||
|
|
@ -27,10 +25,10 @@ var TinyMCE_SimpleTheme = {
|
|||
html += tinyMCE.getButtonHTML('undo', 'lang_undo_desc', '{$themeurl}/images/undo.gif', 'Undo');
|
||||
html += tinyMCE.getButtonHTML('redo', 'lang_redo_desc', '{$themeurl}/images/redo.gif', 'Redo');
|
||||
html += '<img src="{$themeurl}/images/separator.gif" width="2" height="20" class="mceSeparatorLine" />';
|
||||
html += tinyMCE.getButtonHTML('cleanup', 'lang_cleanup_desc', '{$themeurl}/images/cleanup.gif', 'mceCleanup')
|
||||
html += tinyMCE.getButtonHTML('cleanup', 'lang_cleanup_desc', '{$themeurl}/images/cleanup.gif', 'mceCleanup');
|
||||
html += '<img src="{$themeurl}/images/separator.gif" width="2" height="20" class="mceSeparatorLine" />';
|
||||
html += tinyMCE.getButtonHTML('bullist', 'lang_bullist_desc', '{$themeurl}/images/bullist.gif', 'InsertUnorderedList')
|
||||
html += tinyMCE.getButtonHTML('numlist', 'lang_numlist_desc', '{$themeurl}/images/numlist.gif', 'InsertOrderedList')
|
||||
html += tinyMCE.getButtonHTML('bullist', 'lang_bullist_desc', '{$themeurl}/images/bullist.gif', 'InsertUnorderedList');
|
||||
html += tinyMCE.getButtonHTML('numlist', 'lang_numlist_desc', '{$themeurl}/images/numlist.gif', 'InsertOrderedList');
|
||||
html += '</td></tr></table>';
|
||||
|
||||
return {
|
||||
|
|
|
|||