upgrading tinymce to 2.0.5.1

This commit is contained in:
JT Smith 2006-04-15 20:09:41 +00:00
parent 00d46f6148
commit c012e8913d
35 changed files with 1224 additions and 0 deletions

View file

@ -0,0 +1,38 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Option: accessibility_focus</title>
<link href="css/screen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="header">
<h1>Option: accessibility_focus</h1>
</div>
<div class="content">
<p>
If this option is set to true some accessibility focus will available to all buttons, you will be able to tab through them all. If you set this option to false, focus will be placed inside the text area when you tab through the interface.
</p>
<div class="separator"></div>
<h3>Example of usage of the accessibility_focus option:</h3>
<div class="example">
<pre>
tinyMCE.init({
...
<strong>accessibility_focus : false</strong>
});
</pre>
</div>
</div>
<div class="footer">
<div class="helpindexlink"><a href="index.html">Index</a></div>
<div class="copyright">Copyright &copy; 2003-2006 <a href="http://www.moxiecode.com">Moxiecode Systems AB</a></div>
<br style="clear: both" />
</div>
</body>
</html>

View file

@ -0,0 +1,39 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Option: custom_shortcuts</title>
<link href="css/screen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="header">
<h1>Option: custom_shortcuts</h1>
</div>
<div class="content">
<p>
This option enables you to disable/enable the custom keyboard shortcuts plugins and themes may register. The value of this
option is set to true by default.
</p>
<div class="separator"></div>
<h3>Example of usage of the custom_shortcuts option:</h3>
<div class="example">
<pre>
tinyMCE.init({
...
<strong>custom_shortcuts : false</strong>
});
</pre>
</div>
</div>
<div class="footer">
<div class="helpindexlink"><a href="index.html">Index</a></div>
<div class="copyright">Copyright &copy; 2003-2006 <a href="http://www.moxiecode.com">Moxiecode Systems AB</a></div>
<br style="clear: both" />
</div>
</body>
</html>

View file

@ -0,0 +1,38 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Option: custom_undo_redo_restore_selection</title>
<link href="css/screen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="header">
<h1>Option: custom_undo_redo_restore_selection</h1>
</div>
<div class="content">
<p>
This option gives you the possibility to turn on/off the restoration of the cursor/selection when a undo/redo event occurs. This option is enabled by default.
</p>
<div class="separator"></div>
<h3>Example of usage of the custom_undo_redo_restore_selection option:</h3>
<div class="example">
<pre>
tinyMCE.init({
...
<strong>custom_undo_redo_restore_selection : false</strong>
});
</pre>
</div>
</div>
<div class="footer">
<div class="helpindexlink"><a href="index.html">Index</a></div>
<div class="copyright">Copyright &copy; 2003-2006 <a href="http://www.moxiecode.com">Moxiecode Systems AB</a></div>
<br style="clear: both" />
</div>
</body>
</html>

View file

@ -0,0 +1,69 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Option: execcommand_callback</title>
<link href="css/screen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="header">
<h1>Option: execcommand_callback</h1>
</div>
<div class="content">
<p>
This option allows you to add a custom callback function for execCommand handling. This enables you to override internal
command functions in TinyMCE. The example below shows how the mceLink and mceImage are overriden.
</p>
<div class="separator"></div>
<h3>Example of usage of the execcommand_callback option:</h3>
<div class="example">
<pre>
function <strong>myCustomExecCommandHandler</strong>(editor_id, elm, command, user_interface, value) {
var linkElm, imageElm, inst;
switch (command) {
case "mceLink":
inst = tinyMCE.getInstanceById(editor_id);
linkElm = tinyMCE.getParentElement(inst.selection.getFocusElement(), "a");
if (linkElm)
alert("Link dialog has been overriden. Found link href: " + tinyMCE.getAttrib(linkElm, "href"));
else
alert("Link dialog has been overriden.");
return true;
case "mceImage":
inst = tinyMCE.getInstanceById(editor_id);
imageElm = tinyMCE.getParentElement(inst.selection.getFocusElement(), "img");
if (imageElm)
alert("Image dialog has been overriden. Found image src: " + tinyMCE.getAttrib(imageElm, "src"));
else
alert("Image dialog has been overriden.");
return true;
}
return false; // Pass to next handler in chain
}
tinyMCE.init({
...
<strong>execcommand_callback : "myCustomExecCommandHandler"</strong>
});
</pre>
</div>
</div>
<div class="footer">
<div class="helpindexlink"><a href="index.html">Index</a></div>
<div class="copyright">Copyright &copy; 2003-2006 <a href="http://www.moxiecode.com">Moxiecode Systems AB</a></div>
<br style="clear: both" />
</div>
</body>
</html>

View file

@ -0,0 +1,62 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Option: fix_list_elements</title>
<link href="css/screen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="header">
<h1>Option: fix_list_elements</h1>
</div>
<div class="content">
<p>
This option enables you to specify that list elements UL/OL is to be converted to valid XHTML. This option is disabled by default.<br /><br />
<div class="example">
<pre>
This invalid list:
&lt;ol&gt;
&lt;li&gt;a&lt;/li&gt;
&lt;ol&gt;
&lt;li&gt;b&lt;/li&gt;
&lt;li&gt;c&lt;/li&gt;
&lt;/ol&gt;
&lt;li&gt;e&lt;/li&gt;
&lt;/ol>
Gets converted into this valid list:
&lt;ol&gt;
&lt;li&gt;a
&lt;ol&gt;
&lt;li>b&lt;/li&gt;
&lt;li>c&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;e&lt;/li&gt;
&lt;/ol&gt;
</pre>
</div>
</p>
<div class="separator"></div>
<h3>Example of usage of the fix_list_elements option:</h3>
<div class="example">
<pre>
tinyMCE.init({
...
<strong>fix_list_elements : true</strong>
});
</pre>
</div>
</div>
<div class="footer">
<div class="helpindexlink"><a href="index.html">Index</a></div>
<div class="copyright">Copyright &copy; 2003-2006 <a href="http://www.moxiecode.com">Moxiecode Systems AB</a></div>
<br style="clear: both" />
</div>
</body>
</html>

View file

@ -0,0 +1,63 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Option: fix_table_elements</title>
<link href="css/screen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="header">
<h1>Option: fix_table_elements</h1>
</div>
<div class="content">
<p>
This option enables you to specify that list table elements should be moved outside paragraphs or other block elements. If you enable this option block elements will be split into two chunks when a table is found within it, see the example below for details. This option is disabled by default.<br /><br />
<div class="example">
<pre>
This invalid table:
&lt;p&gt;
a
&lt;table&gt;
&lt;tr>&lt;td&gt;b&lt;/td&gt;&lt;/tr&gt;
&lt;tr>&lt;td&gt;c&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;
d
&lt;/p&gt;
Gets converted into this valid XHTML:
&lt;p&gt;
a
&lt;/p&gt;
&lt;table&gt;
&lt;tr>&lt;td&gt;b&lt;/td&gt;&lt;/tr&gt;
&lt;tr>&lt;td&gt;c&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;
d
&lt;/p&gt;
</pre>
</div>
</p>
<div class="separator"></div>
<h3>Example of usage of the fix_table_elements option:</h3>
<div class="example">
<pre>
tinyMCE.init({
...
<strong>fix_table_elements : true</strong>
});
</pre>
</div>
</div>
<div class="footer">
<div class="helpindexlink"><a href="index.html">Index</a></div>
<div class="copyright">Copyright &copy; 2003-2006 <a href="http://www.moxiecode.com">Moxiecode Systems AB</a></div>
<br style="clear: both" />
</div>
</body>
</html>

View file

@ -0,0 +1,46 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Option: handle_event_callback</title>
<link href="css/screen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="header">
<h1>Option: handle_event_callback</h1>
</div>
<div class="content">
<p>
This option should contain a function name to be executed each time TinyMCE intercepts and handles a event such as keydown, mousedown and so forth. The format of this function is: handleEvent(event), where inst is the editor instance object reference. If the handle event function returns false it will terminate the internal event handling.
</p>
<div class="separator"></div>
<h3>Example of usage of the handle_event_callback option:</h3>
<div class="example">
<pre>
// Remember to enable the possibility to switch status messages in the browser before trying the example below
function <strong>myHandleEvent</strong>(e) {
window.status = "event:" + e.type;
return true; // Continue handling
}
tinyMCE.init({
...
<strong>handle_event_callback : &quot;myHandleEvent&quot;</strong>
});
</pre>
</div>
</div>
<div class="footer">
<div class="helpindexlink"><a href="index.html">Index</a></div>
<div class="copyright">Copyright &copy; 2003-2006 <a href="http://www.moxiecode.com">Moxiecode Systems AB</a></div>
<br style="clear: both" />
</div>
</body>
</html>

View file

@ -0,0 +1,42 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Option: onpageload</title>
<link href="css/screen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="header">
<h1>Option: onpageload</h1>
</div>
<div class="content">
<p>
This option enables you to specify a function name to be executed when the page is loaded but before the TinyMCE instances are created.
</p>
<div class="separator"></div>
<h3>Example of usage of the onpageload option:</h3>
<div class="example">
<pre>
function <strong>myCustomOnPageLoad</strong>() {
alert("We are nearly ready to rumble!!");
}
tinyMCE.init({
...
<strong>onpageload : "myCustomOnPageLoad"</strong>
});
</pre>
</div>
</div>
<div class="footer">
<div class="helpindexlink"><a href="index.html">Index</a></div>
<div class="copyright">Copyright &copy; 2003-2006 <a href="http://www.moxiecode.com">Moxiecode Systems AB</a></div>
<br style="clear: both" />
</div>
</body>
</html>

View file

@ -0,0 +1,112 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Plugin: fullpage</title>
<link href="css/screen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="header">
<h1>Plugin: fullpage</h1>
</div>
<div class="content">
<p>This plugin adds fullpage editing support. This enables you to edit whole documents with both head and body.</p>
<h3>Installation Instructions</h3>
<p>
<ul>
<li>Add plugin to TinyMCE plugin option list example: plugins : &quot;fullpage&quot;.</li>
<li>Add the fullpage button name to button list, example: theme_advanced_buttons3_add : &quot;fullpage&quot;.</li>
</ul>
</p>
<p>
<h3>Options</h3>
</p>
<p>
<table border="1" cellspacing="0" cellpadding="4">
<tr>
<td>[fullpage_doctypes]</td>
<td>This is a name/value list of possible document types. The value format of this option is name=value,name=value. These document types will be presented in the document type selection list. The default value of this option is: XHTML 1.0 Transitional=&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;,XHTML 1.0 Frameset=&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Frameset//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd&quot;&gt;,XHTML 1.0 Strict=&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;,XHTML 1.1=&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.1//EN&quot; &quot;http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd&quot;&gt;&quot;&gt;,HTML 4.01 Transitional=&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;,HTML 4.01 Strict=&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01//EN&quot; &quot;http://www.w3.org/TR/html4/strict.dtd&quot;&gt;,HTML 4.01 Frameset=&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Frameset//EN&quot; &quot;http://www.w3.org/TR/html4/frameset.dtd&quot;&gt;.</td>
</tr>
<tr>
<td>[fullpage_fonts]</td>
<td>This option enables you specify what font family style values that can be added to the body element. The value format of this option is name=value;name=value. The default value of this option is: Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;WingDings=wingdings
</td>
</tr>
<tr>
<td>[fullpage_fontsizes]</td>
<td>This is a comma separated list of possible font sizes for the style attribute of the body element. This option defaults to: 10px,11px,12px,13px,14px,15px,16px.</td>
</tr>
<!-- <tr>
<td>[fullpage_media_types]</td>
<td>This is a name/value list of possible media types. The default value of this option is: all=all,screen=screen,print=print,tty=tty,tv=tv,projection=projection,handheld=handheld,braille=braille,aural=aural.</td>
</tr> -->
<tr>
<td>[fullpage_encodings]</td>
<td>This option enables you to specify what the document character encoding sets the user may select from. The default value of this option is: Western european (iso-8859-1)=iso-8859-1,Central European (iso-8859-2)=iso-8859-2,Unicode (UTF-8)=utf-8,Chinese traditional (Big5)=big5,Cyrillic (iso-8859-5)=iso-8859-5,Japanese (iso-2022-jp)=iso-2022-jp,Greek (iso-8859-7)=iso-8859-7,Korean (iso-2022-kr)=iso-2022-kr,ASCII (us-ascii)=us-ascii
</td>
</tr>
<tr>
<td>[fullpage_default_doctype]</td>
<td>This option enables you to specify the default doctype for the output HTML.</td>
</tr>
<tr>
<td>[fullpage_default_encoding]</td>
<td>This option enables you to specify the default encoding for the output HTML.</td>
</tr>
<tr>
<td>[fullpage_default_title]</td>
<td>This option enables you to specify the default title for the output HTML.</td>
</tr>
<tr>
<td>[fullpage_default_font_size]</td>
<td>This option enables you to specify the default font size for body element.</td>
</tr>
<tr>
<td>[fullpage_default_font_family]</td>
<td>This option enables you to specify the default font family for body element.</td>
</tr>
<tr>
<td>[fullpage_default_text_color]</td>
<td>This option enables you to specify the default text color for body element.</td>
</tr>
<tr>
<td>[fullpage_default_langcode]</td>
<td>This option enables you to specify the default langcode for the output HTML.</td>
</tr>
<tr>
<td>[fullpage_default_xml_pi]</td>
<td>This option enables you to specify if a XML declaration should be added or not true/false option.</td>
</tr>
</table>
</p>
<p>
<h3>Initialization Example</h3>
</p>
<p>
<div class="example">
<pre>
tinyMCE.init({
theme : &quot;advanced&quot;,
mode : &quot;textareas&quot;,
plugins : &quot;<strong>fullpage</strong>&quot;,
theme_advanced_buttons3_add : &quot;<strong>fullpage</strong>&quot;,
fullpage_fontsizes : '13px,14px,15px,18pt,xx-large',
fullpage_default_xml_pi : false,
fullpage_default_langcode : 'en',
fullpage_default_title : "My document title"
});</pre>
</div>
</p>
</div>
<div class="footer">
<div class="helpindexlink"><a href="index.html">Index</a></div>
<div class="copyright">Copyright &copy; 2003-2006 <a href="http://www.moxiecode.com">Moxiecode Systems AB</a></div>
<br style="clear: both" />
</div>
</body>
</html>

View file

@ -0,0 +1,64 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Plugin: spellchecker</title>
<link href="css/screen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="header">
<h1>Plugin: spellchecker</h1>
</div>
<div class="content">
<p>This plugin adds spellchecker functionality to TinyMCE by providing a new button that performs a AJAX call to a backend PHP page that uses pspell.</p>
<h3>Installation Instructions</h3>
<p>
<ol>
<li>Download the spellchecker plugin from the <a href="http://tinymce.moxiecode.com/download.php">TinyMCE website</a>.</li>
<li>Copy the spellchecker directory to the plugins directory of TinyMCE (/jscripts/tiny_mce/plugins).</li>
<li>Add plugin to TinyMCE plugin option list example: plugins : &quot;spellchecker&quot;.</li>
<li>Add the button name to button list, example: theme_advanced_buttons3_add : &quot;spellchecker&quot;.</li>
</ol>
</p>
<h3>Initialization Example</h3>
<p>
<div class="example">
<pre>
tinyMCE.init({
theme : &quot;advanced&quot;,
mode : &quot;textareas&quot;,
plugins : &quot;spellchecker&quot;,
theme_advanced_buttons3_add : &quot;spellchecker&quot;,
spellchecker_languages : &quot;+English=en,Swedish=sv&quot;,
spellchecker_word_separator_chars : &quot;\\s!\"#$%&amp;()*+,-./:;&lt;=&gt;?@[\]&circ;_{|}§&copy;&laquo;&reg;±¶·¸&raquo;¼½¾¿×÷¤\u201d\u201c&quot;
});
</pre>
</div>
</p>
<p>
<h3>Options</h3>
</p>
<p>
<table border="1" cellspacing="0" cellpadding="4">
<tr>
<td>[spellchecker_languages]</td>
<td>Enables you to specify what languages your pspell installation can handle. The value of this option should be a comma separated name value list in the following format name1=value1,name2=value,name3=value where name is the string to present in the menu and the value is a ISO language code like sv or en. If you add a + character infront of the name it will be the default value for the spellchecker. The default value for this option is: +English=en.</td>
</tr>
<tr>
<td>[spellchecker_word_separator_chars]</td>
<td>This option enables you to specify the word separator characters. The default value for this option is: \\s!"#$%&()*+,-./:;<=>?@[\]^_{|}§©«®±¶·¸»¼½¾¿×÷¤\u201d\u201c.</td>
</tr>
</table>
</p>
</div>
<div class="footer">
<div class="helpindexlink"><a href="index.html">Index</a></div>
<div class="copyright">Copyright &copy; 2003-2006 <a href="http://www.moxiecode.com">Moxiecode Systems AB</a></div>
<br style="clear: both" />
</div>
</body>
</html>

View file

@ -0,0 +1,41 @@
// SI lang variables ISO-8859-2
tinyMCE.addToLang('',{
bold_desc : 'Krepko (Ctrl+B)',
italic_desc : 'Postrani (Ctrl+I)',
underline_desc : 'Pod&#269;rtano (Ctrl+U)',
striketrough_desc : 'Pre&#269;rtano',
justifyleft_desc : 'Poravnava levo',
justifycenter_desc : 'Sredinska poravnava',
justifyright_desc : 'Poravnava desno',
justifyfull_desc : 'Porazdeli vsebino',
bullist_desc : 'Ozna&#269;evanje',
numlist_desc : 'O&#353;tevil&#269;evanje',
outdent_desc : 'Zmanj&#353;aj zamik',
indent_desc : 'Pove&#269;aj zamik',
undo_desc : 'Prekli&#269;i zadnjo akcijo (Ctrl+Z)',
redo_desc : 'Ponovi prej&#353;njo akcijo (Ctrl+Y)',
link_desc : 'Vstavi/uredi hiperpovezavo',
unlink_desc : 'Zbri&#353;i hiperpovezavo',
image_desc : 'Vstavi/uredi sliko',
cleanup_desc : 'Po&#269;isti umazano kodo',
focus_alert : 'Pred uporabo tega ukaza morate klikniti na urejevalnik.',
edit_confirm : 'Ali &#382;elite uporabljati WYSIWYG na&#269;in za ta urejevalnik?',
insert_link_title : 'Vstavi/uredi hiperpovezavo',
insert : 'Vstavi',
update : 'Posodobi',
cancel : 'Prekli&#269;i',
insert_link_url : 'URL naslov',
insert_link_target : 'Tar&#269;a',
insert_link_target_same : 'Odpri hiperpovezavo v istem oknu',
insert_link_target_blank : 'Odpri hiperpovezavo v novem oknu',
insert_image_title : 'Vstavi/uredi sliko',
insert_image_src : 'URL naslov slike',
insert_image_alt : 'Opis slike',
help_desc : 'Pomo&#269;',
bold_img : "bold.gif",
italic_img : "italic.gif",
underline_img : "underline.gif",
clipboard_msg : 'Kopiraj/Izre&#382;i/Prilepi ni na voljo v brskalnikih Mozilla in Firefox.\nAli &#382;elite ve&#269; informacij glede tega?',
popup_blocked : 'Odpiranje novega okna je bilo blokirano. &#268;e &#382;elite uporabljati vsa orodja, morate izklopiti blokiranje novih oken na tej strani.'
});

View file

@ -0,0 +1,41 @@
// TR lang variables
tinyMCE.addToLang('',{
bold_desc : 'Kalın (Ctrl+B)',
italic_desc : 'İtalik (Ctrl+I)',
underline_desc : 'Altı çizgili (Ctrl+U)',
striketrough_desc : 'Üstü çizgili',
justifyleft_desc : 'Sola dayalı',
justifycenter_desc : 'Ortalanmış',
justifyright_desc : 'Sağa dayalı',
justifyfull_desc : 'İki kenara yaslanmış',
bullist_desc : 'Sırasız liste',
numlist_desc : 'Sıralı liste',
outdent_desc : 'Girintiyi azalt',
indent_desc : 'Girintiyi arttır',
undo_desc : 'Geri al (Ctrl+Z)',
redo_desc : 'Yeniden yap (Ctrl+Y)',
link_desc : 'Link ekle/düzenle',
unlink_desc : 'Linki kaldır',
image_desc : 'Resim ekle/düzenle',
cleanup_desc : 'Dağınık kodu düzenle',
focus_alert : 'Bu komutu kullanmadan önce editör seçilmeli(aktif olmalı).',
edit_confirm : 'Bu text alanı için WYSIWYG modu kullanmak ister misiniz?',
insert_link_title : 'Link ekle/düzenle',
insert : 'Ekle',
update : 'Güncelle',
cancel : 'İptal',
insert_link_url : 'Link adresi giriniz',
insert_link_target : 'Hedef adres',
insert_link_target_same : 'Linki aynı sayfada aç',
insert_link_target_blank : 'Linki yeni sayfada aç',
insert_image_title : 'Resim ekle/düzenle',
insert_image_src : 'Resim adresi',
insert_image_alt : 'Resim açıklaması',
help_desc : 'Yardım',
bold_img : "bold.gif",
italic_img : "italic.gif",
underline_img : "underline.gif",
clipboard_msg : 'Mozilla ve Firefox tarayıcılarında kopyala/kes/yapıştır komutlarını kullanamassınız.\n Bu konu hakkında daha fazla bilgi edinmek ister misiniz?',
popup_blocked : 'Popup engelleyiciniz programın çalışmasını önlemektedir, bu özellikten yararlanabilmeniz için popup engelleyicinizi kapatmanız gerekiyor.'
});

View file

@ -0,0 +1,41 @@
// Vietnamese lang variables - Đỗ Xuân Tiến - tiendx2002@yahoo.com Việt hóa
tinyMCE.addToLang('',{
bold_desc : 'Đậm (Ctrl+B)',
italic_desc : 'Nghiêng (Ctrl+I)',
underline_desc : 'Gạch chân (Ctrl+U)',
striketrough_desc : 'Gạch ngang',
justifyleft_desc : 'Căn lề trái',
justifycenter_desc : 'Căn lề giữa',
justifyright_desc : 'Căn lề phải',
justifyfull_desc : 'Căn lề đều hai bên',
bullist_desc : 'Danh sách không sắp xếp thứ tự',
numlist_desc : 'Danh sách có sắp xếp thứ tự',
outdent_desc : 'Nhô ra',
indent_desc : 'Thụt vào',
undo_desc : 'Quay lại một thao tác (Ctrl+Z)',
redo_desc : 'Thực hiện lại một thao tác (Ctrl+Y)',
link_desc : 'Thêm/sửa liên kết',
unlink_desc : 'Hủy liên kết',
image_desc : 'Thêm/sửa ảnh',
cleanup_desc : 'Xóa sạch các mã lộn xộn',
focus_alert : 'Cần nhấn chuột vào bên trong ô nhập trước khi sử dụng lệnh này.',
edit_confirm : 'Bạn có muốn dùng chế độ WYSIWYG (thấy gì có nấy) cho ô nhập này?',
insert_link_title : 'Thêm/sửa liên kết',
insert : 'Thêm',
update : 'Cập nhật',
cancel : 'Hủy bỏ',
insert_link_url : 'Địa chỉ liên kết',
insert_link_target : 'Mục tiêu',
insert_link_target_same : 'Mở liên kết trong cùng cửa sổ',
insert_link_target_blank : 'Mở liên kết trong cửa sổ mới',
insert_image_title : 'Thêm/sửa ảnh',
insert_image_src : 'Địa chỉ ảnh',
insert_image_alt : 'Mô tả ảnh',
help_desc : 'Trợ giúp',
bold_img : "bold.gif",
italic_img : "italic.gif",
underline_img : "underline.gif",
clipboard_msg : 'Trên Mozilla và Firefox không sử dụng được các thao tác Sao chép/Cắt/Dán. \nBạn cần thêm thông tin về điều này?',
popup_blocked : 'Xin lỗi, nhưng chúng tôi thấy bộ khóa các cửa sổ bật ra (popup-blocker) của bạn đã khóa một cửa sổ cung cấp chức năng ứng dụng. Bạn cần tắt chế độ khóa cửa sổ bật ra cho trang web này để sử dụng hết các chức năng của công cụ này.'
});

View file

@ -0,0 +1,42 @@
// Simplified Chinese lang variables contributed by TinyMCE_China_Team ( tinymce_china {AT} yahoogroups {DOT} com ).
// visit our homepage at: http://www.cube316.net/tinymce/ for more information.
tinyMCE.addToLang('',{
bold_desc : '黑体 (Ctrl+B)',
italic_desc : '斜体 (Ctrl+I)',
underline_desc : '下划线 (Ctrl+U)',
striketrough_desc : '删除线',
justifyleft_desc : '左对齐',
justifycenter_desc : '居中对齐',
justifyright_desc : '右对齐',
justifyfull_desc : '两端对齐',
bullist_desc : '无序列表',
numlist_desc : '有序列表',
outdent_desc : '减少缩进',
indent_desc : '增加缩进',
undo_desc : '撤消 (Ctrl+Z)',
redo_desc : '重做 (Ctrl+Y)',
link_desc : '插入/编辑 链接',
unlink_desc : '删除链接',
image_desc : '插入/编辑 图像',
cleanup_desc : '删除冗余代码',
focus_alert : '请先选择编辑区',
edit_confirm : '您想在编辑区域上使用所见即所得编辑器么?',
insert_link_title : '插入/编辑 链接',
insert : '插入',
update : '更新',
cancel : '取消',
insert_link_url : '链接地址',
insert_link_target : '链接目标',
insert_link_target_same : '在同一窗口中打开链接',
insert_link_target_blank : '在新窗口中打开链接',
insert_image_title : '插入/编辑 图像',
insert_image_src : '图像地址',
insert_image_alt : '图像描述',
help_desc : '帮助',
bold_img : "bold.gif",
italic_img : "italic.gif",
underline_img : "underline.gif",
clipboard_msg : '剪切/复制/粘贴功能在 Mozilla 和 Firefox 浏览器中不支持。您希望获得更多的信息吗?',
popup_blocked : '对不起, 您的浏览器禁止了弹出式窗口。为了让您使用到最完善的功能,请对本网站的弹出式窗口解除禁止。'
});

View file

@ -0,0 +1,8 @@
// SI lang variables ISO-8859-2
/* Remember to namespace the language parameters lang_<your plugin>_<some name> */
tinyMCE.addToLang('',{
template_title : 'To je samo primer popup okna',
template_desc : 'To je samo primer gumba'
});

View file

@ -0,0 +1,6 @@
// TR lang variables
tinyMCE.addToLang('',{
template_title : 'Bu sadece bir şablon popup penceresidir',
template_desc : 'Bu sadece bir şablon butonudur'
});

View file

@ -0,0 +1,8 @@
// Vietnamese lang variables - Đỗ Xuân Tiến - tiendx2002@yahoo.com Việt hóa
/* Remember to namespace the language parameters lang_<your plugin>_<some name> */
tinyMCE.addToLang('',{
template_title : 'Đây chỉ là một cửa sổ bật ra cho mẫu',
template_desc : 'Đây chỉ là một nút cho mẫu'
});

View file

@ -0,0 +1,9 @@
// Simplified Chinese lang variables contributed by TinyMCE_China_Team ( tinymce_china {AT} yahoogroups {DOT} com ).
// visit our homepage at: http://www.cube316.net/tinymce/ for more information.
/* Remember to namespace the language parameters <your plugin>_<some name> */
tinyMCE.addToLang('',{
template_title : '这是一个模板弹出窗口',
template_desc : '这是一个模板按钮'
});

View file

@ -0,0 +1,27 @@
// SI lang variables ISO-8859-2
tinyMCE.addToLang('advimage',{
tab_general : 'Splo&#353;no',
tab_appearance : 'Izgled',
tab_advanced : 'Napredno',
general : 'Splo&#353;no',
title : 'Naslov',
preview : 'Predogled',
constrain_proportions : 'Zakleni razmerje',
langdir : 'Smer jezika',
langcode : 'Koda jezika',
long_desc : 'Povezava do podrobnega opisa',
style : 'Stil',
classes : 'Razredi',
ltr : 'Od leve proti desni',
rtl : 'Od desne proti levi',
id : 'Id',
image_map : 'Ime zemljevida',
swap_image : 'Zamenjava slike',
alt_image : 'Alternativna slika',
mouseover : 'ko gre mi&#353; &#269;ez sliko',
mouseout : 'ko gre mi&#353; s slike',
misc : 'Razno',
example_img : 'Slika za predogled',
missing_alt : 'Ali ste prepri&#269;ani, da &#382;elite nadaljevati brez vnosa za opis slike? Brez njega bo slika mogo&#269;e nedosegljiva za uporabnike s posebnimi potrebami ali uporabnike s tekstovnimi brskalniki.'
});

View file

@ -0,0 +1,27 @@
// TR lang variables
tinyMCE.addToLang('advimage',{
tab_general : 'Genel',
tab_appearance : 'Görünüş',
tab_advanced : 'Gelişmiş',
general : 'Genel',
title : 'Başlık',
preview : 'Önizleme',
constrain_proportions : 'Boyutları kilitle',
langdir : 'Dil yönetimi',
langcode : 'Dil kodu',
long_desc : 'Uzun açıklama linki',
style : 'Stil',
classes : 'Sınıflar',
ltr : 'Soldan sağa',
rtl : 'Sağdan sola',
id : 'Id',
image_map : 'Resim haritası(image map)',
swap_image : 'Resmi değiştir',
alt_image : 'Alternatif resim',
mouseover : 'Mouse over için',
mouseout : 'Mouse out için',
misc : 'Çeşitli/Diğer',
example_img : 'Görünüm&nbsp;önizleme&nbsp;resim',
missing_alt : 'Resim açıklaması olmadan devam etmek istediğinize emin misiniz?'
});

View file

@ -0,0 +1,27 @@
// Vietnamese lang variables - Đỗ Xuân Tiến - tiendx2002@yahoo.com Việt hóa
tinyMCE.addToLang('advimage',{
tab_general : 'Chung',
tab_appearance : 'Xuất hiện',
tab_advanced : 'Nâng cao',
general : 'Chung',
title : 'Tiêu đề',
preview : 'Xem trước',
constrain_proportions : 'Ràng buộc kích thước',
langdir : 'Hướng ngôn ngữ',
langcode : 'Bộ mã ngôn ngữ',
long_desc : 'Mô tả đầy đủ',
style : 'Kiểu',
classes : 'Lớp',
ltr : 'Trái sang phải',
rtl : 'Phải sang trái',
id : 'Id',
image_map : 'Bản đồ ảnh',
swap_image : 'Thay đổi ảnh',
alt_image : 'Ảnh thay thế',
mouseover : 'khi di chuột vào',
mouseout : 'khi di chuột ra ngoài',
misc : 'Linh tinh',
example_img : 'Ảnh&nbsp;xem&nbsp;trước',
missing_alt : 'Bạn có chắc bạn muốn tiếp tục mà không cần nhập vào mô tả ảnh? Không có mô tả sẽ hạn chế khả năng truy cập của những người sử dụng khuyết tật, hoặc những người sử dụng trình duyệt văn bản, hoặc xem trang này khi đã tắt chế độ hiển thị ảnh.'
});

View file

@ -0,0 +1,28 @@
// Simplified Chinese lang variables contributed by TinyMCE_China_Team ( tinymce_china {AT} yahoogroups {DOT} com ).
// visit our homepage at: http://www.cube316.net/tinymce/ for more information.
tinyMCE.addToLang('advimage',{
tab_general : '一般',
tab_appearance : '显示',
tab_advanced : '高级',
general : '一般',
title : '标题',
preview : '预览',
constrain_proportions : '约束属性',
langdir : '书写方向',
langcode : '语言编码',
long_desc : '长描述链接',
style : '风格',
classes : '类',
ltr : '从左至右',
rtl : '从右至左',
id : '表识',
image_map : '图片对应',
swap_image : '调换图片',
alt_image : '候选图片',
mouseover : '鼠标在上面时',
mouseout : '鼠标离开时',
misc : '杂项',
example_img : '显示&nbsp;预览&nbsp;图片',
missing_alt : '您确认要在没有图片说明的情况下继续吗? 这样其他关闭图片浏览的用户将无法注意到你在这里有图片。'
});

View file

@ -0,0 +1,10 @@
// SI lang variables ISO-8859-2
tinyMCE.addToLang('',{
paste_text_desc : 'Prilepi kot navadno besedilo',
paste_text_title : 'Uporabite CTRL+V na va&#353;i tipkovnici, da prilepite besedilo v okno.',
paste_text_linebreaks : 'Obdr&#382;i prelome vrstic',
paste_word_desc : 'Prilepi iz Word-a',
paste_word_title : 'Uporabite CTRL+V na va&#353;i tipkovnici, da prilepite besedilo v okno.',
selectall_desc : 'Ozna&#269;i vse'
});

View file

@ -0,0 +1,10 @@
// Tr lang variables
tinyMCE.addToLang('',{
paste_text_desc : 'Düz metin olarak yapıştır',
paste_text_title : 'Yapıştırmak için klavyenizden CTRL+V kullanın.',
paste_text_linebreaks : 'Satır sonlarını koru',
paste_word_desc : 'Word\'den yapıştır',
paste_word_title : 'Yapıştırmak için klavyenizden CTRL+V kullanın.',
selectall_desc : 'Tümünü seç'
});

View file

@ -0,0 +1,10 @@
// Vietnamese lang variables - Đỗ Xuân Tiến - tiendx2002@yahoo.com Việt hóa
tinyMCE.addToLang('',{
paste_text_desc : 'Dán như văn bản đơn giản',
paste_text_title : 'Sử dụng tổ hợp phím CTRL+V để dán văn bản vào cửa sổ.',
paste_text_linebreaks : 'Giữ các ký tự xuống dòng',
paste_word_desc : 'Dán từ Word',
paste_word_title : 'Sử dụng tổ hợp phím CTRL+V để dán văn bản vào cửa sổ.',
selectall_desc : 'Chọn toàn bộ'
});

View file

@ -0,0 +1,11 @@
// Simplified Chinese lang variables contributed by TinyMCE_China_Team ( tinymce_china {AT} yahoogroups {DOT} com ).
// visit our homepage at: http://www.cube316.net/tinymce/ for more information.
tinyMCE.addToLang('',{
paste_text_desc : '作为纯文本粘贴',
paste_text_title : '使用快捷键 CTRL+V 将文本本粘贴到以下窗口中',
paste_text_linebreaks : '保留换行符',
paste_word_desc : '从Word粘贴',
paste_word_title : '使用快捷键 CTRL+V 将文本粘贴到以下窗口',
selectall_desc : '全选'
});

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 B

View file

@ -0,0 +1,76 @@
// SI lang variables ISO-8859-2
tinyMCE.addToLang('',{
theme_style_select : '-- Stili --',
theme_code_desc : 'Uredi HTML kodo',
theme_code_title : 'Urejevalnik HTML kode',
theme_code_wordwrap : 'Odre&#382;i vrstice',
theme_sub_desc : 'Podpisano',
theme_sup_desc : 'Nadpisano',
theme_hr_desc : 'Vstavi vodoravno &#269;rto',
theme_removeformat_desc : 'Odstrani oblikovanje',
theme_custom1_desc : 'Va&#353; opis',
insert_image_border : 'Okvir',
insert_image_dimensions : 'Dimenzije',
insert_image_vspace : 'Vertikalni razmak',
insert_image_hspace : 'Horizontalni razmak',
insert_image_align : 'Poravnava',
insert_image_align_default : '-- Brez --',
insert_image_align_baseline : 'Ob osnovni &#269;rti',
insert_image_align_top : 'Na vrh',
insert_image_align_middle : 'Na sredo',
insert_image_align_bottom : 'Na dno',
insert_image_align_texttop : 'Na vrh besedila',
insert_image_align_absmiddle : 'Absolutna sredina',
insert_image_align_absbottom : 'Absolutno dno',
insert_image_align_left : 'Levo',
insert_image_align_right : 'Desno',
theme_font_size : '-- Velikost pisave --',
theme_fontdefault : '-- Pisava --',
theme_block : '-- Format --',
theme_paragraph : 'Odstavek',
theme_div : 'Div',
theme_address : 'Naslov',
theme_pre : 'Oblikovano besedilo',
theme_h1 : 'Naslov 1',
theme_h2 : 'Naslov 2',
theme_h3 : 'Naslov 3',
theme_h4 : 'Naslov 4',
theme_h5 : 'Naslov 5',
theme_h6 : 'Naslov 6',
theme_colorpicker_title : 'Izberite barvo',
theme_colorpicker_apply : 'Uporabi',
theme_forecolor_desc : 'Izberite barvo pisave',
theme_backcolor_desc : 'Izberite barvo ozadja',
theme_charmap_title : 'Izberite poseben znak',
theme_charmap_desc : 'Vstavi poseben znak',
theme_visualaid_desc : 'Prika&#382;i/skrij skrite elemente',
insert_anchor_title : 'Vstavi/uredi povezavo',
insert_anchor_name : 'Ime povezave',
theme_anchor_desc : 'Vstavi/uredi povezavo',
theme_insert_link_titlefield : 'Naslov',
theme_clipboard_msg : 'Kopiraj/Izre&#382;i/Prilepi ni na voljo v brskalnikih Mozilla in Firefox.\nAli &#382;elite ve&#269; informacij glede tega?',
theme_path : 'Pot',
cut_desc : 'Izre&#382;i',
copy_desc : 'Kopiraj',
paste_desc : 'Prilepi',
link_list : 'Seznam povezav',
image_list : 'Seznam slik',
browse : 'Prebrskaj',
image_props_desc : 'Lastnosti slike',
newdocument_desc : 'Nov dokument',
class_name : 'Razred',
newdocument : 'Ali ste prepri&#269;ani, da &#382;elite zbrisati vso vsebino?',
about_title : 'O urejevalniku TinyMCE',
about : 'O urejevalniku',
license : 'Licenca',
plugins : 'Vti&#269;niki',
plugin : 'Vti&#269;nik',
author : 'Avtor',
version : 'Razli&#269;ica',
loaded_plugins : 'Nalo&#382;eni vti&#269;niki',
help : 'Pomo&#269;',
not_set : '-- Ni nastavljeno --',
close : 'Zapri',
toolbar_focus : 'Skok na orodne gumbe - Alt+Q, Skok na urejevalnik - Alt-Z, Skok na pot elementa - Alt-X'
});

View file

@ -0,0 +1,76 @@
// UK lang variables
tinyMCE.addToLang('',{
theme_style_select : '-- Stiller --',
theme_code_desc : 'HTML Kaynaðý Düzenle',
theme_code_title : 'HTML Editörü',
theme_code_wordwrap : 'Sözcük kaydýr',
theme_sub_desc : 'Altsimge',
theme_sup_desc : 'Üstsimge',
theme_hr_desc : 'Yatay çizgi ekle',
theme_removeformat_desc : 'Formatý kaldýr',
theme_custom1_desc : 'Özel açýklamanýz buraya',
insert_image_border : 'Kenar kalýnlýðý',
insert_image_dimensions : 'Boyutlar',
insert_image_vspace : 'Dikey boþluk',
insert_image_hspace : 'Yatay boþluk',
insert_image_align : 'Hizalama',
insert_image_align_default : '-- Atanmamýþ --',
insert_image_align_baseline : 'Taban çizgisi',
insert_image_align_top : 'Üst',
insert_image_align_middle : 'Orta',
insert_image_align_bottom : 'Alt',
insert_image_align_texttop : 'Yazý üstte',
insert_image_align_absmiddle : 'Tam ortada',
insert_image_align_absbottom : 'En altta',
insert_image_align_left : 'Sol',
insert_image_align_right : 'Sað',
theme_font_size : '-- Yazý boyutu --',
theme_fontdefault : '-- Yazý tipi --',
theme_block : '-- Biçim --',
theme_paragraph : 'Paragraf',
theme_div : 'Div etiketi',
theme_address : 'Adres',
theme_pre : 'Önceden düzenlenmiþ',
theme_h1 : 'Baþlýk 1',
theme_h2 : 'Baþlýk 2',
theme_h3 : 'Baþlýk 3',
theme_h4 : 'Baþlýk 4',
theme_h5 : 'Baþlýk 5',
theme_h6 : 'Baþlýk 6',
theme_colorpicker_title : 'Renk seçiniz',
theme_colorpicker_apply : 'Uygula',
theme_forecolor_desc : 'Yazý rengi',
theme_backcolor_desc : 'Arkaplan rengi',
theme_charmap_title : 'Özel karakterler',
theme_charmap_desc : 'Özel karakter ekle',
theme_visualaid_desc : 'Gizli nesneler',
insert_anchor_title : 'Link ekle/düzenle',
insert_anchor_name : 'Link ismi',
theme_anchor_desc : 'Link ekle/düzenle',
theme_insert_link_titlefield : 'Baþlýk',
theme_clipboard_msg : 'Mozilla ve Firefox tarayýcýlarýnda kopyala/kes/yapýþtýr komutlarýný kullanamassýnýz.\n Bu konu hakkýnda daha fazla bilgi edinmek ister misiniz?',
theme_path : 'Etiket yolu',
cut_desc : 'Kes',
copy_desc : 'Kopyala',
paste_desc : 'Yapýþtýr',
link_list : 'Link listesi',
image_list : 'Resim listesi',
browse : 'Gözat',
image_props_desc : 'Resim özellikleri',
newdocument_desc : 'Yeni döküman',
class_name : 'Sýnýf',
newdocument : 'Tüm içeriði silmek istediðinizden emin misiniz?',
about_title : 'TinyMCE Hakkýnda',
about : 'Hakkýnda',
license : 'Lisans',
plugins : 'Pluginler',
plugin : 'Plugin',
author : 'Yazar',
version : 'Versiyon',
loaded_plugins : 'Yüklenen pluginler',
help : 'Yardým',
not_set : '-- Atanmamýþ --',
close : 'Kapat',
toolbar_focus : 'Araç butonlarýna geç - Alt+Q , Editöre geç - Alt-Z, Eleman özelliklerine geç - Alt-X'
});

View file

@ -0,0 +1,76 @@
// Vietnamese lang variables - Đỗ Xuân Tiến - tiendx2002@yahoo.com Việt hóa
tinyMCE.addToLang('',{
theme_style_select : '-- Phong cách --',
theme_code_desc : 'Sửa mã nguồn HTML',
theme_code_title : 'Bộ soạn thảo mã HTML',
theme_code_wordwrap : 'Gói gọn các từ - Word wrap',
theme_sub_desc : 'Chỉ số dưới',
theme_sup_desc : 'Chỉ số trên',
theme_hr_desc : 'Thêm đường thẳng ngang',
theme_removeformat_desc : 'Xóa định dạng',
theme_custom1_desc : 'Mô tả của bạn ở đây',
insert_image_border : 'Khung',
insert_image_dimensions : 'Kích thước',
insert_image_vspace : 'Khoảng cách dọc',
insert_image_hspace : 'Khoảng cách ngang',
insert_image_align : 'Căn lề',
insert_image_align_default : '-- Chưa đặt --',
insert_image_align_baseline : 'Theo dòng',
insert_image_align_top : 'Trên cùng',
insert_image_align_middle : 'Giữa',
insert_image_align_bottom : 'Dưới cùng',
insert_image_align_texttop : 'Văn bản trên cùng',
insert_image_align_absmiddle : 'Tuyệt đối giữa',
insert_image_align_absbottom : 'Tuyệt đối dưới cùng',
insert_image_align_left : 'Trái',
insert_image_align_right : 'Phải',
theme_font_size : '-- Kích thước chữ --',
theme_fontdefault : '-- Font chữ --',
theme_block : '-- Định dạng --',
theme_paragraph : 'Đoạn',
theme_div : 'Div',
theme_address : 'Địa chỉ',
theme_pre : 'Định dạng trước',
theme_h1 : 'Tiêu đề cấp 1',
theme_h2 : 'Tiêu đề cấp 2',
theme_h3 : 'Tiêu đề cấp 3',
theme_h4 : 'Tiêu đề cấp 4',
theme_h5 : 'Tiêu đề cấp 5',
theme_h6 : 'Tiêu đề cấp 6',
theme_colorpicker_title : 'Chọn một màu',
theme_colorpicker_apply : 'Áp&nbsp;dụng',
theme_forecolor_desc : 'Chọn màu chữ',
theme_backcolor_desc : 'Chọn màu nền',
theme_charmap_title : 'Chọn ký tự đặc biệt',
theme_charmap_desc : 'Thêm ký tự đặc biệt',
theme_visualaid_desc : 'Bật tắt chế độ hướng dẫn',
insert_anchor_title : 'Thêm/sửa neo',
insert_anchor_name : 'Tên neo',
theme_anchor_desc : 'Thêm/sửa neo',
theme_insert_link_titlefield : 'Tiêu đề',
theme_clipboard_msg : 'Trên Mozilla và Firefox không sử dụng được các thao tác Sao chép/Cắt/Dán. \nBạn cần thêm thông tin về điều này?',
theme_path : 'Đường dẫn',
cut_desc : 'Cắt',
copy_desc : 'Sao chép',
paste_desc : 'Dán',
link_list : 'Danh sách liên kết',
image_list : 'Danh sách ảnh',
browse : 'Duyệt',
image_props_desc : 'Thuộc tính ảnh',
newdocument_desc : 'Văn bản mới',
class_name : 'Lớp',
newdocument : 'Bạn có chắc muốn xóa sạch nội dung?',
about_title : 'Thông tin về TinyMCE',
about : 'Thông tin',
license : 'Chứng nhận',
plugins : 'Chức năng',
plugin : 'Chức năng',
author : 'Tác giả',
version : 'Phiên bản',
loaded_plugins : 'Chức năng đã nạp',
help : 'Trợ giúp',
not_set : '-- Chưa đặt --',
close : 'Đóng',
toolbar_focus : 'Nút chuyển tới công cụ - Alt+Q, Chuyển tới bộ soạn thảo - Alt-Z, Chuyển tới đường dẫn thành phần - Alt-X'
});

View file

@ -0,0 +1,77 @@
// Simplified Chinese lang variables contributed by TinyMCE_China_Team ( tinymce_china {AT} yahoogroups {DOT} com ).
// visit our homepage at: http://www.cube316.net/tinymce/ for more information.
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 : '层',
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 : '关于',
license : '授权书',
plugins : '所有插件',
plugin : '插件',
author : '作者',
version : '版本',
loaded_plugins : '读取插件',
help : '帮助',
not_set : '-- 空设定 --',
close : '关闭',
toolbar_focus : '跳到工具按钮 - Alt+Q, 跳到编辑器 - Alt-Z, 跳到元素路径 - Alt-X'
});

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 B