Index: /CKEditor/branches/versions/3.0.x/CHANGES.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/CHANGES.html	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/CHANGES.html	(revision 3747)
@@ -36,7 +36,7 @@
 	</h1>
 	<h3>
-		CKEditor 3.0 Beta</h3>
+		CKEditor 3.0 RC</h3>
 	<p>
-		First public release.</p>
+		Release Candidate fro the first public release.</p>
 	<div id="footer">
 		<hr />
Index: /CKEditor/branches/versions/3.0.x/_dev/docs_build/template/publish.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_dev/docs_build/template/publish.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_dev/docs_build/template/publish.js	(revision 3747)
@@ -88,4 +88,10 @@
 	}
 
+	//Correct file names in files.html
+	for (var i = 0; i < allFiles.length; i++) {
+		allFiles[i].alias = allFiles[i].alias.replace( /\/\\/, "\\" ).replace( /.*_source(\/|\\)+/, '' );
+		allFiles[i].name = allFiles[i].alias;
+	}
+
 	allFiles = allFiles.sort( ckeditor_sortFiles );
 
@@ -124,5 +130,5 @@
 
 	if (!name) {
-		name = path.replace(/.*\.\.?[\\\/](.*)/g, "$1").replace(/[\\\/]/g, "_");
+		name = path.replace(/.*\.\.?[\\\/](.*)/g, "$1").replace( /\/\\/, "\\" ).replace(/[\\\/]/g, "_").replace(/.*?_source_/, "");
 		name = name.replace(/\:/g, "_");
 	}
@@ -170,6 +176,6 @@
 function ckeditor_sortFiles( a, b )
 {
-	a = a.srcFile.replace( /.*[\\\/]/, '' );
-	b = b.srcFile.replace( /.*[\\\/]/, '' );
+	a = a.name;
+	b = b.name;
 	return a < b ? -1 : a > b ? 1 : 0;
 }
@@ -206,7 +212,7 @@
 	{
 		text = text.replace( /[\/\\]+/g, '/' );
-		text = text.replace( /.*_source\/+/, '' );
-
-		return new Link().toSrc( filePath ).withText( text );
+		text = text.replace( /.*_source(\/|\\)+/, '' );
+
+		return new Link().toSrc( text ).withText( text );
 	}
 
Index: /CKEditor/branches/versions/3.0.x/_dev/docs_build/template/static/footer.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_dev/docs_build/template/static/footer.html	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_dev/docs_build/template/static/footer.html	(revision 3747)
@@ -1,3 +1,3 @@
 <div class="fineprint" style="clear:both">
-	&copy; 2003 - 2008 Frederico Caldeira Knabben (<a href="http://www.fredck.com/">FredCK.com</a>). All rights reserved
+	Copyright &copy; 2003-2009, <a href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved.
 </div>
Index: /CKEditor/branches/versions/3.0.x/_dev/langtool/langtool.bat
===================================================================
--- /CKEditor/branches/versions/3.0.x/_dev/langtool/langtool.bat	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_dev/langtool/langtool.bat	(revision 3747)
@@ -0,0 +1,12 @@
+@ECHO OFF
+::
+:: Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+:: For licensing, see LICENSE.html or http://ckeditor.com/license
+::
+:: Checks translation files in given directory.
+::
+
+CLS
+ECHO.
+
+java -jar langtool/langtool.jar ../../_source/lang
Index: /CKEditor/branches/versions/3.0.x/_dev/langtool/langtool.sh
===================================================================
--- /CKEditor/branches/versions/3.0.x/_dev/langtool/langtool.sh	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_dev/langtool/langtool.sh	(revision 3747)
@@ -0,0 +1,8 @@
+#!/bin/bash
+
+# Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+# For licensing, see LICENSE.html or http://ckeditor.com/license
+
+# Checks translation files in given directory.
+
+java -jar langtool/langtool.jar ../../_source/lang
Index: /CKEditor/branches/versions/3.0.x/_dev/packager/package.bat
===================================================================
--- /CKEditor/branches/versions/3.0.x/_dev/packager/package.bat	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_dev/packager/package.bat	(revision 3747)
@@ -7,3 +7,3 @@
 CLS
 
-java -jar ckpackager/js.jar -opt -1 ckpackager/ckpackager.js ../../ckeditor.pack
+java -jar ckpackager/ckpackager.jar ../../ckeditor.pack -v
Index: /CKEditor/branches/versions/3.0.x/_dev/packager/package.sh
===================================================================
--- /CKEditor/branches/versions/3.0.x/_dev/packager/package.sh	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_dev/packager/package.sh	(revision 3747)
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+# Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+# For licensing, see LICENSE.html or http://ckeditor.com/license
+
+java -jar ckpackager/ckpackager.jar ../../ckeditor.pack
Index: /CKEditor/branches/versions/3.0.x/_dev/packager/packagefilegen_full.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_dev/packager/packagefilegen_full.html	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_dev/packager/packagefilegen_full.html	(revision 3747)
@@ -106,5 +106,5 @@
 			<label for="editor1">
 				Editor 1:</label><br />
-			<textarea name="editor1" rows="10" cols="80">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;FCKeditor&lt;/a&gt;.&lt;/p&gt;</textarea>
+			<textarea name="editor1" rows="10" cols="80">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
 			<script type="text/javascript">
 			//<![CDATA[
Index: /CKEditor/branches/versions/3.0.x/_dev/releaser/ckreleaser.release
===================================================================
--- /CKEditor/branches/versions/3.0.x/_dev/releaser/ckreleaser.release	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_dev/releaser/ckreleaser.release	(revision 3747)
@@ -8,5 +8,5 @@
 fixLineEnds : true,
 
-ignore : 
+ignore :
 [
 	'_dev',
@@ -56,5 +56,5 @@
 packages :
 [
-	'../../../ckeditor.pack'
+	'ckeditor.pack'
 ],
 
Index: /CKEditor/branches/versions/3.0.x/_dev/releaser/release.bat
===================================================================
--- /CKEditor/branches/versions/3.0.x/_dev/releaser/release.bat	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_dev/releaser/release.bat	(revision 3747)
@@ -1,4 +1,6 @@
-:: Copyright (c) 2003-2009, Frederico Caldeira Knabben. All rights reserved.
+::
+:: Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
 :: For licensing, see LICENSE.html or http://ckeditor.com/license
+::
 
 @ECHO OFF
@@ -9,5 +11,3 @@
 :: rmdir /S /Q release
 
-cd ckreleaser
-java -cp js.jar;tools/javatar/tar.jar;tools/tartool/tartool.jar;tools/jaf/activation.jar org.mozilla.javascript.tools.shell.Main ckreleaser.js ../ckreleaser.release ../../.. ../release 0.1 ckeditor_0.1.zip ckeditor_0.1.tar.gz
-cd ..
+java -jar ckreleaser/ckreleaser.jar ckreleaser.release ../.. release "CKEditor 3.0 RC" ckeditor_3.0rc
Index: /CKEditor/branches/versions/3.0.x/_dev/releaser/release.sh
===================================================================
--- /CKEditor/branches/versions/3.0.x/_dev/releaser/release.sh	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_dev/releaser/release.sh	(revision 3747)
@@ -1,6 +1,6 @@
+#!/bin/bash
+
 # Copyright (c) 2003-2009, Frederico Caldeira Knabben. All rights reserved.
 # For licensing, see LICENSE.html or http://ckeditor.com/license
 
-cd ckreleaser
-java -cp js.jar:tools/javatar/tar.jar:tools/tartool/tartool.jar:tools/jaf/activation.jar org.mozilla.javascript.tools.shell.Main ckreleaser.js ../ckreleaser.release ../../.. ../release 0.1 ckeditor_0.1.zip ckeditor_0.1.tar.gz
-cd ..
+java -jar ckreleaser/ckreleaser.jar ckreleaser.release ../.. release "CKEditor 3.0 SVN" ckeditor_3.0_svn
Index: /CKEditor/branches/versions/3.0.x/_samples/api_dialog.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_samples/api_dialog.html	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_samples/api_dialog.html	(revision 3747)
@@ -57,5 +57,5 @@
 			// Remove the "Link Type" combo and the "Browser
 			// Server" button from the "info" tab.
-			infoTab.remove( 'protocol' );
+			infoTab.remove( 'linkType' );
 			infoTab.remove( 'browse' );
 
@@ -105,5 +105,5 @@
 			<li><strong>Create a custom dialog</strong> ("My Dialog" button).</li>
 		</ol>
-		<textarea id="editor1" name="editor1" rows="10" cols="80">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;FCKeditor&lt;/a&gt;.&lt;/p&gt;</textarea>
+		<textarea id="editor1" name="editor1" rows="10" cols="80">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
 		<script type="text/javascript">
 		//<![CDATA[
Index: /CKEditor/branches/versions/3.0.x/_samples/divreplace.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_samples/divreplace.html	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_samples/divreplace.html	(revision 3747)
@@ -9,5 +9,5 @@
 	<style id="styles" type="text/css">
 
-		div
+		div.editable
 		{
 			border: solid 2px Transparent;
@@ -16,5 +16,5 @@
 		}
 
-		div:hover
+		div.editable:hover
 		{
 			border-color: black;
@@ -46,6 +46,5 @@
 
 	// Find out the div that holds this element.
-	while( element.parentNode && element.parentNode.nodeName.toLowerCase() != 'fieldset' )
-		element = element.parentNode;
+	element = element.parentNode;
 
 	if ( element.nodeName.toLowerCase() == 'div' )
@@ -70,5 +69,5 @@
 		<p>
 			Double-click on any of the following DIVs to transform them into editor instances.</p>
-		<div>
+		<div class='editable'>
 			<h3>
 				Part 1</h3>
@@ -81,5 +80,5 @@
 			</p>
 		</div>
-		<div>
+		<div class='editable'>
 			<h3>
 				Part 2</h3>
@@ -97,5 +96,5 @@
 			</p>
 		</div>
-		<div>
+		<div class='editable'>
 			<h3>
 				Part 3</h3>
Index: /CKEditor/branches/versions/3.0.x/_samples/enterkey.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_samples/enterkey.html	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_samples/enterkey.html	(revision 3747)
@@ -0,0 +1,76 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!--
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+-->
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+	<title>ENTER Key Configuration - CKEditor Sample</title>
+	<script type="text/javascript" src="sample.js"></script>
+	<script id="headscript" type="text/javascript">
+	//<![CDATA[
+
+var editor;
+
+function changeEnter()
+{
+	// If we already have an editor, let's destroy it first.
+	if ( editor )
+		editor.destroy( true );
+
+	// Create the editor again, with the appropriate settings.
+	editor = CKEDITOR.replace( 'editor1',
+		{
+			enterMode		: Number( document.getElementById( 'xEnter' ).value ),
+			shiftEnterMode	: Number( document.getElementById( 'xShiftEnter' ).value )
+		});
+}
+
+window.onload = changeEnter;
+
+	//]]>
+	</script>
+</head>
+<body>
+	<!--
+		The values in the select boxes represent the contants taht can be used
+		to configure the enter key. You can use the constants directly instead
+		of their numeric values:
+			- CKEDITOR.ENTER_P		= 1;
+			- CKEDITOR.ENTER_BR		= 2;
+			- CKEDITOR.ENTER_DIV	= 3;
+	-->
+	<div id="html">
+		<div style="float: left; margin-right: 20px">
+			When ENTER is pressed:<br />
+			<select id="xEnter" onchange="changeEnter();">
+				<option value="1" selected="selected">Create new &lt;P&gt; (recommended)</option>
+				<option value="3">Create new &lt;DIV&gt;</option>
+				<option value="2">Break the line with a &lt;BR&gt;</option>
+			</select>
+		</div>
+		<div style="float: left">
+			When SHIFT + ENTER is pressed:<br />
+			<select id="xShiftEnter" onchange="changeEnter();">
+				<option value="1">Create new &lt;P&gt;</option>
+				<option value="3">Create new &lt;DIV&gt;</option>
+				<option value="2" selected="selected">Break the line with a &lt;BR&gt; (recommended)</option>
+			</select>
+		</div>
+		<br style="clear: both" />
+
+		<form action="sample_posteddata.php" method="post">
+			<p>
+				<br />
+				<textarea id="editor1" name="editor1" rows="10" cols="80">This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;CKEditor&lt;/a&gt;.</textarea>
+			</p>
+			<p>
+				<input type="submit" value="Submit" />
+			</p>
+		</form>
+	</div>
+	<div id="code">
+		<pre></pre>
+	</div>
+</body>
+</html>
Index: /CKEditor/branches/versions/3.0.x/_samples/index.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_samples/index.html	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_samples/index.html	(revision 3747)
@@ -21,4 +21,12 @@
 	</ul>
 	<h2>
+		Basic Customization
+	</h2>
+	<ul>
+		<li><a href="skins.html">Skins</a></li>
+		<li><a href="ui_color.html">User Interface Color</a></li>
+		<li><a href="ui_languages.html">User Interface Languages</a></li>
+	</ul>
+	<h2>
 		Advanced Samples
 	</h2>
@@ -26,4 +34,6 @@
 		<li><a href="divreplace.html">Replace DIV elements on the fly</a>&nbsp; </li>
 		<li><a href="ajax.html">Create and destroy editor instances for Ajax applications</a></li>
+		<li><a href="api_dialog.html">Using the JavaScript API to customize dialogs</a></li>
+		<li><a href="enterkey.html">Using the "Enter" key in CKEditor</a></li>
 	</ul>
 	<div id="footer">
Index: /CKEditor/branches/versions/3.0.x/_samples/replacebyclass.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_samples/replacebyclass.html	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_samples/replacebyclass.html	(revision 3747)
@@ -15,5 +15,5 @@
 				<label for="editor1">
 					Editor 1:</label><br />
-				<textarea id="editor1" name="editor1" class="ckeditor" rows="10" cols="80">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;FCKeditor&lt;/a&gt;.&lt;/p&gt;</textarea>
+				<textarea id="editor1" name="editor1" class="ckeditor" rows="10" cols="80">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
 			</p>
 			<p>
@@ -28,10 +28,10 @@
     &lt;label for="editor1"&gt;
       Editor 1:&lt;/label&gt;&lt;br /&gt;
-    &lt;textarea id="editor1" name="editor1" <b>class="ckeditor"</b> rows="10" cols="80"&gt;&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;FCKeditor&lt;/a&gt;.&lt;/p&gt;&lt;/textarea&gt;
+    &lt;textarea id="editor1" name="editor1" <b>class="ckeditor"</b> rows="10" cols="80"&gt;&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;&lt;/textarea&gt;
   &lt;/p&gt;
   &lt;p&gt;
     &lt;label for="editor2"&gt;
       Editor 2:&lt;/label&gt;&lt;br /&gt;
-    &lt;textarea id="editor2" name="editor2" <b>class="ckeditor"</b> rows="10" cols="80"&gt;&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;FCKeditor&lt;/a&gt;.&lt;/p&gt;&lt;/textarea&gt;
+    &lt;textarea id="editor2" name="editor2" <b>class="ckeditor"</b> rows="10" cols="80"&gt;&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;&lt;/textarea&gt;
   &lt;/p&gt;
   &lt;p&gt;
Index: /CKEditor/branches/versions/3.0.x/_samples/replacebycode.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_samples/replacebycode.html	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_samples/replacebycode.html	(revision 3747)
@@ -15,5 +15,5 @@
 				<label for="editor1">
 					Editor 1:</label><br />
-				<textarea id="editor1" name="editor1" rows="10" cols="80">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;FCKeditor&lt;/a&gt;.&lt;/p&gt;</textarea>
+				<textarea id="editor1" name="editor1" rows="10" cols="80">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
 				<script type="text/javascript">
 				//<![CDATA[
@@ -33,5 +33,5 @@
 				<label for="editor2">
 					Editor 2:</label><br />
-				<textarea id="editor2" name="editor2" rows="10" cols="80">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;FCKeditor&lt;/a&gt;.&lt;/p&gt;</textarea>
+				<textarea id="editor2" name="editor2" rows="10" cols="80">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
 				<script type="text/javascript">
 				//<![CDATA[
@@ -59,5 +59,5 @@
     &lt;label for="editor1"&gt;
       Editor 1:&lt;/label&gt;&lt;br /&gt;
-    &lt;textarea <b>name="editor1"</b> rows="10" cols="80"&gt;&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;FCKeditor&lt;/a&gt;.&lt;/p&gt;&lt;/textarea&gt;
+    &lt;textarea <b>name="editor1"</b> rows="10" cols="80"&gt;&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;&lt;/textarea&gt;
     &lt;script type="text/javascript"&gt;
     //&lt;![CDATA[
Index: /CKEditor/branches/versions/3.0.x/_samples/sample.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_samples/sample.html	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_samples/sample.html	(revision 3747)
@@ -65,22 +65,9 @@
 	<!-- This <fieldset> holds the HTML that you will usually find in your
 	     pages. -->
-	<fieldset title="Output">
-		<legend>Output</legend>
-		<script id="html" type="text/javascript">
-		//<![CDATA[
-			document.write( CKEDITOR.samples.htmlData );
-		//]]>
-		</script>
-	</fieldset>
-	<!-- This <fieldset> contains the output readable code that illustrates
-	     how to use the editor, having the results shown in this sample. -->
-	<fieldset title="Code">
-		<legend>Code</legend>
-		<script id="code" type="text/javascript">
-		//<![CDATA[
-			document.write( CKEDITOR.samples.codeData );
-		//]]>
-		</script>
-	</fieldset>
+	<script id="html" type="text/javascript">
+	//<![CDATA[
+		document.write( CKEDITOR.samples.htmlData );
+	//]]>
+	</script>
 	<div id="footer">
 		<hr />
Index: /CKEditor/branches/versions/3.0.x/_samples/sample.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_samples/sample.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_samples/sample.js	(revision 3747)
@@ -3,4 +3,12 @@
 For licensing, see LICENSE.html or http://ckeditor.com/license
 */
+
+// This file is not required by CKEditor and may be safely ignored.
+// It is just a helper file that displays a red message about browser compatibility
+// at the top of the samples (if incompatible browser is detected).
+// %REMOVE_START%
+// In the SVN version of CKEditor, it does some more magic, for example it
+// redirects all samples to the sample.html file. It still can be ignored anyway.
+// %REMOVE_END%
 
 // Firebug has been presented some bugs with console. It must be "initialized"
@@ -25,4 +33,5 @@
 if ( window.CKEDITOR )
 {
+// %REMOVE_START%
 	CKEDITOR.samples = (function()
 	{
@@ -69,5 +78,5 @@
 		return samples;
 	})();
-
+// %REMOVE_END%
 	(function()
 	{
@@ -80,5 +89,5 @@
 			var browsers =
 			{
-				gecko : 'Firefox 1.5',
+				gecko : 'Firefox 2.0',
 				ie : 'Internet Explorer 6.0',
 				opera : 'Opera 9.5',
Index: /CKEditor/branches/versions/3.0.x/_samples/skins.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_samples/skins.html	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_samples/skins.html	(revision 3747)
@@ -0,0 +1,62 @@
+﻿<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!--
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+-->
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+	<title>Skins - CKEditor Sample</title>
+	<script type="text/javascript" src="sample.js"></script>
+</head>
+<body>
+	<div id="html">
+		<form action="sample_posteddata.php" method="post">
+			<p>
+				"Kama" skin:<br />
+				<textarea id="editor_kama" name="editor_kama" rows="10" cols="80">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
+				<script type="text/javascript">
+				//<![CDATA[
+
+					CKEDITOR.replace( 'editor_kama',
+						{
+							skin : 'kama'
+						});
+
+				//]]>
+				</script>
+			</p>
+			<p>
+				"Office 2003" skin:<br />
+				<textarea id="editor_office2003" name="editor_office2003" rows="10" cols="80">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
+				<script type="text/javascript">
+				//<![CDATA[
+
+					CKEDITOR.replace( 'editor_office2003',
+						{
+							skin : 'office2003'
+						});
+
+				//]]>
+				</script>
+			</p>
+			<p>
+				"V2" skin:<br />
+				<textarea id="editor_v2" name="editor_v2" rows="10" cols="80">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
+				<script type="text/javascript">
+				//<![CDATA[
+
+					CKEDITOR.replace( 'editor_v2',
+						{
+							skin : 'v2'
+						});
+
+				//]]>
+				</script>
+			</p>
+		</form>
+	</div>
+	<div id="code">
+		<pre></pre>
+	</div>
+</body>
+</html>
Index: /CKEditor/branches/versions/3.0.x/_samples/ui_color.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_samples/ui_color.html	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_samples/ui_color.html	(revision 3747)
@@ -0,0 +1,83 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!--
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+-->
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+	<title>UI Color Setting Tool - CKEditor Sample</title>
+	<script type="text/javascript" src="sample.js"></script>
+</head>
+<body>
+	<div id="html">
+		<p>Click the UI Color Picker button to test your color preferences at runtime.</p>
+		<form action="sample_posteddata.php" method="post">
+			<p>
+				<textarea id="editor1" name="editor1" rows="10" cols="80">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
+				<script type="text/javascript">
+				//<![CDATA[
+
+					// Replace the <textarea id="editor"> with an CKEditor
+					// instance, using default configurations.
+					CKEDITOR.replace( 'editor1',
+						{
+							extraPlugins : 'uicolor',
+							toolbar :
+							[
+								[ 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ],
+								[ 'UIColor' ]
+							]
+						});
+
+				//]]>
+				</script>
+			</p>
+			<p>
+				<textarea id="editor2" name="editor2" rows="10" cols="80">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
+				<script type="text/javascript">
+				//<![CDATA[
+
+					// Replace the <textarea id="editor"> with an CKEditor
+					// instance, using default configurations.
+					CKEDITOR.replace( 'editor2',
+						{
+							extraPlugins : 'uicolor',
+							uiColor: '#14B8C4',
+							toolbar :
+							[
+								[ 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ],
+								[ 'UIColor' ]
+							]
+						} );
+
+				//]]>
+				</script>
+			</p>
+			<p>
+				<input type="submit" value="Submit" />
+			</p>
+		</form>
+	</div>
+	<div id="code">
+		<pre>
+&lt;form action=""&gt;
+  &lt;p&gt;
+    &lt;label for="editor1"&gt;
+      Editor 1:&lt;/label&gt;&lt;br /&gt;
+    &lt;textarea <b>name="editor1"</b> rows="10" cols="80"&gt;&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;&lt;/textarea&gt;
+    &lt;script type="text/javascript"&gt;
+    //&lt;![CDATA[
+
+      <b>CKEDITOR.replace( 'editor1' );</b>
+
+    //]]&gt;
+    &lt;/script&gt;
+  &lt;/p&gt;
+  &lt;p&gt;
+    &lt;input type="submit" value="Submit" /&gt;
+  &lt;/p&gt;
+&lt;/form&gt;
+</pre>
+	</div>
+</body>
+</html>
Index: /CKEditor/branches/versions/3.0.x/_samples/ui_languages.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_samples/ui_languages.html	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_samples/ui_languages.html	(revision 3747)
@@ -0,0 +1,92 @@
+﻿<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!--
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+-->
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+	<title>User Interface Globalization - CKEditor Sample</title>
+	<script type="text/javascript" src="sample.js"></script>
+	<script id="headscript" type="text/javascript">
+	//<![CDATA[
+
+	document.write( '<script type="text/javascript" src="../_source/lang/_languages.js"><\/script>' );
+
+	//]]>
+	</script>
+</head>
+<body>
+	<div id="html">
+		<form action="sample_posteddata.php" method="post">
+			<p>
+				<label for="editor1">
+					Available languages (<span id="count">&nbsp;</span>
+					languages!):</label><br />
+				<select id="languages" onchange="createEditor( this.value );" disabled="disabled">
+					<script type="text/javascript">
+					//<![CDATA[
+
+						// Get the language list from the _languages.js file.
+						for ( var i = 0 ; i < window.CKEDITOR_LANGS.length ; i++ )
+						{
+							document.write(
+								'<option value="' + window.CKEDITOR_LANGS[i].code + '">' +
+									window.CKEDITOR_LANGS[i].name +
+								'</option>' );
+						}
+
+					//]]>
+					</script>
+				</select>
+				<br />
+				<span style="color: #888888">(You may see strange characters if your system doesn't
+					support the selected language)</span>
+			</p>
+			<p>
+				<textarea id="editor1" name="editor1" rows="10" cols="80">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
+				<script type="text/javascript">
+				//<![CDATA[
+
+					// Set the number of languages.
+					document.getElementById( 'count' ).innerHTML = window.CKEDITOR_LANGS.length;
+
+					var editor;
+
+					function createEditor( languageCode )
+					{
+						if ( editor )
+							editor.destroy();
+
+						// Replace the <textarea id="editor"> with an CKEditor
+						// instance, using default configurations.
+						editor = CKEDITOR.replace( 'editor1',
+							{
+								language : languageCode,
+
+								on :
+								{
+									instanceReady : function()
+									{
+										// Wait for the editor to be ready to set
+										// the language combo.
+										var languages = document.getElementById( 'languages' );
+										languages.value = this.langCode;
+										languages.disabled = false;
+									}
+								}
+							} );
+					}
+
+					// At page startup, load the default language:
+					createEditor( '' );
+
+				//]]>
+				</script>
+			</p>
+		</form>
+	</div>
+	<div id="code">
+		<pre></pre>
+	</div>
+</body>
+</html>
Index: /CKEditor/branches/versions/3.0.x/_source/core/_bootstrap.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/_bootstrap.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/_bootstrap.js	(revision 3747)
@@ -7,4 +7,25 @@
  * @fileOverview API initialization code.
  */
+
+(function()
+{
+	// Check is High Contrast is active by creating a temporary element with a
+	// background image.
+
+	var testImage = ( CKEDITOR.env.ie && CKEDITOR.env.version < 7 ) ? ( CKEDITOR.basePath + 'images/spacer.gif' ) : 'about:blank';
+
+	var hcDetect = CKEDITOR.dom.element.createFromHtml(
+		'<div style="width:0px;height:0px;' +
+			'position:absolute;left:-10000px;' +
+			'background-image:url(' + testImage + ')"></div>', CKEDITOR.document );
+
+	hcDetect.appendTo( CKEDITOR.document.getHead() );
+
+	// Update CKEDITOR.env.
+	if ( ( CKEDITOR.env.hc = ( hcDetect.getComputedStyle( 'background-image' ) == 'none' ) ) )
+		CKEDITOR.env.cssClass += ' cke_hc';
+
+	hcDetect.remove();
+})();
 
 // Load core plugins.
Index: /CKEditor/branches/versions/3.0.x/_source/core/ckeditor_base.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/ckeditor_base.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/ckeditor_base.js	(revision 3747)
@@ -13,5 +13,5 @@
 // ckeditor_source.js and ckeditor_basic_source.js files.
 
-// if (!window.CKEDITOR){window.CKEDITOR=(function(){return/**@lends CKEDITOR*/{_:{},status:'unloaded',timestamp:'',basePath:(function(){var A='';var B=document.getElementsByTagName('script');for (var i=0;i<B.length;i++){var C=B[i].src.match(/(^|.*[\\\/])ckeditor(?:_basic)?(?:_source)?.js(?:\?.*)?$/i);if (C){A=C[1];break;}};if (A.indexOf('://')==-1){if (A.indexOf('/')===0) A=location.href.match(/^.*?:\/\/[^\/]*/)[0]+A;else A=location.href.match(/^[^\?]*\//)[0]+A;};return A;})(),getUrl:function(resource){if (resource.indexOf('://')==-1&&resource.indexOf('/')!==0) resource=this.basePath+resource;if (this.timestamp) resource+=(resource.indexOf('?')>=0?'&':'?')+'t='+this.timestamp;return resource;}};})();};
+// if(!window.CKEDITOR)window.CKEDITOR=(function(){var a={timestamp:'',version:'%VERSION%',rev:'%REV%',_:{},status:'unloaded',basePath:(function(){var d=window.CKEDITOR_BASEPATH||'';if(!d){var e=document.getElementsByTagName('script');for(var f=0;f<e.length;f++){var g=e[f].src.match(/(^|.*[\\\/])ckeditor(?:_basic)?(?:_source)?.js(?:\?.*)?$/i);if(g){d=g[1];break;}}}if(d.indexOf('://')==-1)if(d.indexOf('/')===0)d=location.href.match(/^.*?:\/\/[^\/]*/)[0]+d;else d=location.href.match(/^[^\?]*\/(?:)/)[0]+d;return d;})(),getUrl:function(d){if(d.indexOf('://')==-1&&d.indexOf('/')!==0)d=this.basePath+d;if(this.timestamp&&d.charAt(d.length-1)!='/')d+=(d.indexOf('?')>=0?'&':'?')+('t=')+this.timestamp;return d;}},b=window.CKEDITOR_GETURL;if(b){var c=a.getUrl;a.getUrl=function(d){return b.call(a,d)||c.call(a,d);};}return a;})();
 
 // #### Raw code
@@ -28,5 +28,7 @@
 	window.CKEDITOR = (function()
 	{
-		return /** @lends CKEDITOR */ {
+		var CKEDITOR =
+		/** @lends CKEDITOR */
+		{
 
 			/**
@@ -46,4 +48,21 @@
 			timestamp : '%TIMESTAMP%',
 			 */							// %REMOVE_LINE%
+
+			/**
+			 * Contains the CKEditor version number.
+			 * @type String
+			 * @example
+			 * alert( CKEDITOR.version );  // e.g. 'CKEditor 3.0 Beta'
+			 */
+			version : '%VERSION%',
+
+			/**
+			 * Contains the CKEditor revision number.
+			 * Revision number is incremented automatically after each modification of CKEditor source code.
+			 * @type String
+			 * @example
+			 * alert( CKEDITOR.revision );  // e.g. '3975'
+			 */
+			revision : '%REV%',
 
 			/**
@@ -75,4 +94,7 @@
 			/**
 			 * Contains the full URL for the CKEditor installation directory.
+			 * It's possible to manually provide the base path by setting a
+			 * global variable named CKEDITOR_BASEPATH. This global variable
+			 * must be set "before" the editor script loading.
 			 * @type String
 			 * @example
@@ -85,15 +107,19 @@
 
 				// Find out the editor directory path, based on its <script> tag.
-				var path = '';
-				var scripts = document.getElementsByTagName( 'script' );
+				var path = window.CKEDITOR_BASEPATH || '';
 
-				for ( var i = 0 ; i < scripts.length ; i++ )
+				if ( !path )
 				{
-					var match = scripts[i].src.match( /(^|.*[\\\/])ckeditor(?:_basic)?(?:_source)?.js(?:\?.*)?$/i );
+					var scripts = document.getElementsByTagName( 'script' );
 
-					if ( match )
+					for ( var i = 0 ; i < scripts.length ; i++ )
 					{
-						path = match[1];
-						break;
+						var match = scripts[i].src.match( /(^|.*[\\\/])ckeditor(?:_basic)?(?:_source)?.js(?:\?.*)?$/i );
+
+						if ( match )
+						{
+							path = match[1];
+							break;
+						}
 					}
 				}
@@ -118,4 +144,9 @@
 			 * returned by this function contains a querystring parameter ("t")
 			 * set to the {@link CKEDITOR.timestamp} value.
+			 * It's possible to provide a custom implementation to this
+			 * function by setting a global variable named CKEDITOR_GETURL.
+			 * This global variable must be set "before" the editor script
+			 * loading. If the custom implementation returns nothing, the
+			 * default implementation is used.
 			 * @returns {String} The full URL.
 			 * @example
@@ -135,5 +166,6 @@
 					resource = this.basePath + resource;
 
-				if ( this.timestamp )
+				// Add the timestamp, except for directories.
+				if ( this.timestamp && resource.charAt( resource.length - 1 ) != '/' )
 					resource += ( resource.indexOf( '?' ) >= 0 ? '&' : '?' ) + 't=' + this.timestamp;
 
@@ -141,4 +173,19 @@
 			}
 		};
+
+		// Make it possible to override the getUrl function with a custom
+		// implementation pointing to a global named CKEDITOR_GETURL.
+		var newGetUrl = window.CKEDITOR_GETURL;
+		if ( newGetUrl )
+		{
+			var originalGetUrl = CKEDITOR.getUrl;
+			CKEDITOR.getUrl = function ( resource )
+			{
+				return newGetUrl.call( CKEDITOR, resource ) ||
+					originalGetUrl.call( CKEDITOR, resource );
+			};
+		}
+
+		return CKEDITOR;
 	})();
 }
Index: /CKEditor/branches/versions/3.0.x/_source/core/command.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/command.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/command.js	(revision 3747)
@@ -6,12 +6,21 @@
 CKEDITOR.command = function( editor, commandDefinition )
 {
-	this.state = CKEDITOR.TRISTATE_OFF;
+	this.exec = function( data )
+	{
+		if ( this.state == CKEDITOR.TRISTATE_DISABLED )
+			return false;
 
-	this.exec = function()
-	{
-		commandDefinition.exec.call( this, editor );
+		// The editor will always have the focus when executing a command.
+		editor.focus();
+
+		return ( commandDefinition.exec.call( this, editor, data ) !== false );
 	};
 
-	CKEDITOR.tools.extend( this, commandDefinition );
+	CKEDITOR.tools.extend( this, commandDefinition,
+		// Defaults
+		{
+			modes : { wysiwyg : 1 },
+			state : CKEDITOR.TRISTATE_OFF
+		});
 
 	// Call the CKEDITOR.event constructor to initialize this instance.
@@ -19,3 +28,43 @@
 };
 
-CKEDITOR.event.implementOn( CKEDITOR.command.prototype );
+CKEDITOR.command.prototype =
+{
+	enable : function()
+	{
+		if ( this.state == CKEDITOR.TRISTATE_DISABLED )
+			this.setState( ( !this.preserveState || ( typeof this.previousState == 'undefined' ) ) ? CKEDITOR.TRISTATE_OFF : this.previousState );
+	},
+
+	disable : function()
+	{
+		this.setState( CKEDITOR.TRISTATE_DISABLED );
+	},
+
+	setState : function( newState )
+	{
+		// Do nothing if there is no state change.
+		if ( this.state == newState )
+			return false;
+
+		this.previousState = this.state;
+
+		// Set the new state.
+		this.state = newState;
+
+		// Fire the "state" event, so other parts of the code can react to the
+		// change.
+		this.fire( 'state' );
+
+		return true;
+	},
+
+	toggleState : function()
+	{
+		if ( this.state == CKEDITOR.TRISTATE_OFF )
+			this.setState( CKEDITOR.TRISTATE_ON );
+		else if ( this.state == CKEDITOR.TRISTATE_ON )
+			this.setState( CKEDITOR.TRISTATE_OFF );
+	}
+};
+
+CKEDITOR.event.implementOn( CKEDITOR.command.prototype, true );
Index: /CKEditor/branches/versions/3.0.x/_source/core/commanddefinition.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/commanddefinition.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/commanddefinition.js	(revision 3747)
@@ -25,4 +25,6 @@
  * @param {CKEDITOR.editor} editor The editor within which run the command.
  * @param {Object} [data] Additional data to be used to execute the command.
+ * @returns {Boolean} Whether the command has been successfully executed.
+ *		Defaults to "true", if nothing is returned.
  * @example
  * editorInstance.addCommand( 'sample',
@@ -34,2 +36,37 @@
  * });
  */
+
+/**
+ * Whether the command need to be hooked into the redo/undo system.
+ * @name  CKEDITOR.commandDefinition.canUndo
+ * @type {Boolean} If not defined or 'true' both hook into undo system, set it
+ *		to 'false' explicitly  keep it out.
+ * @field
+ * @example
+ * editorInstance.addCommand( 'alertName',
+ * {
+ *     exec : function( editor )
+ *     {
+ *         alert( editor.name );
+ *     },
+ *     canUndo : false    // No support for undo/redo
+ * });
+ */
+
+/**
+ * Whether the command is asynchronous, which means the 'afterCommandExec' event
+ * will be fired by the command itself manually, and the 'exec' function return value
+ * of this command is not to be returned.
+ * @name  CKEDITOR.commandDefinition.async
+ * @type {Boolean} If defined as 'true', the command is asynchronous.
+ * @example
+ * editorInstance.addCommand( 'alertName',
+ * {
+ *     exec : function( editor )
+ *     {
+ *         // Asynchronous operation below.
+ *         CKEDITOR.ajax.loadXml( 'data.xml' );
+ *     },
+ *     async : true    // The command need some time to complete after exec function returns.
+ * });
+ */
Index: /CKEditor/branches/versions/3.0.x/_source/core/config.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/config.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/config.js	(revision 3747)
@@ -1,3 +1,3 @@
-﻿/*
+/*
 Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.html or http://ckeditor.com/license
@@ -8,4 +8,8 @@
  * default configuration settings.
  */
+
+CKEDITOR.ENTER_P	= 1;
+CKEDITOR.ENTER_BR	= 2;
+CKEDITOR.ENTER_DIV	= 3;
 
 /**
@@ -74,19 +78,18 @@
 
 	/**
-	 * Instructs the editor to automatically localize the editor to the user
-	 * language, if possible. If set to false, the [@link #defaultLanguage]
-	 * language is used.
+	 * The user interface language localization to use. If empty, the editor
+	 * automatically localize the editor to the user language, if supported,
+	 * otherwise the [@link #defaultLanguage] language is used.
 	 * @default true
 	 * @type Boolean
 	 * @example
-	 * // Forces the editor to always load the German interface.
-	 * config.autoLanguage = false;
-	 * config.defaultLanguage = 'de';
-	 */
-	autoLanguage : true,
-
-	/**
-	 * The language to be used if [@link #autoLanguage] is set to false, or
-	 * when it's not possible to localize the editor to the user language.
+	 * // Load the German interface.
+	 * config.language = 'de';
+	 */
+	language : '',
+
+	/**
+	 * The language to be used if [@link #language] is left empty and it's not
+	 * possible to localize the editor to the user language.
 	 * @default 'en'
 	 * @type String
@@ -96,6 +99,6 @@
 	defaultLanguage : 'en',
 
-	enterMode : 'p',
-	shiftEnterMode : 'br',
+	enterMode : CKEDITOR.ENTER_P,
+	shiftEnterMode : CKEDITOR.ENTER_BR,
 
 	/**
@@ -147,5 +150,45 @@
 	 * config.plugins = 'basicstyles,button,htmldataprocessor,toolbar,wysiwygarea';
 	 */
-	plugins : 'basicstyles,button,elementspath,horizontalrule,htmldataprocessor,keystrokes,newpage,removeformat,smiley,sourcearea,specialchar,tab,toolbar,wysiwygarea',
+	plugins : 'about,basicstyles,blockquote,button,clipboard,colorbutton,contextmenu,elementspath,enterkey,entities,filebrowser,find,flash,font,format,forms,horizontalrule,htmldataprocessor,image,indent,justify,keystrokes,link,list,maximize,newpage,pagebreak,pastefromword,pastetext,popup,preview,print,removeformat,resize,save,scayt,smiley,showblocks,sourcearea,stylescombo,table,tabletools,specialchar,tab,templates,toolbar,undo,wysiwygarea,wsc',
+
+	/**
+	 * List of additional plugins to be loaded. This is a tool setting which
+	 * makes it easier to add new plugins, whithout having to touch and
+	 * possibly breaking the <i>plugins</i> setting.
+	 * @type String
+	 * @example
+	 * config.extraPlugins = 'myplugin,anotherplugin';
+	 */
+	extraPlugins : '',
+
+	/**
+	 * List of plugins that must not be loaded. This is a tool setting which
+	 * makes it easier to avoid loading plugins definied in the <i>plugins</i>
+	 * setting, whithout having to touch and possibly breaking it.
+	 * @type String
+	 * @example
+	 * config.removePlugins = 'elementspath,save,font';
+	 */
+	removePlugins : '',
+
+	/**
+	 * List of regular expressions to be executed over the input HTML,
+	 * indicating code that must stay untouched.
+	 * @type Array
+	 * @example
+	 * config.protectedSource.push( /<\?[\s\S]*?\?>/g );   // PHP Code
+	 * config.protectedSource.push( /<%[\s\S]*?%>/g );   // ASP Code
+	 * config.protectedSource.push( /(<asp:[^\>]+>[\s|\S]*?<\/asp:[^\>]+>)|(<asp:[^\>]+\/>)/gi );   // ASP.Net Code
+	 */
+	protectedSource : [],
+
+	/**
+	 * The editor tabindex value.
+	 * @type Number
+	 * @default 0 (zero)
+	 * @example
+	 * config.tabIndex = 1;
+	 */
+	tabIndex : 0,
 
 	/**
@@ -160,11 +203,14 @@
 
 	/**
-	 * The skin to load.
+	 * The skin to load. It may be the name of the skin folder inside the
+	 * editor installation path, or the name and the path separated by a comma.
 	 * @type String
 	 * @default 'default'
 	 * @example
 	 * config.skin = 'v2';
-	 */
-	skin : 'default',
+	 * @example
+	 * config.skin = 'myskin,/customstuff/myskin/';
+	 */
+	skin : 'kama',
 
 	/**
Index: /CKEditor/branches/versions/3.0.x/_source/core/dom/document.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/dom/document.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/dom/document.js	(revision 3747)
@@ -71,5 +71,10 @@
 		createText : function( text )
 		{
-			return new CKEDITOR.dom.text( '', this );
+			return new CKEDITOR.dom.text( text, this );
+		},
+
+		focus : function()
+		{
+			this.getWindow().focus();
 		},
 
@@ -88,4 +93,52 @@
 		},
 
+		getByAddress : function( address, normalized )
+		{
+			var $ = this.$.documentElement;
+
+			for ( var i = 0 ; $ && i < address.length ; i++ )
+			{
+				var target = address[ i ];
+
+				if ( !normalized )
+				{
+					$ = $.childNodes[ target ];
+					continue;
+				}
+
+				var currentIndex = -1;
+
+				for (var j = 0 ; j < $.childNodes.length ; j++ )
+				{
+					var candidate = $.childNodes[ j ];
+
+					if ( normalized === true &&
+							candidate.nodeType == 3 &&
+							candidate.previousSibling &&
+							candidate.previousSibling.nodeType == 3 )
+					{
+						continue;
+					}
+
+					currentIndex++;
+
+					if ( currentIndex == target )
+					{
+						$ = candidate;
+						break;
+					}
+				}
+			}
+
+			return $ ? new CKEDITOR.dom.node( $ ) : null;
+		},
+
+		getElementsByTag : function( tagName, namespace )
+		{
+			if ( !CKEDITOR.env.ie && namespace )
+				tagName = namespace + ':' + tagName;
+			return new CKEDITOR.dom.nodeList( this.$.getElementsByTagName( tagName ) );
+		},
+
 		/**
 		 * Gets the &lt;head&gt; element for this document.
@@ -127,4 +180,16 @@
 		},
 
+		getDocumentElement : function()
+		{
+			var documentElement = new CKEDITOR.dom.element( this.$.documentElement );
+
+			return (
+			/** @ignore */
+			this.getDocumentElement = function()
+				{
+					return documentElement;
+				})();
+		},
+
 		/**
 		 * Gets the window object that holds this document.
Index: Editor/branches/versions/3.0.x/_source/core/dom/documentFragment.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/dom/documentFragment.js	(revision 3746)
+++ 	(revision )
@@ -1,44 +1,0 @@
-﻿/*
-Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
-For licensing, see LICENSE.html or http://ckeditor.com/license
-*/
-
-CKEDITOR.dom.documentFragment = function( ownerDocument )
-{
-	this.$ = CKEDITOR.env.ie ? ownerDocument.$.createElement( 'div' ) : ownerDocument.$.createDocumentFragment();
-};
-
-(function()
-{
-	var elementPrototype = CKEDITOR.dom.element.prototype;
-
-	CKEDITOR.dom.documentFragment.prototype =
-	{
-		type : CKEDITOR.NODE_DOCUMENT_FRAGMENT,
-
-		append : elementPrototype.append,
-
-		appendTo : function( targetElement )
-		{
-			if ( CKEDITOR.env.ie )
-				elementPrototype.moveChildren.call( this, targetElement );
-			else
-				targetElement.$.appendChild( this.$ );
-		},
-
-		insertAfterNode : function( node )
-		{
-			var $ = this.$;
-			var $node = node.$;
-			var $parent = $node.parentNode;
-
-			if ( CKEDITOR.env.ie )
-			{
-				for ( var child ; child = $.lastChild ; )
-					$parent.insertBefore( $.removeChild( child ), $node.nextSibling );
-			}
-			else
-				$parent.insertBefore( $, $node.nextSibling );
-		}
-	};
-})();
Index: /CKEditor/branches/versions/3.0.x/_source/core/dom/documentfragment.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/dom/documentfragment.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/core/dom/documentfragment.js	(revision 3747)
@@ -0,0 +1,47 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+/**
+ * DocumentFragment is a "lightweight" or "minimal" Document object. It is
+ * commonly used to extract a portion of a document's tree or to create a new
+ * fragment of a document. Various operations may take DocumentFragment objects
+ * as arguments and results in all the child nodes of the DocumentFragment being
+ * moved to the child list of this node.
+ *
+ * @param {Object} ownerDocument
+ */
+CKEDITOR.dom.documentFragment = function( ownerDocument )
+{
+	ownerDocument = ownerDocument || CKEDITOR.document;
+	this.$ = ownerDocument.$.createDocumentFragment();
+};
+
+CKEDITOR.tools.extend( CKEDITOR.dom.documentFragment.prototype,
+	CKEDITOR.dom.element.prototype,
+	{
+		type : CKEDITOR.NODE_DOCUMENT_FRAGMENT,
+		insertAfterNode : function( node )
+		{
+			node = node.$;
+			node.parentNode.insertBefore( this.$, node.nextSibling );
+		}
+	},
+	true,
+	{
+		'append' : 1,
+		'getFirst' : 1,
+		'getLast' : 1,
+		'appendTo' : 1,
+		'moveChildren' : 1,
+		'insertBefore' : 1,
+		'insertAfterNode' : 1,
+		'replace' : 1,
+		'trim' : 1,
+		'ltrim' : 1,
+		'rtrim' : 1,
+		'getDocument' : 1,
+		'getChildCount' : 1,
+		'getChild' : 1,
+		'getChildren' : 1
+	} );
Index: /CKEditor/branches/versions/3.0.x/_source/core/dom/domobject.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/dom/domobject.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/dom/domobject.js	(revision 3747)
@@ -30,13 +30,4 @@
 		 */
 		this.$ = nativeDomObject;
-
-		// Get the main private function from the custom data. Create it if not
-		// defined.
-		if ( !( this._ = this.getCustomData( '_' ) ) )
-			this.setCustomData( '_', ( this._ = {} ) );
-
-		// Call the base event constructor.
-		if ( !this._.events )
-			CKEDITOR.event.call( this );
 	}
 };
@@ -51,9 +42,25 @@
 		return function( domEvent )
 		{
-			domObject.fire( eventName, new CKEDITOR.dom.event( domEvent ) );
+			// In FF, when reloading the page with the editor focused, it may
+			// throw an error because the CKEDITOR global is not anymore
+			// available. So, we check it here first. (#2923)
+			if ( typeof CKEDITOR != 'undefined' )
+				domObject.fire( eventName, new CKEDITOR.dom.event( domEvent ) );
 		};
 	};
 
 	return /** @lends CKEDITOR.dom.domObject.prototype */ {
+
+		getPrivate : function()
+		{
+			var priv;
+
+			// Get the main private function from the custom data. Create it if not
+			// defined.
+			if ( !( priv = this.getCustomData( '_' ) ) )
+				this.setCustomData( '_', ( priv = {} ) );
+
+			return priv;
+		},
 
 		/** @ignore */
@@ -65,5 +72,11 @@
 
 			// Get the listeners holder object.
-			var nativeListeners = this.getCustomData( '_cke_nativeListeners' ) || this.setCustomData( '_cke_nativeListeners', {} );
+			var nativeListeners = this.getCustomData( '_cke_nativeListeners' );
+
+			if ( !nativeListeners )
+			{
+				nativeListeners = {};
+				this.setCustomData( '_cke_nativeListeners', nativeListeners );
+			}
 
 			// Check if we have a listener for that event.
@@ -73,5 +86,5 @@
 
 				if ( this.$.addEventListener )
-					this.$.addEventListener( eventName, listener, false );
+					this.$.addEventListener( eventName, listener, !!CKEDITOR.event.useCapture );
 				else if ( this.$.attachEvent )
 					this.$.attachEvent( 'on' + eventName, listener );
@@ -98,5 +111,5 @@
 						this.$.removeEventListener( eventName, listener, false );
 					else if ( this.$.detachEvent )
-						this.$.detachEvent( eventName, listener );
+						this.$.detachEvent( 'on' + eventName, listener );
 
 					delete nativeListeners[ eventName ];
@@ -142,5 +155,5 @@
 	domObjectProto.setCustomData = function( key, value )
 	{
-		var expandoNumber = this.$._cke_expando || ( this.$._cke_expando = CKEDITOR.tools.getNextNumber() ),
+		var expandoNumber = this.getUniqueId(),
 			dataSlot = customData[ expandoNumber ] || ( customData[ expandoNumber ] = {} );
 
@@ -166,5 +179,22 @@
 			dataSlot = expandoNumber && customData[ expandoNumber ];
 
-		return ( dataSlot && dataSlot[ key ] ) || null;
+		return dataSlot && dataSlot[ key ];
+	};
+
+	domObjectProto.removeCustomData = function( key )
+	{
+		var expandoNumber = this.$._cke_expando,
+			dataSlot = expandoNumber && customData[ expandoNumber ],
+			retval = dataSlot && dataSlot[ key ];
+
+		if ( typeof retval != 'undefined' )
+			delete dataSlot[ key ];
+
+		return retval || null;
+	};
+
+	domObjectProto.getUniqueId = function()
+	{
+		return this.$._cke_expando || ( this.$._cke_expando = CKEDITOR.tools.getNextNumber() );
 	};
 
Index: /CKEditor/branches/versions/3.0.x/_source/core/dom/domwalker.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/dom/domwalker.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/dom/domwalker.js	(revision 3747)
@@ -32,5 +32,5 @@
 					return null;
 
-				if ( current.getChildCount() > 0 )
+				if ( current.getChildCount && current.getChildCount() > 0 )
 				{
 					next = current.getChild( 0 );
@@ -91,5 +91,5 @@
 					var lastChild = current.getPrevious();
 					fireDomWalkerEvent.call( this, 'sibling', current, lastChild );
-					while ( lastChild.getChildCount() > 0 )
+					while ( lastChild.getChildCount && lastChild.getChildCount() > 0 )
 					{
 						next = lastChild.getChild( lastChild.getChildCount() - 1 );
@@ -180,23 +180,43 @@
 	};
 
+	/*
+	 * Anything whose display computed style is block, list-item, table,
+	 * table-row-group, table-header-group, table-footer-group, table-row,
+	 * table-column-group, table-column, table-cell, table-caption, or whose node
+	 * name is hr, br (when enterMode is br only) is a block boundary.
+	 */
+	var blockBoundaryDisplayMatch =
+	{
+		block : 1,
+		'list-item' : 1,
+		table : 1,
+		'table-row-group' : 1,
+		'table-header-group' : 1,
+		'table-footer-group' : 1,
+		'table-row' : 1,
+		'table-column-group' : 1,
+		'table-column' : 1,
+		'table-cell' : 1,
+		'table-caption' : 1
+	},
+		blockBoundaryNodeNameMatch = { hr : 1 };
+
+	CKEDITOR.dom.element.prototype.isBlockBoundary = function( customNodeNames )
+	{
+		var nodeNameMatches = CKEDITOR.tools.extend( {}, blockBoundaryNodeNameMatch, customNodeNames || {} );
+
+		return blockBoundaryDisplayMatch[ this.getComputedStyle( 'display' ) ] ||
+			nodeNameMatches[ this.getName() ];
+	};
+
 	CKEDITOR.dom.domWalker.blockBoundary = function( customNodeNames )
 	{
 		return function( evt )
 		{
-			/*
-			 * Anything whose display computed style is block, list-item, table,
-			 * table-row-group, table-header-group, table-footer-group, table-row,
-			 * table-column-group, table-column, table-cell, table-caption, or whose node
-			 * name is hr, br (when enterMode is br only) is a block boundary.
-			 */
-			var displayMatches = { block : 1, 'list-item' : 1, table : 1, 'table-row-group' : 1, 'table-header-group' : 1,
-				'table-footer-group' : 1, 'table-row' : 1, 'table-column-group' : 1, 'table-column' : 1, 'table-cell' : 1,
-				'table-caption' : 1 },
-				nodeNameMatches = CKEDITOR.tools.extend( { hr : 1 }, customNodeNames || {} ),
-				to = evt.data.to,
+			var to = evt.data.to,
 				from = evt.data.from;
 			if ( to && to.type == CKEDITOR.NODE_ELEMENT )
 			{
-				if ( displayMatches[ to.getComputedStyle( 'display' ) ] || nodeNameMatches[ to.getName() ] )
+				if ( to.isBlockBoundary( customNodeNames ) )
 				{
 					evt.stop();
@@ -207,5 +227,5 @@
 			if ( ( evt.data.type == 'up' || evt.data.type == 'sibling' ) && from && from.type == CKEDITOR.NODE_ELEMENT )
 			{
-				if ( displayMatches[ from.getComputedStyle( 'display' ) ] || nodeNameMatches[ from.getName() ] )
+				if ( from.isBlockBoundary( customNodeNames ) )
 				{
 					evt.stop();
Index: /CKEditor/branches/versions/3.0.x/_source/core/dom/element.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/dom/element.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/dom/element.js	(revision 3747)
@@ -74,4 +74,36 @@
 };
 
+CKEDITOR.dom.element.setMarker = function( database, element, name, value )
+{
+	var id = element.getCustomData( 'list_marker_id' ) ||
+			( element.setCustomData( 'list_marker_id', CKEDITOR.tools.getNextNumber() ).getCustomData( 'list_marker_id' ) ),
+		markerNames = element.getCustomData( 'list_marker_names' ) ||
+			( element.setCustomData( 'list_marker_names', {} ).getCustomData( 'list_marker_names' ) );
+	database[id] = element;
+	markerNames[name] = 1;
+
+	return element.setCustomData( name, value );
+};
+
+CKEDITOR.dom.element.clearAllMarkers = function( database )
+{
+	for ( var i in database )
+		CKEDITOR.dom.element.clearMarkers( database, database[i], true );
+};
+
+CKEDITOR.dom.element.clearMarkers = function( database, element, removeFromDatabase )
+{
+	var names = element.getCustomData( 'list_marker_names' ),
+		id = element.getCustomData( 'list_marker_id' );
+	for ( var i in names )
+		element.removeCustomData( i );
+	element.removeCustomData( 'list_marker_names' );
+	if ( removeFromDatabase )
+	{
+		element.removeCustomData( 'list_marker_id' );
+		delete database[id];
+	}
+};
+
 CKEDITOR.tools.extend( CKEDITOR.dom.element.prototype,
 	/** @lends CKEDITOR.dom.element.prototype */
@@ -120,8 +152,8 @@
 		removeClass : function( className )
 		{
-			var c = this.$.className;
+			var c = this.getAttribute( 'class' );
 			if ( c )
 			{
-				var regex = new RegExp( '(?:^|\\s+)' + className + '(?=\\s|$)', '' );
+				var regex = new RegExp( '(?:^|\\s+)' + className + '(?=\\s|$)', 'i' );
 				if ( regex.test( c ) )
 				{
@@ -129,9 +161,15 @@
 
 					if ( c )
-						this.$.className = c;
+						this.setAttribute( 'class', c );
 					else
 						this.removeAttribute( 'class' );
 				}
 			}
+		},
+
+		hasClass : function( className )
+		{
+			var regex = new RegExp( '(?:^|\\s+)' + className + '(?=\\s|$)', '' );
+			return regex.test( this.getAttribute('class') );
 		},
 
@@ -156,5 +194,5 @@
 		{
 			if ( typeof node == 'string' )
-				node = new CKEDITOR.dom.element( node );
+				node = this.getDocument().createElement( node );
 
 			if ( toStart )
@@ -164,4 +202,16 @@
 
 			return node;
+		},
+
+		appendHtml : function( html )
+		{
+			if ( !this.$.childNodes.length )
+				this.setHtml( html );
+			else
+			{
+				var temp = new CKEDITOR.dom.element( 'div', this.getDocument() );
+				temp.setHtml( html );
+				temp.moveChildren( this );
+			}
 		},
 
@@ -185,4 +235,20 @@
 		},
 
+		appendBogus : function()
+		{
+			var lastChild = this.getLast() ;
+
+			// Ignore empty/spaces text.
+			while ( lastChild && lastChild.type == CKEDITOR.NODE_TEXT && !CKEDITOR.tools.rtrim( lastChild.getText() ) )
+				lastChild = lastChild.getPrevious();
+			if ( !lastChild || !lastChild.is || !lastChild.is( 'br' ) )
+			{
+				this.append(
+					CKEDITOR.env.opera ?
+						this.getDocument().createText('') :
+						this.getDocument().createElement( 'br' ) );
+			}
+		},
+
 		/**
 		 * Breaks one of the ancestor element in the element position, moving
@@ -245,5 +311,11 @@
 		focus : function()
 		{
-			this.$.focus();
+			// IE throws error if the element is not visible.
+			try
+			{
+				this.$.focus();
+			}
+			catch (e)
+			{}
 		},
 
@@ -258,4 +330,18 @@
 		{
 			return this.$.innerHTML;
+		},
+
+		getOuterHtml : function()
+		{
+			if ( this.$.outerHTML )
+			{
+				// IE includes the <?xml:namespace> tag in the outerHTML of
+				// namespaced element. So, we must strip it here. (#3341)
+				return this.$.outerHTML.replace( /<\?[^>]*>/, '' );
+			}
+
+			var tmpDiv = this.$.ownerDocument.createElement( 'div' );
+			tmpDiv.appendChild( this.$.cloneNode( true ) );
+			return tmpDiv.innerHTML;
 		},
 
@@ -315,5 +401,5 @@
 			};
 
-			if ( CKEDITOR.env.ie )
+			if ( CKEDITOR.env.ie && ( CKEDITOR.env.ie7Compat || CKEDITOR.env.ie6Compat ) )
 			{
 				return function( name )
@@ -338,4 +424,15 @@
 							return tabIndex;
 							break;
+
+						case 'checked':
+							return this.$.checked;
+							break;
+
+						case 'style':
+							// IE does not return inline styles via getAttribute(). See #2947.
+							var styleText = this.$.style.cssText;
+							return styleText.toLowerCase().replace(
+								/\s*(?:;\s*|$)/, ';').replace(
+									/([^;])$/, '$1;');
 					}
 
@@ -391,8 +488,5 @@
 		},
 
-		getElementsByTag : function( tagName )
-		{
-			return new CKEDITOR.dom.nodeList( this.$.getElementsByTagName( tagName ) );
-		},
+		getElementsByTag : CKEDITOR.dom.document.prototype.getElementsByTag,
 
 		/**
@@ -460,5 +554,5 @@
 		getText : function()
 		{
-			return this.$.textContent || this.$.innerText;
+			return this.$.textContent || this.$.innerText || '';
 		},
 
@@ -510,4 +604,11 @@
 			var nodeName = this.$.nodeName.toLowerCase();
 
+			if ( CKEDITOR.env.ie )
+			{
+				var scopeName = this.$.scopeName;
+				if ( scopeName != 'HTML' )
+					nodeName = scopeName.toLowerCase() + ':' + nodeName;
+			}
+
 			return (
 			/** @ignore */
@@ -543,23 +644,20 @@
 		},
 
-		getLast : function()
+		/**
+		 * @param ignoreEmpty Skip empty text nodes.
+		 */
+		getLast : function( ignoreEmpty )
 		{
 			var $ = this.$.lastChild;
-			return $ ? new CKEDITOR.dom.node( $ ) : null;
-		},
-
-		/**
-		 * Gets the node that follows this element in its parent's child list.
-		 * @returns {CKEDITOR.dom.node} The next node or null if not
-		 *		available.
-		 * @example
-		 * var element = CKEDITOR.dom.element.createFromHtml( '&lt;div&gt;&lt;b&gt;Example&lt;/b&gt; &lt;i&gt;next&lt;/i&gt;&lt;/div&gt;' );
-		 * var first = <b>element.getFirst().getNext()</b>;
-		 * alert( first.getName() );  // "i"
-		 */
-		getNext : function()
-		{
-			var $ = this.$.nextSibling;
-			return $ ? new CKEDITOR.dom.node( $ ) : null;
+			if ( ignoreEmpty && $ && ( $.nodeType == CKEDITOR.NODE_TEXT )
+					&& !CKEDITOR.tools.trim( $.nodeValue ) )
+				return new CKEDITOR.dom.node( $ ).getPrevious( true );
+			else
+				return $ ? new CKEDITOR.dom.node( $ ) : null;
+		},
+
+		getStyle : function( name )
+		{
+			return this.$.style[ CKEDITOR.tools.cssStyleToDomStyle( name ) ];
 		},
 
@@ -586,4 +684,66 @@
 		},
 
+		isEditable : function()
+		{
+			// Get the element name.
+			var name = this.getName();
+
+			// Get the element DTD (defaults to span for unknown elements).
+			var dtd = !CKEDITOR.dtd.$nonEditable[ name ]
+						&& ( CKEDITOR.dtd[ name ] || CKEDITOR.dtd.span );
+
+			// In the DTD # == text node.
+			return ( dtd && dtd['#'] );
+		},
+
+		isIdentical : function( otherElement )
+		{
+			if ( this.getName() != otherElement.getName() )
+				return false;
+
+			var thisAttribs = this.$.attributes,
+				otherAttribs = otherElement.$.attributes;
+
+			var thisLength = thisAttribs.length,
+				otherLength = otherAttribs.length;
+
+			if ( !CKEDITOR.env.ie && thisLength != otherLength )
+				return false;
+
+			for ( var i = 0 ; i < thisLength ; i++ )
+			{
+				var attribute = thisAttribs[ i ];
+
+				if ( ( !CKEDITOR.env.ie || ( attribute.specified && attribute.nodeName != '_cke_expando' ) ) && attribute.nodeValue != otherElement.getAttribute( attribute.nodeName ) )
+					return false;
+			}
+
+			// For IE, we have to for both elements, because it's difficult to
+			// know how the atttibutes collection is organized in its DOM.
+			if ( CKEDITOR.env.ie )
+			{
+				for ( i = 0 ; i < otherLength ; i++ )
+				{
+					attribute = otherAttribs[ i ];
+
+					if ( ( !CKEDITOR.env.ie || ( attribute.specified && attribute.nodeName != '_cke_expando' ) ) && attribute.nodeValue != thisAttribs.getAttribute( attribute.nodeName ) )
+						return false;
+				}
+			}
+
+			return true;
+		},
+
+		/**
+		 * Checks if this element is visible. May not work if the element is
+		 * child of an element with visibility set to "hidden", but works well
+		 * on the great majority of cases.
+		 * @return {Boolean} True if the element is visible.
+		 */
+		isVisible : function()
+		{
+			return this.$.offsetWidth && ( this.$.style.visibility != 'hidden' );
+		},
+
 		/**
 		 * Indicates that the element has defined attributes.
@@ -597,5 +757,5 @@
 		 */
 		hasAttributes :
-			CKEDITOR.env.ie ?
+			CKEDITOR.env.ie && ( CKEDITOR.env.ie7Compat || CKEDITOR.env.ie6Compat ) ?
 				function()
 				{
@@ -615,5 +775,5 @@
 								// Note : I was not able to reproduce it outside the editor,
 								// but I've faced it while working on the TC of #1391.
-								if ( this.$.className.length > 0 )
+								if ( this.getAttribute( 'class' ) > 0 )
 									return true;
 
@@ -635,6 +795,19 @@
 				function()
 				{
-					return this.$.attributes.length > 0;
+					var attributes = this.$.attributes;
+					return ( attributes.length > 1 || ( attributes.length == 1 && attributes[0].nodeName != '_cke_expando' ) );
 				},
+
+		/**
+		 * Indicates whether a specified attribute is defined for this element.
+		 * @returns {Boolean} True if the specified attribute is defined.
+		 * @param (String) name The attribute name.
+		 * @example
+		 */
+		hasAttribute : function( name )
+		{
+			var $attr = this.$.attributes.getNamedItem( name );
+			return !!( $attr && $attr.specified );
+		},
 
 		/**
@@ -661,10 +834,10 @@
 			if ( toStart )
 			{
-				while ( (child = $.lastChild) )
+				while ( ( child = $.lastChild ) )
 					target.insertBefore( $.removeChild( child ), target.firstChild );
 			}
 			else
 			{
-				while ( (child = $.firstChild) )
+				while ( ( child = $.firstChild ) )
 					target.appendChild( $.removeChild( child ) );
 			}
@@ -705,5 +878,5 @@
 			};
 
-			if ( CKEDITOR.env.ie )
+			if ( CKEDITOR.env.ie && ( CKEDITOR.env.ie7Compat || CKEDITOR.env.ie6Compat ) )
 			{
 				return function( name, value )
@@ -711,6 +884,10 @@
 					if ( name == 'class' )
 						this.$.className = value;
-					if ( name == 'style' )
+					else if ( name == 'style' )
 						this.$.style.cssText = value;
+					else if ( name == 'tabindex' )	// Case sensitive.
+						this.$.tabIndex = value;
+					else if ( name == 'checked' )
+						this.$.checked = value;
 					else
 						standard.apply( this, arguments );
@@ -767,5 +944,5 @@
 			};
 
-			if ( CKEDITOR.env.ie )
+			if ( CKEDITOR.env.ie && ( CKEDITOR.env.ie7Compat || CKEDITOR.env.ie6Compat ) )
 			{
 				return function( name )
@@ -773,4 +950,6 @@
 					if ( name == 'class' )
 						name = 'className';
+					else if ( name == 'tabindex' )
+						name = 'tabIndex';
 					standard.call( this, name );
 				};
@@ -796,5 +975,8 @@
 		removeStyle : function( name )
 		{
-			this.setStyle( name, '' );
+			if ( this.$.style.removeAttribute )
+				this.$.style.removeAttribute( CKEDITOR.tools.cssStyleToDomStyle( name ) );
+			else
+				this.setStyle( name, '' );
 
 			if ( !this.$.style.cssText )
@@ -900,4 +1082,304 @@
 						}
 					}
-				}
+				},
+
+		getPositionedAncestor : function()
+		{
+			var current = this;
+			while ( current.getName() != 'html' )
+			{
+				if ( current.getComputedStyle( 'position' ) != 'static' )
+					return current;
+
+				current = current.getParent();
+			}
+			return null;
+		},
+
+		getDocumentPosition : function( refDocument )
+		{
+			var x = 0, y = 0,
+				body = this.getDocument().getBody(),
+				quirks = this.getDocument().$.compatMode == 'BackCompat';
+
+			var doc = this.getDocument();
+
+			if ( document.documentElement[ "getBoundingClientRect" ] )
+			{
+				var box  = this.$.getBoundingClientRect(),
+					$doc = doc.$,
+					$docElem = $doc.documentElement;
+
+				var clientTop = $docElem.clientTop || body.$.clientTop || 0,
+					clientLeft = $docElem.clientLeft || body.$.clientLeft || 0,
+					needAdjustScrollAndBorders = true;
+
+				/*
+				 * #3804: getBoundingClientRect() works differently on IE and non-IE
+				 * browsers, regarding scroll positions.
+				 *
+				 * On IE, the top position of the <html> element is always 0, no matter
+				 * how much you scrolled down.
+				 *
+				 * On other browsers, the top position of the <html> element is negative
+				 * scrollTop.
+				 */
+				if ( CKEDITOR.env.ie )
+				{
+					var inDocElem = doc.getDocumentElement().contains( this ),
+						inBody = doc.getBody().contains( this );
+
+					needAdjustScrollAndBorders = ( quirks && inBody ) || ( !quirks && inDocElem );
+				}
+
+				if ( needAdjustScrollAndBorders )
+				{
+					x = box.left + ( !quirks && $docElem.scrollLeft || body.$.scrollLeft );
+					x -= clientLeft;
+					y = box.top  + ( !quirks && $docElem.scrollTop || body.$.scrollTop );
+					y -= clientTop;
+				}
+			}
+			else
+ 			{
+				var current = this, previous = null, offsetParent;
+				while ( current && !( current.getName() == 'body' || current.getName() == 'html' ) )
+				{
+					x += current.$.offsetLeft - current.$.scrollLeft;
+					y += current.$.offsetTop - current.$.scrollTop;
+
+					// Opera includes clientTop|Left into offsetTop|Left.
+					if ( !current.equals( this ) )
+					{
+						x += ( current.$.clientLeft || 0 );
+						y += ( current.$.clientTop || 0 );
+					}
+
+					var scrollElement = previous;
+					while ( scrollElement && !scrollElement.equals( current ) )
+					{
+						x -= scrollElement.$.scrollLeft;
+						y -= scrollElement.$.scrollTop;
+						scrollElement = scrollElement.getParent();
+					}
+
+					previous = current;
+					current = ( offsetParent = current.$.offsetParent ) ?
+					          new CKEDITOR.dom.element( offsetParent ) : null;
+				}
+			}
+
+			if ( refDocument )
+			{
+				var currentWindow = this.getWindow(),
+					refWindow = refDocument.getWindow();
+
+				if ( !currentWindow.equals( refWindow ) && currentWindow.$.frameElement )
+				{
+					var iframePosition = ( new CKEDITOR.dom.element( currentWindow.$.frameElement ) ).getDocumentPosition( refDocument );
+
+					x += iframePosition.x;
+					y += iframePosition.y;
+				}
+			}
+
+			if ( !document.documentElement[ "getBoundingClientRect" ] )
+			{
+				// In Firefox, we'll endup one pixel before the element positions,
+				// so we must add it here.
+				if ( CKEDITOR.env.gecko && !quirks )
+				{
+					x += this.$.clientLeft ? 1 : 0;
+					y += this.$.clientTop ? 1 : 0;
+				}
+			}
+
+			return { x : x, y : y };
+		},
+
+		scrollIntoView : function( alignTop )
+		{
+			// Get the element window.
+			var win = this.getWindow(),
+				winHeight = win.getViewPaneSize().height;
+
+			// Starts from the offset that will be scrolled with the negative value of
+			// the visible window height.
+			var offset = winHeight * -1;
+
+			// Append the view pane's height if align to top.
+			// Append element height if we are aligning to the bottom.
+			if ( alignTop )
+				offset += winHeight;
+			else
+			{
+				offset += this.$.offsetHeight || 0;
+
+				// Consider the margin in the scroll, which is ok for our current needs, but
+				// needs investigation if we will be using this function in other places.
+				offset += parseInt( this.getComputedStyle( 'marginBottom' ) || 0, 10 ) || 0;
+			}
+
+			// Append the offsets for the entire element hierarchy.
+			var elementPosition = this.getDocumentPosition();
+			offset += elementPosition.y;
+			// Scroll the window to the desired position, if not already visible.
+			var currentScroll = win.getScrollPosition().y;
+
+			// Though the computed offset value maybe out of range ( e.g.
+			// a negative value ), browser will try to scroll as much as possible. (#3692)
+			win.$.scrollTo( 0, offset > 0 ? offset : 0 );
+		},
+
+		setState : function( state )
+		{
+			switch ( state )
+			{
+				case CKEDITOR.TRISTATE_ON :
+					this.addClass( 'cke_on' );
+					this.removeClass( 'cke_off' );
+					this.removeClass( 'cke_disabled' );
+					break;
+				case CKEDITOR.TRISTATE_DISABLED :
+					this.addClass( 'cke_disabled' );
+					this.removeClass( 'cke_off' );
+					this.removeClass( 'cke_on' );
+					break;
+				default :
+					this.addClass( 'cke_off' );
+					this.removeClass( 'cke_on' );
+					this.removeClass( 'cke_disabled' );
+					break;
+			}
+		},
+
+		/**
+		 * Returns the inner document of this IFRAME element.
+		 * @returns {CKEDITOR.dom.document} The inner document.
+		 */
+		getFrameDocument : function()
+		{
+			var $ = this.$;
+
+			try
+			{
+				// In IE, with custom document.domain, it may happen that
+				// the iframe is not yet available, resulting in "Access
+				// Denied" for the following property access.
+				$.contentWindow.document;
+			}
+			catch ( e )
+			{
+				// Trick to solve this issue, forcing the iframe to get ready
+				// by simply setting its "src" property.
+				$.src = $.src;
+
+				// In IE6 though, the above is not enough, so we must pause the
+				// execution for a while, giving it time to think.
+				if ( CKEDITOR.env.ie && CKEDITOR.env.version < 7 )
+				{
+					window.showModalDialog(
+						'javascript:document.write("' +
+							'<script>' +
+								'window.setTimeout(' +
+									'function(){window.close();}' +
+									',50);' +
+							'</script>")' );
+				}
+			}
+
+			return $ && new CKEDITOR.dom.document( $.contentWindow.document );
+		},
+
+		/**
+		 * Copy all the attributes from one node to the other, kinda like a clone
+		 * skipAttributes is an object with the attributes that must NOT be copied.
+		 * @param {CKEDITOR.dom.element} dest The destination element.
+		 * @param {Object} skipAttributes A dictionary of attributes to skip.
+		 * @example
+		 */
+		copyAttributes : function( dest, skipAttributes )
+		{
+			var attributes = this.$.attributes;
+			skipAttributes = skipAttributes || {};
+
+			for ( var n = 0 ; n < attributes.length ; n++ )
+			{
+				var attribute = attributes[n];
+
+				// IE BUG: value attribute is never specified even if it exists.
+				if ( attribute.specified ||
+				  ( CKEDITOR.env.ie && attribute.nodeValue && attribute.nodeName.toLowerCase() == 'value' ) )
+				{
+					var attrName = attribute.nodeName;
+					// We can set the type only once, so do it with the proper value, not copying it.
+					if ( attrName in skipAttributes )
+						continue;
+
+					var attrValue = this.getAttribute( attrName );
+					if ( attrValue === null )
+						attrValue = attribute.nodeValue;
+
+					dest.setAttribute( attrName, attrValue );
+				}
+			}
+
+			// The style:
+			if ( this.$.style.cssText !== '' )
+				dest.$.style.cssText = this.$.style.cssText;
+		},
+
+		/**
+		 * Changes the tag name of the current element.
+		 * @param {String} newTag The new tag for the element.
+		 */
+		renameNode : function( newTag )
+		{
+			// If it's already correct exit here.
+			if ( this.getName() == newTag )
+				return;
+
+			var doc = this.getDocument();
+
+			// Create the new node.
+			var newNode = new CKEDITOR.dom.element( newTag, doc );
+
+			// Copy all attributes.
+			this.copyAttributes( newNode );
+
+			// Move children to the new node.
+			this.moveChildren( newNode );
+
+			// Replace the node.
+			this.$.parentNode.replaceChild( newNode.$, this.$ );
+			newNode.$._cke_expando = this.$._cke_expando;
+			this.$ = newNode.$;
+		},
+
+		/**
+		 * Gets a DOM tree descendant under the current node.
+		 * @param {Array|Number} indices The child index or array of child indices under the node.
+		 * @returns {CKEDITOR.dom.node} The specified DOM child under the current node. Null if child does not exist.
+		 * @example
+		 * var strong = p.getChild(0);
+		 */
+		getChild : function( indices )
+		{
+			var rawNode = this.$;
+
+			if ( !indices.slice )
+				rawNode = rawNode.childNodes[ indices ];
+			else
+			{
+				while ( indices.length > 0 && rawNode )
+					rawNode = rawNode.childNodes[ indices.shift() ];
+			}
+
+			return rawNode ? new CKEDITOR.dom.node( rawNode ) : null;
+		},
+
+		getChildCount : function()
+		{
+			return this.$.childNodes.length;
+ 		}
 	});
Index: /CKEditor/branches/versions/3.0.x/_source/core/dom/elementpath.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/dom/elementpath.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/dom/elementpath.js	(revision 3747)
@@ -10,5 +10,5 @@
 
 	// Elements that may be considered the "Block limit" in an element path.
-	var pathBlockLimitElements = { body:1,div:1,td:1,th:1,caption:1,form:1 };
+	var pathBlockLimitElements = { body:1,div:1,table:1,tbody:1,tr:1,td:1,th:1,caption:1,form:1 };
 
 	// Check if an element contains any block element.
Index: /CKEditor/branches/versions/3.0.x/_source/core/dom/node.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/dom/node.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/dom/node.js	(revision 3747)
@@ -93,7 +93,28 @@
 		},
 
-		clone : function( includeChildren )
-		{
-			return new CKEDITOR.dom.node( this.$.cloneNode( includeChildren ) );
+		clone : function( includeChildren, cloneId )
+		{
+			var $clone = this.$.cloneNode( includeChildren );
+
+			if ( !cloneId )
+			{
+				var removeIds = function( node )
+				{
+					if ( node.nodeType != CKEDITOR.NODE_ELEMENT )
+						return;
+
+					node.removeAttribute( 'id', false ) ;
+					node.removeAttribute( '_cke_expando', false ) ;
+
+					var childs = node.childNodes;
+					for ( var i=0 ; i < childs.length ; i++ )
+						removeIds( childs[ i ] );
+				};
+
+				// The "id" attribute should never be cloned to avoid duplication.
+				removeIds( $clone );
+			}
+
+			return new CKEDITOR.dom.node( $clone );
 		},
 
@@ -150,28 +171,52 @@
 
 		/**
-		 * Gets a DOM tree descendant under the current node.
-		 * @param {Array|Number} indices The child index or array of child indices under the node.
-		 * @returns {CKEDITOR.dom.node} The specified DOM child under the current node. Null if child does not exist.
-		 * @example
-		 * var strong = p.getChild(0);
-		 */
-		getChild : function( indices )
-		{
-			var rawNode = this.$;
-
-			if ( !indices.slice )
-				rawNode = rawNode.childNodes[ indices ];
-			else
-			{
-				while ( indices.length > 0 && rawNode )
-					rawNode = rawNode.childNodes[ indices.shift() ];
-			}
-
-			return rawNode ? new CKEDITOR.dom.node( rawNode ) : null;
-		},
-
-		getChildCount : function()
-		{
-			return this.$.childNodes.length;
+		 * Retrieves a uniquely identifiable tree address for this node.
+		 * The tree address returns is an array of integers, with each integer
+		 * indicating a child index of a DOM node, starting from
+		 * document.documentElement.
+		 *
+		 * For example, assuming <body> is the second child from <html> (<head>
+		 * being the first), and we'd like to address the third child under the
+		 * fourth child of body, the tree address returned would be:
+		 * [1, 3, 2]
+		 *
+		 * The tree address cannot be used for finding back the DOM tree node once
+		 * the DOM tree structure has been modified.
+		 */
+		getAddress : function( normalized )
+		{
+			var address = [];
+			var $documentElement = this.getDocument().$.documentElement;
+			var node = this.$;
+
+			while ( node && node != $documentElement )
+			{
+				var parentNode = node.parentNode;
+				var currentIndex = -1;
+
+				for ( var i = 0 ; i < parentNode.childNodes.length ; i++ )
+				{
+					var candidate = parentNode.childNodes[i];
+
+					if ( normalized &&
+							candidate.nodeType == 3 &&
+							candidate.previousSibling &&
+							candidate.previousSibling.nodeType == 3 )
+					{
+						continue;
+					}
+
+					currentIndex++;
+
+					if ( candidate == node )
+						break;
+				}
+
+				address.unshift( currentIndex );
+
+				node = node.parentNode;
+			}
+
+			return address;
 		},
 
@@ -215,65 +260,123 @@
 		},
 
-		/**
-		 * Gets the node following this node (next sibling).
-		 * @returns {CKEDITOR.dom.node} The next node.
-		 */
-		getNext : function()
-		{
-			var next = this.$.nextSibling;
-			return next ? new CKEDITOR.dom.node( next ) : null;
-		},
-
-		getNextSourceNode : function( startFromSibling, nodeType )
-		{
-			var $ = this.$;
-
-			var node = ( !startFromSibling && $.firstChild ) ?
-				$.firstChild :
-				$.nextSibling;
-
-			var parent;
-
-			while ( !node && ( parent = ( parent || $ ).parentNode ) )
-				node = parent.nextSibling;
+		getNextSourceNode : function( startFromSibling, nodeType, guard )
+		{
+			// If "guard" is a node, transform it in a function.
+			if ( guard && !guard.call )
+			{
+				var guardNode = guard;
+				guard = function( node )
+				{
+					return !node.equals( guardNode );
+				};
+			}
+
+			var node = ( !startFromSibling && this.getFirst && this.getFirst() ),
+				parent;
+
+			// Guarding when we're skipping the current element( no children or 'startFromSibling' ).
+			// send the 'moving out' signal even we don't actually dive into.
+			if ( !node )
+			{
+				if ( this.type == CKEDITOR.NODE_ELEMENT && guard && guard( this, true ) === false )
+					return null;
+				node = this.getNext();
+			}
+
+			while ( !node && ( parent = ( parent || this ).getParent() ) )
+			{
+				// The guard check sends the "true" paramenter to indicate that
+				// we are moving "out" of the element.
+				if ( guard && guard( parent, true ) === false )
+					return null;
+
+				node = parent.getNext();
+			}
 
 			if ( !node )
 				return null;
 
-			if ( nodeType && nodeType != node.nodeType )
-				return arguments.callee.call( { $ : node }, false, nodeType );
-
-			return new CKEDITOR.dom.node( node );
-		},
-
-		getPreviousSourceNode : function( startFromSibling, nodeType )
-		{
-			var $ = startFromSibling ? this.$.previousSibling : this.$,
-				node = null;
-
-			if ( !$ )
+			if ( guard && guard( node ) === false )
 				return null;
 
-			if ( ( node = $.previousSibling ) )
-			{
-				while ( node.lastChild )
-					node = node.lastChild;
-			}
-			else
-				node = $.parentNode;
+			if ( nodeType && nodeType != node.type )
+				return node.getNextSourceNode( false, nodeType, guard );
+
+			return node;
+		},
+
+		getPreviousSourceNode : function( startFromSibling, nodeType, guard )
+		{
+			if ( guard && !guard.call )
+			{
+				var guardNode = guard;
+				guard = function( node )
+				{
+					return !node.equals( guardNode );
+				};
+			}
+
+			var node = ( !startFromSibling && this.getLast && this.getLast() ),
+				parent;
+
+			// Guarding when we're skipping the current element( no children or 'startFromSibling' ).
+			// send the 'moving out' signal even we don't actually dive into.
+			if ( !node )
+			{
+				if ( this.type == CKEDITOR.NODE_ELEMENT && guard && guard( this, true ) === false )
+					return null;
+				node = this.getPrevious();
+			}
+
+			while ( !node && ( parent = ( parent || this ).getParent() ) )
+			{
+				// The guard check sends the "true" paramenter to indicate that
+				// we are moving "out" of the element.
+				if ( guard && guard( parent, true ) === false )
+					return null;
+
+				node = parent.getPrevious();
+			}
 
 			if ( !node )
 				return null;
 
-			if ( nodeType && node.nodeType != nodeType )
-				return arguments.callee.apply( { $ : node }, false, nodeType );
-
-			return new CKEDITOR.dom.node( node );
-		},
-
-		getPrevious : function()
+			if ( guard && guard( node ) === false )
+				return null;
+
+			if ( nodeType && node.type != nodeType )
+				return node.getPreviousSourceNode( false, nodeType, guard );
+
+			return node;
+		},
+
+		getPrevious : function( ignoreSpaces )
 		{
 			var previous = this.$.previousSibling;
+			while ( ignoreSpaces && previous && ( previous.nodeType == CKEDITOR.NODE_TEXT )
+					&& !CKEDITOR.tools.trim( previous.nodeValue ) )
+				previous = previous.previousSibling;
+
 			return previous ? new CKEDITOR.dom.node( previous ) : null;
+		},
+
+		/**
+		 * Gets the node that follows this element in its parent's child list.
+		 * @param {Boolean} ignoreSpaces Whether should ignore empty text nodes.
+		 * @returns {CKEDITOR.dom.node} The next node or null if not
+		 *		available.
+		 * @example
+		 * var element = CKEDITOR.dom.element.createFromHtml( '&lt;div&gt;&lt;b&gt;Example&lt;/b&gt; &lt;i&gt;next&lt;/i&gt;&lt;/div&gt;' );
+		 * var first = <b>element.getFirst().getNext()</b>;
+		 * alert( first.getName() );  // "i"
+		 */
+		getNext : function( ignoreSpaces )
+		{
+			var next = this.$.nextSibling;
+			while ( ignoreSpaces && next && ( next.nodeType == CKEDITOR.NODE_TEXT )
+				  && !CKEDITOR.tools.trim( next.nodeValue ) )
+				next = next.nextSibling;
+
+			return next ? new CKEDITOR.dom.node( next ) : null;
 		},
 
@@ -306,4 +409,24 @@
 		},
 
+		getCommonAncestor : function( node )
+		{
+			if ( node.equals( this ) )
+				return this;
+
+			if ( node.contains && node.contains( this ) )
+				return node;
+
+			var start = this.contains ? this : this.getParent();
+
+			do
+			{
+				if ( start.contains( node ) )
+					return start;
+			}
+			while ( ( start = start.getParent() ) );
+
+			return null;
+		},
+
 		getPosition : function( otherNode )
 		{
@@ -319,46 +442,49 @@
 				return CKEDITOR.POSITION_IDENTICAL;
 
-			// Handle non element nodes (don't support contains nor sourceIndex).
-			if ( this.type != CKEDITOR.NODE_ELEMENT || otherNode.type != CKEDITOR.NODE_ELEMENT )
-			{
-				if ( $.parentNode == $other )
-					return CKEDITOR.POSITION_IS_CONTAINED + CKEDITOR.POSITION_FOLLOWING;
-				else if ( $other.parentNode == $ )
-					return CKEDITOR.POSITION_CONTAINS + CKEDITOR.POSITION_PRECEDING;
-				else if ( $.parentNode == $other.parentNode )
-					return this.getIndex() < otherNode.getIndex() ? CKEDITOR.POSITION_PRECEDING : CKEDITOR.POSITION_FOLLOWING;
-				else
-				{
-					$ = $.parentNode;
-					$other = $other.parentNode;
+			// Only element nodes support contains and sourceIndex.
+			if ( this.type == CKEDITOR.NODE_ELEMENT && otherNode.type == CKEDITOR.NODE_ELEMENT )
+			{
+				if ( $.contains )
+				{
+					if ( $.contains( $other ) )
+						return CKEDITOR.POSITION_CONTAINS + CKEDITOR.POSITION_PRECEDING;
+
+					if ( $other.contains( $ ) )
+						return CKEDITOR.POSITION_IS_CONTAINED + CKEDITOR.POSITION_FOLLOWING;
 				}
-			}
-
-			if ( $.contains( $other ) )
-				return CKEDITOR.POSITION_CONTAINS + CKEDITOR.POSITION_PRECEDING;
-
-			if ( $other.contains( $ ) )
-				return CKEDITOR.POSITION_IS_CONTAINED + CKEDITOR.POSITION_FOLLOWING;
-
-			if ( 'sourceIndex' in $ )
-			{
-				return ( $.sourceIndex < 0 || $other.sourceIndex < 0 ) ? CKEDITOR.POSITION_DISCONNECTED :
-					( $.sourceIndex < $other.sourceIndex ) ? CKEDITOR.POSITION_PRECEDING :
-					CKEDITOR.POSITION_FOLLOWING;
-			}
-
-			// WebKit has no support for sourceIndex.
-
-			var doc = this.getDocument().$;
-
-			var range1 = doc.createRange();
-			var range2 = doc.createRange();
-
-			range1.selectNode( $ );
-			range2.selectNode( $other );
-
-			return range1.compareBoundaryPoints( 1, range2 ) > 0 ?
-				CKEDITOR.POSITION_FOLLOWING :
-				CKEDITOR.POSITION_PRECEDING;
+
+				if ( 'sourceIndex' in $ )
+				{
+					return ( $.sourceIndex < 0 || $other.sourceIndex < 0 ) ? CKEDITOR.POSITION_DISCONNECTED :
+						( $.sourceIndex < $other.sourceIndex ) ? CKEDITOR.POSITION_PRECEDING :
+						CKEDITOR.POSITION_FOLLOWING;
+				}
+			}
+
+			// For nodes that don't support compareDocumentPosition, contains
+			// or sourceIndex, their "address" is compared.
+
+			var addressOfThis = this.getAddress(),
+				addressOfOther = otherNode.getAddress(),
+				minLevel = Math.min( addressOfThis.length, addressOfOther.length );
+
+				// Determinate preceed/follow relationship.
+				for ( var i = 0 ; i <= minLevel - 1 ; i++ )
+ 				{
+					if ( addressOfThis[ i ] != addressOfOther[ i ] )
+					{
+						if ( i < minLevel )
+						{
+							return addressOfThis[ i ] < addressOfOther[ i ] ?
+						            CKEDITOR.POSITION_PRECEDING : CKEDITOR.POSITION_FOLLOWING;
+						}
+						break;
+					}
+ 				}
+
+				// Determinate contains/contained relationship.
+				return ( addressOfThis.length < addressOfOther.length ) ?
+							CKEDITOR.POSITION_CONTAINS + CKEDITOR.POSITION_PRECEDING :
+							CKEDITOR.POSITION_IS_CONTAINED + CKEDITOR.POSITION_FOLLOWING;
 		},
 
@@ -372,13 +498,34 @@
 		getAscendant : function( name, includeSelf )
 		{
-			var node = this.$;
-			if ( includeSelf && node.nodeName.toLowerCase() == name )
-				return this;
-			while ( ( node = node.parentNode ) )
-			{
-				if ( node.nodeName && node.nodeName.toLowerCase() == name )
-					return new CKEDITOR.dom.node( node );
+			var $ = this.$;
+
+			if ( !includeSelf )
+				$ = $.parentNode;
+
+			while ( $ )
+			{
+				if ( $.nodeName && $.nodeName.toLowerCase() == name )
+					return new CKEDITOR.dom.node( $ );
+
+				$ = $.parentNode;
 			}
 			return null;
+		},
+
+		hasAscendant : function( name, includeSelf )
+		{
+			var $ = this.$;
+
+			if ( !includeSelf )
+				$ = $.parentNode;
+
+			while ( $ )
+			{
+				if ( $.nodeName && $.nodeName.toLowerCase() == name )
+					return true;
+
+				$ = $.parentNode;
+			}
+			return false;
 		},
 
@@ -417,4 +564,82 @@
 
 			return this;
+		},
+
+		replace : function( nodeToReplace )
+		{
+			this.insertBefore( nodeToReplace );
+			nodeToReplace.remove();
+		},
+
+		trim : function()
+		{
+			this.ltrim();
+			this.rtrim();
+		},
+
+		ltrim : function()
+		{
+			var child;
+			while ( this.getFirst && ( child = this.getFirst() ) )
+			{
+				if ( child.type == CKEDITOR.NODE_TEXT )
+				{
+					var trimmed = CKEDITOR.tools.ltrim( child.getText() ),
+						originalLength = child.getLength();
+
+					if ( !trimmed )
+					{
+						child.remove();
+						continue;
+					}
+					else if ( trimmed.length < originalLength )
+					{
+						child.split( originalLength - trimmed.length );
+
+						// IE BUG: child.remove() may raise JavaScript errors here. (#81)
+						this.$.removeChild( this.$.firstChild );
+					}
+				}
+				break;
+			}
+		},
+
+		rtrim : function()
+		{
+			var child;
+			while ( this.getLast && ( child = this.getLast() ) )
+			{
+				if ( child.type == CKEDITOR.NODE_TEXT )
+				{
+					var trimmed = CKEDITOR.tools.rtrim( child.getText() ),
+						originalLength = child.getLength();
+
+					if ( !trimmed )
+					{
+						child.remove();
+						continue;
+					}
+					else if ( trimmed.length < originalLength )
+					{
+						child.split( trimmed.length );
+
+						// IE BUG: child.getNext().remove() may raise JavaScript errors here.
+						// (#81)
+						this.$.lastChild.parentNode.removeChild( this.$.lastChild );
+					}
+				}
+				break;
+			}
+
+			if ( !CKEDITOR.env.ie && !CKEDITOR.env.opera )
+			{
+				child = this.$.lastChild;
+
+				if ( child && child.type == 1 && child.nodeName.toLowerCase() == 'br' )
+				{
+					// Use "eChildNode.parentNode" instead of "node" to avoid IE bug (#324).
+					child.parentNode.removeChild( child ) ;
+				}
+			}
 		}
 	}
Index: /CKEditor/branches/versions/3.0.x/_source/core/dom/nodelist.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/dom/nodelist.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/dom/nodelist.js	(revision 3747)
@@ -18,5 +18,6 @@
 	getItem : function( index )
 	{
-		return new CKEDITOR.dom.node( this.$[ index ] );
+		var $node = this.$[ index ];
+		return $node ? new CKEDITOR.dom.node( $node ) : null;
 	}
 };
Index: /CKEditor/branches/versions/3.0.x/_source/core/dom/range.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/dom/range.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/dom/range.js	(revision 3747)
@@ -1,3 +1,3 @@
-﻿/*
+/*
 Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.html or http://ckeditor.com/license
@@ -32,4 +32,6 @@
 	var execContentsAction = function( range, action, docFrag )
 	{
+		range.optimizeBookmark();
+
 		var startNode	= range.startContainer;
 		var endNode		= range.endContainer;
@@ -260,65 +262,22 @@
 	var inlineChildReqElements = { abbr:1,acronym:1,b:1,bdo:1,big:1,cite:1,code:1,del:1,dfn:1,em:1,font:1,i:1,ins:1,label:1,kbd:1,q:1,samp:1,small:1,span:1,strike:1,strong:1,sub:1,sup:1,tt:1,u:1,'var':1 };
 
-	var getBoundaryNodes = function()
+	// Creates the appropriate node evaluator for the dom walker used inside
+	// check(Start|End)OfBlock.
+	function getCheckStartEndBlockEvalFunction( isStart )
 	{
-		var startNode = this.startContainer,
-			endNode = this.endContainer,
-			startOffset = this.startOffset,
-			endOffset = this.endOffset,
-			childCount;
-
-		if ( startNode.type == CKEDITOR.NODE_ELEMENT )
-		{
-			childCount = startNode.getChildCount();
-			if ( childCount > startOffset )
-				startNode = startNode.getChild( startOffset );
-			else if ( childCount < 1 )
-				startNode = startNode.getPreviousSourceNode();
-			else		// startOffset > childCount but childCount is not 0
-			{
-				// Try to take the node just after the current position.
-				startNode = startNode.$;
-				while ( startNode.lastChild )
-					startNode = startNode.lastChild;
-				startNode = new CKEDITOR.dom.node( startNode );
-
-				// Normally we should take the next node in DFS order. But it
-				// is also possible that we've already reached the end of
-				// document.
-				startNode = startNode.getNextSourceNode() || startNode;
-			}
-		}
-		if ( endNode.type == CKEDITOR.NODE_ELEMENT )
-		{
-			childCount = endNode.getChildCount();
-			if ( childCount > endOffset )
-				endNode = endNode.getChild( endOffset ).getPreviousSourceNode();
-			else if ( childCount < 1 )
-				endNode = endNode.getPreviousSourceNode();
-			else		// endOffset > childCount but childCount is not 0
-			{
-				// Try to take the node just before the current position.
-				endNode = endNode.$;
-				while ( endNode.lastChild )
-					endNode = endNode.lastChild;
-				endNode = new CKEDITOR.dom.node( endNode );
-			}
-		}
-
-		return { startNode : startNode, endNode : endNode };
-	};
-
-	// Check every node between the block boundary and the startNode or endNode.
-	var getCheckStartEndBlockFunction = function( isStart )
-	{
-		return function( evt )
-		{
-			// Don't check the block boundary itself.
-			if ( this.stopped() || !evt.data.node )
-				return;
-
-			var node = evt.data.node,
-				hadBr = false;
-			if ( node.type == CKEDITOR.NODE_ELEMENT )
+		var hadBr = false, bookmarkEvaluator = CKEDITOR.dom.walker.bookmark( true );
+		return function( node )
+		{
+			// First ignore bookmark nodes.
+			if ( bookmarkEvaluator( node ) )
+				return true;
+
+			if ( node.type == CKEDITOR.NODE_TEXT )
+			{
+				// If there's any visible text, then we're not at the start.
+				if ( CKEDITOR.tools.trim( node.getText() ).length )
+					return false;
+				}
+			else
 			{
 				// If there are non-empty inline elements (e.g. <img />), then we're not
@@ -326,27 +285,25 @@
 				if ( !inlineChildReqElements[ node.getName() ] )
 				{
-					// If we're working at the end-of-block, forgive the first <br />.
-					if ( !isStart && node.getName() == 'br' && !hadBr )
+					// If we're working at the end-of-block, forgive the first <br /> in non-IE
+					// browsers.
+					if ( !isStart && !CKEDITOR.env.ie && node.getName() == 'br' && !hadBr )
 						hadBr = true;
 					else
-					{
-						this.checkFailed = true;
-						this.stop();
-					}
-				}
-			}
-			else if ( node.type == CKEDITOR.NODE_TEXT )
-			{
-				// If there's any visible text, then we're not at the start.
-				var visibleText = CKEDITOR.tools.trim( node.getText() );
-				if ( visibleText.length > 0 )
-				{
-					this.checkFailed = true;
-					this.stop();
-				}
-			}
+						return false;
+				}
+			}
+			return true;
 		};
-	};
-
+	}
+
+	// Evaluator for CKEDITOR.dom.element::checkBoundaryOfElement, reject any
+	// text node and non-empty elements unless it's being bookmark text.
+	function elementBoundaryEval( node )
+	{
+		// Reject any text node unless it's being bookmark.
+		return node.type != CKEDITOR.NODE_TEXT
+		       && node.getName() in CKEDITOR.dtd.$removeEmpty
+			   || node.getParent().hasAttribute( '_fck_bookmark' );
+	}
 
 	CKEDITOR.dom.range.prototype =
@@ -410,13 +367,23 @@
 		},
 
-		// This is an "intrusive" way to create a bookmark. It includes <span> tags
-		// in the range boundaries. The advantage of it is that it is possible to
-		// handle DOM mutations when moving back to the bookmark.
-		// Attention: the inclusion of nodes in the DOM is a design choice and
-		// should not be changed as there are other points in the code that may be
-		// using those nodes to perform operations. See GetBookmarkNode.
-		createBookmark : function()
+		/**
+		 * Creates a bookmark object, which can be later used to restore the
+		 * range by using the moveToBookmark function.
+		 * This is an "intrusive" way to create a bookmark. It includes <span> tags
+		 * in the range boundaries. The advantage of it is that it is possible to
+		 * handle DOM mutations when moving back to the bookmark.
+		 * Attention: the inclusion of nodes in the DOM is a design choice and
+		 * should not be changed as there are other points in the code that may be
+		 * using those nodes to perform operations. See GetBookmarkNode.
+		 * @param {Boolean} [serializable] Indicates that the bookmark nodes
+		 *		must contain ids, which can be used to restore the range even
+		 *		when these nodes suffer mutations (like a clonation or innerHTML
+		 *		change).
+		 * @returns {Object} And object representing a bookmark.
+		 */
+		createBookmark : function( serializable )
 		{
 			var startNode, endNode;
+			var baseId;
 			var clone;
 
@@ -429,4 +396,10 @@
 			startNode.setHtml( '&nbsp;' );
 
+			if ( serializable )
+			{
+				baseId = 'cke_bm_' + CKEDITOR.tools.getNextNumber();
+				startNode.setAttribute( 'id', baseId + 'S' );
+			}
+
 			// If collapsed, the endNode will not be created.
 			if ( !this.collapsed )
@@ -434,4 +407,7 @@
 				endNode = startNode.clone();
 				endNode.setHtml( '&nbsp;' );
+
+				if ( serializable )
+					endNode.setAttribute( 'id', baseId + 'E' );
 
 				clone = this.clone();
@@ -454,55 +430,227 @@
 
 			return {
-				startNode : startNode,
-				endNode : endNode
+				startNode : serializable ? baseId + 'S' : startNode,
+				endNode : serializable ? baseId + 'E' : endNode,
+				serializable : serializable
 			};
 		},
 
+		/**
+		 * Creates a "non intrusive" and "mutation sensible" bookmark. This
+		 * kind of bookmark should be used only when the DOM is supposed to
+		 * remain stable after its creation.
+		 * @param {Boolean} [normalized] Indicates that the bookmark must
+		 *		normalized. When normalized, the successive text nodes are
+		 *		considered a single node. To sucessful load a normalized
+		 *		bookmark, the DOM tree must be also normalized before calling
+		 *		moveToBookmark.
+		 * @returns {Object} An object representing the bookmark.
+		 */
+		createBookmark2 : function( normalized )
+		{
+			var startContainer	= this.startContainer,
+				endContainer	= this.endContainer;
+
+			var startOffset	= this.startOffset,
+				endOffset	= this.endOffset;
+
+			var child, previous;
+
+			// If there is no range then get out of here.
+			// It happens on initial load in Safari #962 and if the editor it's
+			// hidden also in Firefox
+			if ( !startContainer || !endContainer )
+				return { start : 0, end : 0 };
+
+			if ( normalized )
+			{
+				// Find out if the start is pointing to a text node that will
+				// be normalized.
+				if ( startContainer.type == CKEDITOR.NODE_ELEMENT )
+				{
+					child = startContainer.getChild( startOffset );
+
+					// In this case, move the start information to that text
+					// node.
+					if ( child && child.type == CKEDITOR.NODE_TEXT
+							&& startOffset > 0 && child.getPrevious().type == CKEDITOR.NODE_TEXT )
+					{
+						startContainer = child;
+						startOffset = 0;
+					}
+				}
+
+				// Normalize the start.
+				while ( startContainer.type == CKEDITOR.NODE_TEXT
+						&& ( previous = startContainer.getPrevious() )
+						&& previous.type == CKEDITOR.NODE_TEXT )
+				{
+					startContainer = previous;
+					startOffset += previous.getLength();
+				}
+
+				// Process the end only if not normalized.
+				if ( !this.isCollapsed )
+				{
+					// Find out if the start is pointing to a text node that
+					// will be normalized.
+					if ( endContainer.type == CKEDITOR.NODE_ELEMENT )
+					{
+						child = endContainer.getChild( endOffset );
+
+						// In this case, move the start information to that
+						// text node.
+						if ( child && child.type == CKEDITOR.NODE_TEXT
+								&& endOffset > 0 && child.getPrevious().type == CKEDITOR.NODE_TEXT )
+						{
+							endContainer = child;
+							endOffset = 0;
+						}
+					}
+
+					// Normalize the end.
+					while ( endContainer.type == CKEDITOR.NODE_TEXT
+							&& ( previous = endContainer.getPrevious() )
+							&& previous.type == CKEDITOR.NODE_TEXT )
+					{
+						endContainer = previous;
+						endOffset += previous.getLength();
+					}
+				}
+			}
+
+			return {
+				start		: startContainer.getAddress( normalized ),
+				end			: this.isCollapsed ? null : endContainer.getAddress( normalized ),
+				startOffset	: startOffset,
+				endOffset	: endOffset,
+				normalized	: normalized,
+				is2			: true		// It's a createBookmark2 bookmark.
+			};
+		},
+
 		moveToBookmark : function( bookmark )
 		{
-			// Set the range start at the bookmark start node position.
-			this.setStartBefore( bookmark.startNode );
-
-			// Remove it, because it may interfere in the setEndBefore call.
-			bookmark.startNode.remove();
-
-			// Set the range end at the bookmark end node position, or simply
-			// collapse it if it is not available.
-			var endNode = bookmark.endNode;
-			if ( endNode )
-			{
-				this.setEndBefore( endNode );
-				endNode.remove();
+			if ( bookmark.is2 )		// Created with createBookmark2().
+			{
+				// Get the start information.
+				var startContainer	= this.document.getByAddress( bookmark.start, bookmark.normalized ),
+					startOffset	= bookmark.startOffset;
+
+				// Get the end information.
+				var endContainer	= bookmark.end && this.document.getByAddress( bookmark.end, bookmark.normalized ),
+					endOffset	= bookmark.endOffset;
+
+				// Set the start boundary.
+				this.setStart( startContainer, startOffset );
+
+				// Set the end boundary. If not available, collapse it.
+				if ( endContainer )
+					this.setEnd( endContainer, endOffset );
+				else
+					this.collapse( true );
+			}
+			else					// Created with createBookmark().
+			{
+				var serializable = bookmark.serializable,
+					startNode	= serializable ? this.document.getById( bookmark.startNode ) : bookmark.startNode,
+					endNode		= serializable ? this.document.getById( bookmark.endNode ) : bookmark.endNode;
+
+				// Set the range start at the bookmark start node position.
+				this.setStartBefore( startNode );
+
+				// Remove it, because it may interfere in the setEndBefore call.
+				startNode.remove();
+
+				// Set the range end at the bookmark end node position, or simply
+				// collapse it if it is not available.
+				if ( endNode )
+				{
+					this.setEndBefore( endNode );
+					endNode.remove();
+				}
+				else
+					this.collapse( true );
+			}
+		},
+
+		getBoundaryNodes : function()
+		{
+			var startNode = this.startContainer,
+				endNode = this.endContainer,
+				startOffset = this.startOffset,
+				endOffset = this.endOffset,
+				childCount;
+
+			if ( startNode.type == CKEDITOR.NODE_ELEMENT )
+			{
+				childCount = startNode.getChildCount();
+				if ( childCount > startOffset )
+					startNode = startNode.getChild( startOffset );
+				else if ( childCount < 1 )
+					startNode = startNode.getPreviousSourceNode();
+				else		// startOffset > childCount but childCount is not 0
+				{
+					// Try to take the node just after the current position.
+					startNode = startNode.$;
+					while ( startNode.lastChild )
+						startNode = startNode.lastChild;
+					startNode = new CKEDITOR.dom.node( startNode );
+
+					// Normally we should take the next node in DFS order. But it
+					// is also possible that we've already reached the end of
+					// document.
+					startNode = startNode.getNextSourceNode() || startNode;
+				}
+			}
+			if ( endNode.type == CKEDITOR.NODE_ELEMENT )
+			{
+				childCount = endNode.getChildCount();
+				if ( childCount > endOffset )
+					endNode = endNode.getChild( endOffset ).getPreviousSourceNode( true );
+				else if ( childCount < 1 )
+					endNode = endNode.getPreviousSourceNode();
+				else		// endOffset > childCount but childCount is not 0
+				{
+					// Try to take the node just before the current position.
+					endNode = endNode.$;
+					while ( endNode.lastChild )
+						endNode = endNode.lastChild;
+					endNode = new CKEDITOR.dom.node( endNode );
+				}
+			}
+
+			// Sometimes the endNode will come right before startNode for collapsed
+			// ranges. Fix it. (#3780)
+			if ( startNode.getPosition( endNode ) & CKEDITOR.POSITION_FOLLOWING )
+				startNode = endNode;
+
+			return { startNode : startNode, endNode : endNode };
+		},
+
+		/**
+		 * Find the node which fully contains the range.
+		 * @param includeSelf
+		 * @param {Boolean} ignoreTextNode Whether ignore CKEDITOR.NODE_TEXT type.
+		 */
+		getCommonAncestor : function( includeSelf , ignoreTextNode )
+		{
+			var start = this.startContainer,
+				end = this.endContainer,
+				ancestor;
+
+			if ( start.equals( end ) )
+			{
+				if ( includeSelf
+						&& start.type == CKEDITOR.NODE_ELEMENT
+						&& this.startOffset == this.endOffset - 1 )
+					ancestor = start.getChild( this.startOffset );
+				else
+					ancestor = start;
 			}
 			else
-				this.collapse( true );
-		},
-
-		getCommonAncestor : function( includeSelf )
-		{
-			var start = this.startContainer;
-			var end = this.endContainer;
-
-			if ( start.equals( end ) )
-			{
-				if ( includeSelf && start.type == CKEDITOR.NODE_ELEMENT && this.startOffset == this.endOffset - 1 )
-					return start.getChild( this.startOffset );
-				return start;
-			}
-
-			if ( end.type == CKEDITOR.NODE_ELEMENT && end.contains( start ) )
-				return end;
-
-			if ( start.type != CKEDITOR.NODE_ELEMENT )
-				start = start.getParent();
-
-			do
-			{
-				if ( start.contains( end ) )
-					return start;
-			}
-			while( ( start = start.getParent() ) )
-
-			return null;
+				ancestor = start.getCommonAncestor( end );
+
+			return ignoreTextNode && !ancestor.is ? ancestor.getParent() : ancestor;
 		},
 
@@ -538,13 +686,27 @@
 		},
 
+		/**
+		 * Move the range out of bookmark nodes if they're been the container.
+		 */
+		optimizeBookmark: function()
+		{
+			var startNode = this.startContainer,
+				endNode = this.endContainer;
+
+			if ( startNode.is && startNode.is( 'span' )
+				&& startNode.hasAttribute( '_fck_bookmark' ) )
+				this.setStartAt( startNode, CKEDITOR.POSITION_BEFORE_START );
+			if ( endNode && endNode.is && endNode.is( 'span' )
+				&& endNode.hasAttribute( '_fck_bookmark' ) )
+				this.setEndAt( endNode,  CKEDITOR.POSITION_AFTER_END );
+		},
+
 		trim : function( ignoreStart, ignoreEnd )
 		{
-			var startContainer = this.startContainer;
-			var startOffset = this.startOffset;
-
-			var endContainer = this.endContainer;
-			var endOffset = this.endOffset;
-
-			if ( !ignoreStart && startContainer && startContainer.type == CKEDITOR.NODE_TEXT )
+			var startContainer = this.startContainer,
+				startOffset = this.startOffset,
+				collapsed = this.collapsed;
+			if ( ( !ignoreStart || collapsed )
+				 && startContainer && startContainer.type == CKEDITOR.NODE_TEXT )
 			{
 				// If the offset is zero, we just insert the new node before
@@ -570,16 +732,20 @@
 					startOffset = startContainer.getIndex() + 1;
 					startContainer = startContainer.getParent();
-
 					// Check if it is necessary to update the end boundary.
-					if ( this.collapsed )
-						this.setEnd( startContainer, startOffset );
-					else if ( this.startContainer.equals( this.endContainer ) )
+					if ( !collapsed && this.startContainer.equals( this.endContainer ) )
 						this.setEnd( nextText, this.endOffset - this.startOffset );
 				}
 
 				this.setStart( startContainer, startOffset );
-			}
-
-			if ( !ignoreEnd && endContainer && !this.collapsed && endContainer.type == CKEDITOR.NODE_TEXT )
+
+				if ( collapsed )
+					this.collapse( true );
+			}
+
+			var endContainer = this.endContainer;
+			var endOffset = this.endOffset;
+
+			if ( !( ignoreEnd || collapsed )
+				 && endContainer && endContainer.type == CKEDITOR.NODE_TEXT )
 			{
 				// If the offset is zero, we just insert the new node before
@@ -730,5 +896,7 @@
 							{
 								// If this is a visible element.
-								if ( sibling.$.offsetWidth > 0 )
+								// We need to check for the bookmark attribute because IE insists on
+								// rendering the display:none nodes we use for bookmarks. (#3363)
+								if ( sibling.$.offsetWidth > 0 && !sibling.getAttribute( '_fck_bookmark' ) )
 								{
 									// We'll accept it only if we need
@@ -887,5 +1055,7 @@
 							{
 								// If this is a visible element.
-								if ( sibling.$.offsetWidth > 0 )
+								// We need to check for the bookmark attribute because IE insists on
+								// rendering the display:none nodes we use for bookmarks. (#3363)
+								if ( sibling.$.offsetWidth > 0 && !sibling.getAttribute( '_fck_bookmark' ) )
 								{
 									// We'll accept it only if we need
@@ -969,26 +1139,81 @@
 				case CKEDITOR.ENLARGE_BLOCK_CONTENTS:
 				case CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS:
-					// DFS backward to get the block/list item boundary at or before the start.
-					var boundaryNodes = getBoundaryNodes.apply( this ),
-						startNode = boundaryNodes.startNode,
-						endNode = boundaryNodes.endNode,
-						guardFunction = ( unit == CKEDITOR.ENLARGE_BLOCK_CONTENTS ?
-							CKEDITOR.dom.domWalker.blockBoundary() :
-							CKEDITOR.dom.domWalker.listItemBoundary() ),
-						walker = new CKEDITOR.dom.domWalker( startNode ),
-						data = walker.reverse( guardFunction ),
-						boundaryEvent = data.events.shift();
-
-					this.setStartBefore( boundaryEvent.from );
-
-					// DFS forward to get the block/list item boundary at or before the end.
-					walker.setNode( endNode );
-					data = walker.forward( guardFunction );
-					boundaryEvent = data.events.shift();
-
-					this.setEndAfter( boundaryEvent.from );
-					break;
-
-				default:
+
+					// Enlarging the start boundary.
+					var walkerRange = new CKEDITOR.dom.range( this.document );
+
+					body = this.document.getBody();
+
+					walkerRange.setStartAt( body, CKEDITOR.POSITION_AFTER_START );
+					walkerRange.setEnd( this.startContainer, this.startOffset );
+
+					var walker = new CKEDITOR.dom.walker( walkerRange ),
+					    blockBoundary,  // The node on which the enlarging should stop.
+						tailBr, //
+					    defaultGuard = CKEDITOR.dom.walker.blockBoundary(
+								( unit == CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS ) ? { br : 1 } : null ),
+						// Record the encountered 'blockBoundary' for later use.
+						boundaryGuard = function( node )
+						{
+							var retval = defaultGuard( node );
+							if ( !retval )
+								blockBoundary = node;
+							return retval;
+						},
+						// Record the encounted 'tailBr' for later use.
+						tailBrGuard = function( node )
+						{
+							var retval = boundaryGuard( node );
+							if ( !retval && node.is && node.is( 'br' ) )
+								tailBr = node;
+							return retval;
+						};
+
+					walker.guard = boundaryGuard;
+
+
+					if ( ( enlargeable = walker.lastBackward() ) )
+					{
+						// It's the body which stop the enlaring if no block boundary found.
+						blockBoundary = blockBoundary || body;
+
+						// Start the range at different position by comparing
+						// the document position of it with 'enlargeable' node.
+						this.setStartAt(
+								blockBoundary,
+								blockBoundary.contains( enlargeable ) ?
+									CKEDITOR.POSITION_AFTER_START :
+									CKEDITOR.POSITION_AFTER_END );
+					}
+
+					// Enlarging the end boundary.
+					walkerRange = this.clone();
+					walkerRange.collapse();
+					walkerRange.setEndAt( body, CKEDITOR.POSITION_BEFORE_END );
+					walker = new CKEDITOR.dom.walker( walkerRange );
+
+					// tailBrGuard only used for on range end.
+					walker.guard = ( unit == CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS ) ?
+						tailBrGuard : boundaryGuard;
+					blockBoundary = null;
+					// End the range right before the block boundary node.
+
+					if ( ( enlargeable = walker.lastForward() ) )
+					{
+						// It's the body which stop the enlaring if no block boundary found.
+						blockBoundary = blockBoundary || body;
+
+						// Start the range at different position by comparing
+						// the document position of it with 'enlargeable' node.
+						this.setEndAt(
+								blockBoundary,
+								blockBoundary.contains( enlargeable ) ?
+									CKEDITOR.POSITION_BEFORE_END :
+									CKEDITOR.POSITION_BEFORE_START );
+					}
+					// We must include the <br> at the end of range if there's
+					// one and we're expanding list item contents
+					if ( tailBr )
+						this.setEndAfter( tailBr );
 			}
 		},
@@ -1000,4 +1225,5 @@
 		insertNode : function( node )
 		{
+			this.optimizeBookmark();
 			this.trim( false, true );
 
@@ -1156,15 +1382,23 @@
 		},
 
-		// TODO: The fixed block isn't trimmed, does not work for <pre>.
-		// TODO: Does not add bogus <br> to empty fixed blocks.
 		fixBlock : function( isStart, blockTag )
 		{
 			var bookmark = this.createBookmark(),
-				fixedBlock = new CKEDITOR.dom.element( blockTag, this.document );
+				fixedBlock = this.document.createElement( blockTag );
+
 			this.collapse( isStart );
+
 			this.enlarge( CKEDITOR.ENLARGE_BLOCK_CONTENTS );
+
 			this.extractContents().appendTo( fixedBlock );
+			fixedBlock.trim();
+
+			if ( !CKEDITOR.env.ie )
+				fixedBlock.appendBogus();
+
 			this.insertNode( fixedBlock );
+
 			this.moveToBookmark( bookmark );
+
 			return fixedBlock;
 		},
@@ -1172,12 +1406,15 @@
 		splitBlock : function( blockTag )
 		{
-			var startPath = new CKEDITOR.dom.elementPath( this.startContainer ),
-				endPath = new CKEDITOR.dom.elementPath( this.endContainer ),
-				startBlockLimit = startPath.blockLimit,
-				endBlockLimit = endPath.blockLimit,
-				startBlock = startPath.block,
-				endBlock = endPath.block,
-				elementPath = null;
-
+			var startPath	= new CKEDITOR.dom.elementPath( this.startContainer ),
+				endPath		= new CKEDITOR.dom.elementPath( this.endContainer );
+
+			var startBlockLimit	= startPath.blockLimit,
+				endBlockLimit	= endPath.blockLimit;
+
+			var startBlock	= startPath.block,
+				endBlock	= endPath.block;
+
+			var elementPath = null;
+			// Do nothing if the boundaries are in different block limits.
 			if ( !startBlockLimit.equals( endBlockLimit ) )
 				return null;
@@ -1189,5 +1426,5 @@
 				{
 					startBlock = this.fixBlock( true, blockTag );
-					endBlock = new CKEDITOR.dom.elementPath( this.endContainer );
+					endBlock = new CKEDITOR.dom.elementPath( this.endContainer ).block;
 				}
 
@@ -1227,5 +1464,4 @@
 					// Duplicate the block element after it.
 					endBlock = startBlock.clone( false );
-					endBlock.removeAttribute( 'id' );
 
 					// Place the extracted contents into the duplicated block.
@@ -1234,5 +1470,9 @@
 					this.moveToPosition( startBlock, CKEDITOR.POSITION_AFTER_END );
 
-					// TODO: Append bogus br to startBlock for Gecko
+					// In Gecko, the last child node must be a bogus <br>.
+					// Note: bogus <br> added under <ul> or <ol> would cause
+					// lists to be incorrectly rendered.
+					if ( !CKEDITOR.env.ie && !startBlock.is( 'ul', 'ol') )
+						startBlock.appendBogus() ;
 				}
 			}
@@ -1247,4 +1487,27 @@
 		},
 
+		/**
+		 * Check whether current range is on the inner edge of the specified element.
+		 * @param {Number} checkType ( CKEDITOR.START | CKEDITOR.END ) The checking side.
+		 * @param {CKEDITOR.dom.element} element The target element to check.
+		 */
+		checkBoundaryOfElement : function( element, checkType )
+		{
+			var walkerRange = this.clone();
+			// Expand the range to element boundary.
+			walkerRange[ checkType == CKEDITOR.START ?
+			 'setStartAt' : 'setEndAt' ]
+			 ( element, checkType == CKEDITOR.START ?
+			   CKEDITOR.POSITION_AFTER_START
+			   : CKEDITOR.POSITION_BEFORE_END );
+
+			var walker = new CKEDITOR.dom.walker( walkerRange ),
+			 retval = false;
+			walker.evaluator = elementBoundaryEval;
+			return walker[ checkType == CKEDITOR.START ?
+				'checkBackward' : 'checkForward' ]();
+		},
+		// Calls to this function may produce changes to the DOM. The range may
+		// be updated to reflect such changes.
 		checkStartOfBlock : function()
 		{
@@ -1254,19 +1517,29 @@
 			// If the starting node is a text node, and non-empty before the offset,
 			// then we're surely not at the start of block.
-			if ( startContainer.type == CKEDITOR.NODE_TEXT )
-			{
-				var textBefore = CKEDITOR.tools.ltrim( startContainer.getText().substr( 0, startOffset ) );
-				if ( textBefore.length > 0 )
+			if ( startOffset && startContainer.type == CKEDITOR.NODE_TEXT )
+			{
+				var textBefore = CKEDITOR.tools.ltrim( startContainer.substring( 0, startOffset ) );
+				if ( textBefore.length )
 					return false;
 			}
 
-			var startNode = getBoundaryNodes.apply( this ).startNode,
-				walker = new CKEDITOR.dom.domWalker( startNode );
-
-			// DFS backwards until the block boundary, with the checker function.
-			walker.on( 'step', getCheckStartEndBlockFunction( true ), null, null, 20 );
-			walker.reverse( CKEDITOR.dom.domWalker.blockBoundary() );
-
-			return !walker.checkFailed;
+			// Antecipate the trim() call here, so the walker will not make
+			// changes to the DOM, which would not get reflected into this
+			// range otherwise.
+			this.trim();
+
+			// We need to grab the block element holding the start boundary, so
+			// let's use an element path for it.
+			var path = new CKEDITOR.dom.elementPath( this.startContainer );
+
+			// Creates a range starting at the block start until the range start.
+			var walkerRange = this.clone();
+			walkerRange.collapse( true );
+			walkerRange.setStartAt( path.block || path.blockLimit, CKEDITOR.POSITION_AFTER_START );
+
+			var walker = new CKEDITOR.dom.walker( walkerRange );
+			walker.evaluator = getCheckStartEndBlockEvalFunction( true );
+
+			return walker.checkBackward();
 		},
 
@@ -1280,17 +1553,73 @@
 			if ( endContainer.type == CKEDITOR.NODE_TEXT )
 			{
-				var textAfter = CKEDITOR.tools.rtrim( endContainer.getText().substr( endOffset ) );
-				if ( textAfter.length > 0 )
+				var textAfter = CKEDITOR.tools.rtrim( endContainer.substring( endOffset ) );
+				if ( textAfter.length )
 					return false;
 			}
 
-			var endNode = getBoundaryNodes.apply( this ).endNode,
-				walker = new CKEDITOR.dom.domWalker( endNode );
-
-			// DFS forward until the block boundary, with the checker function.
-			walker.on( 'step', getCheckStartEndBlockFunction( false ), null, null, 20 );
-			walker.forward( CKEDITOR.dom.domWalker.blockBoundary() );
-
-			return !walker.checkFailed;
+			// Antecipate the trim() call here, so the walker will not make
+			// changes to the DOM, which would not get reflected into this
+			// range otherwise.
+			this.trim();
+
+			// We need to grab the block element holding the start boundary, so
+			// let's use an element path for it.
+			var path = new CKEDITOR.dom.elementPath( this.endContainer );
+
+			// Creates a range starting at the block start until the range start.
+			var walkerRange = this.clone();
+			walkerRange.collapse( false );
+			walkerRange.setEndAt( path.block || path.blockLimit, CKEDITOR.POSITION_BEFORE_END );
+
+			var walker = new CKEDITOR.dom.walker( walkerRange );
+			walker.evaluator = getCheckStartEndBlockEvalFunction( false );
+
+			return walker.checkForward();
+		},
+
+		/**
+		 * Moves the range boundaries to the first editing point inside an
+		 * element. For example, in an element tree like
+		 * "&lt;p&gt;&lt;b&gt;&lt;i&gt;&lt;/i&gt;&lt;/b&gt; Text&lt;/p&gt;", the start editing point is
+		 * "&lt;p&gt;&lt;b&gt;&lt;i&gt;^&lt;/i&gt;&lt;/b&gt; Text&lt;/p&gt;" (inside &lt;i&gt;).
+		 * @param {CKEDITOR.dom.element} targetElement The element into which
+		 *		look for the editing spot.
+		 */
+		moveToElementEditStart : function( targetElement )
+		{
+			var editableElement;
+
+			while ( targetElement && targetElement.type == CKEDITOR.NODE_ELEMENT )
+			{
+				if ( targetElement.isEditable() )
+					editableElement = targetElement;
+				else if ( editableElement )
+					break ;		// If we already found an editable element, stop the loop.
+
+				targetElement = targetElement.getFirst();
+			}
+
+			if ( editableElement )
+				this.moveToPosition( editableElement, CKEDITOR.POSITION_AFTER_START );
+		},
+
+		getTouchedStartNode : function()
+		{
+			var container = this.startContainer ;
+
+			if ( this.collapsed || container.type != CKEDITOR.NODE_ELEMENT )
+				return container ;
+
+			return container.getChild( this.startOffset ) || container ;
+		},
+
+		getTouchedEndNode : function()
+		{
+			var container = this.endContainer ;
+
+			if ( this.collapsed || container.type != CKEDITOR.NODE_ELEMENT )
+				return container ;
+
+			return container.getChild( this.endOffset - 1 ) || container ;
 		}
 	};
@@ -1305,2 +1634,10 @@
 CKEDITOR.ENLARGE_BLOCK_CONTENTS = 2;
 CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS = 3;
+
+/**
+ * Check boundary types.
+ * @see CKEDITOR.dom.range::checkBoundaryOfElement
+ */
+CKEDITOR.START = 1;
+CKEDITOR.END = 2;
+CKEDITOR.STARTEND = 3;
Index: /CKEditor/branches/versions/3.0.x/_source/core/dom/text.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/dom/text.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/dom/text.js	(revision 3747)
@@ -80,5 +80,27 @@
 		split : function( offset )
 		{
-			return new CKEDITOR.dom.text( this.$.splitText( offset ) );
+			// If the offset is after the last char, IE creates the text node
+			// on split, but don't include it into the DOM. So, we have to do
+			// that manually here.
+			if ( CKEDITOR.env.ie && offset == this.getLength() )
+			{
+				var next = this.getDocument().createText( '' );
+				next.insertAfter( this );
+				return next;
+			}
+
+			var doc = this.getDocument();
+			var retval = new CKEDITOR.dom.text( this.$.splitText( offset ), doc );
+
+			// IE BUG: IE8 does not update the childNodes array in DOM after splitText(),
+			// we need to make some DOM changes to make it update. (#3436)
+			if ( CKEDITOR.env.ie8 )
+			{
+				var workaround = new CKEDITOR.dom.text( '', doc );
+				workaround.insertAfter( retval );
+				workaround.remove();
+			}
+
+			return retval;
 		},
 
Index: /CKEditor/branches/versions/3.0.x/_source/core/dom/walker.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/dom/walker.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/core/dom/walker.js	(revision 3747)
@@ -0,0 +1,392 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+(function()
+{
+	// This function is to be called under a "walker" instance scope.
+	function iterate( rtl, breakOnFalse )
+	{
+		// Return null if we have reached the end.
+		if ( this._.end )
+			return null;
+
+		var node,
+			range = this.range,
+			guard,
+			userGuard = this.guard,
+			type = this.type,
+			getSourceNodeFn = ( rtl ? 'getPreviousSourceNode' : 'getNextSourceNode' );
+
+		// This is the first call. Initialize it.
+		if ( !this._.start )
+		{
+			this._.start = 1;
+
+			// Trim text nodes and optmize the range boundaries. DOM changes
+			// may happen at this point.
+			range.trim();
+
+			// A collapsed range must return null at first call.
+			if ( range.collapsed )
+			{
+				this.end();
+				return null;
+			}
+		}
+
+		// Create the LTR guard function, if necessary.
+		if ( !rtl && !this._.guardLTR )
+		{
+			// Gets the node that stops the walker when going LTR.
+			var limitLTR = range.endContainer,
+				blockerLTR = limitLTR.getChild( range.endOffset );
+
+			this._.guardLTR = function( node, movingOut )
+			{
+				return ( ( !movingOut || !limitLTR.equals( node ) )
+					&& ( !blockerLTR || !node.equals( blockerLTR ) )
+					&& ( node.type != CKEDITOR.NODE_ELEMENT || node.getName() != 'body' ) );
+			};
+		}
+
+		// Create the RTL guard function, if necessary.
+		if ( rtl && !this._.guardRTL )
+		{
+			// Gets the node that stops the walker when going LTR.
+			var limitRTL = range.startContainer,
+				blockerRTL = ( range.startOffset > 0 ) && limitRTL.getChild( range.startOffset - 1 );
+
+			this._.guardRTL = function( node, movingOut )
+			{
+				return ( ( !movingOut || !limitRTL.equals( node ) )
+					&& ( !blockerRTL || !node.equals( blockerRTL ) )
+					&& ( node.type != CKEDITOR.NODE_ELEMENT || node.getName() != 'body' ) );
+			};
+		}
+
+		// Define which guard function to use.
+		var stopGuard = rtl ? this._.guardRTL : this._.guardLTR;
+
+		// Make the user defined guard function participate in the process,
+		// otherwise simply use the boundary guard.
+		if ( userGuard )
+		{
+			guard = function( node, movingOut )
+			{
+				if ( stopGuard( node, movingOut ) === false )
+					return false;
+
+				return userGuard( node );
+			};
+		}
+		else
+			guard = stopGuard;
+
+		if ( this.current )
+			node = this.current[ getSourceNodeFn ]( false, type, guard );
+		else
+		{
+			// Get the first node to be returned.
+
+			if ( rtl )
+			{
+				node = range.endContainer;
+
+				if ( range.endOffset > 0 )
+				{
+					node = node.getChild( range.endOffset - 1 );
+					if ( guard( node ) === false )
+						node = null;
+				}
+				else
+					node = ( guard ( node ) === false ) ?
+						null : node.getPreviousSourceNode( true, type, guard );
+			}
+			else
+			{
+				node = range.startContainer;
+				node = node.getChild( range.startOffset );
+
+				if ( node )
+				{
+					if ( guard( node ) === false )
+						node = null;
+				}
+				else
+					node = ( guard ( range.startContainer ) === false ) ?
+						null : range.startContainer.getNextSourceNode( true, type, guard ) ;
+			}
+		}
+
+		while ( node && !this._.end )
+		{
+			this.current = node;
+
+			if ( !this.evaluator || this.evaluator( node ) !== false )
+			{
+				if ( !breakOnFalse )
+					return node;
+			}
+			else if ( breakOnFalse && this.evaluator )
+				return false;
+
+			node = node[ getSourceNodeFn ]( false, type, guard );
+		}
+
+		this.end();
+		return this.current = null;
+	}
+
+	function iterateToLast( rtl )
+	{
+		var node, last = null;
+
+		while ( ( node = iterate.call( this, rtl ) ) )
+			last = node;
+
+		return last;
+	}
+
+	CKEDITOR.dom.walker = CKEDITOR.tools.createClass(
+	{
+		/**
+		 * Utility class to "walk" the DOM inside a range boundaries. If
+		 * necessary, partially included nodes (text nodes) are broken to
+		 * reflect the boundaries limits, so DOM and range changes may happen.
+		 * Outside changes to the range may break the walker.
+		 *
+		 * The walker may return nodes that are not totaly included into the
+		 * range boundaires. Let's take the following range representation,
+		 * where the square brackets indicate the boundaries:
+		 *
+		 * [&lt;p&gt;Some &lt;b&gt;sample] text&lt;/b&gt;
+		 *
+		 * While walking forward into the above range, the following nodes are
+		 * returned: &lt;p&gt;, "Some ", &lt;b&gt; and "sample". Going
+		 * backwards instead we have: "sample" and "Some ". So note that the
+		 * walker always returns nodes when "entering" them, but not when
+		 * "leaving" them. The guard function is instead called both when
+		 * entering and leaving nodes.
+		 *
+		 * @constructor
+		 * @param {CKEDITOR.dom.range} range The range within which walk.
+		 */
+		$ : function( range )
+		{
+			this.range = range;
+
+			/**
+			 * A function executed for every matched node, to check whether
+			 * it's to be considered into the walk or not. If not provided, all
+			 * matched nodes are considered good.
+			 * If the function returns "false" the node is ignored.
+			 * @name CKEDITOR.dom.walker.prototype.evaluator
+			 * @property
+			 * @type Function
+			 */
+			// this.evaluator = null;
+
+			/**
+			 * A function executed for every node the walk pass by to check
+			 * whether the walk is to be finished. It's called when both
+			 * entering and exiting nodes, as well as for the matched nodes.
+			 * If this function returns "false", the walking ends and no more
+			 * nodes are evaluated.
+			 * @name CKEDITOR.dom.walker.prototype.guard
+			 * @property
+			 * @type Function
+			 */
+			// this.guard = null;
+
+			/** @private */
+			this._ = {};
+		},
+
+//		statics :
+//		{
+//			/* Creates a CKEDITOR.dom.walker instance to walk inside DOM boundaries set by nodes.
+//			 * @param {CKEDITOR.dom.node} startNode The node from wich the walk
+//			 *		will start.
+//			 * @param {CKEDITOR.dom.node} [endNode] The last node to be considered
+//			 *		in the walk. No more nodes are retrieved after touching or
+//			 *		passing it. If not provided, the walker stops at the
+//			 *		&lt;body&gt; closing boundary.
+//			 * @returns {CKEDITOR.dom.walker} A DOM walker for the nodes between the
+//			 *		provided nodes.
+//			 */
+//			createOnNodes : function( startNode, endNode, startInclusive, endInclusive )
+//			{
+//				var range = new CKEDITOR.dom.range();
+//				if ( startNode )
+//					range.setStartAt( startNode, startInclusive ? CKEDITOR.POSITION_BEFORE_START : CKEDITOR.POSITION_AFTER_END ) ;
+//				else
+//					range.setStartAt( startNode.getDocument().getBody(), CKEDITOR.POSITION_AFTER_START ) ;
+//
+//				if ( endNode )
+//					range.setEndAt( endNode, endInclusive ? CKEDITOR.POSITION_AFTER_END : CKEDITOR.POSITION_BEFORE_START ) ;
+//				else
+//					range.setEndAt( startNode.getDocument().getBody(), CKEDITOR.POSITION_BEFORE_END ) ;
+//
+//				return new CKEDITOR.dom.walker( range );
+//			}
+//		},
+//
+		proto :
+		{
+			/**
+			 * Stop walking. No more nodes are retrieved if this function gets
+			 * called.
+			 */
+			end : function()
+			{
+				this._.end = 1;
+			},
+
+			/**
+			 * Retrieves the next node (at right).
+			 * @returns {CKEDITOR.dom.node} The next node or null if no more
+			 *		nodes are available.
+			 */
+			next : function()
+			{
+				return iterate.call( this );
+			},
+
+			/**
+			 * Retrieves the previous node (at left).
+			 * @returns {CKEDITOR.dom.node} The previous node or null if no more
+			 *		nodes are available.
+			 */
+			previous : function()
+			{
+				return iterate.call( this, true );
+			},
+
+			/**
+			 * Check all nodes at right, executing the evaluation fuction.
+			 * @returns {Boolean} "false" if the evaluator function returned
+			 *		"false" for any of the matched nodes. Otherwise "true".
+			 */
+			checkForward : function()
+			{
+				return iterate.call( this, false, true ) !== false;
+			},
+
+			/**
+			 * Check all nodes at left, executing the evaluation fuction.
+			 * @returns {Boolean} "false" if the evaluator function returned
+			 *		"false" for any of the matched nodes. Otherwise "true".
+			 */
+			checkBackward : function()
+			{
+				return iterate.call( this, true, true ) !== false;
+			},
+
+			/**
+			 * Executes a full walk forward (to the right), until no more nodes
+			 * are available, returning the last valid node.
+			 * @returns {CKEDITOR.dom.node} The last node at the right or null
+			 *		if no valid nodes are available.
+			 */
+			lastForward : function()
+			{
+				return iterateToLast.call( this );
+			},
+
+			/**
+			 * Executes a full walk backwards (to the left), until no more nodes
+			 * are available, returning the last valid node.
+			 * @returns {CKEDITOR.dom.node} The last node at the left or null
+			 *		if no valid nodes are available.
+			 */
+			lastBackward : function()
+			{
+				return iterateToLast.call( this, true );
+			}
+
+		}
+	});
+
+	/*
+	 * Anything whose display computed style is block, list-item, table,
+	 * table-row-group, table-header-group, table-footer-group, table-row,
+	 * table-column-group, table-column, table-cell, table-caption, or whose node
+	 * name is hr, br (when enterMode is br only) is a block boundary.
+	 */
+	var blockBoundaryDisplayMatch =
+	{
+		block : 1,
+		'list-item' : 1,
+		table : 1,
+		'table-row-group' : 1,
+		'table-header-group' : 1,
+		'table-footer-group' : 1,
+		'table-row' : 1,
+		'table-column-group' : 1,
+		'table-column' : 1,
+		'table-cell' : 1,
+		'table-caption' : 1
+	},
+	blockBoundaryNodeNameMatch = { hr : 1 };
+
+	CKEDITOR.dom.element.prototype.isBlockBoundary = function( customNodeNames )
+	{
+		var nodeNameMatches = CKEDITOR.tools.extend( {},
+													blockBoundaryNodeNameMatch, customNodeNames || {} );
+
+		return blockBoundaryDisplayMatch[ this.getComputedStyle( 'display' ) ] ||
+			nodeNameMatches[ this.getName() ];
+	};
+
+	CKEDITOR.dom.walker.blockBoundary = function( customNodeNames )
+	{
+		return function( node , type )
+		{
+			return ! ( node.type == CKEDITOR.NODE_ELEMENT
+						&& node.isBlockBoundary( customNodeNames ) );
+		};
+	};
+
+	CKEDITOR.dom.walker.listItemBoundary = function()
+	{
+			return this.blockBoundary( { br : 1 } );
+	};
+	/**
+	 * Whether the node is a bookmark node's inner text node.
+	 */
+	CKEDITOR.dom.walker.bookmarkContents = function( node )
+	{
+	},
+
+	/**
+	 * Whether the to-be-evaluated node is a bookmark node OR bookmark node
+	 * inner contents.
+	 * @param {Boolean} contentOnly Whether only test againt the text content of
+	 * bookmark node instead of the element itself(default).
+	 * @param {Boolean} isReject Whether should return 'false' for the bookmark
+	 * node instead of 'true'(default).
+	 */
+	CKEDITOR.dom.walker.bookmark = function( contentOnly, isReject )
+	{
+		function isBookmarkNode( node )
+		{
+			return ( node && node.getName
+					&& node.getName() == 'span'
+					&& node.hasAttribute('_fck_bookmark') );
+		}
+
+		return function( node )
+		{
+			var retval, parent;
+			// Is bookmark inner text node?
+			retval = ( node && !node.getName && ( parent = node.getParent() )
+						&& isBookmarkNode( parent ) );
+			// Is bookmark node?
+			retval = contentOnly ? retval : retval || isBookmarkNode( node );
+			return isReject ? !retval : !!retval;
+		};
+	};
+
+})();
Index: /CKEditor/branches/versions/3.0.x/_source/core/dtd.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/dtd.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/dtd.js	(revision 3747)
@@ -54,4 +54,6 @@
 		Q = {li:1};
 
+	var block = {address:1,blockquote:1,center:1,dir:1,div:1,dl:1,fieldset:1,form:1,h1:1,h2:1,h3:1,h4:1,h5:1,h6:1,hr:1,isindex:1,menu:1,noframes:1,ol:1,p:1,pre:1,table:1,ul:1};
+
     return /** @lends CKEDITOR.dtd */ {
 
@@ -63,5 +65,9 @@
 		 * @example
 		 */
-		$block : {address:1,blockquote:1,center:1,dir:1,div:1,dl:1,fieldset:1,h1:1,h2:1,h3:1,h4:1,h5:1,h6:1,hr:1,isindex:1,menu:1,noframes:1,ol:1,p:1,pre:1,table:1,ul:1},
+		$block : block,
+
+		$body : X({script:1}, block),
+
+		$cdata : {script:1,style:1},
 
 		/**
@@ -80,9 +86,17 @@
 
 		/**
+		 * Elements that accept text nodes, but are not possible to edit into
+		 * the browser.
+		 * @type Object
+		 * @example
+		 */
+		$nonEditable : {applet:1,button:1,embed:1,iframe:1,map:1,object:1,option:1,script:1,textarea:1},
+
+		/**
 		 * List of elements that can be ignored if empty, like "b" or "span".
 		 * @type Object
 		 * @example
 		 */
-		$removeEmpty : {abbr:1,acronym:1,address:1,b:1,bdo:1,big:1,cite:1,code:1,dfn:1,em:1,font:1,i:1,kbd:1,q:1,s:1,samp:1,small:1,span:1,strike:1,strong:1,sub:1,sup:1,tt:1,u:1,'var':1},
+		$removeEmpty : {abbr:1,acronym:1,address:1,b:1,bdo:1,big:1,cite:1,code:1,del:1,dfn:1,em:1,font:1,i:1,ins:1,label:1,kbd:1,q:1,s:1,samp:1,small:1,span:1,strike:1,strong:1,sub:1,sup:1,tt:1,u:1,'var':1},
 
 		/**
Index: /CKEditor/branches/versions/3.0.x/_source/core/editor.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/editor.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/editor.js	(revision 3747)
@@ -35,5 +35,4 @@
 
 		var loadedConfig = loadConfigLoaded[ customConfig ] || ( loadConfigLoaded[ customConfig ] = {} );
-
 
 		// If the custom config has already been downloaded, reuse it.
@@ -75,12 +74,23 @@
 		editor.on( 'customConfigLoaded', function()
 			{
-				// Overwrite the settings from the in-page config.
 				if ( instanceConfig )
+				{
+					// Register the events that may have been set at the instance
+					// configuration object.
+					if ( instanceConfig.on )
+					{
+						for ( var eventName in instanceConfig.on )
+						{
+							editor.on( eventName, instanceConfig.on[ eventName ] );
+						}
+					}
+
+					// Overwrite the settings from the in-page config.
 					CKEDITOR.tools.extend( editor.config, instanceConfig, true );
 
-				// Fire the "configLoaded" event.
-				editor.fireOnce( 'configLoaded' );
-
-				loadLang( editor );
+					delete editor.config.on;
+				}
+
+				onConfigLoaded( editor );
 			});
 
@@ -97,7 +107,28 @@
 	// ##### END: Config Privates
 
+	var onConfigLoaded = function( editor )
+	{
+		// Set config related properties.
+
+		var skin = editor.config.skin.split( ',' ),
+			skinName = skin[ 0 ],
+			skinPath = CKEDITOR.getUrl( skin[ 1 ] || (
+				'_source/' +	// %REMOVE_LINE%
+				'skins/' + skinName + '/' ) );
+
+		editor.skinName = skinName;
+		editor.skinPath = skinPath;
+		editor.skinClass = 'cke_skin_' + skinName;
+
+		// Fire the "configLoaded" event.
+		editor.fireOnce( 'configLoaded' );
+
+		// Load language file.
+		loadLang( editor );
+	};
+
 	var loadLang = function( editor )
 	{
-		CKEDITOR.lang.load( editor.config.defaultLanguage, editor.config.autoLanguage, function( languageCode, lang )
+		CKEDITOR.lang.load( editor.config.language, editor.config.defaultLanguage, function( languageCode, lang )
 			{
 				editor.langCode = languageCode;
@@ -108,4 +139,8 @@
 				editor.lang = CKEDITOR.tools.prototypedCopy( lang );
 
+				// We're not able to support RTL in Firefox 2 at this time.
+				if ( CKEDITOR.env.gecko && CKEDITOR.env.version < 10900 && editor.lang.dir == 'rtl' )
+					editor.lang.dir = 'ltr';
+
 				loadPlugins( editor );
 			});
@@ -114,6 +149,26 @@
 	var loadPlugins = function( editor )
 	{
+		var config			= editor.config,
+			plugins			= config.plugins,
+			extraPlugins	= config.extraPlugins,
+			removePlugins	= config.removePlugins;
+
+		if ( extraPlugins )
+		{
+			// Remove them first to avoid duplications.
+			var removeRegex = new RegExp( '(?:^|,)(?:' + extraPlugins.replace( /\s*,\s*/g, '|' ) + ')(?=,|$)' , 'g' );
+			plugins = plugins.replace( removeRegex, '' );
+
+			plugins += ',' + extraPlugins;
+		}
+
+		if ( removePlugins )
+		{
+			removeRegex = new RegExp( '(?:^|,)(?:' + removePlugins.replace( /\s*,\s*/g, '|' ) + ')(?=,|$)' , 'g' );
+			plugins = plugins.replace( removeRegex, '' );
+		}
+
 		// Load all plugins defined in the "plugins" setting.
-		CKEDITOR.plugins.load( editor.config.plugins.split( ',' ), function( plugins )
+		CKEDITOR.plugins.load( plugins.split( ',' ), function( plugins )
 			{
 				// The list of plugins.
@@ -173,5 +228,5 @@
 					{
 						// Initialize all plugins that have the "beforeInit" and "init" methods defined.
-						var methods = [ 'beforeInit', 'init' ];
+						var methods = [ 'beforeInit', 'init', 'afterInit' ];
 						for ( var m = 0 ; m < methods.length ; m++ )
 						{
@@ -199,5 +254,5 @@
 	var loadSkin = function( editor )
 	{
-		CKEDITOR.skins.load( editor.config.skin, 'editor', function()
+		CKEDITOR.skins.load( editor, 'editor', function()
 			{
 				loadTheme( editor );
@@ -226,5 +281,5 @@
 		if ( editor.elementMode == CKEDITOR.ELEMENT_MODE_REPLACE && element.is( 'textarea' ) )
 		{
-			var form = new CKEDITOR.dom.element( element.$.form );
+			var form = element.$.form && new CKEDITOR.dom.element( element.$.form );
 			if ( form )
 			{
@@ -234,13 +289,20 @@
 					});
 
-				// If we have a submit function, override it also, because it doesn't fire the "submit" event.
-				if ( form.submit && form.submit.call )
+				// Setup the submit function because it doesn't fire the
+				// "submit" event.
+				if ( !form.$.submit.nodeName )
 				{
-					CKEDITOR.tools.override( form.submit, function( originalSubmit )
+					form.$.submit = CKEDITOR.tools.override( form.$.submit, function( originalSubmit )
 						{
 							return function()
 								{
 									editor.updateElement();
-									originalSubmit.apply( this, arguments );
+
+									// For IE, the DOM submit function is not a
+									// function, so we need thid check.
+									if ( originalSubmit.apply )
+										originalSubmit.apply( this, arguments );
+									else
+										originalSubmit();
 								};
 						});
@@ -249,4 +311,17 @@
 		}
 	};
+
+	function updateCommandsMode()
+	{
+		var command,
+			commands = this._.commands,
+			mode = this.mode;
+
+		for ( var name in commands )
+		{
+			command = commands[ name ];
+			command[ command.modes[ mode ] ? 'enable' : 'disable' ]();
+		}
+	}
 
 	/**
@@ -265,4 +340,5 @@
 
 			this._.commands = {};
+			this._.styles = [];
 
 			/**
@@ -323,4 +399,6 @@
 			CKEDITOR.fire( 'instanceCreated', null, this );
 
+			this.on( 'mode', updateCommandsMode, null, null, 1 );
+
 			initConfig( this, instanceConfig );
 		};
@@ -346,5 +424,10 @@
 		addCommand : function( commandName, commandDefinition )
 		{
-			this._.commands[ commandName ] = new CKEDITOR.command( this, commandDefinition );
+			return this._.commands[ commandName ] = new CKEDITOR.command( this, commandDefinition );
+		},
+
+		addCss : function( css )
+		{
+			this._.styles.push( css );
 		},
 
@@ -381,6 +464,23 @@
 		{
 			var command = this.getCommand( commandName );
+
+			var eventData =
+			{
+				name: commandName,
+				commandData: data,
+				command: command
+			};
+
 			if ( command && command.state != CKEDITOR.TRISTATE_DISABLED )
-				return command.exec( this, data );
+			{
+				if ( this.fire( 'beforeCommandExec', eventData ) !== true )
+				{
+					eventData.returnValue = command.exec( eventData.commandData );
+
+					// Fire the 'afterCommandExec' immediately if command is synchronous.
+					if ( !command.async && this.fire( 'afterCommandExec', eventData ) !== true )
+						return eventData.returnValue;
+				}
+			}
 
 			// throw 'Unknown command name "' + commandName + '"';
@@ -449,4 +549,9 @@
 		},
 
+		loadSnapshot : function( snapshot )
+		{
+			this.fire( 'loadSnapshot', snapshot );
+		},
+
 		/**
 		 * Sets the editor data. The data must be provided in raw format.
Index: /CKEditor/branches/versions/3.0.x/_source/core/editor_basic.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/editor_basic.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/editor_basic.js	(revision 3747)
@@ -175,4 +175,4 @@
 
 	// "Inherit" (copy actually) from CKEDITOR.event.
-	CKEDITOR.event.implementOn( CKEDITOR.editor.prototype );
+	CKEDITOR.event.implementOn( CKEDITOR.editor.prototype, true );
 }
Index: /CKEditor/branches/versions/3.0.x/_source/core/env.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/env.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/env.js	(revision 3747)
@@ -32,4 +32,5 @@
 			 */
 			ie		: /*@cc_on!@*/false,
+
 			/**
 			 * Indicates that CKEditor is running on Opera.
@@ -40,4 +41,5 @@
 			 */
 			opera	: ( !!opera && opera.version ),
+
 			/**
 			 * Indicates that CKEditor is running on a WebKit based browser, like
@@ -49,4 +51,5 @@
 			 */
 			webkit	: ( agent.indexOf( ' applewebkit/' ) > -1 ),
+
 			/**
 			 * Indicates that CKEditor is running on Adobe AIR.
@@ -57,4 +60,5 @@
 			 */
 			air		: ( agent.indexOf( ' adobeair/' ) > -1 ),
+
 			/**
 			 * Indicates that CKEditor is running on Macintosh.
@@ -64,5 +68,12 @@
 			 *     alert( "I love apples!" );
 			 */
-			mac	: ( agent.indexOf( 'macintosh' ) > -1 )
+			mac	: ( agent.indexOf( 'macintosh' ) > -1 ),
+
+			quirks : ( document.compatMode == 'BackCompat' ),
+
+			isCustomDomain : function()
+			{
+				return this.ie && document.domain != window.location.hostname;
+			}
 		};
 
@@ -86,4 +97,22 @@
 
 			/**
+			 *  Indicate IE8 browser.
+			 */
+			env.ie8 = !!document.documentMode;
+
+			/**
+			 * Indicte IE8 document mode.
+			 */
+			env.ie8Compat = document.documentMode == 8;
+
+			/**
+			 * Indicates that CKEditor is running on an IE7-like environment, which
+			 * includes IE7 itself and IE8's IE7 document mode.
+			 * @type Boolean
+			 */
+			env.ie7Compat = ( ( version == 7 && !document.documentMode )
+					|| document.documentMode == 7 );
+
+			/**
 			 * Indicates that CKEditor is running on an IE6-like environment, which
 			 * includes IE6 itself and IE7 and IE8 quirks mode.
@@ -93,5 +122,6 @@
 			 *     alert( "I'm on IE6 or quirks mode!" );
 			 */
-			env.ie6Compat = ( version < 7 || document.compatMode == 'BackCompat' );
+			env.ie6Compat = ( version < 7 || env.quirks );
+
 		}
 
@@ -103,5 +133,5 @@
 			{
 				geckoRelease = geckoRelease[1].split( '.' );
-				version = geckoRelease[0] * 10000 + ( geckoRelease[1] || 0 ) * 100 + ( geckoRelease[2] || 0 );
+				version = geckoRelease[0] * 10000 + ( geckoRelease[1] || 0 ) * 100 + ( geckoRelease[2] || 0 ) * 1;
 			}
 		}
@@ -154,4 +184,32 @@
 			false;
 
+		// The CSS class to be appended on the main UI containers, making it
+		// easy to apply browser specific styles to it.
+		env.cssClass =
+			'cke_browser_' + (
+				env.ie ? 'ie' :
+				env.gecko ? 'gecko' :
+				env.opera ? 'opera' :
+				env.air ? 'air' :
+				env.webkit ? 'webkit' :
+				'unknown' );
+
+		if ( env.quirks )
+			env.cssClass += ' cke_browser_quirks';
+
+		if ( env.ie )
+		{
+			env.cssClass += ' cke_browser_ie' + (
+				env.version < 7 ? '6' :
+				env.version >= 8 ? '8' :
+				'7' );
+
+			if ( env.quirks )
+				env.cssClass += ' cke_browser_iequirks';
+		}
+
+		if ( env.gecko && version < 10900 )
+			env.cssClass += ' cke_browser_gecko18';
+
 		return env;
 	})();
Index: /CKEditor/branches/versions/3.0.x/_source/core/event.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/event.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/event.js	(revision 3747)
@@ -18,7 +18,5 @@
 	 */
 	CKEDITOR.event = function()
-	{
-		( this._ || ( this._ = {} ) ).events = {};
-	};
+	{};
 
 	/**
@@ -34,12 +32,12 @@
 	 * myObject.fire( 'testEvent' );
 	 */
-	CKEDITOR.event.implementOn = function( targetObject )
+	CKEDITOR.event.implementOn = function( targetObject, isTargetPrototype )
 	{
-		CKEDITOR.event.call( targetObject );
-
-		for ( var prop in CKEDITOR.event.prototype )
+		var eventProto = CKEDITOR.event.prototype;
+
+		for ( var prop in eventProto )
 		{
 			if ( targetObject[ prop ] == undefined )
-				targetObject[ prop ] = CKEDITOR.event.prototype[ prop ];
+				targetObject[ prop ] = eventProto[ prop ];
 		}
 	};
@@ -47,4 +45,11 @@
 	CKEDITOR.event.prototype = (function()
 	{
+		// Returns the private events object for a given object.
+		var getPrivate = function( obj )
+		{
+			var _ = ( obj.getPrivate && obj.getPrivate() ) || obj._ || ( obj._ = {} );
+			return _.events || ( _.events = {} );
+		};
+
 		var eventEntry = function( eventName )
 		{
@@ -107,5 +112,6 @@
 			{
 				// Get the event entry (create it if needed).
-				var event = this._.events[ eventName ] || ( this._.events[ eventName ] = new eventEntry( eventName ) );
+				var events = getPrivate( this ),
+					event = events[ eventName ] || ( events[ eventName ] = new eventEntry( eventName ) );
 
 				if ( event.getListenerIndex( listenerFunction ) < 0 )
@@ -121,4 +127,6 @@
 					if ( isNaN( priority ) )
 						priority = 10;
+
+					var me = this;
 
 					// Create the function to be fired for this listener.
@@ -133,5 +141,9 @@
 							listenerData : listenerData,
 							stop : stopFn,
-							cancel : cancelFn
+							cancel : cancelFn,
+							removeListener : function()
+							{
+								me.removeListener( eventName, listenerFunction );
+							}
 						};
 
@@ -205,5 +217,5 @@
 				{
 					// Get the event entry.
-					var event = this._.events[ eventName ];
+					var event = getPrivate( this )[ eventName ];
 
 					// Save the previous stopped and cancelled states. We may
@@ -217,16 +229,27 @@
 					if ( event )
 					{
-						// Loop through all listeners.
-						for ( var i = 0, listeners = event.listeners ; i < listeners.length ; i++ )
+						var listeners = event.listeners;
+
+						if ( listeners.length )
 						{
-							// Call the listener, passing the event data.
-							var retData = listeners[i].call( this, editor, data, stopEvent, cancelEvent );
-
-							if ( typeof retData != 'undefined' )
-								data = retData;
-
-							// No further calls is stopped or canceled.
-							if ( stopped || canceled )
-								break;
+							// As some listeners may remove themselves from the
+							// event, the original array length is dinamic. So,
+							// let's make a copy of all listeners, so we are
+							// sure we'll call all of them.
+							listeners = listeners.slice( 0 );
+
+							// Loop through all listeners.
+							for ( var i = 0 ; i < listeners.length ; i++ )
+							{
+								// Call the listener, passing the event data.
+								var retData = listeners[i].call( this, editor, data, stopEvent, cancelEvent );
+
+								if ( typeof retData != 'undefined' )
+									data = retData;
+
+								// No further calls is stopped or canceled.
+								if ( stopped || canceled )
+									break;
+							}
 						}
 					}
@@ -264,5 +287,5 @@
 			{
 				var ret = this.fire( eventName, data, editor );
-				delete this._.events[ eventName ];
+				delete getPrivate( this )[ eventName ];
 				return ret;
 			},
@@ -284,5 +307,5 @@
 			{
 				// Get the event entry.
-				var event = this._.events[ eventName ];
+				var event = getPrivate( this )[ eventName ];
 
 				if ( event )
@@ -305,5 +328,5 @@
 			hasListeners : function( eventName )
 			{
-				var event = this._.events[ eventName ];
+				var event = getPrivate( this )[ eventName ];
 				return ( event && event.listeners.length > 0 ) ;
 			}
Index: /CKEditor/branches/versions/3.0.x/_source/core/focusmanager.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/focusmanager.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/focusmanager.js	(revision 3747)
@@ -67,6 +67,10 @@
 				CKEDITOR.currentInstance.focusManager.forceBlur();
 
+			var editor = this._.editor;
+
+			editor.container.getFirst().addClass( 'cke_focus' );
+
 			this.hasFocus = true;
-			this._.editor.fire( 'focus' );
+			editor.fire( 'focus' );
 		}
 	},
@@ -109,6 +113,10 @@
 		if ( this.hasFocus )
 		{
+			var editor = this._.editor;
+
+			editor.container.getFirst().removeClass( 'cke_focus' );
+
 			this.hasFocus = false;
-			this._.editor.fire( 'blur' );
+			editor.fire( 'blur' );
 		}
 	}
Index: /CKEditor/branches/versions/3.0.x/_source/core/htmlparser.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/htmlparser.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/htmlparser.js	(revision 3747)
@@ -19,5 +19,5 @@
 (function()
 {
-	var attribsRegex	= /([\w:]+)\s*=\s*(?:(?:"([^"]*)")|(?:'([^']*)')|([^\s>]+))?/g,
+	var attribsRegex	= /([\w:]+)(?:(?:\s*=\s*(?:(?:"([^"]*)")|(?:'([^']*)')|([^\s>]+)))|(?=\s|$))/g,
 		emptyAttribs	= {checked:1,compact:1,declare:1,defer:1,disabled:1,ismap:1,multiple:1,nohref:1,noresize:1,noshade:1,nowrap:1,readonly:1,selected:1};
 
@@ -74,4 +74,18 @@
 
 		/**
+		 * Function to be fired when CDATA section is found. This function
+		 * should be overriden when using this class.
+		 * @param {String} cdata The CDATA been found.
+		 * @example
+		 * var parser = new CKEDITOR.htmlParser();
+		 * parser.onCDATA = function( cdata )
+		 *     {
+		 *         alert( cdata );  // e.g. "var hello;"
+		 *     });
+		 * parser.parse( "&lt;script&gt;var hello;&lt;/script&gt;" );
+		 */
+		onCDATA		: function() {},
+
+		/**
 		 * Function to be fired when a commend is found. This function
 		 * should be overriden when using this class.
@@ -102,5 +116,6 @@
 			var parts,
 				tagName,
-				nextIndex = 0;
+				nextIndex = 0,
+				cdata;	// The collected data inside a CDATA section.
 
 			while ( ( parts = this._.htmlPartsRegex.exec( html ) ) )
@@ -108,5 +123,12 @@
 				var tagIndex = parts.index;
 				if ( tagIndex > nextIndex )
-					this.onText( html.substring( nextIndex, tagIndex ) );
+				{
+					var text = html.substring( nextIndex, tagIndex );
+
+					if ( cdata )
+						cdata.push( text );
+					else
+						this.onText( text );
+				}
 
 				nextIndex = this._.htmlPartsRegex.lastIndex;
@@ -114,5 +136,5 @@
 				/*
 				 "parts" is an array with the following items:
-					0 : The entire match (not used)
+					0 : The entire match for opening/closing tags and comments.
 					1 : Group filled with the tag name for closing tags.
 					2 : Group filled with the comment text.
@@ -124,5 +146,24 @@
 				if ( ( tagName = parts[ 1 ] ) )
 				{
-					this.onTagClose( tagName.toLowerCase() );
+					tagName = tagName.toLowerCase();
+
+					if ( cdata && CKEDITOR.dtd.$cdata[ tagName ] )
+					{
+						// Send the CDATA data.
+						this.onCDATA( cdata.join('') );
+						cdata = null;
+					}
+
+					if ( !cdata )
+					{
+						this.onTagClose( tagName );
+						continue;
+					}
+				}
+
+				// If CDATA is enabled, just save the raw match.
+				if ( cdata )
+				{
+					cdata.push( parts[ 0 ] );
 					continue;
 				}
@@ -131,4 +172,5 @@
 				if ( ( tagName = parts[ 3 ] ) )
 				{
+					tagName = tagName.toLowerCase();
 					var attribs = {},
 						attribMatch,
@@ -150,5 +192,10 @@
 					}
 
-					this.onTagOpen( tagName.toLowerCase(), attribs, selfClosing );
+					this.onTagOpen( tagName, attribs, selfClosing );
+
+					// Open CDATA mode when finding the appropriate tags.
+					if ( !cdata && CKEDITOR.dtd.$cdata[ tagName ] )
+						cdata = [];
+
 					continue;
 				}
Index: /CKEditor/branches/versions/3.0.x/_source/core/htmlparser/basicwriter.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/htmlparser/basicwriter.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/core/htmlparser/basicwriter.js	(revision 3747)
@@ -0,0 +1,140 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.htmlParser.basicWriter = CKEDITOR.tools.createClass(
+{
+	$ : function()
+	{
+		this._ =
+		{
+			output : []
+		};
+	},
+
+	proto :
+	{
+		/**
+		 * Writes the tag opening part for a opener tag.
+		 * @param {String} tagName The element name for this tag.
+		 * @param {Object} attributes The attributes defined for this tag. The
+		 *		attributes could be used to inspect the tag.
+		 * @example
+		 * // Writes "&lt;p".
+		 * writer.openTag( 'p', { class : 'MyClass', id : 'MyId' } );
+		 */
+		openTag : function( tagName, attributes )
+		{
+			this._.output.push( '<', tagName );
+		},
+
+		/**
+		 * Writes the tag closing part for a opener tag.
+		 * @param {String} tagName The element name for this tag.
+		 * @param {Boolean} isSelfClose Indicates that this is a self-closing tag,
+		 *		like "br" or "img".
+		 * @example
+		 * // Writes "&gt;".
+		 * writer.openTagClose( 'p', false );
+		 * @example
+		 * // Writes " /&gt;".
+		 * writer.openTagClose( 'br', true );
+		 */
+		openTagClose : function( tagName, isSelfClose )
+		{
+			if ( isSelfClose )
+				this._.output.push( ' />' );
+			else
+				this._.output.push( '>' );
+		},
+
+		/**
+		 * Writes an attribute. This function should be called after opening the
+		 * tag with {@link #openTagClose}.
+		 * @param {String} attName The attribute name.
+		 * @param {String} attValue The attribute value.
+		 * @example
+		 * // Writes ' class="MyClass"'.
+		 * writer.attribute( 'class', 'MyClass' );
+		 */
+		attribute : function( attName, attValue )
+		{
+			this._.output.push( ' ', attName, '="', attValue, '"' );
+		},
+
+		/**
+		 * Writes a closer tag.
+		 * @param {String} tagName The element name for this tag.
+		 * @example
+		 * // Writes "&lt;/p&gt;".
+		 * writer.closeTag( 'p' );
+		 */
+		closeTag : function( tagName )
+		{
+			this._.output.push( '</', tagName, '>' );
+		},
+
+		/**
+		 * Writes text.
+		 * @param {String} text The text value
+		 * @example
+		 * // Writes "Hello Word".
+		 * writer.text( 'Hello Word' );
+		 */
+		text : function( text )
+		{
+			this._.output.push( text );
+		},
+
+		/**
+		 * Writes a comment.
+		 * @param {String} comment The comment text.
+		 * @example
+		 * // Writes "&lt;!-- My comment --&gt;".
+		 * writer.comment( ' My comment ' );
+		 */
+		comment : function( comment )
+		{
+			this._.output.push( '<!--', comment, '-->' );
+		},
+
+		/**
+		 * Writes any kind of data to the ouput.
+		 * @example
+		 * writer.write( 'This is an &lt;b&gt;example&lt;/b&gt;.' );
+		 */
+		write : function( data )
+		{
+			this._.output.push( data );
+		},
+
+		/**
+		 * Empties the current output buffer.
+		 * @example
+		 * writer.reset();
+		 */
+		reset : function()
+		{
+			this._.output = [];
+		},
+
+		/**
+		 * Empties the current output buffer.
+		 * @param {Boolean} reset Indicates that the {@link reset} function is to
+		 *		be automatically called after retrieving the HTML.
+		 * @returns {String} The HTML written to the writer so far.
+		 * @example
+		 * var html = writer.getHtml();
+		 */
+		getHtml : function( reset )
+		{
+			var html = this._.output.join( '' );
+
+			if ( reset )
+				this.reset();
+
+			return html;
+		}
+	}
+});
Index: /CKEditor/branches/versions/3.0.x/_source/core/htmlparser/cdata.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/htmlparser/cdata.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/core/htmlparser/cdata.js	(revision 3747)
@@ -0,0 +1,44 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+(function()
+{
+
+	/**
+	 * A lightweight representation of HTML text.
+	 * @constructor
+	 * @example
+	 */
+	CKEDITOR.htmlParser.cdata = function( value )
+	{
+		/**
+		 * The CDATA value.
+		 * @type String
+		 * @example
+		 */
+		this.value = value;
+
+	};
+
+	CKEDITOR.htmlParser.cdata.prototype =
+	{
+		/**
+		 * CDATA has the same type as {@link CKEDITOR.htmlParser.text} This is
+		 * a constant value set to {@link CKEDITOR.NODE_TEXT}.
+		 * @type Number
+		 * @example
+		 */
+		type : CKEDITOR.NODE_TEXT,
+
+		/**
+		 * Writes write the CDATA with no special manipulations.
+		 * @param {CKEDITOR.htmlWriter} writer The writer to which write the HTML.
+		 */
+		writeHtml : function( writer )
+		{
+			writer.write( this.value );
+		}
+	};
+})();
Index: /CKEditor/branches/versions/3.0.x/_source/core/htmlparser/comment.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/htmlparser/comment.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/htmlparser/comment.js	(revision 3747)
@@ -39,7 +39,21 @@
 	 * @example
 	 */
-	writeHtml : function( writer )
+	writeHtml : function( writer, filter )
 	{
-		writer.comment( this.value );
+		var comment = this.value;
+
+		if ( filter )
+		{
+			if ( !( comment = filter.onComment( comment ) ) )
+				return;
+
+			if ( typeof comment != 'string' )
+			{
+				comment.writeHtml( writer, filter );
+				return;
+			}
+		}
+
+		writer.comment( comment );
 	}
 };
Index: /CKEditor/branches/versions/3.0.x/_source/core/htmlparser/element.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/htmlparser/element.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/htmlparser/element.js	(revision 3747)
@@ -96,37 +96,99 @@
 		 * @example
 		 */
-		writeHtml : function( writer )
+		writeHtml : function( writer, filter )
 		{
+			var attributes = this.attributes;
+
+			// The "_cke_replacedata" indicates that this element is replacing
+			// a data snippet, which should be outputted as is.
+			if ( attributes._cke_replacedata )
+			{
+				writer.write( attributes._cke_replacedata );
+				return;
+			}
+
+			// Ignore cke: prefixes when writing HTML.
+			var element = this,
+				writeName = element.name,
+				a, value;
+
+			if ( filter )
+			{
+				while ( true )
+				{
+					if ( !( writeName = filter.onElementName( writeName ) ) )
+						return;
+
+					element.name = writeName;
+
+					if ( !( element = filter.onElement( element ) ) )
+						return;
+
+					if ( element.name == writeName )
+						break;
+
+					writeName = element.name;
+					if ( !writeName )	// Send children.
+					{
+						CKEDITOR.htmlParser.fragment.prototype.writeHtml.apply( element, arguments );
+						return;
+					}
+				}
+
+				// The element may have been changed, so update the local
+				// references.
+				attributes = element.attributes;
+			}
+
 			// Open element tag.
-			writer.openTag( this.name, this.attributes );
+			writer.openTag( writeName, attributes );
 
-			// Copy all attributes to an array.
-			var attribsArray = [];
-			for ( var a in this.attributes )
-				attribsArray.push( [ a, this.attributes[ a ] ] );
+			if ( writer.sortAttributes )
+			{
+				// Copy all attributes to an array.
+				var attribsArray = [];
+				for ( a in attributes )
+				{
+					value = attributes[ a ];
 
-			// Sort the attributes by name.
-			attribsArray.sort( sortAttribs );
+					if ( filter && ( !( a = filter.onAttributeName( a ) ) || ( value = filter.onAttribute( element, a, value ) ) === false ) )
+						continue;
 
-			// Send the attributes.
-			for ( var i = 0, len = attribsArray.length ; i < len ; i++ )
+					attribsArray.push( [ a, value ] );
+				}
+
+				// Sort the attributes by name.
+				attribsArray.sort( sortAttribs );
+
+				// Send the attributes.
+				for ( var i = 0, len = attribsArray.length ; i < len ; i++ )
+				{
+					var attrib = attribsArray[ i ];
+					writer.attribute( attrib[0], attrib[1] );
+				}
+			}
+			else
 			{
-				var attrib = attribsArray[ i ];
-				// IE's treated expand fields as dom attributes, skip it
-				if ( CKEDITOR.env.ie && attrib === '_cke_expando' )
-					continue;
-				writer.attribute( attrib[0], attrib[1] );
+				for ( a in attributes )
+				{
+					value = attributes[ a ];
+
+					if ( filter && ( !( a = filter.onAttributeName( a ) ) || ( value = filter.onAttribute( element, a, value ) ) === false ) )
+						continue;
+
+					writer.attribute( a, value );
+				}
 			}
 
 			// Close the tag.
-			writer.openTagClose( this.name, this.isEmpty );
+			writer.openTagClose( writeName, element.isEmpty );
 
-			if ( !this.isEmpty )
+			if ( !element.isEmpty )
 			{
 				// Send children.
-				CKEDITOR.htmlParser.fragment.prototype.writeHtml.apply( this, arguments );
+				CKEDITOR.htmlParser.fragment.prototype.writeHtml.apply( element, arguments );
 
 				// Close the element.
-				writer.closeTag( this.name );
+				writer.closeTag( writeName );
 			}
 		}
Index: /CKEditor/branches/versions/3.0.x/_source/core/htmlparser/filter.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/htmlparser/filter.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/core/htmlparser/filter.js	(revision 3747)
@@ -0,0 +1,233 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+(function()
+{
+	CKEDITOR.htmlParser.filter = CKEDITOR.tools.createClass(
+	{
+		$ : function( rules )
+		{
+			this._ =
+			{
+				elementNames : [],
+				attributeNames : [],
+				elements : { $length : 0 },
+				attributes : { $length : 0 }
+			};
+
+			if ( rules )
+				this.addRules( rules, 10 );
+		},
+
+		proto :
+		{
+			addRules : function( rules, priority )
+			{
+				if ( typeof priority != 'number' )
+					priority = 10;
+
+				// Add the elementNames.
+				addItemsToList( this._.elementNames, rules.elementNames, priority );
+
+				// Add the attributeNames.
+				addItemsToList( this._.attributeNames, rules.attributeNames, priority );
+
+				// Add the elements.
+				addNamedItems( this._.elements, rules.elements, priority );
+
+				// Add the attributes.
+				addNamedItems( this._.attributes, rules.attributes, priority );
+
+				// Add the text.
+				this._.text = transformNamedItem( this._.text, rules.text, priority ) || this._.text;
+
+				// Add the comment.
+				this._.comment = transformNamedItem( this._.comment, rules.comment, priority ) || this._.comment;
+			},
+
+			onElementName : function( name )
+			{
+				return filterName( name, this._.elementNames );
+			},
+
+			onAttributeName : function( name )
+			{
+				return filterName( name, this._.attributeNames );
+			},
+
+			onText : function( text )
+			{
+				var textFilter = this._.text;
+				return textFilter ? textFilter.filter( text ) : text;
+			},
+
+			onComment : function( commentText )
+			{
+				var textFilter = this._.comment;
+				return textFilter ? textFilter.filter( commentText ) : commentText;
+			},
+
+			onElement : function( element )
+			{
+				// We must apply filters set to the specific element name as
+				// well as those set to the generic $ name. So, add both to an
+				// array and process them in a small loop.
+				var filters = [ this._.elements[ element.name ], this._.elements.$ ],
+					filter, ret;
+
+				for ( var i = 0 ; i < 2 ; i++ )
+				{
+					filter = filters[ i ];
+					if ( filter )
+					{
+						ret = filter.filter( element, this );
+
+						if ( ret === false )
+							return null;
+
+						if ( ret && ret != element )
+							return this.onElement( ret );
+					}
+				}
+
+				return element;
+			},
+
+			onAttribute : function( element, name, value )
+			{
+				var filter = this._.attributes[ name ];
+
+				if ( filter )
+				{
+					var ret = filter.filter( value, element, this );
+
+					if ( ret === false )
+						return false;
+
+					if ( typeof ret != 'undefined' )
+						return ret;
+				}
+
+				return value;
+			}
+		}
+	});
+
+	function filterName( name, filters )
+	{
+		for ( var i = 0 ; name && i < filters.length ; i++ )
+		{
+			var filter = filters[ i ];
+			name = name.replace( filter[ 0 ], filter[ 1 ] );
+		}
+		return name;
+	}
+
+	function addItemsToList( list, items, priority )
+	{
+		var i, j,
+			listLength = list.length,
+			itemsLength = items && items.length;
+
+		if ( itemsLength )
+		{
+			// Find the index to insert the items at.
+			for ( i = 0 ; i < listLength && list[ i ].pri < priority ; i++ )
+			{ /*jsl:pass*/ }
+
+			// Add all new items to the list at the specific index.
+			for ( j = itemsLength - 1 ; j >= 0 ; j-- )
+			{
+				var item = items[ j ];
+				item.pri = priority;
+				list.splice( i, 0, item );
+			}
+		}
+	}
+
+	function addNamedItems( hashTable, items, priority )
+	{
+		if ( items )
+		{
+			for ( var name in items )
+			{
+				var current = hashTable[ name ];
+
+				hashTable[ name ] =
+					transformNamedItem(
+						current,
+						items[ name ],
+						priority );
+
+				if ( !current )
+					hashTable.$length++;
+			}
+		}
+	}
+
+	function transformNamedItem( current, item, priority )
+	{
+		if ( item )
+		{
+			item.pri = priority;
+
+			if ( current )
+			{
+				// If the current item is not an Array, transform it.
+				if ( !current.splice )
+				{
+					if ( current.pri > priority )
+						current = [ item, current ];
+					else
+						current = [ current, item ];
+
+					current.filter = callItems;
+				}
+				else
+					addItemsToList( current, item, priority );
+
+				return current;
+			}
+			else
+			{
+				item.filter = item;
+				return item;
+			}
+		}
+	}
+
+	function callItems( currentEntry )
+	{
+		var isObject = ( typeof currentEntry == 'object' );
+
+		for ( var i = 0 ; i < this.length ; i++ )
+		{
+			var item = this[ i ],
+				ret = item.apply( window, arguments );
+
+			if ( typeof ret != 'undefined' )
+			{
+				if ( ret === false )
+					return false;
+
+				if ( isObject && ret != currentEntry )
+					return ret;
+			}
+		}
+
+		return null;
+	}
+})();
+
+// "entities" plugin
+/*
+{
+	text : function( text )
+	{
+		// TODO : Process entities.
+		return text.toUpperCase();
+	}
+};
+*/
Index: /CKEditor/branches/versions/3.0.x/_source/core/htmlparser/fragment.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/htmlparser/fragment.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/htmlparser/fragment.js	(revision 3747)
@@ -1,3 +1,3 @@
-﻿/*
+/*
 Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.html or http://ckeditor.com/license
@@ -42,7 +42,14 @@
 	var optionalClose = {colgroup:1,dd:1,dt:1,li:1,option:1,p:1,td:1,tfoot:1,th:1,thead:1,tr:1};
 
+	// Block-level elements whose internal structure should be respected during
+	// parser fixing.
+	var nonBreakingBlocks = CKEDITOR.tools.extend(
+			{table:1,ul:1,ol:1,dl:1},
+			CKEDITOR.dtd.table, CKEDITOR.dtd.ul, CKEDITOR.dtd.ol, CKEDITOR.dtd.dl );
+
 	/**
 	 * Creates a {@link CKEDITOR.htmlParser.fragment} from an HTML string.
 	 * @param {String} fragmentHtml The HTML to be parsed, filling the fragment.
+	 * @param {Number} [fixForBody=false] Wrap body with specified element if needed.
 	 * @returns CKEDITOR.htmlParser.fragment The fragment created.
 	 * @example
@@ -51,5 +58,5 @@
 	 * alert( fragment.children[1].value );  " Text"
 	 */
-	CKEDITOR.htmlParser.fragment.fromHtml = function( fragmentHtml )
+	CKEDITOR.htmlParser.fragment.fromHtml = function( fragmentHtml, fixForBody )
 	{
 		var parser = new CKEDITOR.htmlParser(),
@@ -57,7 +64,10 @@
 			fragment = new CKEDITOR.htmlParser.fragment(),
 			pendingInline = [],
-			currentNode = fragment;
-
-		var checkPending = function( newTagName )
+			currentNode = fragment,
+		    // Indicate we're inside a <pre> element, spaces should be touched differently.
+			inPre = false,
+			returnPoint;
+
+		function checkPending( newTagName )
 		{
 			if ( pendingInline.length > 0 )
@@ -77,5 +87,5 @@
 						// Add it to the current node and make it the current,
 						// so the new element will be added inside of it.
-						currentNode.add( pendingElement );
+						pendingElement.parent = currentNode;
 						currentNode = pendingElement;
 
@@ -87,5 +97,52 @@
 				}
 			}
-		};
+		}
+
+		function addElement( element, target, enforceCurrent )
+		{
+			target = target || currentNode || fragment;
+
+			// If the target is the fragment and this element can't go inside
+			// body (if fixForBody).
+			if ( fixForBody && !target.type && !CKEDITOR.dtd.$body[ element.name ] )
+			{
+				var savedCurrent = currentNode;
+
+				// Create a <p> in the fragment.
+				currentNode = target;
+				parser.onTagOpen( fixForBody, {} );
+
+				// The new target now is the <p>.
+				target = currentNode;
+
+				if ( enforceCurrent )
+					currentNode = savedCurrent;
+			}
+
+			// Rtrim empty spaces on block end boundary. (#3585)
+			if ( element._.isBlockLike
+				 && !inPre )
+			{
+
+				var length = element.children.length,
+					lastChild = element.children[ length - 1 ],
+					text;
+				if ( lastChild && lastChild.type == CKEDITOR.NODE_TEXT )
+				{
+					if ( !( text = CKEDITOR.tools.rtrim( lastChild.value ) ) )
+						element.children.length = length -1;
+					else
+						lastChild.value = text;
+				}
+			}
+
+			target.add( element );
+
+			if ( element.returnPoint )
+			{
+				currentNode = element.returnPoint;
+				delete element.returnPoint;
+			}
+		}
 
 		parser.onTagOpen = function( tagName, attributes, selfClosing )
@@ -104,4 +161,11 @@
 				return;
 			}
+			else if ( tagName == 'pre' )
+				inPre = true;
+			else if ( tagName == 'br' && inPre )
+			{
+				currentNode.add( new CKEDITOR.htmlParser.text( '\n' ) );
+				return;
+			}
 
 			var currentName = currentNode.name,
@@ -121,16 +185,27 @@
 				// then just close the current one and append the new one to the
 				// parent. This situation usually happens with <p>, <li>, <dt> and
-				// <dd>, specially in IE.
-				if ( tagName != currentName )
-				{
-					// If it is optional to close the current element, then
-					// close it at this point and simply add the new
-					// element after it.
-					if ( !optionalClose[ currentName ] )
+				// <dd>, specially in IE. Do not enter in this if block in this case.
+				if ( tagName == currentName )
+				{
+					addElement( currentNode, currentNode.parent );
+				}
+				else
+				{
+					if ( nonBreakingBlocks[ currentName ] )
 					{
-						// The current element is an inline element, which
-						// cannot hold the new one. Put it in the pending list,
-						// and try adding the new one after it.
-						pendingInline.unshift( currentNode );
+						if ( !returnPoint )
+							returnPoint = currentNode;
+					}
+					else
+					{
+						addElement( currentNode, currentNode.parent, true );
+
+						if ( !optionalClose[ currentName ] )
+						{
+							// The current element is an inline element, which
+							// cannot hold the new one. Put it in the pending list,
+							// and try adding the new one after it.
+							pendingInline.unshift( currentNode );
+						}
 					}
 
@@ -140,5 +215,5 @@
 				// In any of the above cases, we'll be adding, or trying to
 				// add it to the parent.
-				currentNode = currentNode.parent;
+				currentNode = currentNode.returnPoint || currentNode.parent;
 
 				if ( reApply )
@@ -151,7 +226,11 @@
 			checkPending( tagName );
 
-			currentNode.add( element );
-
-			if ( !element.isEmpty )
+			element.parent = currentNode;
+			element.returnPoint = returnPoint;
+			returnPoint = 0;
+
+			if ( element.isEmpty )
+				addElement( element );
+			else
 				currentNode = element;
 		};
@@ -159,14 +238,15 @@
 		parser.onTagClose = function( tagName )
 		{
-			var closingElement = currentNode,
-				index = 0;
-
-			while ( closingElement && closingElement.name != tagName )
+			var index = 0,
+				pendingAdd = [],
+				candidate = currentNode;
+
+			while ( candidate.type && candidate.name != tagName )
 			{
 				// If this is an inline element, add it to the pending list, so
 				// it will continue after the closing tag.
-				if ( !closingElement._.isBlockLike )
-				{
-					pendingInline.unshift( closingElement );
+				if ( !candidate._.isBlockLike )
+				{
+					pendingInline.unshift( candidate );
 
 					// Increase the index, so it will not get checked again in
@@ -175,23 +255,44 @@
 				}
 
-				closingElement = closingElement.parent;
-			}
-
-			if ( closingElement )
-				currentNode = closingElement.parent;
-			else if ( pendingInline.length > index )
-			{
-				// If we didn't find any parent to be closed, let's check the
-				// pending list.
-				for ( ; index < pendingInline.length ; index++ )
-				{
-					// If found, just remove it from the list.
-					if ( tagName == pendingInline[ index ].name )
-					{
-						pendingInline.splice( index, 1 );
-
-						// Decrease the index so we continue from the next one.
-						index--;
-					}
+				// This node should be added to it's parent at this point. But,
+				// it should happen only if the closing tag is really closing
+				// one of the nodes. So, for now, we just cache it.
+				pendingAdd.push( candidate );
+
+				candidate = candidate.parent;
+			}
+
+			if ( candidate.type )
+			{
+				// Add all elements that have been found in the above loop.
+				for ( var i = 0 ; i < pendingAdd.length ; i++ )
+				{
+					var node = pendingAdd[ i ];
+					addElement( node, node.parent );
+				}
+
+				currentNode = candidate;
+
+				if( currentNode.name == 'pre' )
+					inPre = false;
+
+				addElement( candidate, candidate.parent );
+
+				// The parent should start receiving new nodes now, except if
+				// addElement changed the currentNode.
+				if ( candidate == currentNode )
+					currentNode = currentNode.parent;
+			}
+
+			// Check if there is any pending tag to be closed.
+			for ( ; index < pendingInline.length ; index++ )
+			{
+				// If found, just remove it from the list.
+				if ( tagName == pendingInline[ index ].name )
+				{
+					pendingInline.splice( index, 1 );
+
+					// Decrease the index so we continue from the next one.
+					index--;
 				}
 			}
@@ -200,5 +301,6 @@
 		parser.onText = function( text )
 		{
-			if ( !currentNode._.hasInlineStarted )
+			// Trim empty spaces at beginning of element contents except <pre>.
+			if ( !currentNode._.hasInlineStarted && !inPre )
 			{
 				text = CKEDITOR.tools.ltrim( text );
@@ -209,7 +311,21 @@
 
 			checkPending();
+
+			if ( fixForBody && !currentNode.type )
+				this.onTagOpen( fixForBody, {} );
+
+			// Shrinking consequential spaces into one single for all elements
+			// text contents.
+			if ( !inPre )
+				text = text.replace( /[\t\r\n ]{2,}|[\t\r\n]/g, ' ' );
+
 			currentNode.add( new CKEDITOR.htmlParser.text( text ) );
 		};
 
+		parser.onCDATA = function( cdata )
+		{
+			currentNode.add( new CKEDITOR.htmlParser.cdata( cdata ) );
+		};
+
 		parser.onComment = function( comment )
 		{
@@ -217,5 +333,23 @@
 		};
 
+		// Parse it.
 		parser.parse( fragmentHtml );
+
+		// Close all pending nodes.
+		while ( currentNode.type )
+		{
+			var parent = currentNode.parent,
+				node = currentNode;
+
+			if ( fixForBody && !parent.type && !CKEDITOR.dtd.$body[ node.name ] )
+			{
+				currentNode = parent;
+				parser.onTagOpen( fixForBody, {} );
+				parent = currentNode;
+			}
+
+			parent.add( node );
+			currentNode = parent;
+		}
 
 		return fragment;
@@ -275,8 +409,8 @@
 		 * alert( writer.getHtml() );  "&lt;p&gt;&lt;b&gt;Example&lt;/b&gt;&lt;/p&gt;"
 		 */
-		writeHtml : function( writer )
+		writeHtml : function( writer, filter )
 		{
 			for ( var i = 0, len = this.children.length ; i < len ; i++ )
-				this.children[i].writeHtml( writer );
+				this.children[i].writeHtml( writer, filter );
 		}
 	};
Index: /CKEditor/branches/versions/3.0.x/_source/core/htmlparser/text.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/htmlparser/text.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/htmlparser/text.js	(revision 3747)
@@ -20,5 +20,5 @@
 		 * @example
 		 */
-		this.value = value.replace( spacesRegex, ' ' );
+		this.value = value;
 
 		/** @private */
@@ -43,7 +43,12 @@
 		 * @example
 		 */
-		writeHtml : function( writer )
+		writeHtml : function( writer, filter )
 		{
-			writer.text( this.value );
+			var text = this.value;
+
+			if ( filter && !( text = filter.onText( text, this ) ) )
+				return;
+
+			writer.text( text );
 		}
 	};
Index: /CKEditor/branches/versions/3.0.x/_source/core/lang.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/lang.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/lang.js	(revision 3747)
@@ -18,5 +18,61 @@
 		languages :
 		{
-			'en'	: 1
+			'af'	: 1,
+			'ar'	: 1,
+			'bg'	: 1,
+			'bn'	: 1,
+			'bs'	: 1,
+			'ca'	: 1,
+			'cs'	: 1,
+			'da'	: 1,
+			'de'	: 1,
+			'el'	: 1,
+			'en-au'	: 1,
+			'en-ca'	: 1,
+			'en-uk'	: 1,
+			'en'	: 1,
+			'eo'	: 1,
+			'es'	: 1,
+			'et'	: 1,
+			'eu'	: 1,
+			'fa'	: 1,
+			'fi'	: 1,
+			'fo'	: 1,
+			'fr-ca'	: 1,
+			'fr'	: 1,
+			'gl'	: 1,
+			'gu'	: 1,
+			'he'	: 1,
+			'hi'	: 1,
+			'hr'	: 1,
+			'hu'	: 1,
+			'is'	: 1,
+			'it'	: 1,
+			'ja'	: 1,
+			'km'	: 1,
+			'ko'	: 1,
+			'lt'	: 1,
+			'lv'	: 1,
+			'mn'	: 1,
+			'ms'	: 1,
+			'nb'	: 1,
+			'nl'	: 1,
+			'no'	: 1,
+			'pl'	: 1,
+			'pt-br'	: 1,
+			'pt'	: 1,
+			'ro'	: 1,
+			'ru'	: 1,
+			'sk'	: 1,
+			'sl'	: 1,
+			'sr-latn'	: 1,
+			'sr'	: 1,
+			'sv'	: 1,
+			'th'	: 1,
+			'tr'	: 1,
+			'uk'	: 1,
+			'vi'	: 1,
+			'zh-cn'	: 1,
+			'zh'	: 1
 		},
 
@@ -35,8 +91,8 @@
 		 * @example
 		 */
-		load : function( languageCode, autoDetect, callback )
+		load : function( languageCode, defaultLanguage, callback )
 		{
-			if ( autoDetect )
-				languageCode = this.detect( languageCode );
+			if ( !languageCode )
+				languageCode = this.detect( defaultLanguage );
 
 			if ( !this[ languageCode ] )
Index: /CKEditor/branches/versions/3.0.x/_source/core/loader.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/loader.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/loader.js	(revision 3747)
@@ -26,5 +26,5 @@
 			'core/_bootstrap'		: [ 'core/config', 'core/ckeditor', 'core/plugins', 'core/scriptloader', 'core/tools', /* The following are entries that we want to force loading at the end to avoid dependence recursion */ 'core/dom/elementpath', 'core/dom/text', 'core/dom/range' ],
 			'core/ajax'				: [ 'core/xml' ],
-			'core/ckeditor'			: [ 'core/ckeditor_basic', 'core/dom', 'core/dtd', 'core/dom/document', 'core/dom/element', 'core/editor', 'core/event', 'core/htmlparser', 'core/htmlparser/element', 'core/htmlparser/fragment', 'core/tools' ],
+			'core/ckeditor'			: [ 'core/ckeditor_basic', 'core/dom', 'core/dtd', 'core/dom/document', 'core/dom/element', 'core/editor', 'core/event', 'core/htmlparser', 'core/htmlparser/element', 'core/htmlparser/fragment', 'core/htmlparser/filter', 'core/htmlparser/basicwriter', 'core/tools' ],
 			'core/ckeditor_base'	: [],
 			'core/ckeditor_basic'	: [ 'core/editor_basic', 'core/env', 'core/event' ],
@@ -32,6 +32,6 @@
 			'core/config'			: [ 'core/ckeditor_base' ],
 			'core/dom'				: [],
-			'core/dom/document'		: [ 'core/dom','core/dom/element', 'core/dom/domobject', 'core/dom/window' ],
-			'core/dom/documentFragment'	: [ 'core/dom/element' ],
+			'core/dom/document'		: [ 'core/dom', 'core/dom/domobject', 'core/dom/window' ],
+			'core/dom/documentfragment'	: [ 'core/dom/element' ],
 			'core/dom/element'		: [ 'core/dom', 'core/dom/document', 'core/dom/domobject', 'core/dom/node', 'core/dom/nodelist', 'core/tools' ],
 			'core/dom/elementpath'	: [ 'core/dom/element' ],
@@ -41,6 +41,7 @@
 			'core/dom/domobject'	: [ 'core/dom/event' ],
 			'core/dom/domwalker'	: [ 'core/dom/node', 'core/dom/element', 'core/dom/document' ],
-			'core/dom/range'		: [ 'core/dom/document', 'core/dom/documentFragment', 'core/dom/element', 'core/dom/domwalker' ],
+			'core/dom/range'		: [ 'core/dom/document', 'core/dom/documentfragment', 'core/dom/element', 'core/dom/domwalker', 'core/dom/walker' ],
 			'core/dom/text'			: [ 'core/dom/node', 'core/dom/domobject' ],
+			'core/dom/walker'		: [ 'core/dom/node' ],
 			'core/dom/window'		: [ 'core/dom/domobject' ],
 			'core/dtd'				: [ 'core/tools' ],
@@ -53,6 +54,9 @@
 			'core/htmlparser/comment'	: [ 'core/htmlparser' ],
 			'core/htmlparser/element'	: [ 'core/htmlparser', 'core/htmlparser/fragment' ],
-			'core/htmlparser/fragment'	: [ 'core/htmlparser', 'core/htmlparser/comment', 'core/htmlparser/text' ],
+			'core/htmlparser/fragment'	: [ 'core/htmlparser', 'core/htmlparser/comment', 'core/htmlparser/text', 'core/htmlparser/cdata' ],
 			'core/htmlparser/text'		: [ 'core/htmlparser' ],
+			'core/htmlparser/cdata'		: [ 'core/htmlparser' ],
+			'core/htmlparser/filter'	: [ 'core/htmlparser' ],
+			'core/htmlparser/basicwriter': [ 'core/htmlparser' ],
 			'core/imagecacher'		: [ 'core/dom/element' ],
 			'core/lang'				: [],
Index: /CKEditor/branches/versions/3.0.x/_source/core/plugindefinition.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/plugindefinition.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/plugindefinition.js	(revision 3747)
@@ -40,9 +40,8 @@
  * @function
  * @param {CKEDITOR.editor} editor The editor instance being initialized.
- * @param {String} pluginPath The URL path for the plugin installation folder.
  * @example
  * CKEDITOR.plugins.add( 'sample',
  * {
- *     beforeInit : function( editor, pluginPath )
+ *     beforeInit : function( editor )
  *     {
  *         alert( 'Editor "' + editor.name + '" is to be initialized!' );
@@ -57,9 +56,8 @@
  * @function
  * @param {CKEDITOR.editor} editor The editor instance being initialized.
- * @param {String} pluginPath The URL path for the plugin installation folder.
  * @example
  * CKEDITOR.plugins.add( 'sample',
  * {
- *     init : function( editor, pluginPath )
+ *     init : function( editor )
  *     {
  *         alert( 'Editor "' + editor.name + '" is being initialized!' );
Index: /CKEditor/branches/versions/3.0.x/_source/core/plugins.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/plugins.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/plugins.js	(revision 3747)
@@ -18,4 +18,6 @@
 	'_source/' +	// %REMOVE_LINE%
 	'plugins/', 'plugin' );
+
+// PACKAGER_RENAME( CKEDITOR.plugins )
 
 CKEDITOR.plugins.load = CKEDITOR.tools.override( CKEDITOR.plugins.load, function( originalLoad )
@@ -49,6 +51,21 @@
 						if ( requiredPlugins.length )
 							loadPlugins.call( this, requiredPlugins );
-						else if ( callback )
-							callback.call( scope || window, allPlugins );
+						else
+						{
+							// Call the "onLoad" function for all plugins.
+							for ( pluginName in allPlugins )
+							{
+								plugin = allPlugins[ pluginName ];
+								if ( plugin.onLoad && !plugin.onLoad._called )
+								{
+									plugin.onLoad();
+									plugin.onLoad._called = 1;
+								}
+							}
+
+							// Call the callback.
+							if ( callback )
+								callback.call( scope || window, allPlugins );
+						}
 					}
 					, this);
Index: /CKEditor/branches/versions/3.0.x/_source/core/resourcemanager.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/resourcemanager.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/resourcemanager.js	(revision 3747)
@@ -103,5 +103,5 @@
 
 	/**
-	 * Get the full path for a specific loaded resource.
+	 * Get the folder path for a specific loaded resource.
 	 * @param {String} name The resource name.
 	 * @type String
@@ -111,21 +111,50 @@
 	getPath : function( name )
 	{
-		return this.externals[ name ] || this.basePath + name + '/';
-	},
-
-	/**
-	 * Registers a resource to be loaded from an external path instead of the core base path.
-	 * @param {String} name The resource name.
-	 * @param {String} path The resource external path.
+		var external = this.externals[ name ];
+		return CKEDITOR.getUrl( ( external && external.dir ) || this.basePath + name + '/' );
+	},
+
+	/**
+	 * Get the file path for a specific loaded resource.
+	 * @param {String} name The resource name.
+	 * @type String
+	 * @example
+	 * alert( <b>CKEDITOR.plugins.getFilePath( 'sample' )</b> );  // "&lt;editor path&gt;/plugins/sample/plugin.js"
+	 */
+	getFilePath : function( name )
+	{
+		var external = this.externals[ name ];
+		return CKEDITOR.getUrl(
+				this.getPath( name ) +
+				( ( external && external.file ) || ( this.fileName + '.js' ) ) );
+	},
+
+	/**
+	 * Registers one or more resources to be loaded from an external path
+	 * instead of the core base path.
+	 * @param {String} names The resource names, separated by commas.
+	 * @param {String} path The path of the folder containing the resource.
+	 * @param {String} [fileName] The resource file name. If not provided, the
+	 *		default name is used.
 	 * @example
 	 * // Loads a plugin from '/myplugin/samples/plugin.js'.
 	 * CKEDITOR.plugins.addExternal( 'sample', '/myplugins/sample/' );
-	 */
-	addExternal : function( name, path )
-	{
-		if ( this.registered[ name ] || this.externals[ name ] )
-			throw '[CKEDITOR.resourceManager.import] The resource name "' + name + '" is already registered or imported.';
-
-		this.externals[ name ] = path;
+	 * @example
+	 * // Loads a plugin from '/myplugin/samples/my_plugin.js'.
+	 * CKEDITOR.plugins.addExternal( 'sample', '/myplugins/sample/', 'my_plugin.js' );
+	 */
+	addExternal : function( names, path, fileName )
+	{
+		names = names.split( ',' );
+		for ( var i = 0 ; i < names.length ; i++ )
+		{
+			var name = names[ i ];
+
+			this.externals[ name ] =
+			{
+				dir : path,
+				file : fileName
+			};
+		}
 	},
 
@@ -168,7 +197,9 @@
 			if ( !loaded[ name ] && !registered[ name ] )
 			{
-				var url = CKEDITOR.getUrl( this.getPath( name ) + this.fileName + '.js' );
+				var url = this.getFilePath( name );
 				urls.push( url );
-				urlsNames[ url ] = name;
+				if ( !( url in urlsNames ) )
+					urlsNames[ url ] = [];
+				urlsNames[ url ].push( name );
 			}
 			else
@@ -179,12 +210,19 @@
 			{
 				if ( failed.length )
-					throw '[CKEDITOR.resourceManager.load] Resource name "' + urlsNames[ failed[ 0 ] ] + '" was not found at "' + failed[ 0 ] + '".';
+				{
+					throw '[CKEDITOR.resourceManager.load] Resource name "' + urlsNames[ failed[ 0 ] ].join( ',' )
+						+ '" was not found at "' + failed[ 0 ] + '".';
+				}
 
 				for ( var i = 0 ; i < completed.length ; i++ )
 				{
-					var name = urlsNames[ completed[ i ] ];
-					resources[ name ] = this.get( name );
-
-					loaded[ name ] = 1;
+					var nameList = urlsNames[ completed[ i ] ];
+					for ( var j = 0 ; j < nameList.length ; j++ )
+					{
+						var name = nameList[ j ];
+						resources[ name ] = this.get( name );
+
+						loaded[ name ] = 1;
+					}
 				}
 
Index: /CKEditor/branches/versions/3.0.x/_source/core/scriptloader.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/scriptloader.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/scriptloader.js	(revision 3747)
@@ -85,5 +85,5 @@
 			var checkLoaded = function( url, success )
 			{
-				( success ? completed : failed).push( url );
+				( success ? completed : failed ).push( url );
 
 				if ( --scriptCount <= 0 )
@@ -147,5 +147,7 @@
 						script.$.onload = function()
 						{
-							onLoad( url, true );
+							// Some browsers, such as Safari, may call the onLoad function
+							// immediately. Which will break the loading sequence. (#3661)
+							setTimeout( function() { onLoad( url, true ); }, 0 );
 						};
 
Index: /CKEditor/branches/versions/3.0.x/_source/core/skins.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/skins.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/skins.js	(revision 3747)
@@ -1,3 +1,3 @@
-﻿/*
+/*
 Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.html or http://ckeditor.com/license
@@ -19,4 +19,5 @@
 	var loaded = {};
 	var preloaded = {};
+	var paths = {};
 
 	var loadedPart = function( skinName, part, callback )
@@ -29,7 +30,5 @@
 			for ( var n = 0 ; n < fileNames.length ; n++ )
 			{
-				fileNames[ n ] = CKEDITOR.getUrl(
-					'_source/' +	// %REMOVE_LINE%
-					'skins/' + skinName + '/' + fileNames[ n ] );
+				fileNames[ n ] = CKEDITOR.getUrl( paths[ skinName ] + fileNames[ n ] );
 			}
 		};
@@ -134,7 +133,9 @@
 			loaded[ skinName ] = skinDefinition;
 
-			skinDefinition.skinPath = CKEDITOR.getUrl(
-					'_source/' +	// %REMOVE_LINE%
-					'skins/' + skinName + '/' );
+			skinDefinition.skinPath = paths[ skinName ]
+				|| ( paths[ skinName ] =
+						CKEDITOR.getUrl(
+							'_source/' +	// %REMOVE_LINE%
+							'skins/' + skinName + '/' ) );
 		},
 
@@ -150,18 +151,36 @@
 		 * @example
 		 */
-		load : function( skinName, skinPart, callback )
+		load : function( editor, skinPart, callback )
 		{
+			var skinName = editor.skinName,
+				skinPath = editor.skinPath;
+
 			if ( loaded[ skinName ] )
+			{
 				loadedPart( skinName, skinPart, callback );
+
+				// Get the skin definition.
+				var skinDefinition = loaded[ skinName ];
+
+				// Trigger init function if any.
+				if ( skinDefinition.init )
+					skinDefinition.init( editor );
+			}
 			else
 			{
-				CKEDITOR.scriptLoader.load( CKEDITOR.getUrl(
-					'_source/' +	// %REMOVE_LINE%
-					'skins/' + skinName + '/skin.js' ), function()
+				paths[ skinName ] = skinPath;
+				CKEDITOR.scriptLoader.load( skinPath + 'skin.js', function()
 						{
 							loadedPart( skinName, skinPart, callback );
-						} );
+
+							// Get the skin definition.
+							var skinDefinition = loaded[ skinName ];
+
+							// Trigger init function if any.
+							if ( skinDefinition.init )
+								skinDefinition.init( editor );
+						});
 			}
 		}
-	 };
+	};
 })();
Index: /CKEditor/branches/versions/3.0.x/_source/core/test.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/test.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/test.js	(revision 3747)
@@ -59,5 +59,13 @@
 	getInnerHtml : function( elementOrId )
 	{
-		var html = ( elementOrId.nodeType ? elementOrId : document.getElementById( elementOrId ) ).innerHTML;
+		var html;
+
+		if ( typeof elementOrId == 'string' )
+			html = document.getElementById( elementOrId ).innerHTML;
+		else if ( elementOrId.getHtml )
+			html = elementOrId.getHtml();
+		else
+			html = elementOrId.innerHTML || '';
+
 		html = html.toLowerCase();
 		html = html.replace( /[\n\r]/g, '' );
@@ -72,9 +80,9 @@
 						if ( attName == 'style' )
 						{
+							// Safari adds some extra space to the end.
+							attValue = attValue.replace( /\s+/g, '' );
+
 							// IE doesn't add the final ";"
 							attValue = attValue.replace( /([^"';\s])\s*(["']?)$/, '$1;$2' );
-
-							// Safari adds some extra space to the end.
-							attValue = attValue.replace( /\s+(["']?)$/, '$1' );
 						}
 
Index: /CKEditor/branches/versions/3.0.x/_source/core/tools.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/tools.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/tools.js	(revision 3747)
@@ -9,308 +9,500 @@
  */
 
-/**
- * Utility functions.
- * @namespace
- * @example
- */
-CKEDITOR.tools =
+(function()
 {
+	var functions = [];
+
 	/**
-	 * Copy the properties from one object to another. By default, properties
-	 * already present in the target object <strong>are not</strong> overwritten.
-	 * @param {Object} target The object to be extended.
-	 * @param {Object} source[,souce(n)] The objects from which copy
-	 *		properties. Any number of objects can be passed to this function.
-	 * @param {Boolean} [overwrite] Indicates that properties already present
-	 *		in the target object must be overwritten. This must be the last
-	 *		parameter in the function call.
-	 * @returns {Object} the extended object (target).
+	 * Utility functions.
+	 * @namespace
 	 * @example
-	 * // Create the sample object.
-	 * var myObject =
-	 * {
-	 *     prop1 : true
-	 * };
-	 *
-	 * // Extend the above object with two properties.
-	 * CKEDITOR.tools.extend( myObject,
-	 *     {
-	 *         prop2 : true,
-	 *         prop3 : true
-	 *     } );
-	 *
-	 * // Alert "prop1", "prop2" and "prop3".
-	 * for ( var p in myObject )
-	 *     alert( p );
 	 */
-	extend : function( target )
+	CKEDITOR.tools =
 	{
-		var argsLength = arguments.length,
-			overwrite = arguments[ argsLength - 1 ];
-
-		if ( typeof overwrite == 'boolean' )
-			argsLength--;
-		else
-			overwrite = false;
-
-		for ( var i = 1 ; i < argsLength ; i++ )
-		{
-			var source = arguments[ i ];
-
-			for ( var propertyName in source )
-			{
-				if ( overwrite || target[ propertyName ] == undefined )
-					target[ propertyName ] = source[ propertyName ];
-			}
-		}
-
-		return target;
-	},
-
-	/**
-	 * Creates an object which is an instance of a class which prototype is a
-	 * predefined object. All properties defined in the source object are
-	 * automatically inherited by the resulting object, including future
-	 * changes to it.
-	 * @param {Object} source The source object to be used as the prototype for
-	 *		the final object.
-	 * @returns {Object} The resulting copy.
-	 */
-	prototypedCopy : function( source )
-	{
-		var copy = function()
-		{};
-		copy.prototype = source;
-		return new copy();
-	},
-
-	/**
-	 * Checks if an object is an Array.
-	 * @param {Object} object The object to be checked.
-	 * @type Boolean
-	 * @returns <i>true</i> if the object is an Array, otherwise <i>false</i>.
-	 * @example
-	 * alert( CKEDITOR.tools.isArray( [] ) );      // "true"
-	 * alert( CKEDITOR.tools.isArray( 'Test' ) );  // "false"
-	 */
-	isArray : function( object )
-	{
-		return ( !!object && object instanceof Array );
-	},
-
-	/**
-	 * Transforms a CSS property name to its relative DOM style name.
-	 * @param {String} cssName The CSS property name.
-	 * @returns {String} The transformed name.
-	 * @example
-	 * alert( CKEDITOR.tools.cssStyleToDomStyle( 'background-color' ) );  // "backgroundColor"
-	 * alert( CKEDITOR.tools.cssStyleToDomStyle( 'float' ) );             // "cssFloat"
-	 */
-	cssStyleToDomStyle : function( cssName )
-	{
-		if ( cssName == 'float' )
-			return 'cssFloat';
-		else
-		{
-			return cssName.replace( /-./g, function( match )
-				{
-					return match.substr( 1 ).toUpperCase();
-				});
-		}
-	},
-
-	/**
-	 * Replace special HTML characters in a string with their relative HTML
-	 * entity values.
-	 * @param {String} text The string to be encoded.
-	 * @returns {String} The encode string.
-	 * @example
-	 * alert( CKEDITOR.tools.htmlEncode( 'A > B & C < D' ) );  // "A &amp;gt; B &amp;amp; C &amp;lt; D"
-	 */
-	htmlEncode : function( text )
-	{
-		var standard = function( text )
-		{
-			var span = new CKEDITOR.dom.element( 'span' );
-			span.setText( text );
-			return span.getHtml();
-		};
-
-		this.htmlEncode = ( standard( '>' ) == '>' ) ?
-			function( text )
-			{
-				// WebKit does't encode the ">" character, which makes sense, but
-				// it's different than other browsers.
-				return standard( text ).replace( />/g, '&gt;' );
-			} :
-			standard;
-
-		return this.htmlEncode( text );
-	},
-
-	/**
-	 * Gets a unique number for this CKEDITOR execution session. It returns
-	 * progressive numbers starting at 1.
-	 * @function
-	 * @returns {Number} A unique number.
-	 * @example
-	 * alert( CKEDITOR.tools.<b>getNextNumber()</b> );  // "1" (e.g.)
-	 * alert( CKEDITOR.tools.<b>getNextNumber()</b> );  // "2"
-	 */
-	getNextNumber : (function()
-	{
-		var last = 0;
-		return function()
-		{
-			return ++last;
-		};
-	})(),
-
-	/**
-	 * Creates a function override.
-	 * @param {Function} originalFunction The function to be overridden.
-	 * @param {Function} functionBuilder A function that returns the new
-	 *		function. The original function reference will be passed to this
-	 *		function.
-	 * @returns {Function} The new function.
-	 * @example
-	 * var example =
-	 * {
-	 *     myFunction : function( name )
-	 *     {
-	 *         alert( 'Name: ' + name );
-	 *     }
-	 * };
-	 *
-	 * example.myFunction = CKEDITOR.tools.override( example.myFunction, function( myFunctionOriginal )
-	 *     {
-	 *         return function( name )
-	 *             {
-	 *                 alert( 'Override Name: ' + name );
-	 *                 myFunctionOriginal.call( this, name );
-	 *             };
-	 *     });
-	 */
-	override : function( originalFunction, functionBuilder )
-	{
-		return functionBuilder( originalFunction );
-	},
-
-	/**
-	 * Executes a function after specified delay.
-	 * @param {Function} func The function to be executed.
-	 * @param {Number} [milliseconds] The amount of time (millisecods) to wait
-	 *		to fire the function execution. Defaults to zero.
-	 * @param {Object} [scope] The object to hold the function execution scope
-	 *		(the "this" object). By default the "window" object.
-	 * @param {Object|Array} [args] A single object, or an array of objects, to
-	 *		pass as arguments to the function.
-	 * @param {Object} [ownerWindow] The window that will be used to set the
-	 *		timeout. By default the current "window".
-	 * @returns {Object} A value that can be used to cancel the function execution.
-	 * @example
-	 * CKEDITOR.tools.<b>setTimeout(
-	 *     function()
-	 *     {
-	 *         alert( 'Executed after 2 seconds' );
-	 *     },
-	 *     2000 )</b>;
-	 */
-	setTimeout : function( func, milliseconds, scope, args, ownerWindow )
-	{
-		if ( !ownerWindow )
-			ownerWindow = window;
-
-		if ( !scope )
-			scope = ownerWindow;
-
-		return ownerWindow.setTimeout(
-			function()
-			{
-				if ( args )
-					func.apply( scope, [].concat( args ) ) ;
-				else
-					func.apply( scope ) ;
-			},
-			milliseconds || 0 );
-	},
-
-	/**
-	 * Remove spaces from the start and the end of a string. The following
-	 * characters are removed: space, tab, line break, line feed.
-	 * @function
-	 * @param {String} str The text from which remove the spaces.
-	 * @returns {String} The modified string without the boundary spaces.
-	 * @example
-	 * alert( CKEDITOR.tools.trim( '  example ' );  // "example"
-	 */
-	trim : (function()
-	{
-		// We are not using \s because we don't want "non-breaking spaces" to be caught.
-		var trimRegex = /(?:^[ \t\n\r]+)|(?:[ \t\n\r]+$)/g;
-		return function( str )
-		{
-			return str.replace( trimRegex, '' ) ;
-		};
-	})(),
-
-	/**
-	 * Remove spaces from the start (left) of a string. The following
-	 * characters are removed: space, tab, line break, line feed.
-	 * @function
-	 * @param {String} str The text from which remove the spaces.
-	 * @returns {String} The modified string excluding the removed spaces.
-	 * @example
-	 * alert( CKEDITOR.tools.ltrim( '  example ' );  // "example "
-	 */
-	ltrim : (function()
-	{
-		// We are not using \s because we don't want "non-breaking spaces" to be caught.
-		var trimRegex = /^[ \t\n\r]+/g;
-		return function( str )
-		{
-			return str.replace( trimRegex, '' ) ;
-		};
-	})(),
-
-	/**
-	 * Remove spaces from the end (right) of a string. The following
-	 * characters are removed: space, tab, line break, line feed.
-	 * @function
-	 * @param {String} str The text from which remove the spaces.
-	 * @returns {String} The modified string excluding the removed spaces.
-	 * @example
-	 * alert( CKEDITOR.tools.ltrim( '  example ' );  // "  example"
-	 */
-	rtrim : (function()
-	{
-		// We are not using \s because we don't want "non-breaking spaces" to be caught.
-		var trimRegex = /[ \t\n\r]+$/g;
-		return function( str )
-		{
-			return str.replace( trimRegex, '' ) ;
-		};
-	})(),
-
-	/**
-	 * Returns the index of an element in an array.
-	 * @param {Array} array The array to be searched.
-	 * @param {Object} entry The element to be found.
-	 * @returns {Number} The (zero based) index of the first entry that matches
-	 *		the entry, or -1 if not found.
-	 * @example
-	 * var letters = [ 'a', 'b', 'c' ];
-	 * alert( CKEDITOR.tools.indexOf( letters, 'b' ) );  "1"
-	 */
-	indexOf : function( array, entry )
-	{
-		for ( var i = 0, len = array.length ; i < len ; i++ )
-		{
-			if ( array[ i ] == entry )
-				return i;
-		}
-		return -1;
-	}
-};
+		arrayCompare : function( arrayA, arrayB )
+		{
+			if ( !arrayA && !arrayB )
+				return true;
+
+			if ( !arrayA || !arrayB || arrayA.length != arrayB.length )
+				return false;
+
+			for ( var i = 0 ; i < arrayA.length ; i++ )
+			{
+				if ( arrayA[ i ] != arrayB[ i ] )
+					return false;
+			}
+
+			return true;
+		},
+
+		/**
+		 * Creates a deep copy of an object.
+		 * Attention: there is no support for recursive references.
+		 * @param {Object} object The object to be cloned.
+		 * @returns {Object} The object clone.
+		 * @example
+		 * var obj =
+		 *     {
+		 *         name : 'John',
+		 *         cars :
+		 *             {
+		 *                 Mercedes : { color : 'blue' },
+		 *                 Porsche : { color : 'red' }
+		 *             }
+		 *     };
+		 * var clone = CKEDITOR.tools.clone( obj );
+		 * clone.name = 'Paul';
+		 * clone.cars.Porsche.color = 'silver';
+		 * alert( obj.name );	// John
+		 * alert( clone.name );	// Paul
+		 * alert( obj.cars.Porsche.color );	// red
+		 * alert( clone.cars.Porsche.color );	// silver
+		 */
+		clone : function( obj )
+		{
+			var clone;
+
+			// Array.
+			if ( obj && ( obj instanceof Array ) )
+			{
+				clone = [];
+
+				for ( var i = 0 ; i < obj.length ; i++ )
+					clone[ i ] = this.clone( obj[ i ] );
+
+				return clone;
+			}
+
+			// "Static" types.
+			if ( obj === null
+				|| ( typeof( obj ) != 'object' )
+				|| ( obj instanceof String )
+				|| ( obj instanceof Number )
+				|| ( obj instanceof Boolean )
+				|| ( obj instanceof Date ) )
+			{
+				return obj;
+			}
+
+			// Objects.
+			clone = new obj.constructor();
+
+			for ( var propertyName in obj )
+			{
+				var property = obj[ propertyName ];
+				clone[ propertyName ] = this.clone( property );
+			}
+
+			return clone;
+		},
+
+		/**
+		 * Copy the properties from one object to another. By default, properties
+		 * already present in the target object <strong>are not</strong> overwritten.
+		 * @param {Object} target The object to be extended.
+		 * @param {Object} source[,souce(n)] The objects from which copy
+		 *		properties. Any number of objects can be passed to this function.
+		 * @param {Boolean} [overwrite] If 'true' is specified it indicates that
+		 *            properties already present in the target object could be
+		 *            overwritten by subsequent objects.
+		 * @param {Object} [properties] Only properties within the specified names
+		 *            list will be received from the source object.
+		 * @returns {Object} the extended object (target).
+		 * @example
+		 * // Create the sample object.
+		 * var myObject =
+		 * {
+		 *     prop1 : true
+		 * };
+		 *
+		 * // Extend the above object with two properties.
+		 * CKEDITOR.tools.extend( myObject,
+		 *     {
+		 *         prop2 : true,
+		 *         prop3 : true
+		 *     } );
+		 *
+		 * // Alert "prop1", "prop2" and "prop3".
+		 * for ( var p in myObject )
+		 *     alert( p );
+		 */
+		extend : function( target )
+		{
+			var argsLength = arguments.length,
+				overwrite, propertiesList;
+
+			if ( typeof ( overwrite = arguments[ argsLength - 1 ] ) == 'boolean')
+				argsLength--;
+			else if ( typeof ( overwrite = arguments[ argsLength - 2 ] ) == 'boolean' )
+			{
+				propertiesList = arguments [ argsLength -1 ];
+				argsLength-=2;
+			}
+			for ( var i = 1 ; i < argsLength ; i++ )
+			{
+				var source = arguments[ i ];
+				for ( var propertyName in source )
+				{
+					// Only copy existed fields if in overwrite mode.
+					if ( overwrite === true || target[ propertyName ] == undefined )
+					{
+						// Only copy  specified fields if list is provided.
+						if ( !propertiesList || ( propertyName in propertiesList ) )
+							target[ propertyName ] = source[ propertyName ];
+
+					}
+				}
+			}
+
+			return target;
+		},
+
+		/**
+		 * Creates an object which is an instance of a class which prototype is a
+		 * predefined object. All properties defined in the source object are
+		 * automatically inherited by the resulting object, including future
+		 * changes to it.
+		 * @param {Object} source The source object to be used as the prototype for
+		 *		the final object.
+		 * @returns {Object} The resulting copy.
+		 */
+		prototypedCopy : function( source )
+		{
+			var copy = function()
+			{};
+			copy.prototype = source;
+			return new copy();
+		},
+
+		/**
+		 * Checks if an object is an Array.
+		 * @param {Object} object The object to be checked.
+		 * @type Boolean
+		 * @returns <i>true</i> if the object is an Array, otherwise <i>false</i>.
+		 * @example
+		 * alert( CKEDITOR.tools.isArray( [] ) );      // "true"
+		 * alert( CKEDITOR.tools.isArray( 'Test' ) );  // "false"
+		 */
+		isArray : function( object )
+		{
+			return ( !!object && object instanceof Array );
+		},
+
+		/**
+		 * Transforms a CSS property name to its relative DOM style name.
+		 * @param {String} cssName The CSS property name.
+		 * @returns {String} The transformed name.
+		 * @example
+		 * alert( CKEDITOR.tools.cssStyleToDomStyle( 'background-color' ) );  // "backgroundColor"
+		 * alert( CKEDITOR.tools.cssStyleToDomStyle( 'float' ) );             // "cssFloat"
+		 */
+		cssStyleToDomStyle : function( cssName )
+		{
+			if ( cssName == 'float' )
+				return 'cssFloat';
+			else
+			{
+				return cssName.replace( /-./g, function( match )
+					{
+						return match.substr( 1 ).toUpperCase();
+					});
+			}
+		},
+
+		/**
+		 * Replace special HTML characters in a string with their relative HTML
+		 * entity values.
+		 * @param {String} text The string to be encoded.
+		 * @returns {String} The encode string.
+		 * @example
+		 * alert( CKEDITOR.tools.htmlEncode( 'A > B & C < D' ) );  // "A &amp;gt; B &amp;amp; C &amp;lt; D"
+		 */
+		htmlEncode : function( text )
+		{
+			var standard = function( text )
+			{
+				var span = new CKEDITOR.dom.element( 'span' );
+				span.setText( text );
+				return span.getHtml();
+			};
+
+			this.htmlEncode = ( standard( '>' ) == '>' ) ?
+				function( text )
+				{
+					// WebKit does't encode the ">" character, which makes sense, but
+					// it's different than other browsers.
+					return standard( text ).replace( />/g, '&gt;' );
+				} :
+				standard;
+
+			return this.htmlEncode( text );
+		},
+
+		/**
+		 * Gets a unique number for this CKEDITOR execution session. It returns
+		 * progressive numbers starting at 1.
+		 * @function
+		 * @returns {Number} A unique number.
+		 * @example
+		 * alert( CKEDITOR.tools.<b>getNextNumber()</b> );  // "1" (e.g.)
+		 * alert( CKEDITOR.tools.<b>getNextNumber()</b> );  // "2"
+		 */
+		getNextNumber : (function()
+		{
+			var last = 0;
+			return function()
+			{
+				return ++last;
+			};
+		})(),
+
+		/**
+		 * Creates a function override.
+		 * @param {Function} originalFunction The function to be overridden.
+		 * @param {Function} functionBuilder A function that returns the new
+		 *		function. The original function reference will be passed to this
+		 *		function.
+		 * @returns {Function} The new function.
+		 * @example
+		 * var example =
+		 * {
+		 *     myFunction : function( name )
+		 *     {
+		 *         alert( 'Name: ' + name );
+		 *     }
+		 * };
+		 *
+		 * example.myFunction = CKEDITOR.tools.override( example.myFunction, function( myFunctionOriginal )
+		 *     {
+		 *         return function( name )
+		 *             {
+		 *                 alert( 'Override Name: ' + name );
+		 *                 myFunctionOriginal.call( this, name );
+		 *             };
+		 *     });
+		 */
+		override : function( originalFunction, functionBuilder )
+		{
+			return functionBuilder( originalFunction );
+		},
+
+		/**
+		 * Executes a function after specified delay.
+		 * @param {Function} func The function to be executed.
+		 * @param {Number} [milliseconds] The amount of time (millisecods) to wait
+		 *		to fire the function execution. Defaults to zero.
+		 * @param {Object} [scope] The object to hold the function execution scope
+		 *		(the "this" object). By default the "window" object.
+		 * @param {Object|Array} [args] A single object, or an array of objects, to
+		 *		pass as arguments to the function.
+		 * @param {Object} [ownerWindow] The window that will be used to set the
+		 *		timeout. By default the current "window".
+		 * @returns {Object} A value that can be used to cancel the function execution.
+		 * @example
+		 * CKEDITOR.tools.<b>setTimeout(
+		 *     function()
+		 *     {
+		 *         alert( 'Executed after 2 seconds' );
+		 *     },
+		 *     2000 )</b>;
+		 */
+		setTimeout : function( func, milliseconds, scope, args, ownerWindow )
+		{
+			if ( !ownerWindow )
+				ownerWindow = window;
+
+			if ( !scope )
+				scope = ownerWindow;
+
+			return ownerWindow.setTimeout(
+				function()
+				{
+					if ( args )
+						func.apply( scope, [].concat( args ) ) ;
+					else
+						func.apply( scope ) ;
+				},
+				milliseconds || 0 );
+		},
+
+		/**
+		 * Remove spaces from the start and the end of a string. The following
+		 * characters are removed: space, tab, line break, line feed.
+		 * @function
+		 * @param {String} str The text from which remove the spaces.
+		 * @returns {String} The modified string without the boundary spaces.
+		 * @example
+		 * alert( CKEDITOR.tools.trim( '  example ' );  // "example"
+		 */
+		trim : (function()
+		{
+			// We are not using \s because we don't want "non-breaking spaces" to be caught.
+			var trimRegex = /(?:^[ \t\n\r]+)|(?:[ \t\n\r]+$)/g;
+			return function( str )
+			{
+				return str.replace( trimRegex, '' ) ;
+			};
+		})(),
+
+		/**
+		 * Remove spaces from the start (left) of a string. The following
+		 * characters are removed: space, tab, line break, line feed.
+		 * @function
+		 * @param {String} str The text from which remove the spaces.
+		 * @returns {String} The modified string excluding the removed spaces.
+		 * @example
+		 * alert( CKEDITOR.tools.ltrim( '  example ' );  // "example "
+		 */
+		ltrim : (function()
+		{
+			// We are not using \s because we don't want "non-breaking spaces" to be caught.
+			var trimRegex = /^[ \t\n\r]+/g;
+			return function( str )
+			{
+				return str.replace( trimRegex, '' ) ;
+			};
+		})(),
+
+		/**
+		 * Remove spaces from the end (right) of a string. The following
+		 * characters are removed: space, tab, line break, line feed.
+		 * @function
+		 * @param {String} str The text from which remove the spaces.
+		 * @returns {String} The modified string excluding the removed spaces.
+		 * @example
+		 * alert( CKEDITOR.tools.ltrim( '  example ' );  // "  example"
+		 */
+		rtrim : (function()
+		{
+			// We are not using \s because we don't want "non-breaking spaces" to be caught.
+			var trimRegex = /[ \t\n\r]+$/g;
+			return function( str )
+			{
+				return str.replace( trimRegex, '' ) ;
+			};
+		})(),
+
+		/**
+		 * Returns the index of an element in an array.
+		 * @param {Array} array The array to be searched.
+		 * @param {Object} entry The element to be found.
+		 * @returns {Number} The (zero based) index of the first entry that matches
+		 *		the entry, or -1 if not found.
+		 * @example
+		 * var letters = [ 'a', 'b', 0, 'c', false ];
+		 * alert( CKEDITOR.tools.indexOf( letters, '0' ) );  "-1" because 0 !== '0'
+		 * alert( CKEDITOR.tools.indexOf( letters, false ) );  "4" because 0 !== false
+		 */
+		indexOf :
+			// #2514: We should try to use Array.indexOf if it does exist.
+			( Array.prototype.indexOf ) ?
+				function( array, entry )
+					{
+						return array.indexOf( entry );
+					}
+			:
+				function( array, entry )
+				{
+					for ( var i = 0, len = array.length ; i < len ; i++ )
+					{
+						if ( array[ i ] === entry )
+							return i;
+					}
+					return -1;
+				},
+
+		bind : function( func, obj )
+		{
+			return function() { return func.apply( obj, arguments ); };
+		},
+
+		/**
+		 * Class creation based on prototype inheritance, with supports of the
+		 * following features:
+		 * <ul>
+		 * <li> Static fields </li>
+		 * <li> Private fields </li>
+		 * <li> Public(prototype) fields </li>
+		 * <li> Chainable base class constructor </li>
+		 * </ul>
+		 *
+		 * @param {Object} definiton (Optional)The class definiton object.
+		 */
+		createClass : function( definition )
+		{
+			var $ = definition.$,
+				baseClass = definition.base,
+				privates = definition.privates || definition._,
+				proto = definition.proto,
+				statics = definition.statics;
+
+			if ( privates )
+			{
+				var originalConstructor = $;
+				$ = function()
+				{
+					// Create (and get) the private namespace.
+					var _ = this._ || ( this._ = {} );
+
+					// Make some magic so "this" will refer to the main
+					// instance when coding private functions.
+					for ( var privateName in privates )
+					{
+						var priv = privates[ privateName ];
+
+						_[ privateName ] =
+							( typeof priv == 'function' ) ? CKEDITOR.tools.bind( priv, this ) : priv;
+					}
+
+					originalConstructor.apply( this, arguments );
+				};
+			}
+
+			if ( baseClass )
+			{
+				$.prototype = this.prototypedCopy( baseClass.prototype );
+				$.prototype.constructor = $;
+				$.prototype.base = function()
+				{
+					this.base = baseClass.prototype.base;
+					baseClass.apply( this, arguments );
+					this.base = arguments.callee;
+				};
+			}
+
+			if ( proto )
+				this.extend( $.prototype, proto, true );
+
+			if ( statics )
+				this.extend( $, statics, true );
+
+			return $;
+		},
+
+		addFunction : function( fn, scope )
+		{
+			return functions.push( function()
+				{
+					fn.apply( scope || this, arguments );
+				}) - 1;
+		},
+
+		callFunction : function( index )
+		{
+			var fn = functions[ index ];
+			return fn.apply( window, Array.prototype.slice.call( arguments, 1 ) );
+		},
+
+		cssLength : (function()
+		{
+			var decimalRegex = /^\d+(?:\.\d+)?$/;
+			return function( length )
+			{
+				return length + ( decimalRegex.test( length ) ? 'px' : '' );
+			};
+		})()
+	};
+})();
 
 // PACKAGER_RENAME( CKEDITOR.tools )
Index: /CKEditor/branches/versions/3.0.x/_source/core/ui.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/ui.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/ui.js	(revision 3747)
@@ -49,7 +49,9 @@
 	add : function( name, type, definition )
 	{
-		var item = this._.handlers[ type ].create( definition );
-		item.name = name;
-		this._.items[ name ] = item;
+		this._.items[ name ] =
+		{
+			type : type,
+			args : Array.prototype.slice.call( arguments, 2 )
+		};
 	},
 
@@ -59,7 +61,10 @@
 	 * @example
 	 */
-	get : function( name )
+	create : function( name )
 	{
-		return this._.items[ name ] || null;
+		var item	= this._.items[ name ],
+			handler	= item && this._.handlers[ item.type ];
+
+		return handler && handler.create.apply( this, item.args );
 	},
 
Index: /CKEditor/branches/versions/3.0.x/_source/core/xml.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/core/xml.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/core/xml.js	(revision 3747)
@@ -25,6 +25,7 @@
 	else
 	{
+		var data = ( xmlObjectOrData || '' ).replace( /&nbsp;/g, '\xA0' );
 		if ( window.DOMParser )
-			baseXml = (new DOMParser()).parseFromString( xmlObjectOrData || '', 'text/xml' );
+			baseXml = (new DOMParser()).parseFromString( data, 'text/xml' );
 		else if ( window.ActiveXObject )
 		{
@@ -40,5 +41,5 @@
 				baseXml.resolveExternals = false;
 				baseXml.validateOnParse = false;
-				baseXml.loadXML( xmlObjectOrData || '' );
+				baseXml.loadXML( data );
 			}
 		}
Index: /CKEditor/branches/versions/3.0.x/_source/lang/_languages.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/_languages.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/_languages.js	(revision 3747)
@@ -0,0 +1,82 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+var CKEDITOR_LANGS = (function()
+{
+	var langs =
+	{
+		af		: 'Afrikaans',
+		ar		: 'Arabic',
+		bg		: 'Bulgarian',
+		bn		: 'Bengali/Bangla',
+		bs		: 'Bosnian',
+		ca		: 'Catalan',
+		cs		: 'Czech',
+		da		: 'Danish',
+		de		: 'German',
+		el		: 'Greek',
+		en		: 'English',
+		'en-au'	: 'English (Australia)',
+		'en-ca'	: 'English (Canadian)',
+		'en-uk'	: 'English (United Kingdom)',
+		eo		: 'Esperanto',
+		es		: 'Spanish',
+		et		: 'Estonian',
+		eu		: 'Basque',
+		fa		: 'Persian',
+		fi		: 'Finnish',
+		fo		: 'Faroese',
+		fr		: 'French',
+		'fr-ca'	: 'French (Canada)',
+		gl		: 'Galician',
+		gu		: 'Gujarati',
+		he		: 'Hebrew',
+		hi		: 'Hindi',
+		hr		: 'Croatian',
+		hu		: 'Hungarian',
+		is		: 'Icelandic',
+		it		: 'Italian',
+		ja		: 'Japanese',
+		km		: 'Khmer',
+		ko		: 'Korean',
+		lt		: 'Lithuanian',
+		lv		: 'Latvian',
+		mn		: 'Mongolian',
+		ms		: 'Malay',
+		nb		: 'Norwegian Bokmal',
+		nl		: 'Dutch',
+		no		: 'Norwegian',
+		pl		: 'Polish',
+		pt		: 'Portuguese (Portugal)',
+		'pt-br'	: 'Portuguese (Brazil)',
+		ro		: 'Romanian',
+		ru		: 'Russian',
+		sk		: 'Slovak',
+		sl		: 'Slovenian',
+		sr		: 'Serbian (Cyrillic)',
+		'sr-latn'	: 'Serbian (Latin)',
+		sv		: 'Swedish',
+		th		: 'Thai',
+		tr		: 'Turkish',
+		uk		: 'Ukrainian',
+		vi		: 'Vietnamese',
+		zh		: 'Chinese Traditional',
+		'zh-cn'	: 'Chinese Simplified'
+	};
+
+	var langsArray = [];
+
+	for ( var code in langs )
+	{
+		langsArray.push( { code : code, name : langs[ code ] } );
+	}
+
+	langsArray.sort( function( a, b )
+		{
+			return ( a.name < b.name ) ? -1 : 1;
+		});
+
+	return langsArray;
+})();
Index: /CKEditor/branches/versions/3.0.x/_source/lang/_translationstatus.txt
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/_translationstatus.txt	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/_translationstatus.txt	(revision 3747)
@@ -0,0 +1,59 @@
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+
+af.js      Found: 312 Missing: 122
+ar.js      Found: 327 Missing: 107
+bg.js      Found: 305 Missing: 129
+bn.js      Found: 307 Missing: 127
+bs.js      Found: 210 Missing: 224
+ca.js      Found: 327 Missing: 107
+cs.js      Found: 327 Missing: 107
+da.js      Found: 326 Missing: 108
+de.js      Found: 421 Missing: 13
+el.js      Found: 311 Missing: 123
+en-au.js   Found: 395 Missing: 39
+en-ca.js   Found: 395 Missing: 39
+en-uk.js   Found: 395 Missing: 39
+eo.js      Found: 282 Missing: 152
+es.js      Found: 332 Missing: 102
+et.js      Found: 326 Missing: 108
+eu.js      Found: 327 Missing: 107
+fa.js      Found: 327 Missing: 107
+fi.js      Found: 325 Missing: 109
+fo.js      Found: 326 Missing: 108
+fr-ca.js   Found: 327 Missing: 107
+fr.js      Found: 369 Missing: 65
+gl.js      Found: 308 Missing: 126
+gu.js      Found: 326 Missing: 108
+he.js      Found: 332 Missing: 102
+hi.js      Found: 327 Missing: 107
+hr.js      Found: 327 Missing: 107
+hu.js      Found: 326 Missing: 108
+is.js      Found: 332 Missing: 102
+it.js      Found: 325 Missing: 109
+ja.js      Found: 327 Missing: 107
+km.js      Found: 299 Missing: 135
+ko.js      Found: 318 Missing: 116
+lt.js      Found: 331 Missing: 103
+lv.js      Found: 308 Missing: 126
+mn.js      Found: 326 Missing: 108
+ms.js      Found: 287 Missing: 147
+nb.js      Found: 325 Missing: 109
+nl.js      Found: 327 Missing: 107
+no.js      Found: 325 Missing: 109
+pl.js      Found: 325 Missing: 109
+pt-br.js   Found: 325 Missing: 109
+pt.js      Found: 307 Missing: 127
+ro.js      Found: 326 Missing: 108
+ru.js      Found: 332 Missing: 102
+sk.js      Found: 327 Missing: 107
+sl.js      Found: 325 Missing: 109
+sr-latn.js Found: 301 Missing: 133
+sr.js      Found: 301 Missing: 133
+sv.js      Found: 324 Missing: 110
+th.js      Found: 312 Missing: 122
+tr.js      Found: 332 Missing: 102
+uk.js      Found: 327 Missing: 107
+vi.js      Found: 326 Missing: 108
+zh-cn.js   Found: 332 Missing: 102
+zh.js      Found: 327 Missing: 107
Index: /CKEditor/branches/versions/3.0.x/_source/lang/af.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/af.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/af.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Afrikaans language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['af'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Source',
+	newPage			: 'Nuwe Bladsy',
+	save			: 'Bewaar',
+	preview			: 'Voorskou',
+	cut				: 'Uitsny ',
+	copy			: 'Kopieer',
+	paste			: 'Byvoeg',
+	print			: 'Druk',
+	underline		: 'Onderstreep',
+	bold			: 'Vet',
+	italic			: 'Skuins',
+	selectAll		: 'Selekteer alles',
+	removeFormat	: 'Formaat verweider',
+	strike			: 'Gestreik',
+	subscript		: 'Subscript',
+	superscript		: 'Superscript',
+	horizontalrule	: 'Horisontale lyn byvoeg',
+	pagebreak		: 'Bladsy breek byvoeg',
+	unlink			: 'Skakel verweider',
+	undo			: 'Ont-skep',
+	redo			: 'Her-skep',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Server deurblaai',
+		url				: 'URL',
+		protocol		: 'Protokol',
+		upload			: 'Oplaai',
+		uploadSubmit	: 'Stuur dit na die Server',
+		image			: 'Beeld',
+		flash			: 'Flash',
+		form			: 'Form',
+		checkbox		: 'HakBox',
+		radio		: 'PuntBox',
+		textField		: 'Byvoegbare karakter strook',
+		textarea		: 'Byvoegbare karakter area',
+		hiddenField		: 'Blinde strook',
+		button			: 'Knop',
+		select	: 'Opklapbare keuse strook',
+		imageButton		: 'Beeld knop',
+		notSet			: '<geen instelling>',
+		id				: 'Id',
+		name			: 'Naam',
+		langDir			: 'Taal rigting',
+		langDirLtr		: 'Links na regs (LTR)',
+		langDirRtl		: 'Regs na links (RTL)',
+		langCode		: 'Taal kode',
+		longDescr		: 'Lang beskreiwing URL',
+		cssClass		: 'Skakel Tiepe',
+		advisoryTitle	: 'Voorbeveelings Titel',
+		cssStyle		: 'Styl',
+		ok				: 'OK',
+		cancel			: 'Kanseleer',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'Ingewikkeld',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Spesiaale Karakter byvoeg',
+		title		: 'Kies spesiale karakter'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Skakel byvoeg/verander',
+		menu		: 'Verander skakel',
+		title		: 'Skakel',
+		info		: 'Skakel informasie',
+		target		: 'Mikpunt',
+		upload		: 'Oplaai',
+		advanced	: 'Ingewikkeld',
+		type		: 'Skakel soort',
+		toAnchor	: 'Skakel na plekhouers in text',
+		toEmail		: 'E-Mail',
+		target		: 'Mikpunt',
+		targetNotSet	: '<geen instelling>',
+		targetFrame	: '<raam>',
+		targetPopup	: '<popup venster>',
+		targetNew	: 'Nuwe Venster (_blank)',
+		targetTop	: 'Boonste Venster (_top)',
+		targetSelf	: 'Selfde Venster (_self)',
+		targetParent	: 'Vorige Venster (_parent)',
+		targetFrameName	: 'Mikpunt Venster Naam',
+		targetPopupName	: 'Popup Venster Naam',
+		popupFeatures	: 'Popup Venster Geaartheid',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Status Balk',
+		popupLocationBar	: 'Adres Balk',
+		popupToolbar	: 'Gereedskap Balk',
+		popupMenuBar	: 'Menu Balk',
+		popupFullScreen	: 'Voll Skerm (IE)',
+		popupScrollBars	: 'Gleibalkstuk',
+		popupDependent	: 'Afhanklik (Netscape)',
+		popupWidth		: 'Weite',
+		popupLeft		: 'Links Posisie',
+		popupHeight		: 'Hoogde',
+		popupTop		: 'Bo Posisie',
+		id				: 'Id', // MISSING
+		langDir			: 'Taal rigting',
+		langDirNotSet	: '<geen instelling>',
+		langDirLTR		: 'Links na regs (LTR)',
+		langDirRTL		: 'Regs na links (RTL)',
+		acccessKey		: 'Toegang sleutel',
+		name			: 'Naam',
+		langCode		: 'Taal rigting',
+		tabIndex		: 'Tab Index',
+		advisoryTitle	: 'Voorbeveelings Titel',
+		advisoryContentType	: 'Voorbeveelings inhoud soort',
+		cssClasses		: 'Skakel Tiepe',
+		charset			: 'Geskakelde voorbeeld karakterstel',
+		styles			: 'Styl',
+		selectAnchor	: 'Kies \'n plekhouer',
+		anchorName		: 'Volgens plekhouer naam',
+		anchorId		: 'Volgens element Id',
+		emailAddress	: 'E-Mail Adres',
+		emailSubject	: 'Boodskap Opskrif',
+		emailBody		: 'Boodskap Inhoud',
+		noAnchors		: '(Geen plekhouers beskikbaar in dokument}',
+		noUrl			: 'Voeg asseblief die URL in',
+		noEmail			: 'Voeg asseblief die e-mail adres in'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Plekhouer byvoeg/verander',
+		menu		: 'Plekhouer eienskappe',
+		title		: 'Plekhouer eienskappe',
+		name		: 'Plekhouer Naam',
+		errorName	: 'Voltooi die plekhouer naam asseblief'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Find and Replace', // MISSING
+		find				: 'Vind',
+		replace				: 'Vervang',
+		findWhat			: 'Soek wat:',
+		replaceWith			: 'Vervang met:',
+		notFoundMsg			: 'Die gespesifiseerde karakters word nie gevind nie.',
+		matchCase			: 'Vergelyk karakter skryfweise',
+		matchWord			: 'Vergelyk komplete woord',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Vervang alles',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tabel',
+		title		: 'Tabel eienskappe',
+		menu		: 'Tabel eienskappe',
+		deleteTable	: 'Tabel verweider',
+		rows		: 'Reie',
+		columns		: 'Kolome',
+		border		: 'Kant groote',
+		align		: 'Parideering',
+		alignNotSet	: '<geen instelling>',
+		alignLeft	: 'Links',
+		alignCenter	: 'Middel',
+		alignRight	: 'Regs',
+		width		: 'Weite',
+		widthPx		: 'pixels',
+		widthPc		: 'percent',
+		height		: 'Hoogde',
+		cellSpace	: 'Cell spasieering',
+		cellPad		: 'Cell buffer',
+		caption		: 'Beskreiwing',
+		summary		: 'Opsomming',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Cell',
+			insertBefore	: 'Insert Cell Before', // MISSING
+			insertAfter		: 'Insert Cell After', // MISSING
+			deleteCell		: 'Cell verweider',
+			merge			: 'Cell verenig',
+			mergeRight		: 'Merge Right', // MISSING
+			mergeDown		: 'Merge Down', // MISSING
+			splitHorizontal	: 'Split Cell Horizontally', // MISSING
+			splitVertical	: 'Split Cell Vertically', // MISSING
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Ry',
+			insertBefore	: 'Insert Row Before', // MISSING
+			insertAfter		: 'Insert Row After', // MISSING
+			deleteRow		: 'Ry verweider'
+		},
+
+		column :
+		{
+			menu			: 'Kolom',
+			insertBefore	: 'Insert Column Before', // MISSING
+			insertAfter		: 'Insert Column After', // MISSING
+			deleteColumn	: 'Kolom verweider'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Knop eienskappe',
+		text		: 'Karakters (Waarde)',
+		type		: 'Soort',
+		typeBtn		: 'Knop',
+		typeSbm		: 'Indien',
+		typeRst		: 'Reset'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'HakBox eienskappe',
+		radioTitle	: 'PuntBox eienskappe',
+		value		: 'Waarde',
+		selected	: 'Uitgekies'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Form eienskappe',
+		menu		: 'Form eienskappe',
+		action		: 'Aksie',
+		method		: 'Metode',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Mikpunt',
+		targetNotSet	: '<geen instelling>',
+		targetNew	: 'Nuwe Venster (_blank)',
+		targetTop	: 'Boonste Venster (_top)',
+		targetSelf	: 'Selfde Venster (_self)',
+		targetParent	: 'Vorige Venster (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Opklapbare keuse strook eienskappe',
+		selectInfo	: 'Info',
+		opAvail		: 'Beskikbare Opsies',
+		value		: 'Waarde',
+		size		: 'Grote',
+		lines		: 'lyne',
+		chkMulti	: 'Laat meerere keuses toe',
+		opText		: 'Karakters',
+		opValue		: 'Waarde',
+		btnAdd		: 'Byvoeg',
+		btnModify	: 'Verander',
+		btnUp		: 'Op',
+		btnDown		: 'Af',
+		btnSetValue : 'Stel as uitgekiesde waarde',
+		btnDelete	: 'Verweider'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Karakter area eienskappe',
+		cols		: 'Kolom',
+		rows		: 'Reie'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Karakter strook eienskappe',
+		name		: 'Naam',
+		value		: 'Waarde',
+		charWidth	: 'Karakter weite',
+		maxChars	: 'Maximale karakters',
+		type		: 'Soort',
+		typeText	: 'Karakters',
+		typePass	: 'Wagwoord'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Blinde strook eienskappe',
+		name	: 'Naam',
+		value	: 'Waarde'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Beeld eienskappe',
+		titleButton	: 'Beeld knop eienskappe',
+		menu		: 'Beeld eienskappe',
+		infoTab	: 'Beeld informasie',
+		btnUpload	: 'Stuur dit na die Server',
+		url		: 'URL',
+		upload	: 'Uplaai',
+		alt		: 'Alternatiewe beskrywing',
+		width		: 'Weidte',
+		height	: 'Hoogde',
+		lockRatio	: 'Behou preporsie',
+		resetSize	: 'Herstel groote',
+		border	: 'Kant',
+		hSpace	: 'HSpasie',
+		vSpace	: 'VSpasie',
+		align		: 'Paradeer',
+		alignLeft	: 'Links',
+		alignAbsBottom: 'Abs Onder',
+		alignAbsMiddle: 'Abs Middel',
+		alignBaseline	: 'Baseline',
+		alignBottom	: 'Onder',
+		alignMiddle	: 'Middel',
+		alignRight	: 'Regs',
+		alignTextTop	: 'Text Bo',
+		alignTop	: 'Bo',
+		preview	: 'Voorskou',
+		alertUrl	: 'Voeg asseblief Beeld URL in.',
+		linkTab	: 'Skakel',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Flash eienskappe',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Flash eienskappe',
+		chkPlay		: 'Automaties Speel',
+		chkLoop		: 'Herhaling',
+		chkMenu		: 'Laat Flash Menu toe',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Scale',
+		scaleAll		: 'Wys alles',
+		scaleNoBorder	: 'Geen kante',
+		scaleFit		: 'Presiese pas',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Paradeer',
+		alignLeft	: 'Links',
+		alignAbsBottom: 'Abs Onder',
+		alignAbsMiddle: 'Abs Middel',
+		alignBaseline	: 'Baseline',
+		alignBottom	: 'Onder',
+		alignMiddle	: 'Middel',
+		alignRight	: 'Regs',
+		alignTextTop	: 'Text Bo',
+		alignTop	: 'Bo',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Agtergrond kleur',
+		width	: 'Weidte',
+		height	: 'Hoogde',
+		hSpace	: 'HSpasie',
+		vSpace	: 'VSpasie',
+		validateSrc : 'Voeg asseblief die URL in',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Spelling nagaan',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Nie in woordeboek nie',
+		changeTo		: 'Verander na',
+		btnIgnore		: 'Ignoreer',
+		btnIgnoreAll	: 'Ignoreer na-volgende',
+		btnReplace		: 'Vervang',
+		btnReplaceAll	: 'vervang na-volgende',
+		btnUndo			: 'Ont-skep',
+		noSuggestions	: '- Geen voorstel -',
+		progress		: 'Spelling word beproef...',
+		noMispell		: 'Spellproef kompleet: Geen foute',
+		noChanges		: 'Spellproef kompleet: Geen woord veranderings',
+		oneChange		: 'Spellproef kompleet: Een woord verander',
+		manyChanges		: 'Spellproef kompleet: %1 woorde verander',
+		ieSpellDownload	: 'Geen Spellproefer geinstaleer nie. Wil U dit aflaai?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Smiley',
+		title	: 'Voeg Smiley by'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Genommerde lys',
+	bulletedlist : 'Gepunkte lys',
+	indent : 'Paradeering verleng',
+	outdent : 'Paradeering verkort',
+
+	justify :
+	{
+		left : 'Links rig',
+		center : 'Rig Middel',
+		right : 'Regs rig',
+		block : 'Blok paradeer'
+	},
+
+	blockquote : 'Blockquote', // MISSING
+
+	clipboard :
+	{
+		title		: 'Byvoeg',
+		cutError	: 'U browser se sekuriteit instelling behinder die uitsny aksie. Gebruik asseblief die sleutel kombenasie(Ctrl+X).',
+		copyError	: 'U browser se sekuriteit instelling behinder die kopieerings aksie. Gebruik asseblief die sleutel kombenasie(Ctrl+C).',
+		pasteMsg	: 'Voeg asseblief die inhoud in die gegewe box by met sleutel kombenasie(<STRONG>Ctrl+V</STRONG>) en druk <STRONG>OK</STRONG>.',
+		securityMsg	: 'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.' // MISSING
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Van Word af byvoeg',
+		title : 'Van Word af byvoeg',
+		advice : 'Voeg asseblief die inhoud in die gegewe box by met sleutel kombenasie(<STRONG>Ctrl+V</STRONG>) en druk <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Ignoreer karakter soort defenisies',
+		removeStyle : 'Verweider Styl defenisies'
+	},
+
+	pasteText :
+	{
+		button : 'Voeg slegs karakters by',
+		title : 'Voeg slegs karakters by'
+	},
+
+	templates :
+	{
+		button : 'Templates',
+		title : 'Inhoud Templates',
+		insertOption: 'Vervang bestaande inhoud',
+		selectPromptMsg: 'Kies die template om te gebruik in die editor<br>(Inhoud word vervang!):',
+		emptyListMsg : '(Geen templates gedefinieerd)'
+	},
+
+	showBlocks : 'Show Blocks', // MISSING
+
+	stylesCombo :
+	{
+		label : 'Styl',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Karakter formaat',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Karakter formaat',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normaal',
+		tag_pre : 'Geformateerd',
+		tag_address : 'Adres',
+		tag_h1 : 'Opskrif 1',
+		tag_h2 : 'Opskrif 2',
+		tag_h3 : 'Opskrif 3',
+		tag_h4 : 'Opskrif 4',
+		tag_h5 : 'Opskrif 5',
+		tag_h6 : 'Opskrif 6',
+		tag_div : 'Normaal (DIV)'
+	},
+
+	font :
+	{
+		label : 'Karakters',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Karakters',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Karakter grote',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Karakter grote',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Karakter kleur',
+		bgColorTitle : 'Agtergrond kleur',
+		auto : 'Automaties',
+		more : 'Meer Kleure...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/ar.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/ar.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/ar.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Arabic language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['ar'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'rtl',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'شفرة المصدر',
+	newPage			: 'صفحة جديدة',
+	save			: 'حفظ',
+	preview			: 'معاينة الصفحة',
+	cut				: 'قص',
+	copy			: 'نسخ',
+	paste			: 'لصق',
+	print			: 'طباعة',
+	underline		: 'تسطير',
+	bold			: 'غامق',
+	italic			: 'مائل',
+	selectAll		: 'تحديد الكل',
+	removeFormat	: 'إزالة التنسيقات',
+	strike			: 'يتوسطه خط',
+	subscript		: 'منخفض',
+	superscript		: 'مرتفع',
+	horizontalrule	: 'إدراج خط فاصل',
+	pagebreak		: 'إدخال صفحة جديدة',
+	unlink			: 'إزالة رابط',
+	undo			: 'تراجع',
+	redo			: 'إعادة',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'تصفح الخادم',
+		url				: 'موقع الصورة',
+		protocol		: 'البروتوكول',
+		upload			: 'رفع',
+		uploadSubmit	: 'أرسلها للخادم',
+		image			: 'صورة',
+		flash			: 'فلاش',
+		form			: 'نموذج',
+		checkbox		: 'خانة إختيار',
+		radio		: 'زر خيار',
+		textField		: 'مربع نص',
+		textarea		: 'ناحية نص',
+		hiddenField		: 'إدراج حقل خفي',
+		button			: 'زر ضغط',
+		select	: 'قائمة منسدلة',
+		imageButton		: 'زر صورة',
+		notSet			: '<بدون تحديد>',
+		id				: 'الرقم',
+		name			: 'الاسم',
+		langDir			: 'إتجاه النص',
+		langDirLtr		: 'اليسار لليمين (LTR)',
+		langDirRtl		: 'اليمين لليسار (RTL)',
+		langCode		: 'رمز اللغة',
+		longDescr		: 'عنوان الوصف المفصّل',
+		cssClass		: 'فئات التنسيق',
+		advisoryTitle	: 'تلميح الشاشة',
+		cssStyle		: 'نمط',
+		ok				: 'موافق',
+		cancel			: 'إلغاء الأمر',
+		generalTab		: 'عام',
+		advancedTab		: 'متقدم',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'إدراج  رموز..ِ',
+		title		: 'إدراج رمز'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'إدراج/تحرير رابط',
+		menu		: 'تحرير رابط',
+		title		: 'إرتباط تشعبي',
+		info		: 'معلومات الرابط',
+		target		: 'الهدف',
+		upload		: 'رفع',
+		advanced	: 'متقدم',
+		type		: 'نوع الربط',
+		toAnchor	: 'مكان في هذا المستند',
+		toEmail		: 'بريد إلكتروني',
+		target		: 'الهدف',
+		targetNotSet	: '<بدون تحديد>',
+		targetFrame	: '<إطار>',
+		targetPopup	: '<نافذة منبثقة>',
+		targetNew	: 'إطار جديد (_blank)',
+		targetTop	: 'صفحة كاملة (_top)',
+		targetSelf	: 'نفس الإطار (_self)',
+		targetParent	: 'الإطار الأصل (_parent)',
+		targetFrameName	: 'اسم الإطار الهدف',
+		targetPopupName	: 'تسمية النافذة المنبثقة',
+		popupFeatures	: 'خصائص النافذة المنبثقة',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'شريط الحالة السفلي',
+		popupLocationBar	: 'شريط العنوان',
+		popupToolbar	: 'شريط الأدوات',
+		popupMenuBar	: 'القوائم الرئيسية',
+		popupFullScreen	: 'ملئ الشاشة (IE)',
+		popupScrollBars	: 'أشرطة التمرير',
+		popupDependent	: 'تابع (Netscape)',
+		popupWidth		: 'العرض',
+		popupLeft		: 'التمركز لليسار',
+		popupHeight		: 'الإرتفاع',
+		popupTop		: 'التمركز للأعلى',
+		id				: 'Id', // MISSING
+		langDir			: 'إتجاه النص',
+		langDirNotSet	: '<بدون تحديد>',
+		langDirLTR		: 'اليسار لليمين (LTR)',
+		langDirRTL		: 'اليمين لليسار (RTL)',
+		acccessKey		: 'مفاتيح الإختصار',
+		name			: 'الاسم',
+		langCode		: 'إتجاه النص',
+		tabIndex		: 'الترتيب',
+		advisoryTitle	: 'تلميح الشاشة',
+		advisoryContentType	: 'نوع التلميح',
+		cssClasses		: 'فئات التنسيق',
+		charset			: 'ترميز المادة المطلوبة',
+		styles			: 'نمط',
+		selectAnchor	: 'اختر علامة مرجعية',
+		anchorName		: 'حسب اسم العلامة',
+		anchorId		: 'حسب تعريف العنصر',
+		emailAddress	: 'عنوان بريد إلكتروني',
+		emailSubject	: 'موضوع الرسالة',
+		emailBody		: 'محتوى الرسالة',
+		noAnchors		: '(لا يوجد علامات مرجعية في هذا المستند)',
+		noUrl			: 'فضلاً أدخل عنوان الموقع الذي يشير إليه الرابط',
+		noEmail			: 'فضلاً أدخل عنوان البريد الإلكتروني'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'إدراج/تحرير إشارة مرجعية',
+		menu		: 'خصائص الإشارة المرجعية',
+		title		: 'خصائص الإشارة المرجعية',
+		name		: 'اسم الإشارة المرجعية',
+		errorName	: 'الرجاء كتابة اسم الإشارة المرجعية'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'بحث واستبدال',
+		find				: 'بحث',
+		replace				: 'إستبدال',
+		findWhat			: 'البحث عن:',
+		replaceWith			: 'إستبدال بـ:',
+		notFoundMsg			: 'لم يتم العثور على النص المحدد.',
+		matchCase			: 'مطابقة حالة الأحرف',
+		matchWord			: 'الكلمة بالكامل فقط',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'إستبدال الكل',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'جدول',
+		title		: 'إدراج جدول',
+		menu		: 'إدراج جدول',
+		deleteTable	: 'حذف الجدول',
+		rows		: 'صفوف',
+		columns		: 'أعمدة',
+		border		: 'سمك الحدود',
+		align		: 'المحاذاة',
+		alignNotSet	: '<بدون تحديد>',
+		alignLeft	: 'يسار',
+		alignCenter	: 'وسط',
+		alignRight	: 'يمين',
+		width		: 'العرض',
+		widthPx		: 'بكسل',
+		widthPc		: 'بالمئة',
+		height		: 'الإرتفاع',
+		cellSpace	: 'تباعد الخلايا',
+		cellPad		: 'المسافة البادئة',
+		caption		: 'الوصف',
+		summary		: 'الخلاصة',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'خلية',
+			insertBefore	: 'إدراج خلية قبل',
+			insertAfter		: 'إدراج خلية بعد',
+			deleteCell		: 'حذف خلايا',
+			merge			: 'دمج خلايا',
+			mergeRight		: 'دمج لليمين',
+			mergeDown		: 'دمج للأسفل',
+			splitHorizontal	: 'تقسيم الخلية أفقياً',
+			splitVertical	: 'تقسيم الخلية عمودياً',
+			title			: 'خصائص الخلية',
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'صف',
+			insertBefore	: 'إدراج صف قبل',
+			insertAfter		: 'إدراج صف بعد',
+			deleteRow		: 'حذف صفوف'
+		},
+
+		column :
+		{
+			menu			: 'عمود',
+			insertBefore	: 'إدراج عمود قبل',
+			insertAfter		: 'إدراج عمود بعد',
+			deleteColumn	: 'حذف أعمدة'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'خصائص زر الضغط',
+		text		: 'القيمة/التسمية',
+		type		: 'نوع الزر',
+		typeBtn		: 'زر',
+		typeSbm		: 'إرسال',
+		typeRst		: 'إعادة تعيين'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'خصائص خانة الإختيار',
+		radioTitle	: 'خصائص زر الخيار',
+		value		: 'القيمة',
+		selected	: 'محدد'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'خصائص النموذج',
+		menu		: 'خصائص النموذج',
+		action		: 'اسم الملف',
+		method		: 'الأسلوب',
+		encoding	: 'Encoding', // MISSING
+		target		: 'الهدف',
+		targetNotSet	: '<بدون تحديد>',
+		targetNew	: 'إطار جديد (_blank)',
+		targetTop	: 'صفحة كاملة (_top)',
+		targetSelf	: 'نفس الإطار (_self)',
+		targetParent	: 'الإطار الأصل (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'خصائص القائمة المنسدلة',
+		selectInfo	: 'معلومات',
+		opAvail		: 'الخيارات المتاحة',
+		value		: 'القيمة',
+		size		: 'الحجم',
+		lines		: 'الأسطر',
+		chkMulti	: 'السماح بتحديدات متعددة',
+		opText		: 'النص',
+		opValue		: 'القيمة',
+		btnAdd		: 'إضافة',
+		btnModify	: 'تعديل',
+		btnUp		: 'تحريك لأعلى',
+		btnDown		: 'تحريك لأسفل',
+		btnSetValue : 'إجعلها محددة',
+		btnDelete	: 'إزالة'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'خصائص ناحية النص',
+		cols		: 'الأعمدة',
+		rows		: 'الصفوف'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'خصائص مربع النص',
+		name		: 'الاسم',
+		value		: 'القيمة',
+		charWidth	: 'العرض بالأحرف',
+		maxChars	: 'عدد الحروف الأقصى',
+		type		: 'نوع المحتوى',
+		typeText	: 'نص',
+		typePass	: 'كلمة مرور'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'خصائص الحقل الخفي',
+		name	: 'الاسم',
+		value	: 'القيمة'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'خصائص الصورة',
+		titleButton	: 'خصائص زر الصورة',
+		menu		: 'خصائص الصورة',
+		infoTab	: 'معلومات الصورة',
+		btnUpload	: 'أرسلها للخادم',
+		url		: 'موقع الصورة',
+		upload	: 'رفع',
+		alt		: 'الوصف',
+		width		: 'العرض',
+		height	: 'الإرتفاع',
+		lockRatio	: 'تناسق الحجم',
+		resetSize	: 'إستعادة الحجم الأصلي',
+		border	: 'سمك الحدود',
+		hSpace	: 'تباعد أفقي',
+		vSpace	: 'تباعد عمودي',
+		align		: 'محاذاة',
+		alignLeft	: 'يسار',
+		alignAbsBottom: 'أسفل النص',
+		alignAbsMiddle: 'وسط السطر',
+		alignBaseline	: 'على السطر',
+		alignBottom	: 'أسفل',
+		alignMiddle	: 'وسط',
+		alignRight	: 'يمين',
+		alignTextTop	: 'أعلى النص',
+		alignTop	: 'أعلى',
+		preview	: 'معاينة',
+		alertUrl	: 'فضلاً أكتب الموقع الذي توجد عليه هذه الصورة.',
+		linkTab	: 'الرابط',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'خصائص فيلم الفلاش',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'خصائص فيلم الفلاش',
+		chkPlay		: 'تشغيل تلقائي',
+		chkLoop		: 'تكرار',
+		chkMenu		: 'تمكين قائمة فيلم الفلاش',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'الحجم',
+		scaleAll		: 'إظهار الكل',
+		scaleNoBorder	: 'بلا حدود',
+		scaleFit		: 'ضبط تام',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'محاذاة',
+		alignLeft	: 'يسار',
+		alignAbsBottom: 'أسفل النص',
+		alignAbsMiddle: 'وسط السطر',
+		alignBaseline	: 'على السطر',
+		alignBottom	: 'أسفل',
+		alignMiddle	: 'وسط',
+		alignRight	: 'يمين',
+		alignTextTop	: 'أعلى النص',
+		alignTop	: 'أعلى',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'لون الخلفية',
+		width	: 'العرض',
+		height	: 'الإرتفاع',
+		hSpace	: 'تباعد أفقي',
+		vSpace	: 'تباعد عمودي',
+		validateSrc : 'فضلاً أدخل عنوان الموقع الذي يشير إليه الرابط',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'تدقيق إملائي',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'ليست في القاموس',
+		changeTo		: 'التغيير إلى',
+		btnIgnore		: 'تجاهل',
+		btnIgnoreAll	: 'تجاهل الكل',
+		btnReplace		: 'تغيير',
+		btnReplaceAll	: 'تغيير الكل',
+		btnUndo			: 'تراجع',
+		noSuggestions	: '- لا توجد إقتراحات -',
+		progress		: 'جاري التدقيق إملائياً',
+		noMispell		: 'تم إكمال التدقيق الإملائي: لم يتم العثور على أي أخطاء إملائية',
+		noChanges		: 'تم إكمال التدقيق الإملائي: لم يتم تغيير أي كلمة',
+		oneChange		: 'تم إكمال التدقيق الإملائي: تم تغيير كلمة واحدة فقط',
+		manyChanges		: 'تم إكمال التدقيق الإملائي: تم تغيير %1 كلماتكلمة',
+		ieSpellDownload	: 'المدقق الإملائي (الإنجليزي) غير مثبّت. هل تود تحميله الآن؟'
+	},
+
+	smiley :
+	{
+		toolbar	: 'ابتسامات',
+		title	: 'إدراج إبتسامات '
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'تعداد رقمي',
+	bulletedlist : 'تعداد نقطي',
+	indent : 'زيادة المسافة البادئة',
+	outdent : 'إنقاص المسافة البادئة',
+
+	justify :
+	{
+		left : 'محاذاة إلى اليسار',
+		center : 'توسيط',
+		right : 'محاذاة إلى اليمين',
+		block : 'ضبط'
+	},
+
+	blockquote : 'اقتباس',
+
+	clipboard :
+	{
+		title		: 'لصق',
+		cutError	: 'الإعدادات الأمنية للمتصفح الذي تستخدمه تمنع القص التلقائي. فضلاً إستخدم لوحة المفاتيح لفعل ذلك (Ctrl+X).',
+		copyError	: 'الإعدادات الأمنية للمتصفح الذي تستخدمه تمنع النسخ التلقائي. فضلاً إستخدم لوحة المفاتيح لفعل ذلك (Ctrl+C).',
+		pasteMsg	: 'الصق داخل الصندوق بإستخدام زرّي (<STRONG>Ctrl+V</STRONG>) في لوحة المفاتيح، ثم اضغط زر  <STRONG>موافق</STRONG>.',
+		securityMsg	: 'نظراً لإعدادات الأمان الخاصة بمتصفحك، لن يتمكن هذا المحرر من الوصول لمحتوى حافظتك، لذا وجب عليك لصق المحتوى مرة أخرى في هذه النافذة.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'لصق من وورد',
+		title : 'لصق من وورد',
+		advice : 'الصق داخل الصندوق بإستخدام زرّي (<STRONG>Ctrl+V</STRONG>) في لوحة المفاتيح، ثم اضغط زر  <STRONG>موافق</STRONG>.',
+		ignoreFontFace : 'تجاهل تعريفات أسماء الخطوط',
+		removeStyle : 'إزالة تعريفات الأنماط'
+	},
+
+	pasteText :
+	{
+		button : 'لصق كنص بسيط',
+		title : 'لصق كنص بسيط'
+	},
+
+	templates :
+	{
+		button : 'القوالب',
+		title : 'قوالب المحتوى',
+		insertOption: 'استبدال المحتوى',
+		selectPromptMsg: 'اختر القالب الذي تود وضعه في المحرر <br>(سيتم فقدان المحتوى الحالي):',
+		emptyListMsg : '(لم يتم تعريف أي قالب)'
+	},
+
+	showBlocks : 'مخطط تفصيلي',
+
+	stylesCombo :
+	{
+		label : 'نمط',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'تنسيق',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'تنسيق',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'عادي',
+		tag_pre : 'منسّق',
+		tag_address : 'دوس',
+		tag_h1 : 'العنوان 1',
+		tag_h2 : 'العنوان  2',
+		tag_h3 : 'العنوان  3',
+		tag_h4 : 'العنوان  4',
+		tag_h5 : 'العنوان  5',
+		tag_h6 : 'العنوان  6',
+		tag_div : 'Normal (DIV)' // MISSING
+	},
+
+	font :
+	{
+		label : 'خط',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'خط',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'حجم الخط',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'حجم الخط',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'لون النص',
+		bgColorTitle : 'لون الخلفية',
+		auto : 'تلقائي',
+		more : 'ألوان إضافية...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/bg.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/bg.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/bg.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Bulgarian language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['bg'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Код',
+	newPage			: 'Нова страница',
+	save			: 'Запази',
+	preview			: 'Предварителен изглед',
+	cut				: 'Изрежи',
+	copy			: 'Запамети',
+	paste			: 'Вмъкни',
+	print			: 'Печат',
+	underline		: 'Подчертан',
+	bold			: 'Удебелен',
+	italic			: 'Курсив',
+	selectAll		: 'Селектирай всичко',
+	removeFormat	: 'Изтрий форматирането',
+	strike			: 'Зачертан',
+	subscript		: 'Индекс за база',
+	superscript		: 'Индекс за степен',
+	horizontalrule	: 'Вмъкни хоризонтална линия',
+	pagebreak		: 'Вмъкни нов ред',
+	unlink			: 'Изтрий връзка',
+	undo			: 'Отмени',
+	redo			: 'Повтори',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Разгледай сървъра',
+		url				: 'Пълен път (URL)',
+		protocol		: 'Протокол',
+		upload			: 'Качи',
+		uploadSubmit	: 'Прати към сървъра',
+		image			: 'Изображение',
+		flash			: 'Flash',
+		form			: 'Формуляр',
+		checkbox		: 'Поле за отметка',
+		radio		: 'Поле за опция',
+		textField		: 'Текстово поле',
+		textarea		: 'Текстова област',
+		hiddenField		: 'Скрито поле',
+		button			: 'Бутон',
+		select	: 'Падащо меню с опции',
+		imageButton		: 'Бутон-изображение',
+		notSet			: '<не е настроен>',
+		id				: 'Идентификатор',
+		name			: 'Име',
+		langDir			: 'посока на речта',
+		langDirLtr		: 'От ляво на дясно',
+		langDirRtl		: 'От дясно на ляво',
+		langCode		: 'Код на езика',
+		longDescr		: 'Описание на връзката',
+		cssClass		: 'Клас от стиловите таблици',
+		advisoryTitle	: 'Препоръчително заглавие',
+		cssStyle		: 'Стил',
+		ok				: 'ОК',
+		cancel			: 'Отказ',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'Подробности...',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Вмъкни специален символ',
+		title		: 'Изберете специален символ'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Добави/Редактирай връзка',
+		menu		: 'Редактирай връзка',
+		title		: 'Връзка',
+		info		: 'Информация за връзката',
+		target		: 'Цел',
+		upload		: 'Качи',
+		advanced	: 'Подробности...',
+		type		: 'Вид на връзката',
+		toAnchor	: 'Котва в текущата страница',
+		toEmail		: 'Е-поща',
+		target		: 'Цел',
+		targetNotSet	: '<не е настроен>',
+		targetFrame	: '<рамка>',
+		targetPopup	: '<дъщерен прозорец>',
+		targetNew	: 'Нов прозорец (_blank)',
+		targetTop	: 'Целия прозорец (_top)',
+		targetSelf	: 'Активния прозорец (_self)',
+		targetParent	: 'Родителски прозорец (_parent)',
+		targetFrameName	: 'Име на целевия прозорец',
+		targetPopupName	: 'Име на дъщерния прозорец',
+		popupFeatures	: 'Параметри на дъщерния прозорец',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Поле за статус',
+		popupLocationBar	: 'Поле за адрес',
+		popupToolbar	: 'Панел с бутони',
+		popupMenuBar	: 'Меню',
+		popupFullScreen	: 'Голям екран (MS IE)',
+		popupScrollBars	: 'Плъзгач',
+		popupDependent	: 'Зависим (Netscape)',
+		popupWidth		: 'Ширина',
+		popupLeft		: 'Координати - X',
+		popupHeight		: 'Височина',
+		popupTop		: 'Координати - Y',
+		id				: 'Id', // MISSING
+		langDir			: 'посока на речта',
+		langDirNotSet	: '<не е настроен>',
+		langDirLTR		: 'От ляво на дясно',
+		langDirRTL		: 'От дясно на ляво',
+		acccessKey		: 'Бърз клавиш',
+		name			: 'Име',
+		langCode		: 'посока на речта',
+		tabIndex		: 'Ред на достъп',
+		advisoryTitle	: 'Препоръчително заглавие',
+		advisoryContentType	: 'Препоръчителен тип на съдържанието',
+		cssClasses		: 'Клас от стиловите таблици',
+		charset			: 'Тип на свързания ресурс',
+		styles			: 'Стил',
+		selectAnchor	: 'Изберете котва',
+		anchorName		: 'По име на котвата',
+		anchorId		: 'По идентификатор на елемент',
+		emailAddress	: 'Адрес за е-поща',
+		emailSubject	: 'Тема на писмото',
+		emailBody		: 'Текст на писмото',
+		noAnchors		: '(Няма котви в текущия документ)',
+		noUrl			: 'Моля, напишете пълния път (URL)',
+		noEmail			: 'Моля, напишете адреса за е-поща'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Добави/Редактирай котва',
+		menu		: 'Параметри на котвата',
+		title		: 'Параметри на котвата',
+		name		: 'Име на котвата',
+		errorName	: 'Моля, въведете име на котвата'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Find and Replace', // MISSING
+		find				: 'Търси',
+		replace				: 'Замести',
+		findWhat			: 'Търси:',
+		replaceWith			: 'Замести с:',
+		notFoundMsg			: 'Указания текст не беше намерен.',
+		matchCase			: 'Със същия регистър',
+		matchWord			: 'Търси същата дума',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Замести всички',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Таблица',
+		title		: 'Параметри на таблицата',
+		menu		: 'Параметри на таблицата',
+		deleteTable	: 'Изтрий таблицата',
+		rows		: 'Редове',
+		columns		: 'Колони',
+		border		: 'Размер на рамката',
+		align		: 'Подравняване',
+		alignNotSet	: '<Не е избрано>',
+		alignLeft	: 'Ляво',
+		alignCenter	: 'Център',
+		alignRight	: 'Дясно',
+		width		: 'Ширина',
+		widthPx		: 'пиксели',
+		widthPc		: 'проценти',
+		height		: 'Височина',
+		cellSpace	: 'Разстояние между клетките',
+		cellPad		: 'Отстъп на съдържанието в клетките',
+		caption		: 'Заглавие',
+		summary		: 'Резюме',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Cell', // MISSING
+			insertBefore	: 'Insert Cell Before', // MISSING
+			insertAfter		: 'Insert Cell After', // MISSING
+			deleteCell		: 'Изтрий клетките',
+			merge			: 'Обедини клетките',
+			mergeRight		: 'Merge Right', // MISSING
+			mergeDown		: 'Merge Down', // MISSING
+			splitHorizontal	: 'Split Cell Horizontally', // MISSING
+			splitVertical	: 'Split Cell Vertically', // MISSING
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Row', // MISSING
+			insertBefore	: 'Insert Row Before', // MISSING
+			insertAfter		: 'Insert Row After', // MISSING
+			deleteRow		: 'Изтрий редовете'
+		},
+
+		column :
+		{
+			menu			: 'Column', // MISSING
+			insertBefore	: 'Insert Column Before', // MISSING
+			insertAfter		: 'Insert Column After', // MISSING
+			deleteColumn	: 'Изтрий колоните'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Параметри на бутона',
+		text		: 'Текст (Стойност)',
+		type		: 'Тип',
+		typeBtn		: 'Button', // MISSING
+		typeSbm		: 'Submit', // MISSING
+		typeRst		: 'Reset' // MISSING
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Параметри на полето за отметка',
+		radioTitle	: 'Параметри на полето за опция',
+		value		: 'Стойност',
+		selected	: 'Отметнато'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Параметри на формуляра',
+		menu		: 'Параметри на формуляра',
+		action		: 'Действие',
+		method		: 'Метод',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Цел',
+		targetNotSet	: '<не е настроен>',
+		targetNew	: 'Нов прозорец (_blank)',
+		targetTop	: 'Целия прозорец (_top)',
+		targetSelf	: 'Активния прозорец (_self)',
+		targetParent	: 'Родителски прозорец (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Параметри на падащото меню с опции',
+		selectInfo	: 'Информация',
+		opAvail		: 'Възможни опции',
+		value		: 'Стойност',
+		size		: 'Размер',
+		lines		: 'линии',
+		chkMulti	: 'Разрешено множествено селектиране',
+		opText		: 'Текст',
+		opValue		: 'Стойност',
+		btnAdd		: 'Добави',
+		btnModify	: 'Промени',
+		btnUp		: 'Нагоре',
+		btnDown		: 'Надолу',
+		btnSetValue : 'Настрой като избрана стойност',
+		btnDelete	: 'Изтрий'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Параметри на текстовата област',
+		cols		: 'Колони',
+		rows		: 'Редове'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Параметри на текстовото-поле',
+		name		: 'Име',
+		value		: 'Стойност',
+		charWidth	: 'Ширина на символите',
+		maxChars	: 'Максимум символи',
+		type		: 'Тип',
+		typeText	: 'Текст',
+		typePass	: 'Парола'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Параметри на скритото поле',
+		name	: 'Име',
+		value	: 'Стойност'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Параметри на изображението',
+		titleButton	: 'Параметри на бутона-изображение',
+		menu		: 'Параметри на изображението',
+		infoTab	: 'Информация за изображението',
+		btnUpload	: 'Прати към сървъра',
+		url		: 'Пълен път (URL)',
+		upload	: 'Качи',
+		alt		: 'Алтернативен текст',
+		width		: 'Ширина',
+		height	: 'Височина',
+		lockRatio	: 'Запази пропорцията',
+		resetSize	: 'Възстанови размера',
+		border	: 'Рамка',
+		hSpace	: 'Хоризонтален отстъп',
+		vSpace	: 'Вертикален отстъп',
+		align		: 'Подравняване',
+		alignLeft	: 'Ляво',
+		alignAbsBottom: 'Най-долу',
+		alignAbsMiddle: 'Точно по средата',
+		alignBaseline	: 'По базовата линия',
+		alignBottom	: 'Долу',
+		alignMiddle	: 'По средата',
+		alignRight	: 'Дясно',
+		alignTextTop	: 'Върху текста',
+		alignTop	: 'Отгоре',
+		preview	: 'Изглед',
+		alertUrl	: 'Моля, въведете пълния път до изображението',
+		linkTab	: 'Връзка',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Параметри на Flash обекта',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Параметри на Flash обекта',
+		chkPlay		: 'Автоматично стартиране',
+		chkLoop		: 'Ново стартиране след завършването',
+		chkMenu		: 'Разрешено Flash меню',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Оразмеряване',
+		scaleAll		: 'Покажи целия обект',
+		scaleNoBorder	: 'Без рамка',
+		scaleFit		: 'Според мястото',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Подравняване',
+		alignLeft	: 'Ляво',
+		alignAbsBottom: 'Най-долу',
+		alignAbsMiddle: 'Точно по средата',
+		alignBaseline	: 'По базовата линия',
+		alignBottom	: 'Долу',
+		alignMiddle	: 'По средата',
+		alignRight	: 'Дясно',
+		alignTextTop	: 'Върху текста',
+		alignTop	: 'Отгоре',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Цвят на фона',
+		width	: 'Ширина',
+		height	: 'Височина',
+		hSpace	: 'Хоризонтален отстъп',
+		vSpace	: 'Вертикален отстъп',
+		validateSrc : 'Моля, напишете пълния път (URL)',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Провери правописа',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Липсва в речника',
+		changeTo		: 'Промени на',
+		btnIgnore		: 'Игнорирай',
+		btnIgnoreAll	: 'Игнорирай всички',
+		btnReplace		: 'Замести',
+		btnReplaceAll	: 'Замести всички',
+		btnUndo			: 'Отмени',
+		noSuggestions	: '- Няма предложения -',
+		progress		: 'Извършване на проверката за правопис...',
+		noMispell		: 'Проверката за правопис завършена: не са открити правописни грешки',
+		noChanges		: 'Проверката за правопис завършена: няма променени думи',
+		oneChange		: 'Проверката за правопис завършена: една дума е променена',
+		manyChanges		: 'Проверката за правопис завършена: %1 думи са променени',
+		ieSpellDownload	: 'Инструментът за проверка на правопис не е инсталиран. Желаете ли да го инсталирате ?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Усмивка',
+		title	: 'Добави усмивка'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Нумериран списък',
+	bulletedlist : 'Ненумериран списък',
+	indent : 'Увеличи отстъпа',
+	outdent : 'Намали отстъпа',
+
+	justify :
+	{
+		left : 'Подравняване в ляво',
+		center : 'Подравнявне в средата',
+		right : 'Подравняване в дясно',
+		block : 'Двустранно подравняване'
+	},
+
+	blockquote : 'Blockquote', // MISSING
+
+	clipboard :
+	{
+		title		: 'Вмъкни',
+		cutError	: 'Настройките за сигурност на вашия бразуър не разрешават на редактора да изпълни изрязването. За целта използвайте клавиатурата (Ctrl+X).',
+		copyError	: 'Настройките за сигурност на вашия бразуър не разрешават на редактора да изпълни запаметяването. За целта използвайте клавиатурата (Ctrl+C).',
+		pasteMsg	: 'Вмъкнете тук съдъжанието с клавиатуарата (<STRONG>Ctrl+V</STRONG>) и натиснете <STRONG>OK</STRONG>.',
+		securityMsg	: 'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.' // MISSING
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Вмъкни от MS Word',
+		title : 'Вмъкни от MS Word',
+		advice : 'Вмъкнете тук съдъжанието с клавиатуарата (<STRONG>Ctrl+V</STRONG>) и натиснете <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Игнорирай шрифтовите дефиниции',
+		removeStyle : 'Изтрий стиловите дефиниции'
+	},
+
+	pasteText :
+	{
+		button : 'Вмъкни като чист текст',
+		title : 'Вмъкни като чист текст'
+	},
+
+	templates :
+	{
+		button : 'Шаблони',
+		title : 'Шаблони',
+		insertOption: 'Replace actual contents', // MISSING
+		selectPromptMsg: 'Изберете шаблон <br>(текущото съдържание на редактора ще бъде загубено):',
+		emptyListMsg : '(Няма дефинирани шаблони)'
+	},
+
+	showBlocks : 'Show Blocks', // MISSING
+
+	stylesCombo :
+	{
+		label : 'Стил',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Формат',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Формат',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Нормален',
+		tag_pre : 'Форматиран',
+		tag_address : 'Адрес',
+		tag_h1 : 'Заглавие 1',
+		tag_h2 : 'Заглавие 2',
+		tag_h3 : 'Заглавие 3',
+		tag_h4 : 'Заглавие 4',
+		tag_h5 : 'Заглавие 5',
+		tag_h6 : 'Заглавие 6',
+		tag_div : 'Параграф (DIV)'
+	},
+
+	font :
+	{
+		label : 'Шрифт',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Шрифт',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Размер',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Размер',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Цвят на текста',
+		bgColorTitle : 'Цвят на фона',
+		auto : 'По подразбиране',
+		more : 'Други цветове...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/bn.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/bn.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/bn.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Bengali/Bangla language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['bn'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'সোর্স',
+	newPage			: 'নতুন পেজ',
+	save			: 'সংরক্ষন কর',
+	preview			: 'প্রিভিউ',
+	cut				: 'কাট',
+	copy			: 'কপি',
+	paste			: 'পেস্ট',
+	print			: 'প্রিন্ট',
+	underline		: 'আন্ডারলাইন',
+	bold			: 'বোল্ড',
+	italic			: 'ইটালিক',
+	selectAll		: 'সব সিলেক্ট কর',
+	removeFormat	: 'ফরমেট সরাও',
+	strike			: 'স্ট্রাইক থ্রু',
+	subscript		: 'অধোলেখ',
+	superscript		: 'অভিলেখ',
+	horizontalrule	: 'রেখা যুক্ত কর',
+	pagebreak		: 'পেজ ব্রেক',
+	unlink			: 'লিংক সরাও',
+	undo			: 'আনডু',
+	redo			: 'রি-ডু',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'ব্রাউজ সার্ভার',
+		url				: 'URL',
+		protocol		: 'প্রোটোকল',
+		upload			: 'আপলোড',
+		uploadSubmit	: 'ইহাকে সার্ভারে প্রেরন কর',
+		image			: 'ছবির লেবেল যুক্ত কর',
+		flash			: 'ফ্লাশ লেবেল যুক্ত কর',
+		form			: 'ফর্ম',
+		checkbox		: 'চেক বাক্স',
+		radio		: 'রেডিও বাটন',
+		textField		: 'টেক্সট ফীল্ড',
+		textarea		: 'টেক্সট এরিয়া',
+		hiddenField		: 'গুপ্ত ফীল্ড',
+		button			: 'বাটন',
+		select	: 'বাছাই ফীল্ড',
+		imageButton		: 'ছবির বাটন',
+		notSet			: '<সেট নেই>',
+		id				: 'আইডি',
+		name			: 'নাম',
+		langDir			: 'ভাষা লেখার দিক',
+		langDirLtr		: 'বাম থেকে ডান (LTR)',
+		langDirRtl		: 'ডান থেকে বাম (RTL)',
+		langCode		: 'ভাষা কোড',
+		longDescr		: 'URL এর লম্বা বর্ণনা',
+		cssClass		: 'স্টাইল-শীট ক্লাস',
+		advisoryTitle	: 'পরামর্শ শীর্ষক',
+		cssStyle		: 'স্টাইল',
+		ok				: 'ওকে',
+		cancel			: 'বাতিল',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'এডভান্সড',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'বিশেষ অক্ষর যুক্ত কর',
+		title		: 'বিশেষ ক্যারেক্টার বাছাই কর'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'লিংক যুক্ত কর',
+		menu		: 'লিংক সম্পাদন',
+		title		: 'লিংক',
+		info		: 'লিংক তথ্য',
+		target		: 'টার্গেট',
+		upload		: 'আপলোড',
+		advanced	: 'এডভান্সড',
+		type		: 'লিংক প্রকার',
+		toAnchor	: 'এই পেজে নোঙর কর',
+		toEmail		: 'ইমেইল',
+		target		: 'টার্গেট',
+		targetNotSet	: '<সেট নেই>',
+		targetFrame	: '<ফ্রেম>',
+		targetPopup	: '<পপআপ উইন্ডো>',
+		targetNew	: 'নতুন উইন্ডো (_blank)',
+		targetTop	: 'শীর্ষ উইন্ডো (_top)',
+		targetSelf	: 'এই উইন্ডো (_self)',
+		targetParent	: 'মূল উইন্ডো (_parent)',
+		targetFrameName	: 'টার্গেট ফ্রেমের নাম',
+		targetPopupName	: 'পপআপ উইন্ডোর নাম',
+		popupFeatures	: 'পপআপ উইন্ডো ফীচার সমূহ',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'স্ট্যাটাস বার',
+		popupLocationBar	: 'লোকেশন বার',
+		popupToolbar	: 'টুল বার',
+		popupMenuBar	: 'মেন্যু বার',
+		popupFullScreen	: 'পূর্ণ পর্দা জুড়ে (IE)',
+		popupScrollBars	: 'স্ক্রল বার',
+		popupDependent	: 'ডিপেন্ডেন্ট (Netscape)',
+		popupWidth		: 'প্রস্থ',
+		popupLeft		: 'বামের পজিশন',
+		popupHeight		: 'দৈর্ঘ্য',
+		popupTop		: 'ডানের পজিশন',
+		id				: 'Id', // MISSING
+		langDir			: 'ভাষা লেখার দিক',
+		langDirNotSet	: '<সেট নেই>',
+		langDirLTR		: 'বাম থেকে ডান (LTR)',
+		langDirRTL		: 'ডান থেকে বাম (RTL)',
+		acccessKey		: 'এক্সেস কী',
+		name			: 'নাম',
+		langCode		: 'ভাষা লেখার দিক',
+		tabIndex		: 'ট্যাব ইন্ডেক্স',
+		advisoryTitle	: 'পরামর্শ শীর্ষক',
+		advisoryContentType	: 'পরামর্শ কন্টেন্টের প্রকার',
+		cssClasses		: 'স্টাইল-শীট ক্লাস',
+		charset			: 'লিংক রিসোর্স ক্যারেক্টর সেট',
+		styles			: 'স্টাইল',
+		selectAnchor	: 'নোঙর বাছাই',
+		anchorName		: 'নোঙরের নাম দিয়ে',
+		anchorId		: 'নোঙরের আইডি দিয়ে',
+		emailAddress	: 'ইমেইল ঠিকানা',
+		emailSubject	: 'মেসেজের বিষয়',
+		emailBody		: 'মেসেজের দেহ',
+		noAnchors		: '(No anchors available in the document)', // MISSING
+		noUrl			: 'অনুগ্রহ করে URL লিংক টাইপ করুন',
+		noEmail			: 'অনুগ্রহ করে ইমেইল এড্রেস টাইপ করুন'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'নোঙ্গর',
+		menu		: 'নোঙর প্রোপার্টি',
+		title		: 'নোঙর প্রোপার্টি',
+		name		: 'নোঙরের নাম',
+		errorName	: 'নোঙরের নাম টাইপ করুন'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Find and Replace', // MISSING
+		find				: 'খোজো',
+		replace				: 'রিপ্লেস',
+		findWhat			: 'যা খুঁজতে হবে:',
+		replaceWith			: 'যার সাথে বদলাতে হবে:',
+		notFoundMsg			: 'আপনার উল্লেখিত টেকস্ট পাওয়া যায়নি',
+		matchCase			: 'কেস মিলাও',
+		matchWord			: 'পুরা শব্দ মেলাও',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'সব বদলে দাও',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'টেবিলের লেবেল যুক্ত কর',
+		title		: 'টেবিল প্রোপার্টি',
+		menu		: 'টেবিল প্রোপার্টি',
+		deleteTable	: 'টেবিল ডিলীট কর',
+		rows		: 'রো',
+		columns		: 'কলাম',
+		border		: 'বর্ডার সাইজ',
+		align		: 'এলাইনমেন্ট',
+		alignNotSet	: '<সেট নেই>',
+		alignLeft	: 'বামে',
+		alignCenter	: 'মাঝখানে',
+		alignRight	: 'ডানে',
+		width		: 'প্রস্থ',
+		widthPx		: 'পিক্সেল',
+		widthPc		: 'শতকরা',
+		height		: 'দৈর্ঘ্য',
+		cellSpace	: 'সেল স্পেস',
+		cellPad		: 'সেল প্যাডিং',
+		caption		: 'শীর্ষক',
+		summary		: 'সারাংশ',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'সেল',
+			insertBefore	: 'Insert Cell Before', // MISSING
+			insertAfter		: 'Insert Cell After', // MISSING
+			deleteCell		: 'সেল মুছে দাও',
+			merge			: 'সেল জোড়া দাও',
+			mergeRight		: 'Merge Right', // MISSING
+			mergeDown		: 'Merge Down', // MISSING
+			splitHorizontal	: 'Split Cell Horizontally', // MISSING
+			splitVertical	: 'Split Cell Vertically', // MISSING
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'রো',
+			insertBefore	: 'Insert Row Before', // MISSING
+			insertAfter		: 'Insert Row After', // MISSING
+			deleteRow		: 'রো মুছে দাও'
+		},
+
+		column :
+		{
+			menu			: 'কলাম',
+			insertBefore	: 'Insert Column Before', // MISSING
+			insertAfter		: 'Insert Column After', // MISSING
+			deleteColumn	: 'কলাম মুছে দাও'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'বাটন প্রোপার্টি',
+		text		: 'টেক্সট (ভ্যালু)',
+		type		: 'প্রকার',
+		typeBtn		: 'Button', // MISSING
+		typeSbm		: 'Submit', // MISSING
+		typeRst		: 'Reset' // MISSING
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'চেক বক্স প্রোপার্টি',
+		radioTitle	: 'রেডিও বাটন প্রোপার্টি',
+		value		: 'ভ্যালু',
+		selected	: 'সিলেক্টেড'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'ফর্ম প্রোপার্টি',
+		menu		: 'ফর্ম প্রোপার্টি',
+		action		: 'একশ্যন',
+		method		: 'পদ্ধতি',
+		encoding	: 'Encoding', // MISSING
+		target		: 'টার্গেট',
+		targetNotSet	: '<সেট নেই>',
+		targetNew	: 'নতুন উইন্ডো (_blank)',
+		targetTop	: 'শীর্ষ উইন্ডো (_top)',
+		targetSelf	: 'এই উইন্ডো (_self)',
+		targetParent	: 'মূল উইন্ডো (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'বাছাই ফীল্ড প্রোপার্টি',
+		selectInfo	: 'তথ্য',
+		opAvail		: 'অন্যান্য বিকল্প',
+		value		: 'ভ্যালু',
+		size		: 'সাইজ',
+		lines		: 'লাইন সমূহ',
+		chkMulti	: 'একাধিক সিলেকশন এলাউ কর',
+		opText		: 'টেক্সট',
+		opValue		: 'ভ্যালু',
+		btnAdd		: 'যুক্ত',
+		btnModify	: 'বদলে দাও',
+		btnUp		: 'উপর',
+		btnDown		: 'নীচে',
+		btnSetValue : 'বাছাই করা ভ্যালু হিসেবে সেট কর',
+		btnDelete	: 'ডিলীট'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'টেক্সট এরিয়া প্রোপার্টি',
+		cols		: 'কলাম',
+		rows		: 'রো'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'টেক্সট ফীল্ড প্রোপার্টি',
+		name		: 'নাম',
+		value		: 'ভ্যালু',
+		charWidth	: 'ক্যারেক্টার প্রশস্ততা',
+		maxChars	: 'সর্বাধিক ক্যারেক্টার',
+		type		: 'টাইপ',
+		typeText	: 'টেক্সট',
+		typePass	: 'পাসওয়ার্ড'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'গুপ্ত ফীল্ড প্রোপার্টি',
+		name	: 'নাম',
+		value	: 'ভ্যালু'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'ছবির প্রোপার্টি',
+		titleButton	: 'ছবি বাটন প্রোপার্টি',
+		menu		: 'ছবির প্রোপার্টি',
+		infoTab	: 'ছবির তথ্য',
+		btnUpload	: 'ইহাকে সার্ভারে প্রেরন কর',
+		url		: 'URL',
+		upload	: 'আপলোড',
+		alt		: 'বিকল্প টেক্সট',
+		width		: 'প্রস্থ',
+		height	: 'দৈর্ঘ্য',
+		lockRatio	: 'অনুপাত লক কর',
+		resetSize	: 'সাইজ পূর্বাবস্থায় ফিরিয়ে দাও',
+		border	: 'বর্ডার',
+		hSpace	: 'হরাইজন্টাল স্পেস',
+		vSpace	: 'ভার্টিকেল স্পেস',
+		align		: 'এলাইন',
+		alignLeft	: 'বামে',
+		alignAbsBottom: 'Abs নীচে',
+		alignAbsMiddle: 'Abs উপর',
+		alignBaseline	: 'মূল রেখা',
+		alignBottom	: 'নীচে',
+		alignMiddle	: 'মধ্য',
+		alignRight	: 'ডানে',
+		alignTextTop	: 'টেক্সট উপর',
+		alignTop	: 'উপর',
+		preview	: 'প্রীভিউ',
+		alertUrl	: 'অনুগ্রহক করে ছবির URL টাইপ করুন',
+		linkTab	: 'লিংক',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'ফ্লাশ প্রোপার্টি',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'ফ্ল্যাশ প্রোপার্টি',
+		chkPlay		: 'অটো প্লে',
+		chkLoop		: 'লূপ',
+		chkMenu		: 'ফ্ল্যাশ মেনু এনাবল কর',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'স্কেল',
+		scaleAll		: 'সব দেখাও',
+		scaleNoBorder	: 'কোনো বর্ডার নেই',
+		scaleFit		: 'নিখুঁত ফিট',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'এলাইন',
+		alignLeft	: 'বামে',
+		alignAbsBottom: 'Abs নীচে',
+		alignAbsMiddle: 'Abs উপর',
+		alignBaseline	: 'মূল রেখা',
+		alignBottom	: 'নীচে',
+		alignMiddle	: 'মধ্য',
+		alignRight	: 'ডানে',
+		alignTextTop	: 'টেক্সট উপর',
+		alignTop	: 'উপর',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'বেকগ্রাউন্ড রং',
+		width	: 'প্রস্থ',
+		height	: 'দৈর্ঘ্য',
+		hSpace	: 'হরাইজন্টাল স্পেস',
+		vSpace	: 'ভার্টিকেল স্পেস',
+		validateSrc : 'অনুগ্রহ করে URL লিংক টাইপ করুন',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'বানান চেক',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'শব্দকোষে নেই',
+		changeTo		: 'এতে বদলাও',
+		btnIgnore		: 'ইগনোর কর',
+		btnIgnoreAll	: 'সব ইগনোর কর',
+		btnReplace		: 'বদলে দাও',
+		btnReplaceAll	: 'সব বদলে দাও',
+		btnUndo			: 'আন্ডু',
+		noSuggestions	: '- কোন সাজেশন নেই -',
+		progress		: 'বানান পরীক্ষা চলছে...',
+		noMispell		: 'বানান পরীক্ষা শেষ: কোন ভুল বানান পাওয়া যায়নি',
+		noChanges		: 'বানান পরীক্ষা শেষ: কোন শব্দ পরিবর্তন করা হয়নি',
+		oneChange		: 'বানান পরীক্ষা শেষ: একটি মাত্র শব্দ পরিবর্তন করা হয়েছে',
+		manyChanges		: 'বানান পরীক্ষা শেষ: %1 গুলো শব্দ বদলে গ্যাছে',
+		ieSpellDownload	: 'বানান পরীক্ষক ইনস্টল করা নেই। আপনি কি এখনই এটা ডাউনলোড করতে চান?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'স্মাইলী',
+		title	: 'স্মাইলী যুক্ত কর'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'সাংখ্যিক লিস্টের লেবেল',
+	bulletedlist : 'বুলেট লিস্ট লেবেল',
+	indent : 'ইনডেন্ট বাড়াও',
+	outdent : 'ইনডেন্ট কমাও',
+
+	justify :
+	{
+		left : 'বা দিকে ঘেঁষা',
+		center : 'মাঝ বরাবর ঘেষা',
+		right : 'ডান দিকে ঘেঁষা',
+		block : 'ব্লক জাস্টিফাই'
+	},
+
+	blockquote : 'Blockquote', // MISSING
+
+	clipboard :
+	{
+		title		: 'পেস্ট',
+		cutError	: 'আপনার ব্রাউজারের সুরক্ষা সেটিংস এডিটরকে অটোমেটিক কাট করার অনুমতি দেয়নি। দয়া করে এই কাজের জন্য কিবোর্ড ব্যবহার করুন (Ctrl+X)।',
+		copyError	: 'আপনার ব্রাউজারের সুরক্ষা সেটিংস এডিটরকে অটোমেটিক কপি করার অনুমতি দেয়নি। দয়া করে এই কাজের জন্য কিবোর্ড ব্যবহার করুন (Ctrl+C)।',
+		pasteMsg	: 'অনুগ্রহ করে নীচের বাক্সে কিবোর্ড ব্যবহার করে (<STRONG>Ctrl+V</STRONG>) পেস্ট করুন এবং <STRONG>OK</STRONG> চাপ দিন',
+		securityMsg	: 'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.' // MISSING
+	},
+
+	pastefromword :
+	{
+		toolbar : 'পেস্ট (শব্দ)',
+		title : 'পেস্ট (শব্দ)',
+		advice : 'অনুগ্রহ করে নীচের বাক্সে কিবোর্ড ব্যবহার করে (<STRONG>Ctrl+V</STRONG>) পেস্ট করুন এবং <STRONG>OK</STRONG> চাপ দিন',
+		ignoreFontFace : 'ফন্ট ফেস ডেফিনেশন ইগনোর করুন',
+		removeStyle : 'স্টাইল ডেফিনেশন সরিয়ে দিন'
+	},
+
+	pasteText :
+	{
+		button : 'সাদা টেক্সট হিসেবে পেস্ট কর',
+		title : 'সাদা টেক্সট হিসেবে পেস্ট কর'
+	},
+
+	templates :
+	{
+		button : 'টেমপ্লেট',
+		title : 'কনটেন্ট টেমপ্লেট',
+		insertOption: 'Replace actual contents', // MISSING
+		selectPromptMsg: 'অনুগ্রহ করে এডিটরে ওপেন করার জন্য টেমপ্লেট বাছাই করুন<br>(আসল কনটেন্ট হারিয়ে যাবে):',
+		emptyListMsg : '(কোন টেমপ্লেট ডিফাইন করা নেই)'
+	},
+
+	showBlocks : 'Show Blocks', // MISSING
+
+	stylesCombo :
+	{
+		label : 'স্টাইল',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'ফন্ট ফরমেট',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'ফন্ট ফরমেট',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'সাধারণ',
+		tag_pre : 'ফর্মেটেড',
+		tag_address : 'ঠিকানা',
+		tag_h1 : 'শীর্ষক ১',
+		tag_h2 : 'শীর্ষক ২',
+		tag_h3 : 'শীর্ষক ৩',
+		tag_h4 : 'শীর্ষক ৪',
+		tag_h5 : 'শীর্ষক ৫',
+		tag_h6 : 'শীর্ষক ৬',
+		tag_div : 'শীর্ষক (DIV)'
+	},
+
+	font :
+	{
+		label : 'ফন্ট',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'ফন্ট',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'সাইজ',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'সাইজ',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'টেক্স্ট রং',
+		bgColorTitle : 'বেকগ্রাউন্ড রং',
+		auto : 'অটোমেটিক',
+		more : 'আরও রং...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/bs.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/bs.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/bs.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Bosnian language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['bs'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'HTML kôd',
+	newPage			: 'Novi dokument',
+	save			: 'Snimi',
+	preview			: 'Prikaži',
+	cut				: 'Izreži',
+	copy			: 'Kopiraj',
+	paste			: 'Zalijepi',
+	print			: 'Štampaj',
+	underline		: 'Podvuci',
+	bold			: 'Boldiraj',
+	italic			: 'Ukosi',
+	selectAll		: 'Selektuj sve',
+	removeFormat	: 'Poništi format',
+	strike			: 'Precrtaj',
+	subscript		: 'Subscript',
+	superscript		: 'Superscript',
+	horizontalrule	: 'Ubaci horizontalnu liniju',
+	pagebreak		: 'Insert Page Break for Printing', // MISSING
+	unlink			: 'Izbriši link',
+	undo			: 'Vrati',
+	redo			: 'Ponovi',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Browse Server', // MISSING
+		url				: 'URL',
+		protocol		: 'Protokol',
+		upload			: 'Šalji',
+		uploadSubmit	: 'Šalji na server',
+		image			: 'Slika',
+		flash			: 'Flash', // MISSING
+		form			: 'Form', // MISSING
+		checkbox		: 'Checkbox', // MISSING
+		radio		: 'Radio Button', // MISSING
+		textField		: 'Text Field', // MISSING
+		textarea		: 'Textarea', // MISSING
+		hiddenField		: 'Hidden Field', // MISSING
+		button			: 'Button', // MISSING
+		select	: 'Selection Field', // MISSING
+		imageButton		: 'Image Button', // MISSING
+		notSet			: '<nije podešeno>',
+		id				: 'Id',
+		name			: 'Naziv',
+		langDir			: 'Smjer pisanja',
+		langDirLtr		: 'S lijeva na desno (LTR)',
+		langDirRtl		: 'S desna na lijevo (RTL)',
+		langCode		: 'Jezièni kôd',
+		longDescr		: 'Dugaèki opis URL-a',
+		cssClass		: 'Klase CSS stilova',
+		advisoryTitle	: 'Advisory title',
+		cssStyle		: 'Stil',
+		ok				: 'OK',
+		cancel			: 'Odustani',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'Naprednije',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Ubaci specijalni karater',
+		title		: 'Izaberi specijalni karakter'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Ubaci/Izmjeni link',
+		menu		: 'Izmjeni link',
+		title		: 'Link',
+		info		: 'Link info',
+		target		: 'Prozor',
+		upload		: 'Šalji',
+		advanced	: 'Naprednije',
+		type		: 'Tip linka',
+		toAnchor	: 'Sidro na ovoj stranici',
+		toEmail		: 'E-Mail',
+		target		: 'Prozor',
+		targetNotSet	: '<nije podešeno>',
+		targetFrame	: '<frejm>',
+		targetPopup	: '<popup prozor>',
+		targetNew	: 'Novi prozor (_blank)',
+		targetTop	: 'Najgornji prozor (_top)',
+		targetSelf	: 'Isti prozor (_self)',
+		targetParent	: 'Glavni prozor (_parent)',
+		targetFrameName	: 'Target Frame Name', // MISSING
+		targetPopupName	: 'Naziv popup prozora',
+		popupFeatures	: 'Moguænosti popup prozora',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Statusna traka',
+		popupLocationBar	: 'Traka za lokaciju',
+		popupToolbar	: 'Traka sa alatima',
+		popupMenuBar	: 'Izborna traka',
+		popupFullScreen	: 'Cijeli ekran (IE)',
+		popupScrollBars	: 'Scroll traka',
+		popupDependent	: 'Ovisno (Netscape)',
+		popupWidth		: 'Širina',
+		popupLeft		: 'Lijeva pozicija',
+		popupHeight		: 'Visina',
+		popupTop		: 'Gornja pozicija',
+		id				: 'Id', // MISSING
+		langDir			: 'Smjer pisanja',
+		langDirNotSet	: '<nije podešeno>',
+		langDirLTR		: 'S lijeva na desno (LTR)',
+		langDirRTL		: 'S desna na lijevo (RTL)',
+		acccessKey		: 'Pristupna tipka',
+		name			: 'Naziv',
+		langCode		: 'Smjer pisanja',
+		tabIndex		: 'Tab indeks',
+		advisoryTitle	: 'Advisory title',
+		advisoryContentType	: 'Advisory vrsta sadržaja',
+		cssClasses		: 'Klase CSS stilova',
+		charset			: 'Linked Resource Charset',
+		styles			: 'Stil',
+		selectAnchor	: 'Izaberi sidro',
+		anchorName		: 'Po nazivu sidra',
+		anchorId		: 'Po Id-u elementa',
+		emailAddress	: 'E-Mail Adresa',
+		emailSubject	: 'Subjekt poruke',
+		emailBody		: 'Poruka',
+		noAnchors		: '(Nema dostupnih sidra na stranici)',
+		noUrl			: 'Molimo ukucajte URL link',
+		noEmail			: 'Molimo ukucajte e-mail adresu'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Anchor', // MISSING
+		menu		: 'Edit Anchor', // MISSING
+		title		: 'Anchor Properties', // MISSING
+		name		: 'Anchor Name', // MISSING
+		errorName	: 'Please type the anchor name' // MISSING
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Find and Replace', // MISSING
+		find				: 'Naði',
+		replace				: 'Zamjeni',
+		findWhat			: 'Naði šta:',
+		replaceWith			: 'Zamjeni sa:',
+		notFoundMsg			: 'Traženi tekst nije pronaðen.',
+		matchCase			: 'Uporeðuj velika/mala slova',
+		matchWord			: 'Uporeðuj samo cijelu rijeè',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Zamjeni sve',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tabela',
+		title		: 'Svojstva tabele',
+		menu		: 'Svojstva tabele',
+		deleteTable	: 'Delete Table', // MISSING
+		rows		: 'Redova',
+		columns		: 'Kolona',
+		border		: 'Okvir',
+		align		: 'Poravnanje',
+		alignNotSet	: '<Nije podešeno>',
+		alignLeft	: 'Lijevo',
+		alignCenter	: 'Centar',
+		alignRight	: 'Desno',
+		width		: 'Širina',
+		widthPx		: 'piksela',
+		widthPc		: 'posto',
+		height		: 'Visina',
+		cellSpace	: 'Razmak æelija',
+		cellPad		: 'Uvod æelija',
+		caption		: 'Naslov',
+		summary		: 'Summary', // MISSING
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Cell', // MISSING
+			insertBefore	: 'Insert Cell Before', // MISSING
+			insertAfter		: 'Insert Cell After', // MISSING
+			deleteCell		: 'Briši æelije',
+			merge			: 'Spoji æelije',
+			mergeRight		: 'Merge Right', // MISSING
+			mergeDown		: 'Merge Down', // MISSING
+			splitHorizontal	: 'Split Cell Horizontally', // MISSING
+			splitVertical	: 'Split Cell Vertically', // MISSING
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Row', // MISSING
+			insertBefore	: 'Insert Row Before', // MISSING
+			insertAfter		: 'Insert Row After', // MISSING
+			deleteRow		: 'Briši redove'
+		},
+
+		column :
+		{
+			menu			: 'Column', // MISSING
+			insertBefore	: 'Insert Column Before', // MISSING
+			insertAfter		: 'Insert Column After', // MISSING
+			deleteColumn	: 'Briši kolone'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Button Properties', // MISSING
+		text		: 'Text (Value)', // MISSING
+		type		: 'Type', // MISSING
+		typeBtn		: 'Button', // MISSING
+		typeSbm		: 'Submit', // MISSING
+		typeRst		: 'Reset' // MISSING
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Checkbox Properties', // MISSING
+		radioTitle	: 'Radio Button Properties', // MISSING
+		value		: 'Value', // MISSING
+		selected	: 'Selected' // MISSING
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Form Properties', // MISSING
+		menu		: 'Form Properties', // MISSING
+		action		: 'Action', // MISSING
+		method		: 'Method', // MISSING
+		encoding	: 'Encoding', // MISSING
+		target		: 'Prozor',
+		targetNotSet	: '<nije podešeno>',
+		targetNew	: 'Novi prozor (_blank)',
+		targetTop	: 'Najgornji prozor (_top)',
+		targetSelf	: 'Isti prozor (_self)',
+		targetParent	: 'Glavni prozor (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Selection Field Properties', // MISSING
+		selectInfo	: 'Select Info', // MISSING
+		opAvail		: 'Available Options', // MISSING
+		value		: 'Value', // MISSING
+		size		: 'Size', // MISSING
+		lines		: 'lines', // MISSING
+		chkMulti	: 'Allow multiple selections', // MISSING
+		opText		: 'Text', // MISSING
+		opValue		: 'Value', // MISSING
+		btnAdd		: 'Add', // MISSING
+		btnModify	: 'Modify', // MISSING
+		btnUp		: 'Up', // MISSING
+		btnDown		: 'Down', // MISSING
+		btnSetValue : 'Set as selected value', // MISSING
+		btnDelete	: 'Delete' // MISSING
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Textarea Properties', // MISSING
+		cols		: 'Columns', // MISSING
+		rows		: 'Rows' // MISSING
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Text Field Properties', // MISSING
+		name		: 'Name', // MISSING
+		value		: 'Value', // MISSING
+		charWidth	: 'Character Width', // MISSING
+		maxChars	: 'Maximum Characters', // MISSING
+		type		: 'Type', // MISSING
+		typeText	: 'Text', // MISSING
+		typePass	: 'Password' // MISSING
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Hidden Field Properties', // MISSING
+		name	: 'Name', // MISSING
+		value	: 'Value' // MISSING
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Svojstva slike',
+		titleButton	: 'Image Button Properties', // MISSING
+		menu		: 'Svojstva slike',
+		infoTab	: 'Info slike',
+		btnUpload	: 'Šalji na server',
+		url		: 'URL',
+		upload	: 'Šalji',
+		alt		: 'Tekst na slici',
+		width		: 'Širina',
+		height	: 'Visina',
+		lockRatio	: 'Zakljuèaj odnos',
+		resetSize	: 'Resetuj dimenzije',
+		border	: 'Okvir',
+		hSpace	: 'HSpace',
+		vSpace	: 'VSpace',
+		align		: 'Poravnanje',
+		alignLeft	: 'Lijevo',
+		alignAbsBottom: 'Abs dole',
+		alignAbsMiddle: 'Abs sredina',
+		alignBaseline	: 'Bazno',
+		alignBottom	: 'Dno',
+		alignMiddle	: 'Sredina',
+		alignRight	: 'Desno',
+		alignTextTop	: 'Vrh teksta',
+		alignTop	: 'Vrh',
+		preview	: 'Prikaz',
+		alertUrl	: 'Molimo ukucajte URL od slike.',
+		linkTab	: 'Link', // MISSING
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Flash Properties', // MISSING
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Flash Properties', // MISSING
+		chkPlay		: 'Auto Play', // MISSING
+		chkLoop		: 'Loop', // MISSING
+		chkMenu		: 'Enable Flash Menu', // MISSING
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Scale', // MISSING
+		scaleAll		: 'Show all', // MISSING
+		scaleNoBorder	: 'No Border', // MISSING
+		scaleFit		: 'Exact Fit', // MISSING
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Poravnanje',
+		alignLeft	: 'Lijevo',
+		alignAbsBottom: 'Abs dole',
+		alignAbsMiddle: 'Abs sredina',
+		alignBaseline	: 'Bazno',
+		alignBottom	: 'Dno',
+		alignMiddle	: 'Sredina',
+		alignRight	: 'Desno',
+		alignTextTop	: 'Vrh teksta',
+		alignTop	: 'Vrh',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Boja pozadine',
+		width	: 'Širina',
+		height	: 'Visina',
+		hSpace	: 'HSpace',
+		vSpace	: 'VSpace',
+		validateSrc : 'Molimo ukucajte URL link',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Check Spelling', // MISSING
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Not in dictionary', // MISSING
+		changeTo		: 'Change to', // MISSING
+		btnIgnore		: 'Ignore', // MISSING
+		btnIgnoreAll	: 'Ignore All', // MISSING
+		btnReplace		: 'Replace', // MISSING
+		btnReplaceAll	: 'Replace All', // MISSING
+		btnUndo			: 'Undo', // MISSING
+		noSuggestions	: '- No suggestions -', // MISSING
+		progress		: 'Spell check in progress...', // MISSING
+		noMispell		: 'Spell check complete: No misspellings found', // MISSING
+		noChanges		: 'Spell check complete: No words changed', // MISSING
+		oneChange		: 'Spell check complete: One word changed', // MISSING
+		manyChanges		: 'Spell check complete: %1 words changed', // MISSING
+		ieSpellDownload	: 'Spell checker not installed. Do you want to download it now?' // MISSING
+	},
+
+	smiley :
+	{
+		toolbar	: 'Smješko',
+		title	: 'Ubaci smješka'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Numerisana lista',
+	bulletedlist : 'Lista',
+	indent : 'Poveæaj uvod',
+	outdent : 'Smanji uvod',
+
+	justify :
+	{
+		left : 'Lijevo poravnanje',
+		center : 'Centralno poravnanje',
+		right : 'Desno poravnanje',
+		block : 'Puno poravnanje'
+	},
+
+	blockquote : 'Blockquote', // MISSING
+
+	clipboard :
+	{
+		title		: 'Zalijepi',
+		cutError	: 'Sigurnosne postavke vašeg pretraživaèa ne dozvoljavaju operacije automatskog rezanja. Molimo koristite kraticu na tastaturi (Ctrl+X).',
+		copyError	: 'Sigurnosne postavke Vašeg pretraživaèa ne dozvoljavaju operacije automatskog kopiranja. Molimo koristite kraticu na tastaturi (Ctrl+C).',
+		pasteMsg	: 'Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit OK', // MISSING
+		securityMsg	: 'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.' // MISSING
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Zalijepi iz Word-a',
+		title : 'Zalijepi iz Word-a',
+		advice : 'Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.', // MISSING
+		ignoreFontFace : 'Ignore Font Face definitions', // MISSING
+		removeStyle : 'Remove Styles definitions' // MISSING
+	},
+
+	pasteText :
+	{
+		button : 'Zalijepi kao obièan tekst',
+		title : 'Zalijepi kao obièan tekst'
+	},
+
+	templates :
+	{
+		button : 'Templates', // MISSING
+		title : 'Content Templates', // MISSING
+		insertOption: 'Replace actual contents', // MISSING
+		selectPromptMsg: 'Please select the template to open in the editor', // MISSING
+		emptyListMsg : '(No templates defined)' // MISSING
+	},
+
+	showBlocks : 'Show Blocks', // MISSING
+
+	stylesCombo :
+	{
+		label : 'Stil',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Format',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Format',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normal',
+		tag_pre : 'Formatted',
+		tag_address : 'Address',
+		tag_h1 : 'Heading 1',
+		tag_h2 : 'Heading 2',
+		tag_h3 : 'Heading 3',
+		tag_h4 : 'Heading 4',
+		tag_h5 : 'Heading 5',
+		tag_h6 : 'Heading 6',
+		tag_div : 'Normal (DIV)' // MISSING
+	},
+
+	font :
+	{
+		label : 'Font',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Font',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Velièina',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Velièina',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Boja teksta',
+		bgColorTitle : 'Boja pozadine',
+		auto : 'Automatska',
+		more : 'Više boja...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/ca.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/ca.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/ca.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Catalan language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['ca'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Codi font',
+	newPage			: 'Nova Pàgina',
+	save			: 'Desa',
+	preview			: 'Visualització prèvia',
+	cut				: 'Retalla',
+	copy			: 'Copia',
+	paste			: 'Enganxa',
+	print			: 'Imprimeix',
+	underline		: 'Subratllat',
+	bold			: 'Negreta',
+	italic			: 'Cursiva',
+	selectAll		: 'Selecciona-ho tot',
+	removeFormat	: 'Elimina Format',
+	strike			: 'Barrat',
+	subscript		: 'Subíndex',
+	superscript		: 'Superíndex',
+	horizontalrule	: 'Insereix línia horitzontal',
+	pagebreak		: 'Insereix salt de pàgina',
+	unlink			: 'Elimina l\'enllaç',
+	undo			: 'Desfés',
+	redo			: 'Refés',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Veure servidor',
+		url				: 'URL',
+		protocol		: 'Protocol',
+		upload			: 'Puja',
+		uploadSubmit	: 'Envia-la al servidor',
+		image			: 'Imatge',
+		flash			: 'Flash',
+		form			: 'Formulari',
+		checkbox		: 'Casella de verificació',
+		radio		: 'Botó d\'opció',
+		textField		: 'Camp de text',
+		textarea		: 'Àrea de text',
+		hiddenField		: 'Camp ocult',
+		button			: 'Botó',
+		select	: 'Camp de selecció',
+		imageButton		: 'Botó d\'imatge',
+		notSet			: '<no definit>',
+		id				: 'Id',
+		name			: 'Nom',
+		langDir			: 'Direcció de l\'idioma',
+		langDirLtr		: 'D\'esquerra a dreta (LTR)',
+		langDirRtl		: 'De dreta a esquerra (RTL)',
+		langCode		: 'Codi d\'idioma',
+		longDescr		: 'Descripció llarga de la URL',
+		cssClass		: 'Classes del full d\'estil',
+		advisoryTitle	: 'Títol consultiu',
+		cssStyle		: 'Estil',
+		ok				: 'D\'acord',
+		cancel			: 'Cancel·la',
+		generalTab		: 'General',
+		advancedTab		: 'Avançat',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Insereix caràcter especial',
+		title		: 'Selecciona el caràcter especial'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Insereix/Edita enllaç',
+		menu		: 'Edita l\'enllaç',
+		title		: 'Enllaç',
+		info		: 'Informació de l\'enllaç',
+		target		: 'Destí',
+		upload		: 'Puja',
+		advanced	: 'Avançat',
+		type		: 'Tipus d\'enllaç',
+		toAnchor	: 'Àncora en aquesta pàgina',
+		toEmail		: 'Correu electrònic',
+		target		: 'Destí',
+		targetNotSet	: '<no definit>',
+		targetFrame	: '<marc>',
+		targetPopup	: '<finestra emergent>',
+		targetNew	: 'Nova finestra (_blank)',
+		targetTop	: 'Finestra Major (_top)',
+		targetSelf	: 'Mateixa finestra (_self)',
+		targetParent	: 'Finestra pare (_parent)',
+		targetFrameName	: 'Nom del marc de destí',
+		targetPopupName	: 'Nom finestra popup',
+		popupFeatures	: 'Característiques finestra popup',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Barra d\'estat',
+		popupLocationBar	: 'Barra d\'adreça',
+		popupToolbar	: 'Barra d\'eines',
+		popupMenuBar	: 'Barra de menú',
+		popupFullScreen	: 'Pantalla completa (IE)',
+		popupScrollBars	: 'Barres d\'scroll',
+		popupDependent	: 'Depenent (Netscape)',
+		popupWidth		: 'Amplada',
+		popupLeft		: 'Posició esquerra',
+		popupHeight		: 'Alçada',
+		popupTop		: 'Posició dalt',
+		id				: 'Id', // MISSING
+		langDir			: 'Direcció de l\'idioma',
+		langDirNotSet	: '<no definit>',
+		langDirLTR		: 'D\'esquerra a dreta (LTR)',
+		langDirRTL		: 'De dreta a esquerra (RTL)',
+		acccessKey		: 'Clau d\'accés',
+		name			: 'Nom',
+		langCode		: 'Direcció de l\'idioma',
+		tabIndex		: 'Index de Tab',
+		advisoryTitle	: 'Títol consultiu',
+		advisoryContentType	: 'Tipus de contingut consultiu',
+		cssClasses		: 'Classes del full d\'estil',
+		charset			: 'Conjunt de caràcters font enllaçat',
+		styles			: 'Estil',
+		selectAnchor	: 'Selecciona una àncora',
+		anchorName		: 'Per nom d\'àncora',
+		anchorId		: 'Per Id d\'element',
+		emailAddress	: 'Adreça de correu electrònic',
+		emailSubject	: 'Assumpte del missatge',
+		emailBody		: 'Cos del missatge',
+		noAnchors		: '(No hi ha àncores disponibles en aquest document)',
+		noUrl			: 'Si us plau, escrigui l\'enllaç URL',
+		noEmail			: 'Si us plau, escrigui l\'adreça correu electrònic'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Insereix/Edita àncora',
+		menu		: 'Propietats de l\'àncora',
+		title		: 'Propietats de l\'àncora',
+		name		: 'Nom de l\'àncora',
+		errorName	: 'Si us plau, escriviu el nom de l\'ancora'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Cerca i reemplaça',
+		find				: 'Cerca',
+		replace				: 'Reemplaça',
+		findWhat			: 'Cerca:',
+		replaceWith			: 'Remplaça amb:',
+		notFoundMsg			: 'El text especificat no s\'ha trobat.',
+		matchCase			: 'Distingeix majúscules/minúscules',
+		matchWord			: 'Només paraules completes',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Reemplaça-ho tot',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Taula',
+		title		: 'Propietats de la taula',
+		menu		: 'Propietats de la taula',
+		deleteTable	: 'Suprimeix la taula',
+		rows		: 'Files',
+		columns		: 'Columnes',
+		border		: 'Mida vora',
+		align		: 'Alineació',
+		alignNotSet	: '<No Definit>',
+		alignLeft	: 'Esquerra',
+		alignCenter	: 'Centre',
+		alignRight	: 'Dreta',
+		width		: 'Amplada',
+		widthPx		: 'píxels',
+		widthPc		: 'percentatge',
+		height		: 'Alçada',
+		cellSpace	: 'Espaiat de cel·les',
+		cellPad		: 'Encoixinament de cel·les',
+		caption		: 'Títol',
+		summary		: 'Resum',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Cel·la',
+			insertBefore	: 'Insereix cel·la abans de',
+			insertAfter		: 'Insereix cel·la darrera',
+			deleteCell		: 'Suprimeix les cel·les',
+			merge			: 'Fusiona les cel·les',
+			mergeRight		: 'Fusiona cap a la dreta',
+			mergeDown		: 'Fusiona cap avall',
+			splitHorizontal	: 'Divideix la cel·la horitzontalment',
+			splitVertical	: 'Divideix la cel·la verticalment',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Fila',
+			insertBefore	: 'Insereix fila abans de',
+			insertAfter		: 'Insereix fila darrera',
+			deleteRow		: 'Suprimeix una fila'
+		},
+
+		column :
+		{
+			menu			: 'Columna',
+			insertBefore	: 'Insereix columna abans de',
+			insertAfter		: 'Insereix columna darrera',
+			deleteColumn	: 'Suprimeix una columna'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Propietats del botó',
+		text		: 'Text (Valor)',
+		type		: 'Tipus',
+		typeBtn		: 'Botó',
+		typeSbm		: 'Transmet formulari',
+		typeRst		: 'Reinicia formulari'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Propietats de la casella de verificació',
+		radioTitle	: 'Propietats del botó d\'opció',
+		value		: 'Valor',
+		selected	: 'Seleccionat'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Propietats del formulari',
+		menu		: 'Propietats del formulari',
+		action		: 'Acció',
+		method		: 'Mètode',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Destí',
+		targetNotSet	: '<no definit>',
+		targetNew	: 'Nova finestra (_blank)',
+		targetTop	: 'Finestra Major (_top)',
+		targetSelf	: 'Mateixa finestra (_self)',
+		targetParent	: 'Finestra pare (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Propietats del camp de selecció',
+		selectInfo	: 'Info',
+		opAvail		: 'Opcions disponibles',
+		value		: 'Valor',
+		size		: 'Mida',
+		lines		: 'Línies',
+		chkMulti	: 'Permet múltiples seleccions',
+		opText		: 'Text',
+		opValue		: 'Valor',
+		btnAdd		: 'Afegeix',
+		btnModify	: 'Modifica',
+		btnUp		: 'Amunt',
+		btnDown		: 'Avall',
+		btnSetValue : 'Selecciona per defecte',
+		btnDelete	: 'Elimina'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Propietats de l\'àrea de text',
+		cols		: 'Columnes',
+		rows		: 'Files'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Propietats del camp de text',
+		name		: 'Nom',
+		value		: 'Valor',
+		charWidth	: 'Amplada',
+		maxChars	: 'Nombre màxim de caràcters',
+		type		: 'Tipus',
+		typeText	: 'Text',
+		typePass	: 'Contrasenya'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Propietats del camp ocult',
+		name	: 'Nom',
+		value	: 'Valor'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Propietats de la imatge',
+		titleButton	: 'Propietats del botó d\'imatge',
+		menu		: 'Propietats de la imatge',
+		infoTab	: 'Informació de la imatge',
+		btnUpload	: 'Envia-la al servidor',
+		url		: 'URL',
+		upload	: 'Puja',
+		alt		: 'Text alternatiu',
+		width		: 'Amplada',
+		height	: 'Alçada',
+		lockRatio	: 'Bloqueja les proporcions',
+		resetSize	: 'Restaura la mida',
+		border	: 'Vora',
+		hSpace	: 'Espaiat horit.',
+		vSpace	: 'Espaiat vert.',
+		align		: 'Alineació',
+		alignLeft	: 'Ajusta a l\'esquerra',
+		alignAbsBottom: 'Abs Bottom',
+		alignAbsMiddle: 'Abs Middle',
+		alignBaseline	: 'Baseline',
+		alignBottom	: 'Bottom',
+		alignMiddle	: 'Middle',
+		alignRight	: 'Ajusta a la dreta',
+		alignTextTop	: 'Text Top',
+		alignTop	: 'Top',
+		preview	: 'Vista prèvia',
+		alertUrl	: 'Si us plau, escriviu la URL de la imatge',
+		linkTab	: 'Enllaç',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Propietats del Flash',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Propietats del Flash',
+		chkPlay		: 'Reprodució automàtica',
+		chkLoop		: 'Bucle',
+		chkMenu		: 'Habilita menú Flash',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Escala',
+		scaleAll		: 'Mostra-ho tot',
+		scaleNoBorder	: 'Sense vores',
+		scaleFit		: 'Mida exacta',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Alineació',
+		alignLeft	: 'Ajusta a l\'esquerra',
+		alignAbsBottom: 'Abs Bottom',
+		alignAbsMiddle: 'Abs Middle',
+		alignBaseline	: 'Baseline',
+		alignBottom	: 'Bottom',
+		alignMiddle	: 'Middle',
+		alignRight	: 'Ajusta a la dreta',
+		alignTextTop	: 'Text Top',
+		alignTop	: 'Top',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Color de Fons',
+		width	: 'Amplada',
+		height	: 'Alçada',
+		hSpace	: 'Espaiat horit.',
+		vSpace	: 'Espaiat vert.',
+		validateSrc : 'Si us plau, escrigui l\'enllaç URL',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Revisa l\'ortografia',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'No és al diccionari',
+		changeTo		: 'Reemplaça amb',
+		btnIgnore		: 'Ignora',
+		btnIgnoreAll	: 'Ignora-les totes',
+		btnReplace		: 'Canvia',
+		btnReplaceAll	: 'Canvia-les totes',
+		btnUndo			: 'Desfés',
+		noSuggestions	: 'Cap suggeriment',
+		progress		: 'Verificació ortogràfica en curs...',
+		noMispell		: 'Verificació ortogràfica acabada: no hi ha cap paraula mal escrita',
+		noChanges		: 'Verificació ortogràfica: no s\'ha canviat cap paraula',
+		oneChange		: 'Verificació ortogràfica: s\'ha canviat una paraula',
+		manyChanges		: 'Verificació ortogràfica: s\'han canviat %1 paraules',
+		ieSpellDownload	: 'Verificació ortogràfica no instal·lada. Voleu descarregar-ho ara?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Icona',
+		title	: 'Insereix una icona'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Llista numerada',
+	bulletedlist : 'Llista de pics',
+	indent : 'Augmenta el sagnat',
+	outdent : 'Redueix el sagnat',
+
+	justify :
+	{
+		left : 'Alinia a l\'esquerra',
+		center : 'Centrat',
+		right : 'Alinia a la dreta',
+		block : 'Justificat'
+	},
+
+	blockquote : 'Bloc de cita',
+
+	clipboard :
+	{
+		title		: 'Enganxa',
+		cutError	: 'La seguretat del vostre navegador no permet executar automàticament les operacions de retallar. Si us plau, utilitzeu el teclat (Ctrl+X).',
+		copyError	: 'La seguretat del vostre navegador no permet executar automàticament les operacions de copiar. Si us plau, utilitzeu el teclat (Ctrl+C).',
+		pasteMsg	: 'Si us plau, enganxeu dins del següent camp utilitzant el teclat (<STRONG>Ctrl+V</STRONG>) i premeu <STRONG>OK</STRONG>.',
+		securityMsg	: 'A causa de la configuració de seguretat del vostre navegador, l\'editor no pot accedir al porta-retalls directament. Enganxeu-ho un altre cop en aquesta finestra.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Enganxa des del Word',
+		title : 'Enganxa des del Word',
+		advice : 'Si us plau, enganxeu dins del següent camp utilitzant el teclat (<STRONG>Ctrl+V</STRONG>) i premeu <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Ignora definicions de font',
+		removeStyle : 'Elimina definicions d\'estil'
+	},
+
+	pasteText :
+	{
+		button : 'Enganxa com a text no formatat',
+		title : 'Enganxa com a text no formatat'
+	},
+
+	templates :
+	{
+		button : 'Plantilles',
+		title : 'Contingut plantilles',
+		insertOption: 'Reemplaça el contingut actual',
+		selectPromptMsg: 'Si us plau, seleccioneu la plantilla per obrir a l\'editor<br>(el contingut actual no serà enregistrat):',
+		emptyListMsg : '(No hi ha plantilles definides)'
+	},
+
+	showBlocks : 'Mostra els blocs',
+
+	stylesCombo :
+	{
+		label : 'Estil',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Format',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Format',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normal',
+		tag_pre : 'Formatejat',
+		tag_address : 'Adreça',
+		tag_h1 : 'Encapçalament 1',
+		tag_h2 : 'Encapçalament 2',
+		tag_h3 : 'Encapçalament 3',
+		tag_h4 : 'Encapçalament 4',
+		tag_h5 : 'Encapçalament 5',
+		tag_h6 : 'Encapçalament 6',
+		tag_div : 'Normal (DIV)'
+	},
+
+	font :
+	{
+		label : 'Tipus de lletra',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Tipus de lletra',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Mida',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Mida',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Color de Text',
+		bgColorTitle : 'Color de Fons',
+		auto : 'Automàtic',
+		more : 'Més colors...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/cs.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/cs.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/cs.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Czech language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['cs'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Zdroj',
+	newPage			: 'Nová stránka',
+	save			: 'Uložit',
+	preview			: 'Náhled',
+	cut				: 'Vyjmout',
+	copy			: 'Kopírovat',
+	paste			: 'Vložit',
+	print			: 'Tisk',
+	underline		: 'Podtržené',
+	bold			: 'Tučné',
+	italic			: 'Kurzíva',
+	selectAll		: 'Vybrat vše',
+	removeFormat	: 'Odstranit formátování',
+	strike			: 'Přeškrtnuté',
+	subscript		: 'Dolní index',
+	superscript		: 'Horní index',
+	horizontalrule	: 'Vložit vodorovnou linku',
+	pagebreak		: 'Vložit konec stránky',
+	unlink			: 'Odstranit odkaz',
+	undo			: 'Zpět',
+	redo			: 'Znovu',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Vybrat na serveru',
+		url				: 'URL',
+		protocol		: 'Protokol',
+		upload			: 'Odeslat',
+		uploadSubmit	: 'Odeslat na server',
+		image			: 'Obrázek',
+		flash			: 'Flash',
+		form			: 'Formulář',
+		checkbox		: 'Zaškrtávací políčko',
+		radio		: 'Přepínač',
+		textField		: 'Textové pole',
+		textarea		: 'Textová oblast',
+		hiddenField		: 'Skryté pole',
+		button			: 'Tlačítko',
+		select	: 'Seznam',
+		imageButton		: 'Obrázkové tlačítko',
+		notSet			: '<nenastaveno>',
+		id				: 'Id',
+		name			: 'Jméno',
+		langDir			: 'Orientace jazyka',
+		langDirLtr		: 'Zleva do prava (LTR)',
+		langDirRtl		: 'Zprava do leva (RTL)',
+		langCode		: 'Kód jazyka',
+		longDescr		: 'Dlouhý popis URL',
+		cssClass		: 'Třída stylu',
+		advisoryTitle	: 'Pomocný titulek',
+		cssStyle		: 'Styl',
+		ok				: 'OK',
+		cancel			: 'Storno',
+		generalTab		: 'Obecné',
+		advancedTab		: 'Rozšířené',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Vložit speciální znaky',
+		title		: 'Výběr speciálního znaku'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Vložit/změnit odkaz',
+		menu		: 'Změnit odkaz',
+		title		: 'Odkaz',
+		info		: 'Informace o odkazu',
+		target		: 'Cíl',
+		upload		: 'Odeslat',
+		advanced	: 'Rozšířené',
+		type		: 'Typ odkazu',
+		toAnchor	: 'Kotva v této stránce',
+		toEmail		: 'E-Mail',
+		target		: 'Cíl',
+		targetNotSet	: '<nenastaveno>',
+		targetFrame	: '<rámec>',
+		targetPopup	: '<vyskakovací okno>',
+		targetNew	: 'Nové okno (_blank)',
+		targetTop	: 'Hlavní okno (_top)',
+		targetSelf	: 'Stejné okno (_self)',
+		targetParent	: 'Rodičovské okno (_parent)',
+		targetFrameName	: 'Název cílového rámu',
+		targetPopupName	: 'Název vyskakovacího okna',
+		popupFeatures	: 'Vlastnosti vyskakovacího okna',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Stavový řádek',
+		popupLocationBar	: 'Panel umístění',
+		popupToolbar	: 'Panel nástrojů',
+		popupMenuBar	: 'Panel nabídky',
+		popupFullScreen	: 'Celá obrazovka (IE)',
+		popupScrollBars	: 'Posuvníky',
+		popupDependent	: 'Závislost (Netscape)',
+		popupWidth		: 'Šířka',
+		popupLeft		: 'Levý okraj',
+		popupHeight		: 'Výška',
+		popupTop		: 'Horní okraj',
+		id				: 'Id', // MISSING
+		langDir			: 'Orientace jazyka',
+		langDirNotSet	: '<nenastaveno>',
+		langDirLTR		: 'Zleva do prava (LTR)',
+		langDirRTL		: 'Zprava do leva (RTL)',
+		acccessKey		: 'Přístupový klíč',
+		name			: 'Jméno',
+		langCode		: 'Orientace jazyka',
+		tabIndex		: 'Pořadí prvku',
+		advisoryTitle	: 'Pomocný titulek',
+		advisoryContentType	: 'Pomocný typ obsahu',
+		cssClasses		: 'Třída stylu',
+		charset			: 'Přiřazená znaková sada',
+		styles			: 'Styl',
+		selectAnchor	: 'Vybrat kotvu',
+		anchorName		: 'Podle jména kotvy',
+		anchorId		: 'Podle Id objektu',
+		emailAddress	: 'E-Mailová adresa',
+		emailSubject	: 'Předmět zprávy',
+		emailBody		: 'Tělo zprávy',
+		noAnchors		: '(Ve stránce není definována žádná kotva!)',
+		noUrl			: 'Zadejte prosím URL odkazu',
+		noEmail			: 'Zadejte prosím e-mailovou adresu'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Vložít/změnit záložku',
+		menu		: 'Vlastnosti záložky',
+		title		: 'Vlastnosti záložky',
+		name		: 'Název záložky',
+		errorName	: 'Zadejte prosím název záložky'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Najít a nahradit',
+		find				: 'Hledat',
+		replace				: 'Nahradit',
+		findWhat			: 'Co hledat:',
+		replaceWith			: 'Čím nahradit:',
+		notFoundMsg			: 'Hledaný text nebyl nalezen.',
+		matchCase			: 'Rozlišovat velikost písma',
+		matchWord			: 'Pouze celá slova',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Nahradit vše',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tabulka',
+		title		: 'Vlastnosti tabulky',
+		menu		: 'Vlastnosti tabulky',
+		deleteTable	: 'Smazat tabulku',
+		rows		: 'Řádky',
+		columns		: 'Sloupce',
+		border		: 'Ohraničení',
+		align		: 'Zarovnání',
+		alignNotSet	: '<nenastaveno>',
+		alignLeft	: 'Vlevo',
+		alignCenter	: 'Na střed',
+		alignRight	: 'Vpravo',
+		width		: 'Šířka',
+		widthPx		: 'bodů',
+		widthPc		: 'procent',
+		height		: 'Výška',
+		cellSpace	: 'Vzdálenost buněk',
+		cellPad		: 'Odsazení obsahu',
+		caption		: 'Popis',
+		summary		: 'Souhrn',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Buňka',
+			insertBefore	: 'Vložit buňku před',
+			insertAfter		: 'Vložit buňku za',
+			deleteCell		: 'Smazat buňky',
+			merge			: 'Sloučit buňky',
+			mergeRight		: 'Sloučit doprava',
+			mergeDown		: 'Sloučit dolů',
+			splitHorizontal	: 'Rozdělit buňky vodorovně',
+			splitVertical	: 'Rozdělit buňky svisle',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Řádek',
+			insertBefore	: 'Vložit řádek před',
+			insertAfter		: 'Vložit řádek za',
+			deleteRow		: 'Smazat řádky'
+		},
+
+		column :
+		{
+			menu			: 'Sloupec',
+			insertBefore	: 'Vložit sloupec před',
+			insertAfter		: 'Vložit sloupec za',
+			deleteColumn	: 'Smazat sloupec'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Vlastnosti tlačítka',
+		text		: 'Popisek',
+		type		: 'Typ',
+		typeBtn		: 'Tlačítko',
+		typeSbm		: 'Odeslat',
+		typeRst		: 'Obnovit'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Vlastnosti zaškrtávacího políčka',
+		radioTitle	: 'Vlastnosti přepínače',
+		value		: 'Hodnota',
+		selected	: 'Zaškrtnuto'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Vlastnosti formuláře',
+		menu		: 'Vlastnosti formuláře',
+		action		: 'Akce',
+		method		: 'Metoda',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Cíl',
+		targetNotSet	: '<nenastaveno>',
+		targetNew	: 'Nové okno (_blank)',
+		targetTop	: 'Hlavní okno (_top)',
+		targetSelf	: 'Stejné okno (_self)',
+		targetParent	: 'Rodičovské okno (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Vlastnosti seznamu',
+		selectInfo	: 'Info',
+		opAvail		: 'Dostupná nastavení',
+		value		: 'Hodnota',
+		size		: 'Velikost',
+		lines		: 'Řádků',
+		chkMulti	: 'Povolit mnohonásobné výběry',
+		opText		: 'Text',
+		opValue		: 'Hodnota',
+		btnAdd		: 'Přidat',
+		btnModify	: 'Změnit',
+		btnUp		: 'Nahoru',
+		btnDown		: 'Dolů',
+		btnSetValue : 'Nastavit jako vybranou hodnotu',
+		btnDelete	: 'Smazat'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Vlastnosti textové oblasti',
+		cols		: 'Sloupců',
+		rows		: 'Řádků'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Vlastnosti textového pole',
+		name		: 'Název',
+		value		: 'Hodnota',
+		charWidth	: 'Šířka ve znacích',
+		maxChars	: 'Maximální počet znaků',
+		type		: 'Typ',
+		typeText	: 'Text',
+		typePass	: 'Heslo'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Vlastnosti skrytého pole',
+		name	: 'Název',
+		value	: 'Hodnota'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Vlastnosti obrázku',
+		titleButton	: 'Vlastností obrázkového tlačítka',
+		menu		: 'Vlastnosti obrázku',
+		infoTab	: 'Informace o obrázku',
+		btnUpload	: 'Odeslat na server',
+		url		: 'URL',
+		upload	: 'Odeslat',
+		alt		: 'Alternativní text',
+		width		: 'Šířka',
+		height	: 'Výška',
+		lockRatio	: 'Zámek',
+		resetSize	: 'Původní velikost',
+		border	: 'Okraje',
+		hSpace	: 'H-mezera',
+		vSpace	: 'V-mezera',
+		align		: 'Zarovnání',
+		alignLeft	: 'Vlevo',
+		alignAbsBottom: 'Zcela dolů',
+		alignAbsMiddle: 'Doprostřed',
+		alignBaseline	: 'Na účaří',
+		alignBottom	: 'Dolů',
+		alignMiddle	: 'Na střed',
+		alignRight	: 'Vpravo',
+		alignTextTop	: 'Na horní okraj textu',
+		alignTop	: 'Nahoru',
+		preview	: 'Náhled',
+		alertUrl	: 'Zadejte prosím URL obrázku',
+		linkTab	: 'Odkaz',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Vlastnosti Flashe',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Vlastnosti Flashe',
+		chkPlay		: 'Automatické spuštění',
+		chkLoop		: 'Opakování',
+		chkMenu		: 'Nabídka Flash',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Zobrazit',
+		scaleAll		: 'Zobrazit vše',
+		scaleNoBorder	: 'Bez okraje',
+		scaleFit		: 'Přizpůsobit',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Zarovnání',
+		alignLeft	: 'Vlevo',
+		alignAbsBottom: 'Zcela dolů',
+		alignAbsMiddle: 'Doprostřed',
+		alignBaseline	: 'Na účaří',
+		alignBottom	: 'Dolů',
+		alignMiddle	: 'Na střed',
+		alignRight	: 'Vpravo',
+		alignTextTop	: 'Na horní okraj textu',
+		alignTop	: 'Nahoru',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Barva pozadí',
+		width	: 'Šířka',
+		height	: 'Výška',
+		hSpace	: 'H-mezera',
+		vSpace	: 'V-mezera',
+		validateSrc : 'Zadejte prosím URL odkazu',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Zkontrolovat pravopis',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Není ve slovníku',
+		changeTo		: 'Změnit na',
+		btnIgnore		: 'Přeskočit',
+		btnIgnoreAll	: 'Přeskakovat vše',
+		btnReplace		: 'Zaměnit',
+		btnReplaceAll	: 'Zaměňovat vše',
+		btnUndo			: 'Zpět',
+		noSuggestions	: '- žádné návrhy -',
+		progress		: 'Probíhá kontrola pravopisu...',
+		noMispell		: 'Kontrola pravopisu dokončena: Žádné pravopisné chyby nenalezeny',
+		noChanges		: 'Kontrola pravopisu dokončena: Beze změn',
+		oneChange		: 'Kontrola pravopisu dokončena: Jedno slovo změněno',
+		manyChanges		: 'Kontrola pravopisu dokončena: %1 slov změněno',
+		ieSpellDownload	: 'Kontrola pravopisu není nainstalována. Chcete ji nyní stáhnout?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Smajlíky',
+		title	: 'Vkládání smajlíků'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Číslování',
+	bulletedlist : 'Odrážky',
+	indent : 'Zvětšit odsazení',
+	outdent : 'Zmenšit odsazení',
+
+	justify :
+	{
+		left : 'Zarovnat vlevo',
+		center : 'Zarovnat na střed',
+		right : 'Zarovnat vpravo',
+		block : 'Zarovnat do bloku'
+	},
+
+	blockquote : 'Citace',
+
+	clipboard :
+	{
+		title		: 'Vložit',
+		cutError	: 'Bezpečnostní nastavení Vašeho prohlížeče nedovolují editoru spustit funkci pro vyjmutí zvoleného textu do schránky. Prosím vyjměte zvolený text do schránky pomocí klávesnice (Ctrl+X).',
+		copyError	: 'Bezpečnostní nastavení Vašeho prohlížeče nedovolují editoru spustit funkci pro kopírování zvoleného textu do schránky. Prosím zkopírujte zvolený text do schránky pomocí klávesnice (Ctrl+C).',
+		pasteMsg	: 'Do následujícího pole vložte požadovaný obsah pomocí klávesnice (<STRONG>Ctrl+V</STRONG>) a stiskněte <STRONG>OK</STRONG>.',
+		securityMsg	: 'Z důvodů nastavení bezpečnosti Vašeho prohlížeče nemůže editor přistupovat přímo do schránky. Obsah schránky prosím vložte znovu do tohoto okna.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Vložit z Wordu',
+		title : 'Vložit z Wordu',
+		advice : 'Do následujícího pole vložte požadovaný obsah pomocí klávesnice (<STRONG>Ctrl+V</STRONG>) a stiskněte <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Ignorovat písmo',
+		removeStyle : 'Odstranit styly'
+	},
+
+	pasteText :
+	{
+		button : 'Vložit jako čistý text',
+		title : 'Vložit jako čistý text'
+	},
+
+	templates :
+	{
+		button : 'Šablony',
+		title : 'Šablony obsahu',
+		insertOption: 'Nahradit aktuální obsah',
+		selectPromptMsg: 'Prosím zvolte šablonu pro otevření v editoru<br>(aktuální obsah editoru bude ztracen):',
+		emptyListMsg : '(Není definována žádná šablona)'
+	},
+
+	showBlocks : 'Ukázat bloky',
+
+	stylesCombo :
+	{
+		label : 'Styl',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Formát',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Formát',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normální',
+		tag_pre : 'Naformátováno',
+		tag_address : 'Adresa',
+		tag_h1 : 'Nadpis 1',
+		tag_h2 : 'Nadpis 2',
+		tag_h3 : 'Nadpis 3',
+		tag_h4 : 'Nadpis 4',
+		tag_h5 : 'Nadpis 5',
+		tag_h6 : 'Nadpis 6',
+		tag_div : 'Normální (DIV)'
+	},
+
+	font :
+	{
+		label : 'Písmo',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Písmo',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Velikost',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Velikost',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Barva textu',
+		bgColorTitle : 'Barva pozadí',
+		auto : 'Automaticky',
+		more : 'Více barev...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/da.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/da.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/da.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Danish language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['da'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Kilde',
+	newPage			: 'Ny side',
+	save			: 'Gem',
+	preview			: 'Vis eksempel',
+	cut				: 'Klip',
+	copy			: 'Kopier',
+	paste			: 'Indsæt',
+	print			: 'Udskriv',
+	underline		: 'Understreget',
+	bold			: 'Fed',
+	italic			: 'Kursiv',
+	selectAll		: 'Vælg alt',
+	removeFormat	: 'Fjern formatering',
+	strike			: 'Overstreget',
+	subscript		: 'Sænket skrift',
+	superscript		: 'Hævet skrift',
+	horizontalrule	: 'Indsæt vandret linie',
+	pagebreak		: 'Indsæt sideskift',
+	unlink			: 'Fjern hyperlink',
+	undo			: 'Fortryd',
+	redo			: 'Annuller fortryd',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Gennemse...',
+		url				: 'URL',
+		protocol		: 'Protokol',
+		upload			: 'Upload',
+		uploadSubmit	: 'Upload',
+		image			: 'Indsæt billede',
+		flash			: 'Flash',
+		form			: 'Indsæt formular',
+		checkbox		: 'Indsæt afkrydsningsfelt',
+		radio		: 'Indsæt alternativknap',
+		textField		: 'Indsæt tekstfelt',
+		textarea		: 'Indsæt tekstboks',
+		hiddenField		: 'Indsæt skjult felt',
+		button			: 'Indsæt knap',
+		select	: 'Indsæt liste',
+		imageButton		: 'Indsæt billedknap',
+		notSet			: '<intet valgt>',
+		id				: 'Id',
+		name			: 'Navn',
+		langDir			: 'Tekstretning',
+		langDirLtr		: 'Fra venstre mod højre (LTR)',
+		langDirRtl		: 'Fra højre mod venstre (RTL)',
+		langCode		: 'Sprogkode',
+		longDescr		: 'Udvidet beskrivelse',
+		cssClass		: 'Typografiark',
+		advisoryTitle	: 'Titel',
+		cssStyle		: 'Typografi',
+		ok				: 'OK',
+		cancel			: 'Annuller',
+		generalTab		: 'Generelt',
+		advancedTab		: 'Avanceret',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Indsæt symbol',
+		title		: 'Vælg symbol'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Indsæt/rediger hyperlink',
+		menu		: 'Rediger hyperlink',
+		title		: 'Egenskaber for hyperlink',
+		info		: 'Generelt',
+		target		: 'Mål',
+		upload		: 'Upload',
+		advanced	: 'Avanceret',
+		type		: 'Hyperlink type',
+		toAnchor	: 'Bogmærke på denne side',
+		toEmail		: 'E-mail',
+		target		: 'Mål',
+		targetNotSet	: '<intet valgt>',
+		targetFrame	: '<ramme>',
+		targetPopup	: '<popup vindue>',
+		targetNew	: 'Nyt vindue (_blank)',
+		targetTop	: 'Hele vinduet (_top)',
+		targetSelf	: 'Samme vindue (_self)',
+		targetParent	: 'Overordnet ramme (_parent)',
+		targetFrameName	: 'Destinationsvinduets navn',
+		targetPopupName	: 'Pop-up vinduets navn',
+		popupFeatures	: 'Egenskaber for pop-up',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Statuslinje',
+		popupLocationBar	: 'Adresselinje',
+		popupToolbar	: 'Værktøjslinje',
+		popupMenuBar	: 'Menulinje',
+		popupFullScreen	: 'Fuld skærm (IE)',
+		popupScrollBars	: 'Scrollbars',
+		popupDependent	: 'Koblet/dependent (Netscape)',
+		popupWidth		: 'Bredde',
+		popupLeft		: 'Position fra venstre',
+		popupHeight		: 'Højde',
+		popupTop		: 'Position fra toppen',
+		id				: 'Id', // MISSING
+		langDir			: 'Tekstretning',
+		langDirNotSet	: '<intet valgt>',
+		langDirLTR		: 'Fra venstre mod højre (LTR)',
+		langDirRTL		: 'Fra højre mod venstre (RTL)',
+		acccessKey		: 'Genvejstast',
+		name			: 'Navn',
+		langCode		: 'Tekstretning',
+		tabIndex		: 'Tabulator indeks',
+		advisoryTitle	: 'Titel',
+		advisoryContentType	: 'Indholdstype',
+		cssClasses		: 'Typografiark',
+		charset			: 'Tegnsæt',
+		styles			: 'Typografi',
+		selectAnchor	: 'Vælg et anker',
+		anchorName		: 'Efter anker navn',
+		anchorId		: 'Efter element Id',
+		emailAddress	: 'E-mailadresse',
+		emailSubject	: 'Emne',
+		emailBody		: 'Brødtekst',
+		noAnchors		: '(Ingen bogmærker dokumentet)',
+		noUrl			: 'Indtast hyperlink URL!',
+		noEmail			: 'Indtast e-mailaddresse!'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Indsæt/rediger bogmærke',
+		menu		: 'Egenskaber for bogmærke',
+		title		: 'Egenskaber for bogmærke',
+		name		: 'Bogmærke navn',
+		errorName	: 'Indtast bogmærke navn!'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Søg og erstat',
+		find				: 'Søg',
+		replace				: 'Erstat',
+		findWhat			: 'Søg efter:',
+		replaceWith			: 'Erstat med:',
+		notFoundMsg			: 'Søgeteksten blev ikke fundet!',
+		matchCase			: 'Forskel på store og små bogstaver',
+		matchWord			: 'Kun hele ord',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Erstat alle',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Table',
+		title		: 'Egenskaber for tabel',
+		menu		: 'Egenskaber for tabel',
+		deleteTable	: 'Slet tabel',
+		rows		: 'Rækker',
+		columns		: 'Kolonner',
+		border		: 'Rammebredde',
+		align		: 'Justering',
+		alignNotSet	: '<intet valgt>',
+		alignLeft	: 'Venstrestillet',
+		alignCenter	: 'Centreret',
+		alignRight	: 'Højrestillet',
+		width		: 'Bredde',
+		widthPx		: 'pixels',
+		widthPc		: 'procent',
+		height		: 'Højde',
+		cellSpace	: 'Celleafstand',
+		cellPad		: 'Cellemargen',
+		caption		: 'Titel',
+		summary		: 'Resume',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Celle',
+			insertBefore	: 'Indsæt celle før',
+			insertAfter		: 'Indsæt celle efter',
+			deleteCell		: 'Slet celle',
+			merge			: 'Flet celler',
+			mergeRight		: 'Flet til højre',
+			mergeDown		: 'Flet nedad',
+			splitHorizontal	: 'Del celle vandret',
+			splitVertical	: 'Del celle lodret',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Række',
+			insertBefore	: 'Indsæt række før',
+			insertAfter		: 'Indsæt række efter',
+			deleteRow		: 'Slet række'
+		},
+
+		column :
+		{
+			menu			: 'Kolonne',
+			insertBefore	: 'Indsæt kolonne før',
+			insertAfter		: 'Indsæt kolonne efter',
+			deleteColumn	: 'Slet kolonne'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Egenskaber for knap',
+		text		: 'Tekst',
+		type		: 'Type',
+		typeBtn		: 'Knap',
+		typeSbm		: 'Send',
+		typeRst		: 'Nulstil'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Egenskaber for afkrydsningsfelt',
+		radioTitle	: 'Egenskaber for alternativknap',
+		value		: 'Værdi',
+		selected	: 'Valgt'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Egenskaber for formular',
+		menu		: 'Egenskaber for formular',
+		action		: 'Handling',
+		method		: 'Metod',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Mål',
+		targetNotSet	: '<intet valgt>',
+		targetNew	: 'Nyt vindue (_blank)',
+		targetTop	: 'Hele vinduet (_top)',
+		targetSelf	: 'Samme vindue (_self)',
+		targetParent	: 'Overordnet ramme (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Egenskaber for liste',
+		selectInfo	: 'Generelt',
+		opAvail		: 'Valgmuligheder',
+		value		: 'Værdi',
+		size		: 'Størrelse',
+		lines		: 'linier',
+		chkMulti	: 'Tillad flere valg',
+		opText		: 'Tekst',
+		opValue		: 'Værdi',
+		btnAdd		: 'Tilføj',
+		btnModify	: 'Rediger',
+		btnUp		: 'Op',
+		btnDown		: 'Ned',
+		btnSetValue : 'Sæt som valgt',
+		btnDelete	: 'Slet'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Egenskaber for tekstboks',
+		cols		: 'Kolonner',
+		rows		: 'Rækker'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Egenskaber for tekstfelt',
+		name		: 'Navn',
+		value		: 'Værdi',
+		charWidth	: 'Bredde (tegn)',
+		maxChars	: 'Max antal tegn',
+		type		: 'Type',
+		typeText	: 'Tekst',
+		typePass	: 'Adgangskode'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Egenskaber for skjult felt',
+		name	: 'Navn',
+		value	: 'Værdi'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Egenskaber for billede',
+		titleButton	: 'Egenskaber for billedknap',
+		menu		: 'Egenskaber for billede',
+		infoTab	: 'Generelt',
+		btnUpload	: 'Upload',
+		url		: 'URL',
+		upload	: 'Upload',
+		alt		: 'Alternativ tekst',
+		width		: 'Bredde',
+		height	: 'Højde',
+		lockRatio	: 'Lås størrelsesforhold',
+		resetSize	: 'Nulstil størrelse',
+		border	: 'Ramme',
+		hSpace	: 'HMargen',
+		vSpace	: 'VMargen',
+		align		: 'Justering',
+		alignLeft	: 'Venstre',
+		alignAbsBottom: 'Absolut nederst',
+		alignAbsMiddle: 'Absolut centreret',
+		alignBaseline	: 'Grundlinje',
+		alignBottom	: 'Nederst',
+		alignMiddle	: 'Centreret',
+		alignRight	: 'Højre',
+		alignTextTop	: 'Toppen af teksten',
+		alignTop	: 'Øverst',
+		preview	: 'Vis eksempel',
+		alertUrl	: 'Indtast stien til billedet',
+		linkTab	: 'Hyperlink',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Egenskaber for Flash',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Egenskaber for Flash',
+		chkPlay		: 'Automatisk afspilning',
+		chkLoop		: 'Gentagelse',
+		chkMenu		: 'Vis Flash menu',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Skalér',
+		scaleAll		: 'Vis alt',
+		scaleNoBorder	: 'Ingen ramme',
+		scaleFit		: 'Tilpas størrelse',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Justering',
+		alignLeft	: 'Venstre',
+		alignAbsBottom: 'Absolut nederst',
+		alignAbsMiddle: 'Absolut centreret',
+		alignBaseline	: 'Grundlinje',
+		alignBottom	: 'Nederst',
+		alignMiddle	: 'Centreret',
+		alignRight	: 'Højre',
+		alignTextTop	: 'Toppen af teksten',
+		alignTop	: 'Øverst',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Baggrundsfarve',
+		width	: 'Bredde',
+		height	: 'Højde',
+		hSpace	: 'HMargen',
+		vSpace	: 'VMargen',
+		validateSrc : 'Indtast hyperlink URL!',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Stavekontrol',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Ikke i ordbogen',
+		changeTo		: 'Forslag',
+		btnIgnore		: 'Ignorer',
+		btnIgnoreAll	: 'Ignorer alle',
+		btnReplace		: 'Erstat',
+		btnReplaceAll	: 'Erstat alle',
+		btnUndo			: 'Tilbage',
+		noSuggestions	: '- ingen forslag -',
+		progress		: 'Stavekontrolen arbejder...',
+		noMispell		: 'Stavekontrol færdig: Ingen fejl fundet',
+		noChanges		: 'Stavekontrol færdig: Ingen ord ændret',
+		oneChange		: 'Stavekontrol færdig: Et ord ændret',
+		manyChanges		: 'Stavekontrol færdig: %1 ord ændret',
+		ieSpellDownload	: 'Stavekontrol ikke installeret.<br>Vil du hente den nu?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Smiley',
+		title	: 'Vælg smiley'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Talopstilling',
+	bulletedlist : 'Punktopstilling',
+	indent : 'Forøg indrykning',
+	outdent : 'Formindsk indrykning',
+
+	justify :
+	{
+		left : 'Venstrestillet',
+		center : 'Centreret',
+		right : 'Højrestillet',
+		block : 'Lige margener'
+	},
+
+	blockquote : 'Blokcitat',
+
+	clipboard :
+	{
+		title		: 'Indsæt',
+		cutError	: 'Din browsers sikkerhedsindstillinger tillader ikke editoren at klippe tekst automatisk!<br>Brug i stedet tastaturet til at klippe teksten (Ctrl+X).',
+		copyError	: 'Din browsers sikkerhedsindstillinger tillader ikke editoren at kopiere tekst automatisk!<br>Brug i stedet tastaturet til at kopiere teksten (Ctrl+C).',
+		pasteMsg	: 'Indsæt i feltet herunder (<STRONG>Ctrl+V</STRONG>) og klik <STRONG>OK</STRONG>.',
+		securityMsg	: 'På grund af browserens sikkerhedsindstillinger kan editoren ikke tilgå udklipsholderen direkte. Du skal indsætte udklipsholderens indhold i dette vindue igen.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Indsæt fra Word',
+		title : 'Indsæt fra Word',
+		advice : 'Indsæt i feltet herunder (<STRONG>Ctrl+V</STRONG>) og klik <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Ignorer font definitioner',
+		removeStyle : 'Ignorer typografi'
+	},
+
+	pasteText :
+	{
+		button : 'Indsæt som ikke-formateret tekst',
+		title : 'Indsæt som ikke-formateret tekst'
+	},
+
+	templates :
+	{
+		button : 'Skabeloner',
+		title : 'Indholdsskabeloner',
+		insertOption: 'Erstat det faktiske indhold',
+		selectPromptMsg: 'Vælg den skabelon, som skal åbnes i editoren.<br>(Nuværende indhold vil blive overskrevet!):',
+		emptyListMsg : '(Der er ikke defineret nogen skabelon!)'
+	},
+
+	showBlocks : 'Show Blocks', // MISSING
+
+	stylesCombo :
+	{
+		label : 'Typografi',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Formatering',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Formatering',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normal',
+		tag_pre : 'Formateret',
+		tag_address : 'Adresse',
+		tag_h1 : 'Overskrift 1',
+		tag_h2 : 'Overskrift 2',
+		tag_h3 : 'Overskrift 3',
+		tag_h4 : 'Overskrift 4',
+		tag_h5 : 'Overskrift 5',
+		tag_h6 : 'Overskrift 6',
+		tag_div : 'Normal (DIV)'
+	},
+
+	font :
+	{
+		label : 'Skrifttype',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Skrifttype',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Skriftstørrelse',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Skriftstørrelse',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Tekstfarve',
+		bgColorTitle : 'Baggrundsfarve',
+		auto : 'Automatisk',
+		more : 'Flere farver...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/de.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/de.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/de.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * German language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['de'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1',
+
+	// Toolbar buttons without dialogs.
+	source			: 'Quellcode',
+	newPage			: 'Neue Seite',
+	save			: 'Speichern',
+	preview			: 'Vorschau',
+	cut				: 'Ausschneiden',
+	copy			: 'Kopieren',
+	paste			: 'Einfügen',
+	print			: 'Drucken',
+	underline		: 'Unterstrichen',
+	bold			: 'Fett',
+	italic			: 'Kursiv',
+	selectAll		: 'Alles auswählen',
+	removeFormat	: 'Formatierungen entfernen',
+	strike			: 'Durchgestrichen',
+	subscript		: 'Tiefgestellt',
+	superscript		: 'Hochgestellt',
+	horizontalrule	: 'Horizontale Linie einfügen',
+	pagebreak		: 'Seitenumbruch einfügen',
+	unlink			: 'Link entfernen',
+	undo			: 'Rückgängig',
+	redo			: 'Wiederherstellen',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Server durchsuchen',
+		url				: 'Bildauswahl',
+		protocol		: 'Protokoll',
+		upload			: 'Upload',
+		uploadSubmit	: 'Zum Server senden',
+		image			: 'Bild',
+		flash			: 'Flash',
+		form			: 'Formular',
+		checkbox		: 'Checkbox',
+		radio		: 'Radiobutton',
+		textField		: 'Textfeld einzeilig',
+		textarea		: 'Textfeld mehrzeilig',
+		hiddenField		: 'verstecktes Feld',
+		button			: 'Klickbutton',
+		select	: 'Auswahlfeld',
+		imageButton		: 'Bildbutton',
+		notSet			: '<nichts>',
+		id				: 'ID',
+		name			: 'Name',
+		langDir			: 'Schreibrichtung',
+		langDirLtr		: 'Links nach Rechts (LTR)',
+		langDirRtl		: 'Rechts nach Links (RTL)',
+		langCode		: 'Sprachenkürzel',
+		longDescr		: 'Langform URL',
+		cssClass		: 'Stylesheet Klasse',
+		advisoryTitle	: 'Titel Beschreibung',
+		cssStyle		: 'Style',
+		ok				: 'OK',
+		cancel			: 'Abbrechen',
+		generalTab		: 'Allgemein',
+		advancedTab		: 'Erweitert',
+		validateNumberFailed	: 'Dieser Wert ist keine Nummer.',
+		confirmNewPage	: 'Alle nicht gespeicherten Änderungen gehen verlohren. Sind sie sicher die neue Seite zu laden?',
+		confirmCancel	: 'Einige Optionen wurden geändert. Wollen Sie den Dialog dennoch schließen?',
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Sonderzeichen einfügen/editieren',
+		title		: 'Sonderzeichen auswählen'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Link einfügen/editieren',
+		menu		: 'Link editieren',
+		title		: 'Link',
+		info		: 'Link-Info',
+		target		: 'Zielseite',
+		upload		: 'Upload',
+		advanced	: 'Erweitert',
+		type		: 'Link-Typ',
+		toAnchor	: 'Anker in dieser Seite',
+		toEmail		: 'E-Mail',
+		target		: 'Zielseite',
+		targetNotSet	: '<nichts>',
+		targetFrame	: '<Frame>',
+		targetPopup	: '<Pop-up Fenster>',
+		targetNew	: 'Neues Fenster (_blank)',
+		targetTop	: 'Oberstes Fenster (_top)',
+		targetSelf	: 'Gleiches Fenster (_self)',
+		targetParent	: 'Oberes Fenster (_parent)',
+		targetFrameName	: 'Ziel-Fenster-Name',
+		targetPopupName	: 'Pop-up Fenster-Name',
+		popupFeatures	: 'Pop-up Fenster-Eigenschaften',
+		popupResizable	: 'Größe änderbar',
+		popupStatusBar	: 'Statusleiste',
+		popupLocationBar	: 'Adress-Leiste',
+		popupToolbar	: 'Werkzeugleiste',
+		popupMenuBar	: 'Menü-Leiste',
+		popupFullScreen	: 'Vollbild (IE)',
+		popupScrollBars	: 'Rollbalken',
+		popupDependent	: 'Abhängig (Netscape)',
+		popupWidth		: 'Breite',
+		popupLeft		: 'Linke Position',
+		popupHeight		: 'Höhe',
+		popupTop		: 'Obere Position',
+		id				: 'Id',
+		langDir			: 'Schreibrichtung',
+		langDirNotSet	: '<nichts>',
+		langDirLTR		: 'Links nach Rechts (LTR)',
+		langDirRTL		: 'Rechts nach Links (RTL)',
+		acccessKey		: 'Zugriffstaste',
+		name			: 'Name',
+		langCode		: 'Schreibrichtung',
+		tabIndex		: 'Tab-Index',
+		advisoryTitle	: 'Titel Beschreibung',
+		advisoryContentType	: 'Inhaltstyp',
+		cssClasses		: 'Stylesheet Klasse',
+		charset			: 'Ziel-Zeichensatz',
+		styles			: 'Style',
+		selectAnchor	: 'Anker auswählen',
+		anchorName		: 'nach Anker Name',
+		anchorId		: 'nach Element Id',
+		emailAddress	: 'E-Mail Addresse',
+		emailSubject	: 'Betreffzeile',
+		emailBody		: 'Nachrichtentext',
+		noAnchors		: '(keine Anker im Dokument vorhanden)',
+		noUrl			: 'Bitte geben Sie die Link-URL an',
+		noEmail			: 'Bitte geben Sie e-Mail Adresse an'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Anker einfügen/editieren',
+		menu		: 'Anker-Eigenschaften',
+		title		: 'Anker-Eigenschaften',
+		name		: 'Anker Name',
+		errorName	: 'Bitte geben Sie den Namen des Ankers ein'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Suchen und Ersetzen',
+		find				: 'Suchen',
+		replace				: 'Ersetzen',
+		findWhat			: 'Suche nach:',
+		replaceWith			: 'Ersetze mit:',
+		notFoundMsg			: 'Der gesuchte Text wurde nicht gefunden.',
+		matchCase			: 'Groß-Kleinschreibung beachten',
+		matchWord			: 'Nur ganze Worte suchen',
+		matchCyclic			: 'zyklische suche',
+		replaceAll			: 'Alle Ersetzen',
+		replaceSuccessMsg	: '%1 vorkommen ersetzt.'
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tabelle',
+		title		: 'Tabellen-Eigenschaften',
+		menu		: 'Tabellen-Eigenschaften',
+		deleteTable	: 'Tabelle löschen',
+		rows		: 'Zeile',
+		columns		: 'Spalte',
+		border		: 'Rahmen',
+		align		: 'Ausrichtung',
+		alignNotSet	: '<keine>',
+		alignLeft	: 'Links',
+		alignCenter	: 'Zentriert',
+		alignRight	: 'Rechts',
+		width		: 'Breite',
+		widthPx		: 'Pixel',
+		widthPc		: '%',
+		height		: 'Höhe',
+		cellSpace	: 'Zellenabstand außen',
+		cellPad		: 'Zellenabstand innen',
+		caption		: 'Überschrift',
+		summary		: 'Inhaltsübersicht',
+		headers		: 'Überschriften',
+		headersNone		: 'keine',
+		headersColumn	: 'Erste Spalte',
+		headersRow		: 'Erste Zeile',
+		headersBoth		: 'keine',
+		invalidRows		: 'Die Anzahl der Zeilen muß größer als 0 sein.',
+		invalidCols		: 'Die Anzahl der Spalten muß größer als 0 sein..',
+		invalidBorder	: 'Die Rahmenbreite muß eine Zahl sein.',
+		invalidWidth	: 'Die Tabellenbreite muss eine Zahl sein.',
+		invalidHeight	: 'Die Tabellenbreite muß eine Zahl sein.',
+		invalidCellSpacing	: 'Der Zellenabstand außen muß eine Zahl sein.',
+		invalidCellPadding	: 'Der Zellenabstand innen muß eine Zahl sein.',
+
+		cell :
+		{
+			menu			: 'Zelle',
+			insertBefore	: 'Zelle davor einfügen',
+			insertAfter		: 'Zelle danach einfügen',
+			deleteCell		: 'Zelle löschen',
+			merge			: 'Zellen verbinden',
+			mergeRight		: 'nach rechts verbinden',
+			mergeDown		: 'nach unten verbinden',
+			splitHorizontal	: 'Zelle horizontal teilen',
+			splitVertical	: 'Zelle vertikal teilen',
+			title			: 'Zellen Eigenschaften',
+			cellType		: 'Zellart',
+			rowSpan			: 'Anzahl Zeilen verbinden',
+			colSpan			: 'Anzahl Spalten verbinden',
+			wordWrap		: 'Zeilenumbruch',
+			hAlign			: 'Horizontale Ausrichtung',
+			vAlign			: 'Vertikale Ausrichtung',
+			alignTop		: 'Oben',
+			alignMiddle		: 'Mitte',
+			alignBottom		: 'Unten',
+			alignBaseline	: 'Grundlinie',
+			bgColor			: 'Hintergrundfarbe',
+			borderColor		: 'Rahmenfarbe',
+			data			: 'Daten',
+			header			: 'Überschrift',
+			yes				: 'Ja',
+			no				: 'Nein',
+			invalidWidth	: 'Zellenbreite muß eine Zahl sein.',
+			invalidHeight	: 'Zellenhöhe muß eine Zahl sein.',
+			invalidRowSpan	: '"Anzahl Zeilen verbinden" muss eine Ganzzahl sein.',
+			invalidColSpan	: '"Anzahl Spalten verbinden" muss eine Ganzzahl sein.'
+		},
+
+		row :
+		{
+			menu			: 'Zeile',
+			insertBefore	: 'Zeile oberhalb einfügen',
+			insertAfter		: 'Zeile unterhalb einfügen',
+			deleteRow		: 'Zeile entfernen'
+		},
+
+		column :
+		{
+			menu			: 'Spalte',
+			insertBefore	: 'Spalte links davor einfügen',
+			insertAfter		: 'Spalte rechts danach einfügen',
+			deleteColumn	: 'Spalte löschen'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Button-Eigenschaften',
+		text		: 'Text (Wert)',
+		type		: 'Typ',
+		typeBtn		: 'Button',
+		typeSbm		: 'Absenden',
+		typeRst		: 'Zurücksetzen'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Checkbox-Eigenschaften',
+		radioTitle	: 'Optionsfeld-Eigenschaften',
+		value		: 'Wert',
+		selected	: 'ausgewählt'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Formular-Eigenschaften',
+		menu		: 'Formular-Eigenschaften',
+		action		: 'Action',
+		method		: 'Method',
+		encoding	: 'Zeichenkodierung',
+		target		: 'Zielseite',
+		targetNotSet	: '<keins>',
+		targetNew	: 'Neues Fenster (_blank)',
+		targetTop	: 'Oberstes Fenster (_top)',
+		targetSelf	: 'Gleiches Fenster (_self)',
+		targetParent	: 'Oberes Fenster (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Auswahlfeld-Eigenschaften',
+		selectInfo	: 'Info',
+		opAvail		: 'Mögliche Optionen',
+		value		: 'Wert',
+		size		: 'Größe',
+		lines		: 'Linien',
+		chkMulti	: 'Erlaube Mehrfachauswahl',
+		opText		: 'Text',
+		opValue		: 'Wert',
+		btnAdd		: 'Hinzufügen',
+		btnModify	: 'Ändern',
+		btnUp		: 'Hoch',
+		btnDown		: 'Runter',
+		btnSetValue : 'Setze als Standardwert',
+		btnDelete	: 'Entfernen'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Textfeld (mehrzeilig) Eigenschaften',
+		cols		: 'Spalten',
+		rows		: 'Reihen'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Textfeld (einzeilig) Eigenschaften',
+		name		: 'Name',
+		value		: 'Wert',
+		charWidth	: 'Zeichenbreite',
+		maxChars	: 'Max. Zeichen',
+		type		: 'Typ',
+		typeText	: 'Text',
+		typePass	: 'Passwort'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Verstecktes Feld-Eigenschaften',
+		name	: 'Name',
+		value	: 'Wert'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Bild-Eigenschaften',
+		titleButton	: 'Bildbutton-Eigenschaften',
+		menu		: 'Bild-Eigenschaften',
+		infoTab	: 'Bild-Info',
+		btnUpload	: 'Zum Server senden',
+		url		: 'Bildauswahl',
+		upload	: 'Hochladen',
+		alt		: 'Alternativer Text',
+		width		: 'Breite',
+		height	: 'Höhe',
+		lockRatio	: 'Größenverhältnis beibehalten',
+		resetSize	: 'Größe zurücksetzen',
+		border	: 'Rahmen',
+		hSpace	: 'Horizontal-Abstand',
+		vSpace	: 'Vertikal-Abstand',
+		align		: 'Ausrichtung',
+		alignLeft	: 'Links',
+		alignAbsBottom: 'Abs Unten',
+		alignAbsMiddle: 'Abs Mitte',
+		alignBaseline	: 'Baseline',
+		alignBottom	: 'Unten',
+		alignMiddle	: 'Mitte',
+		alignRight	: 'Rechts',
+		alignTextTop	: 'Text Oben',
+		alignTop	: 'Oben',
+		preview	: 'Vorschau',
+		alertUrl	: 'Bitte geben Sie die Bild-URL an',
+		linkTab	: 'Link',
+		button2Img	: 'Möchten Sie den gewählten Bild-Button in ein einfaches Bild umwandeln?',
+		img2Button	: 'Möchten Sie das gewählten Bild in einen Bild-Button umwandeln?'
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Flash-Eigenschaften',
+		propertiesTab	: 'Eigenschaften',
+		title		: 'Flash-Eigenschaften',
+		chkPlay		: 'autom. Abspielen',
+		chkLoop		: 'Endlosschleife',
+		chkMenu		: 'Flash-Menü aktivieren',
+		chkFull		: 'Vollbildmodus erlauben',
+ 		scale		: 'Skalierung',
+		scaleAll		: 'Alles anzeigen',
+		scaleNoBorder	: 'ohne Rand',
+		scaleFit		: 'Passgenau',
+		access			: 'Skript Zugang',
+		accessAlways	: 'Immer',
+		accessSameDomain	: 'Gleiche Domain',
+		accessNever	: 'Nie',
+		align		: 'Ausrichtung',
+		alignLeft	: 'Links',
+		alignAbsBottom: 'Abs Unten',
+		alignAbsMiddle: 'Abs Mitte',
+		alignBaseline	: 'Baseline',
+		alignBottom	: 'Unten',
+		alignMiddle	: 'Mitte',
+		alignRight	: 'Rechts',
+		alignTextTop	: 'Text Oben',
+		alignTop	: 'Oben',
+		quality		: 'Qualität',
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Fenster Modus',
+		flashvars	: 'Variablen für Flash',
+		bgcolor	: 'Hintergrundfarbe',
+		width	: 'Breite',
+		height	: 'Höhe',
+		hSpace	: 'Horizontal-Abstand',
+		vSpace	: 'Vertikal-Abstand',
+		validateSrc : 'Bitte geben Sie die Link-URL an',
+		validateWidth : 'Breite muss eine Zahl sein.',
+		validateHeight : 'Höhe muss eine Zahl sein.',
+		validateHSpace : 'HSpace muss eine Zahl sein.',
+		validateVSpace : 'VSpace muss eine Zahl sein.'
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Rechtschreibprüfung',
+		title			: 'Rechtschreibprüfung',
+		notAvailable	: 'Entschuldigung, aber dieser Dienst steht im Moment nicht zur verfügung.',
+		errorLoading	: 'Fehler beim laden des Dienstanbieters: %s.',
+		notInDic		: 'Nicht im Wörterbuch',
+		changeTo		: 'Ändern in',
+		btnIgnore		: 'Ignorieren',
+		btnIgnoreAll	: 'Alle Ignorieren',
+		btnReplace		: 'Ersetzen',
+		btnReplaceAll	: 'Alle Ersetzen',
+		btnUndo			: 'Rückgängig',
+		noSuggestions	: ' - keine Vorschläge - ',
+		progress		: 'Rechtschreibprüfung läuft...',
+		noMispell		: 'Rechtschreibprüfung abgeschlossen - keine Fehler gefunden',
+		noChanges		: 'Rechtschreibprüfung abgeschlossen - keine Worte geändert',
+		oneChange		: 'Rechtschreibprüfung abgeschlossen - ein Wort geändert',
+		manyChanges		: 'Rechtschreibprüfung abgeschlossen - %1 Wörter geändert',
+		ieSpellDownload	: 'Rechtschreibprüfung nicht installiert. Möchten Sie sie jetzt herunterladen?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Smiley',
+		title	: 'Smiley auswählen'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 Element'
+	},
+
+	numberedlist : 'Nummerierte Liste',
+	bulletedlist : 'Liste',
+	indent : 'Einzug erhöhen',
+	outdent : 'Einzug verringern',
+
+	justify :
+	{
+		left : 'Linksbündig',
+		center : 'Zentriert',
+		right : 'Rechtsbündig',
+		block : 'Blocksatz'
+	},
+
+	blockquote : 'Zitatblock',
+
+	clipboard :
+	{
+		title		: 'Einfügen',
+		cutError	: 'Die Sicherheitseinstellungen Ihres Browsers lassen es nicht zu, den Text automatisch auszuschneiden. Bitte benutzen Sie die System-Zwischenablage über STRG-X (ausschneiden) und STRG-V (einfügen).',
+		copyError	: 'Die Sicherheitseinstellungen Ihres Browsers lassen es nicht zu, den Text automatisch kopieren. Bitte benutzen Sie die System-Zwischenablage über STRG-C (kopieren).',
+		pasteMsg	: 'Bitte fügen Sie den Text in der folgenden Box über die Tastatur (mit <STRONG>Strg+V</STRONG>) ein und bestätigen Sie mit <STRONG>OK</STRONG>.',
+		securityMsg	: 'Aufgrund von Sicherheitsbeschränkungen Ihres Browsers kann der Editor nicht direkt auf die Zwischenablage zugreifen. Bitte fügen Sie den Inhalt erneut in diesem Fenster ein.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'aus MS-Word einfügen',
+		title : 'aus MS-Word einfügen',
+		advice : 'Bitte fügen Sie den Text in der folgenden Box über die Tastatur (mit <STRONG>Strg+V</STRONG>) ein und bestätigen Sie mit <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Ignoriere Schriftart-Definitionen',
+		removeStyle : 'Entferne Style-Definitionen'
+	},
+
+	pasteText :
+	{
+		button : 'Als Text einfügen',
+		title : 'Als Text einfügen'
+	},
+
+	templates :
+	{
+		button : 'Vorlagen',
+		title : 'Vorlagen',
+		insertOption: 'Aktuellen Inhalt ersetzen',
+		selectPromptMsg: 'Klicken Sie auf eine Vorlage, um sie im Editor zu öffnen (der aktuelle Inhalt wird dabei gelöscht!):',
+		emptyListMsg : '(keine Vorlagen definiert)'
+	},
+
+	showBlocks : 'Blöcke anzeigen',
+
+	stylesCombo :
+	{
+		label : 'Stil',
+		voiceLabel : 'Stilarten',
+		panelVoiceLabel : 'Stilart auswahl',
+		panelTitle1 : 'Block Stilart',
+		panelTitle2 : 'Inline Stilart',
+		panelTitle3 : 'Objekt Stilart'
+	},
+
+	format :
+	{
+		label : 'Format',
+		voiceLabel : 'Format',
+		panelTitle : 'Format',
+		panelVoiceLabel : 'Wählen Sie einen Absatzformat',
+
+		tag_p : 'Normal',
+		tag_pre : 'Formatiert',
+		tag_address : 'Addresse',
+		tag_h1 : 'Überschrift 1',
+		tag_h2 : 'Überschrift 2',
+		tag_h3 : 'Überschrift 3',
+		tag_h4 : 'Überschrift 4',
+		tag_h5 : 'Überschrift 5',
+		tag_h6 : 'Überschrift 6',
+		tag_div : 'Normal (DIV)'
+	},
+
+	font :
+	{
+		label : 'Schriftart',
+		voiceLabel : 'Schriftart',
+		panelTitle : 'Schriftart',
+		panelVoiceLabel : 'Wählen Sie eine Schriftart'
+	},
+
+	fontSize :
+	{
+		label : 'Größe',
+		voiceLabel : 'Schrifgröße',
+		panelTitle : 'Größe',
+		panelVoiceLabel : 'Wählen Sie eine Schriftgröße'
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Textfarbe',
+		bgColorTitle : 'Hintergrundfarbe',
+		auto : 'Automatisch',
+		more : 'Weitere Farben...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Rechtschreibprüfung während der Texteingabe',
+		enable : 'SCAYT einschalten',
+		disable : 'SCAYT ausschalten',
+		about : 'Über SCAYT',
+		toggle : 'SCAYT umschalten',
+		options : 'Optionen',
+		langs : 'Sprachen',
+		moreSuggestions : 'Mehr Vorschläge',
+		ignore : 'Ignorieren',
+		ignoreAll : 'Alle ignorieren',
+		addWord : 'Wort hinzufügen',
+		emptyDic : 'Wörterbuchname sollt leer sein.',
+		optionsTab : 'Optionen',
+		languagesTab : 'Sprachen',
+		dictionariesTab : 'Wörterbücher',
+		aboutTab : 'Über'
+	},
+
+	about :
+	{
+		title : 'Über CKEditor',
+		moreInfo : 'Für Informationen Liztenzbestimmungen besuchen sie bitte unsere Webseite:',
+		copy : 'Copyright &copy; $1. Alle Rechte vorbehalten.'
+	},
+
+	maximize : 'Maximieren',
+
+	fakeobjects :
+	{
+		anchor : 'Anker',
+		flash : 'Flash Animation', // MISSING
+		div : 'Seitenumbruch',
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/el.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/el.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/el.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Greek language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['el'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'HTML κώδικας',
+	newPage			: 'Νέα Σελίδα',
+	save			: 'Αποθήκευση',
+	preview			: 'Προεπισκόπιση',
+	cut				: 'Αποκοπή',
+	copy			: 'Αντιγραφή',
+	paste			: 'Επικόλληση',
+	print			: 'Εκτύπωση',
+	underline		: 'Υπογράμμιση',
+	bold			: 'Έντονα',
+	italic			: 'Πλάγια',
+	selectAll		: 'Επιλογή όλων',
+	removeFormat	: 'Αφαίρεση Μορφοποίησης',
+	strike			: 'Διαγράμμιση',
+	subscript		: 'Δείκτης',
+	superscript		: 'Εκθέτης',
+	horizontalrule	: 'Εισαγωγή Οριζόντιας Γραμμής',
+	pagebreak		: 'Εισαγωγή τέλους σελίδας',
+	unlink			: 'Αφαίρεση Συνδέσμου (Link)',
+	undo			: 'Αναίρεση',
+	redo			: 'Επαναφορά',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Εξερεύνηση διακομιστή',
+		url				: 'URL',
+		protocol		: 'Προτόκολο',
+		upload			: 'Αποστολή',
+		uploadSubmit	: 'Αποστολή στον Διακομιστή',
+		image			: 'Εικόνα',
+		flash			: 'Εισαγωγή Flash',
+		form			: 'Φόρμα',
+		checkbox		: 'Κουτί επιλογής',
+		radio		: 'Κουμπί Radio',
+		textField		: 'Πεδίο κειμένου',
+		textarea		: 'Περιοχή κειμένου',
+		hiddenField		: 'Κρυφό πεδίο',
+		button			: 'Κουμπί',
+		select	: 'Πεδίο επιλογής',
+		imageButton		: 'Κουμπί εικόνας',
+		notSet			: '<χωρίς>',
+		id				: 'Id',
+		name			: 'Όνομα',
+		langDir			: 'Κατεύθυνση κειμένου',
+		langDirLtr		: 'Αριστερά προς Δεξιά (LTR)',
+		langDirRtl		: 'Δεξιά προς Αριστερά (RTL)',
+		langCode		: 'Κωδικός Γλώσσας',
+		longDescr		: 'Αναλυτική περιγραφή URL',
+		cssClass		: 'Stylesheet Classes',
+		advisoryTitle	: 'Συμβουλευτικός τίτλος',
+		cssStyle		: 'Στύλ',
+		ok				: 'OK',
+		cancel			: 'Ακύρωση',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'Για προχωρημένους',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Εισαγωγή Ειδικού Συμβόλου',
+		title		: 'Επιλέξτε ένα Ειδικό Σύμβολο'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Εισαγωγή/Μεταβολή Συνδέσμου (Link)',
+		menu		: 'Μεταβολή Συνδέσμου (Link)',
+		title		: 'Σύνδεσμος (Link)',
+		info		: 'Link',
+		target		: 'Παράθυρο Στόχος (Target)',
+		upload		: 'Αποστολή',
+		advanced	: 'Για προχωρημένους',
+		type		: 'Τύπος συνδέσμου (Link)',
+		toAnchor	: 'Άγκυρα σε αυτή τη σελίδα',
+		toEmail		: 'E-Mail',
+		target		: 'Παράθυρο Στόχος (Target)',
+		targetNotSet	: '<χωρίς>',
+		targetFrame	: '<πλαίσιο>',
+		targetPopup	: '<παράθυρο popup>',
+		targetNew	: 'Νέο Παράθυρο (_blank)',
+		targetTop	: 'Ανώτατο Παράθυρο (_top)',
+		targetSelf	: 'Ίδιο Παράθυρο (_self)',
+		targetParent	: 'Γονικό Παράθυρο (_parent)',
+		targetFrameName	: 'Όνομα πλαισίου στόχου',
+		targetPopupName	: 'Όνομα Popup Window',
+		popupFeatures	: 'Επιλογές Popup Window',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Μπάρα Status',
+		popupLocationBar	: 'Μπάρα Τοποθεσίας',
+		popupToolbar	: 'Μπάρα Εργαλείων',
+		popupMenuBar	: 'Μπάρα Menu',
+		popupFullScreen	: 'Ολόκληρη η Οθόνη (IE)',
+		popupScrollBars	: 'Μπάρες Κύλισης',
+		popupDependent	: 'Dependent (Netscape)',
+		popupWidth		: 'Πλάτος',
+		popupLeft		: 'Τοποθεσία Αριστερής Άκρης',
+		popupHeight		: 'Ύψος',
+		popupTop		: 'Τοποθεσία Πάνω Άκρης',
+		id				: 'Id', // MISSING
+		langDir			: 'Κατεύθυνση κειμένου',
+		langDirNotSet	: '<χωρίς>',
+		langDirLTR		: 'Αριστερά προς Δεξιά (LTR)',
+		langDirRTL		: 'Δεξιά προς Αριστερά (RTL)',
+		acccessKey		: 'Συντόμευση (Access Key)',
+		name			: 'Όνομα',
+		langCode		: 'Κατεύθυνση κειμένου',
+		tabIndex		: 'Tab Index',
+		advisoryTitle	: 'Συμβουλευτικός τίτλος',
+		advisoryContentType	: 'Συμβουλευτικός τίτλος περιεχομένου',
+		cssClasses		: 'Stylesheet Classes',
+		charset			: 'Linked Resource Charset',
+		styles			: 'Στύλ',
+		selectAnchor	: 'Επιλέξτε μια άγκυρα',
+		anchorName		: 'Βάσει του Ονόματος (Name) της άγκυρας',
+		anchorId		: 'Βάσει του Element Id',
+		emailAddress	: 'Διεύθυνση Ηλεκτρονικού Ταχυδρομείου',
+		emailSubject	: 'Θέμα Μηνύματος',
+		emailBody		: 'Κείμενο Μηνύματος',
+		noAnchors		: '(Δεν υπάρχουν άγκυρες στο κείμενο)',
+		noUrl			: 'Εισάγετε την τοποθεσία (URL) του υπερσυνδέσμου (Link)',
+		noEmail			: 'Εισάγετε την διεύθυνση ηλεκτρονικού ταχυδρομείου'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Εισαγωγή/επεξεργασία Anchor',
+		menu		: 'Ιδιότητες άγκυρας',
+		title		: 'Ιδιότητες άγκυρας',
+		name		: 'Όνομα άγκυρας',
+		errorName	: 'Παρακαλούμε εισάγετε όνομα άγκυρας'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Find and Replace', // MISSING
+		find				: 'Αναζήτηση',
+		replace				: 'Αντικατάσταση',
+		findWhat			: 'Αναζήτηση:',
+		replaceWith			: 'Αντικατάσταση με:',
+		notFoundMsg			: 'Το κείμενο δεν βρέθηκε.',
+		matchCase			: 'Έλεγχος πεζών/κεφαλαίων',
+		matchWord			: 'Εύρεση πλήρους λέξης',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Αντικατάσταση Όλων',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Πίνακας',
+		title		: 'Ιδιότητες Πίνακα',
+		menu		: 'Ιδιότητες Πίνακα',
+		deleteTable	: 'Διαγραφή πίνακα',
+		rows		: 'Γραμμές',
+		columns		: 'Κολώνες',
+		border		: 'Μέγεθος Περιθωρίου',
+		align		: 'Στοίχιση',
+		alignNotSet	: '<χωρίς>',
+		alignLeft	: 'Αριστερά',
+		alignCenter	: 'Κέντρο',
+		alignRight	: 'Δεξιά',
+		width		: 'Πλάτος',
+		widthPx		: 'pixels',
+		widthPc		: '%',
+		height		: 'Ύψος',
+		cellSpace	: 'Απόσταση κελιών',
+		cellPad		: 'Γέμισμα κελιών',
+		caption		: 'Υπέρτιτλος',
+		summary		: 'Περίληψη',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Κελί',
+			insertBefore	: 'Insert Cell Before', // MISSING
+			insertAfter		: 'Insert Cell After', // MISSING
+			deleteCell		: 'Διαγραφή Κελιών',
+			merge			: 'Ενοποίηση Κελιών',
+			mergeRight		: 'Merge Right', // MISSING
+			mergeDown		: 'Merge Down', // MISSING
+			splitHorizontal	: 'Split Cell Horizontally', // MISSING
+			splitVertical	: 'Split Cell Vertically', // MISSING
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Σειρά',
+			insertBefore	: 'Insert Row Before', // MISSING
+			insertAfter		: 'Insert Row After', // MISSING
+			deleteRow		: 'Διαγραφή Γραμμών'
+		},
+
+		column :
+		{
+			menu			: 'Στήλη',
+			insertBefore	: 'Insert Column Before', // MISSING
+			insertAfter		: 'Insert Column After', // MISSING
+			deleteColumn	: 'Διαγραφή Κολωνών'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Ιδιότητες κουμπιού',
+		text		: 'Κείμενο (Τιμή)',
+		type		: 'Τύπος',
+		typeBtn		: 'Κουμπί',
+		typeSbm		: 'Καταχώρηση',
+		typeRst		: 'Επαναφορά'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Ιδιότητες κουμπιού επιλογής',
+		radioTitle	: 'Ιδιότητες κουμπιού radio',
+		value		: 'Τιμή',
+		selected	: 'Επιλεγμένο'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Ιδιότητες φόρμας',
+		menu		: 'Ιδιότητες φόρμας',
+		action		: 'Δράση',
+		method		: 'Μάθοδος',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Παράθυρο Στόχος (Target)',
+		targetNotSet	: '<χωρίς>',
+		targetNew	: 'Νέο Παράθυρο (_blank)',
+		targetTop	: 'Ανώτατο Παράθυρο (_top)',
+		targetSelf	: 'Ίδιο Παράθυρο (_self)',
+		targetParent	: 'Γονικό Παράθυρο (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Ιδιότητες πεδίου επιλογής',
+		selectInfo	: 'Πληροφορίες',
+		opAvail		: 'Διαθέσιμες επιλογές',
+		value		: 'Τιμή',
+		size		: 'Μέγεθος',
+		lines		: 'γραμμές',
+		chkMulti	: 'Πολλαπλές επιλογές',
+		opText		: 'Κείμενο',
+		opValue		: 'Τιμή',
+		btnAdd		: 'Προσθήκη',
+		btnModify	: 'Αλλαγή',
+		btnUp		: 'Πάνω',
+		btnDown		: 'Κάτω',
+		btnSetValue : 'Προεπιλεγμένη επιλογή',
+		btnDelete	: 'Διαγραφή'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Ιδιότητες περιοχής κειμένου',
+		cols		: 'Στήλες',
+		rows		: 'Σειρές'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Ιδιότητες πεδίου κειμένου',
+		name		: 'Όνομα',
+		value		: 'Τιμή',
+		charWidth	: 'Μήκος χαρακτήρων',
+		maxChars	: 'Μέγιστοι χαρακτήρες',
+		type		: 'Τύπος',
+		typeText	: 'Κείμενο',
+		typePass	: 'Κωδικός'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Ιδιότητες κρυφού πεδίου',
+		name	: 'Όνομα',
+		value	: 'Τιμή'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Ιδιότητες Εικόνας',
+		titleButton	: 'Ιδιότητες κουμπιού εικόνας',
+		menu		: 'Ιδιότητες Εικόνας',
+		infoTab	: 'Πληροφορίες Εικόνας',
+		btnUpload	: 'Αποστολή στον Διακομιστή',
+		url		: 'URL',
+		upload	: 'Αποστολή',
+		alt		: 'Εναλλακτικό Κείμενο (ALT)',
+		width		: 'Πλάτος',
+		height	: 'Ύψος',
+		lockRatio	: 'Κλείδωμα Αναλογίας',
+		resetSize	: 'Επαναφορά Αρχικού Μεγέθους',
+		border	: 'Περιθώριο',
+		hSpace	: 'Οριζόντιος Χώρος (HSpace)',
+		vSpace	: 'Κάθετος Χώρος (VSpace)',
+		align		: 'Ευθυγράμμιση (Align)',
+		alignLeft	: 'Αριστερά',
+		alignAbsBottom: 'Απόλυτα Κάτω (Abs Bottom)',
+		alignAbsMiddle: 'Απόλυτα στη Μέση (Abs Middle)',
+		alignBaseline	: 'Γραμμή Βάσης (Baseline)',
+		alignBottom	: 'Κάτω (Bottom)',
+		alignMiddle	: 'Μέση (Middle)',
+		alignRight	: 'Δεξιά (Right)',
+		alignTextTop	: 'Κορυφή Κειμένου (Text Top)',
+		alignTop	: 'Πάνω (Top)',
+		preview	: 'Προεπισκόπιση',
+		alertUrl	: 'Εισάγετε την τοποθεσία (URL) της εικόνας',
+		linkTab	: 'Σύνδεσμος',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Ιδιότητες Flash',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Ιδιότητες flash',
+		chkPlay		: 'Αυτόματη έναρξη',
+		chkLoop		: 'Επανάληψη',
+		chkMenu		: 'Ενεργοποίηση Flash Menu',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Κλίμακα',
+		scaleAll		: 'Εμφάνιση όλων',
+		scaleNoBorder	: 'Χωρίς όρια',
+		scaleFit		: 'Ακριβής εφαρμογή',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Ευθυγράμμιση (Align)',
+		alignLeft	: 'Αριστερά',
+		alignAbsBottom: 'Απόλυτα Κάτω (Abs Bottom)',
+		alignAbsMiddle: 'Απόλυτα στη Μέση (Abs Middle)',
+		alignBaseline	: 'Γραμμή Βάσης (Baseline)',
+		alignBottom	: 'Κάτω (Bottom)',
+		alignMiddle	: 'Μέση (Middle)',
+		alignRight	: 'Δεξιά (Right)',
+		alignTextTop	: 'Κορυφή Κειμένου (Text Top)',
+		alignTop	: 'Πάνω (Top)',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Χρώμα Υποβάθρου',
+		width	: 'Πλάτος',
+		height	: 'Ύψος',
+		hSpace	: 'Οριζόντιος Χώρος (HSpace)',
+		vSpace	: 'Κάθετος Χώρος (VSpace)',
+		validateSrc : 'Εισάγετε την τοποθεσία (URL) του υπερσυνδέσμου (Link)',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Ορθογραφικός έλεγχος',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Δεν υπάρχει στο λεξικό',
+		changeTo		: 'Αλλαγή σε',
+		btnIgnore		: 'Αγνόηση',
+		btnIgnoreAll	: 'Αγνόηση όλων',
+		btnReplace		: 'Αντικατάσταση',
+		btnReplaceAll	: 'Αντικατάσταση όλων',
+		btnUndo			: 'Αναίρεση',
+		noSuggestions	: '- Δεν υπάρχουν προτάσεις -',
+		progress		: 'Ορθογραφικός έλεγχος σε εξέλιξη...',
+		noMispell		: 'Ο ορθογραφικός έλεγχος ολοκληρώθηκε: Δεν βρέθηκαν λάθη',
+		noChanges		: 'Ο ορθογραφικός έλεγχος ολοκληρώθηκε: Δεν άλλαξαν λέξεις',
+		oneChange		: 'Ο ορθογραφικός έλεγχος ολοκληρώθηκε: Μια λέξη άλλαξε',
+		manyChanges		: 'Ο ορθογραφικός έλεγχος ολοκληρώθηκε: %1 λέξεις άλλαξαν',
+		ieSpellDownload	: 'Δεν υπάρχει εγκατεστημένος ορθογράφος. Θέλετε να τον κατεβάσετε τώρα;'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Smiley',
+		title	: 'Επιλέξτε ένα Smiley'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Λίστα με Αριθμούς',
+	bulletedlist : 'Λίστα με Bullets',
+	indent : 'Αύξηση Εσοχής',
+	outdent : 'Μείωση Εσοχής',
+
+	justify :
+	{
+		left : 'Στοίχιση Αριστερά',
+		center : 'Στοίχιση στο Κέντρο',
+		right : 'Στοίχιση Δεξιά',
+		block : 'Πλήρης Στοίχιση (Block)'
+	},
+
+	blockquote : 'Blockquote', // MISSING
+
+	clipboard :
+	{
+		title		: 'Επικόλληση',
+		cutError	: 'Οι ρυθμίσεις ασφαλείας του φυλλομετρητή σας δεν επιτρέπουν την επιλεγμένη εργασία αποκοπής. Χρησιμοποιείστε το πληκτρολόγιο (Ctrl+X).',
+		copyError	: 'Οι ρυθμίσεις ασφαλείας του φυλλομετρητή σας δεν επιτρέπουν την επιλεγμένη εργασία αντιγραφής. Χρησιμοποιείστε το πληκτρολόγιο (Ctrl+C).',
+		pasteMsg	: 'Παρακαλώ επικολήστε στο ακόλουθο κουτί χρησιμοποιόντας το πληκτρολόγιο (<STRONG>Ctrl+V</STRONG>) και πατήστε <STRONG>OK</STRONG>.',
+		securityMsg	: 'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.' // MISSING
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Επικόλληση από το Word',
+		title : 'Επικόλληση από το Word',
+		advice : 'Παρακαλώ επικολήστε στο ακόλουθο κουτί χρησιμοποιόντας το πληκτρολόγιο (<STRONG>Ctrl+V</STRONG>) και πατήστε <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Αγνόηση προδιαγραφών γραμματοσειράς',
+		removeStyle : 'Αφαίρεση προδιαγραφών στύλ'
+	},
+
+	pasteText :
+	{
+		button : 'Επικόλληση ως Απλό Κείμενο',
+		title : 'Επικόλληση ως Απλό Κείμενο'
+	},
+
+	templates :
+	{
+		button : 'Πρότυπα',
+		title : 'Πρότυπα περιεχομένου',
+		insertOption: 'Αντικατάσταση υπάρχοντων περιεχομένων',
+		selectPromptMsg: 'Παρακαλώ επιλέξτε πρότυπο για εισαγωγή στο πρόγραμμα<br>(τα υπάρχοντα περιεχόμενα θα χαθούν):',
+		emptyListMsg : '(Δεν έχουν καθοριστεί πρότυπα)'
+	},
+
+	showBlocks : 'Show Blocks', // MISSING
+
+	stylesCombo :
+	{
+		label : 'Στυλ',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Μορφή Γραμματοσειράς',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Μορφή Γραμματοσειράς',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Κανονικό',
+		tag_pre : 'Μορφοποιημένο',
+		tag_address : 'Διεύθυνση',
+		tag_h1 : 'Επικεφαλίδα 1',
+		tag_h2 : 'Επικεφαλίδα 2',
+		tag_h3 : 'Επικεφαλίδα 3',
+		tag_h4 : 'Επικεφαλίδα 4',
+		tag_h5 : 'Επικεφαλίδα 5',
+		tag_h6 : 'Επικεφαλίδα 6',
+		tag_div : 'Normal (DIV)' // MISSING
+	},
+
+	font :
+	{
+		label : 'Γραμματοσειρά',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Γραμματοσειρά',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Μέγεθος',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Μέγεθος',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Χρώμα Γραμμάτων',
+		bgColorTitle : 'Χρώμα Υποβάθρου',
+		auto : 'Αυτόματο',
+		more : 'Περισσότερα χρώματα...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/en-au.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/en-au.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/en-au.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * English (Australia) language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['en-au'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1',
+
+	// Toolbar buttons without dialogs.
+	source			: 'Source',
+	newPage			: 'New Page',
+	save			: 'Save',
+	preview			: 'Preview',
+	cut				: 'Cut',
+	copy			: 'Copy',
+	paste			: 'Paste',
+	print			: 'Print',
+	underline		: 'Underline',
+	bold			: 'Bold',
+	italic			: 'Italic',
+	selectAll		: 'Select All',
+	removeFormat	: 'Remove Format',
+	strike			: 'Strike Through',
+	subscript		: 'Subscript',
+	superscript		: 'Superscript',
+	horizontalrule	: 'Insert Horizontal Line',
+	pagebreak		: 'Insert Page Break for Printing',
+	unlink			: 'Unlink',
+	undo			: 'Undo',
+	redo			: 'Redo',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Browse Server',
+		url				: 'URL',
+		protocol		: 'Protocol',
+		upload			: 'Upload',
+		uploadSubmit	: 'Send it to the Server',
+		image			: 'Image',
+		flash			: 'Flash',
+		form			: 'Form',
+		checkbox		: 'Checkbox',
+		radio		: 'Radio Button',
+		textField		: 'Text Field',
+		textarea		: 'Textarea',
+		hiddenField		: 'Hidden Field',
+		button			: 'Button',
+		select	: 'Selection Field',
+		imageButton		: 'Image Button',
+		notSet			: '<not set>',
+		id				: 'Id',
+		name			: 'Name',
+		langDir			: 'Language Direction',
+		langDirLtr		: 'Left to Right (LTR)',
+		langDirRtl		: 'Right to Left (RTL)',
+		langCode		: 'Language Code',
+		longDescr		: 'Long Description URL',
+		cssClass		: 'Stylesheet Classes',
+		advisoryTitle	: 'Advisory Title',
+		cssStyle		: 'Style',
+		ok				: 'OK',
+		cancel			: 'Cancel',
+		generalTab		: 'General',
+		advancedTab		: 'Advanced',
+		validateNumberFailed	: 'This value is not a number.',
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?',
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Insert Special Character',
+		title		: 'Select Special Character'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Link',
+		menu		: 'Edit Link',
+		title		: 'Link',
+		info		: 'Link Info',
+		target		: 'Target',
+		upload		: 'Upload',
+		advanced	: 'Advanced',
+		type		: 'Link Type',
+		toAnchor	: 'Link to anchor in the text',
+		toEmail		: 'E-mail',
+		target		: 'Target',
+		targetNotSet	: '<not set>',
+		targetFrame	: '<frame>',
+		targetPopup	: '<popup window>',
+		targetNew	: 'New Window (_blank)',
+		targetTop	: 'Topmost Window (_top)',
+		targetSelf	: 'Same Window (_self)',
+		targetParent	: 'Parent Window (_parent)',
+		targetFrameName	: 'Target Frame Name',
+		targetPopupName	: 'Popup Window Name',
+		popupFeatures	: 'Popup Window Features',
+		popupResizable	: 'Resizable',
+		popupStatusBar	: 'Status Bar',
+		popupLocationBar	: 'Location Bar',
+		popupToolbar	: 'Toolbar',
+		popupMenuBar	: 'Menu Bar',
+		popupFullScreen	: 'Full Screen (IE)',
+		popupScrollBars	: 'Scroll Bars',
+		popupDependent	: 'Dependent (Netscape)',
+		popupWidth		: 'Width',
+		popupLeft		: 'Left Position',
+		popupHeight		: 'Height',
+		popupTop		: 'Top Position',
+		id				: 'Id',
+		langDir			: 'Language Direction',
+		langDirNotSet	: '<not set>',
+		langDirLTR		: 'Left to Right (LTR)',
+		langDirRTL		: 'Right to Left (RTL)',
+		acccessKey		: 'Access Key',
+		name			: 'Name',
+		langCode		: 'Language Code',
+		tabIndex		: 'Tab Index',
+		advisoryTitle	: 'Advisory Title',
+		advisoryContentType	: 'Advisory Content Type',
+		cssClasses		: 'Stylesheet Classes',
+		charset			: 'Linked Resource Charset',
+		styles			: 'Style',
+		selectAnchor	: 'Select an Anchor',
+		anchorName		: 'By Anchor Name',
+		anchorId		: 'By Element Id',
+		emailAddress	: 'E-Mail Address',
+		emailSubject	: 'Message Subject',
+		emailBody		: 'Message Body',
+		noAnchors		: '(No anchors available in the document)',
+		noUrl			: 'Please type the link URL',
+		noEmail			: 'Please type the e-mail address'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Anchor',
+		menu		: 'Edit Anchor',
+		title		: 'Anchor Properties',
+		name		: 'Anchor Name',
+		errorName	: 'Please type the anchor name'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Find and Replace',
+		find				: 'Find',
+		replace				: 'Replace',
+		findWhat			: 'Find what:',
+		replaceWith			: 'Replace with:',
+		notFoundMsg			: 'The specified text was not found.',
+		matchCase			: 'Match case',
+		matchWord			: 'Match whole word',
+		matchCyclic			: 'Match cyclic',
+		replaceAll			: 'Replace All',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.'
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Table',
+		title		: 'Table Properties',
+		menu		: 'Table Properties',
+		deleteTable	: 'Delete Table',
+		rows		: 'Rows',
+		columns		: 'Columns',
+		border		: 'Border size',
+		align		: 'Alignment',
+		alignNotSet	: '<Not set>',
+		alignLeft	: 'Left',
+		alignCenter	: 'Centre',
+		alignRight	: 'Right',
+		width		: 'Width',
+		widthPx		: 'pixels',
+		widthPc		: 'percent',
+		height		: 'Height',
+		cellSpace	: 'Cell spacing',
+		cellPad		: 'Cell padding',
+		caption		: 'Caption',
+		summary		: 'Summary',
+		headers		: 'Headers',
+		headersNone		: 'None',
+		headersColumn	: 'First column',
+		headersRow		: 'First Row',
+		headersBoth		: 'Both',
+		invalidRows		: 'Number of rows must be a number greater than 0.',
+		invalidCols		: 'Number of columns must be a number greater than 0.',
+		invalidBorder	: 'Border size must be a number.',
+		invalidWidth	: 'Table width must be a number.',
+		invalidHeight	: 'Table height must be a number.',
+		invalidCellSpacing	: 'Cell spacing must be a number.',
+		invalidCellPadding	: 'Cell padding must be a number.',
+
+		cell :
+		{
+			menu			: 'Cell',
+			insertBefore	: 'Insert Cell Before',
+			insertAfter		: 'Insert Cell After',
+			deleteCell		: 'Delete Cells',
+			merge			: 'Merge Cells',
+			mergeRight		: 'Merge Right',
+			mergeDown		: 'Merge Down',
+			splitHorizontal	: 'Split Cell Horizontally',
+			splitVertical	: 'Split Cell Vertically',
+			title			: 'Cell Properties',
+			cellType		: 'Cell Type',
+			rowSpan			: 'Rows Span',
+			colSpan			: 'Columns Span',
+			wordWrap		: 'Word Wrap',
+			hAlign			: 'Horizontal Alignment',
+			vAlign			: 'Vertical Alignment',
+			alignTop		: 'Top',
+			alignMiddle		: 'Middle',
+			alignBottom		: 'Bottom',
+			alignBaseline	: 'Baseline',
+			bgColor			: 'Background Color',
+			borderColor		: 'Border Color',
+			data			: 'Data',
+			header			: 'Header',
+			yes				: 'Yes',
+			no				: 'No',
+			invalidWidth	: 'Cell width must be a number.',
+			invalidHeight	: 'Cell height must be a number.',
+			invalidRowSpan	: 'Rows span must be a whole number.',
+			invalidColSpan	: 'Columns span must be a whole number.'
+		},
+
+		row :
+		{
+			menu			: 'Row',
+			insertBefore	: 'Insert Row Before',
+			insertAfter		: 'Insert Row After',
+			deleteRow		: 'Delete Rows'
+		},
+
+		column :
+		{
+			menu			: 'Column',
+			insertBefore	: 'Insert Column Before',
+			insertAfter		: 'Insert Column After',
+			deleteColumn	: 'Delete Columns'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Button Properties',
+		text		: 'Text (Value)',
+		type		: 'Type',
+		typeBtn		: 'Button',
+		typeSbm		: 'Submit',
+		typeRst		: 'Reset'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Checkbox Properties',
+		radioTitle	: 'Radio Button Properties',
+		value		: 'Value',
+		selected	: 'Selected'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Form Properties',
+		menu		: 'Form Properties',
+		action		: 'Action',
+		method		: 'Method',
+		encoding	: 'Encoding',
+		target		: 'Target',
+		targetNotSet	: '<not set>',
+		targetNew	: 'New Window (_blank)',
+		targetTop	: 'Topmost Window (_top)',
+		targetSelf	: 'Same Window (_self)',
+		targetParent	: 'Parent Window (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Selection Field Properties',
+		selectInfo	: 'Select Info',
+		opAvail		: 'Available Options',
+		value		: 'Value',
+		size		: 'Size',
+		lines		: 'lines',
+		chkMulti	: 'Allow multiple selections',
+		opText		: 'Text',
+		opValue		: 'Value',
+		btnAdd		: 'Add',
+		btnModify	: 'Modify',
+		btnUp		: 'Up',
+		btnDown		: 'Down',
+		btnSetValue : 'Set as selected value',
+		btnDelete	: 'Delete'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Textarea Properties',
+		cols		: 'Columns',
+		rows		: 'Rows'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Text Field Properties',
+		name		: 'Name',
+		value		: 'Value',
+		charWidth	: 'Character Width',
+		maxChars	: 'Maximum Characters',
+		type		: 'Type',
+		typeText	: 'Text',
+		typePass	: 'Password'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Hidden Field Properties',
+		name	: 'Name',
+		value	: 'Value'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Image Properties',
+		titleButton	: 'Image Button Properties',
+		menu		: 'Image Properties',
+		infoTab	: 'Image Info',
+		btnUpload	: 'Send it to the Server',
+		url		: 'URL',
+		upload	: 'Upload',
+		alt		: 'Alternative Text',
+		width		: 'Width',
+		height	: 'Height',
+		lockRatio	: 'Lock Ratio',
+		resetSize	: 'Reset Size',
+		border	: 'Border',
+		hSpace	: 'HSpace',
+		vSpace	: 'VSpace',
+		align		: 'Align',
+		alignLeft	: 'Left',
+		alignAbsBottom: 'Abs Bottom',
+		alignAbsMiddle: 'Abs Middle',
+		alignBaseline	: 'Baseline',
+		alignBottom	: 'Bottom',
+		alignMiddle	: 'Middle',
+		alignRight	: 'Right',
+		alignTextTop	: 'Text Top',
+		alignTop	: 'Top',
+		preview	: 'Preview',
+		alertUrl	: 'Please type the image URL',
+		linkTab	: 'Link',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?',
+		img2Button	: 'Do you want to transform the selected image on a image button?'
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Flash Properties',
+		propertiesTab	: 'Properties',
+		title		: 'Flash Properties',
+		chkPlay		: 'Auto Play',
+		chkLoop		: 'Loop',
+		chkMenu		: 'Enable Flash Menu',
+		chkFull		: 'Allow Fullscreen',
+ 		scale		: 'Scale',
+		scaleAll		: 'Show all',
+		scaleNoBorder	: 'No Border',
+		scaleFit		: 'Exact Fit',
+		access			: 'Script Access',
+		accessAlways	: 'Always',
+		accessSameDomain	: 'Same domain',
+		accessNever	: 'Never',
+		align		: 'Align',
+		alignLeft	: 'Left',
+		alignAbsBottom: 'Abs Bottom',
+		alignAbsMiddle: 'Abs Middle',
+		alignBaseline	: 'Baseline',
+		alignBottom	: 'Bottom',
+		alignMiddle	: 'Middle',
+		alignRight	: 'Right',
+		alignTextTop	: 'Text Top',
+		alignTop	: 'Top',
+		quality		: 'Quality',
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode',
+		flashvars	: 'Variables for Flash',
+		bgcolor	: 'Background colour',
+		width	: 'Width',
+		height	: 'Height',
+		hSpace	: 'HSpace',
+		vSpace	: 'VSpace',
+		validateSrc : 'URL must not be empty.',
+		validateWidth : 'Width must be a number.',
+		validateHeight : 'Height must be a number.',
+		validateHSpace : 'HSpace must be a number.',
+		validateVSpace : 'VSpace must be a number.'
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Check Spelling',
+		title			: 'Spell Check',
+		notAvailable	: 'Sorry, but service is unavailable now.',
+		errorLoading	: 'Error loading application service host: %s.',
+		notInDic		: 'Not in dictionary',
+		changeTo		: 'Change to',
+		btnIgnore		: 'Ignore',
+		btnIgnoreAll	: 'Ignore All',
+		btnReplace		: 'Replace',
+		btnReplaceAll	: 'Replace All',
+		btnUndo			: 'Undo',
+		noSuggestions	: '- No suggestions -',
+		progress		: 'Spell check in progress...',
+		noMispell		: 'Spell check complete: No misspellings found',
+		noChanges		: 'Spell check complete: No words changed',
+		oneChange		: 'Spell check complete: One word changed',
+		manyChanges		: 'Spell check complete: %1 words changed',
+		ieSpellDownload	: 'Spell checker not installed. Do you want to download it now?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Smiley',
+		title	: 'Insert a Smiley'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element'
+	},
+
+	numberedlist : 'Insert/Remove Numbered List',
+	bulletedlist : 'Insert/Remove Bulleted List',
+	indent : 'Increase Indent',
+	outdent : 'Decrease Indent',
+
+	justify :
+	{
+		left : 'Left Justify',
+		center : 'Centre Justify',
+		right : 'Right Justify',
+		block : 'Block Justify'
+	},
+
+	blockquote : 'Blockquote',
+
+	clipboard :
+	{
+		title		: 'Paste',
+		cutError	: 'Your browser security settings don\'t permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X).',
+		copyError	: 'Your browser security settings don\'t permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C).',
+		pasteMsg	: 'Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit OK',
+		securityMsg	: 'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Paste from Word',
+		title : 'Paste from Word',
+		advice : 'Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.',
+		ignoreFontFace : 'Ignore Font Face definitions',
+		removeStyle : 'Remove Styles definitions'
+	},
+
+	pasteText :
+	{
+		button : 'Paste as plain text',
+		title : 'Paste as Plain Text'
+	},
+
+	templates :
+	{
+		button : 'Templates',
+		title : 'Content Templates',
+		insertOption: 'Replace actual contents',
+		selectPromptMsg: 'Please select the template to open in the editor',
+		emptyListMsg : '(No templates defined)'
+	},
+
+	showBlocks : 'Show Blocks',
+
+	stylesCombo :
+	{
+		label : 'Styles',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles',
+		panelTitle2 : 'Inline Styles',
+		panelTitle3 : 'Object Styles'
+	},
+
+	format :
+	{
+		label : 'Format',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Paragraph Format',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normal',
+		tag_pre : 'Formatted',
+		tag_address : 'Address',
+		tag_h1 : 'Heading 1',
+		tag_h2 : 'Heading 2',
+		tag_h3 : 'Heading 3',
+		tag_h4 : 'Heading 4',
+		tag_h5 : 'Heading 5',
+		tag_h6 : 'Heading 6',
+		tag_div : 'Normal (DIV)'
+	},
+
+	font :
+	{
+		label : 'Font',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Font Name',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Size',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Font Size',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Text Colour',
+		bgColorTitle : 'Background Colour',
+		auto : 'Automatic',
+		more : 'More Colours...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor',
+		moreInfo : 'For licensing information please visit our web site:',
+		copy : 'Copyright &copy; $1. All rights reserved.'
+	},
+
+	maximize : 'Maximize',
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/en-ca.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/en-ca.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/en-ca.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * English (Australia) language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['en-ca'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1',
+
+	// Toolbar buttons without dialogs.
+	source			: 'Source',
+	newPage			: 'New Page',
+	save			: 'Save',
+	preview			: 'Preview',
+	cut				: 'Cut',
+	copy			: 'Copy',
+	paste			: 'Paste',
+	print			: 'Print',
+	underline		: 'Underline',
+	bold			: 'Bold',
+	italic			: 'Italic',
+	selectAll		: 'Select All',
+	removeFormat	: 'Remove Format',
+	strike			: 'Strike Through',
+	subscript		: 'Subscript',
+	superscript		: 'Superscript',
+	horizontalrule	: 'Insert Horizontal Line',
+	pagebreak		: 'Insert Page Break for Printing',
+	unlink			: 'Unlink',
+	undo			: 'Undo',
+	redo			: 'Redo',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Browse Server',
+		url				: 'URL',
+		protocol		: 'Protocol',
+		upload			: 'Upload',
+		uploadSubmit	: 'Send it to the Server',
+		image			: 'Image',
+		flash			: 'Flash',
+		form			: 'Form',
+		checkbox		: 'Checkbox',
+		radio		: 'Radio Button',
+		textField		: 'Text Field',
+		textarea		: 'Textarea',
+		hiddenField		: 'Hidden Field',
+		button			: 'Button',
+		select	: 'Selection Field',
+		imageButton		: 'Image Button',
+		notSet			: '<not set>',
+		id				: 'Id',
+		name			: 'Name',
+		langDir			: 'Language Direction',
+		langDirLtr		: 'Left to Right (LTR)',
+		langDirRtl		: 'Right to Left (RTL)',
+		langCode		: 'Language Code',
+		longDescr		: 'Long Description URL',
+		cssClass		: 'Stylesheet Classes',
+		advisoryTitle	: 'Advisory Title',
+		cssStyle		: 'Style',
+		ok				: 'OK',
+		cancel			: 'Cancel',
+		generalTab		: 'General',
+		advancedTab		: 'Advanced',
+		validateNumberFailed	: 'This value is not a number.',
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?',
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Insert Special Character',
+		title		: 'Select Special Character'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Link',
+		menu		: 'Edit Link',
+		title		: 'Link',
+		info		: 'Link Info',
+		target		: 'Target',
+		upload		: 'Upload',
+		advanced	: 'Advanced',
+		type		: 'Link Type',
+		toAnchor	: 'Link to anchor in the text',
+		toEmail		: 'E-mail',
+		target		: 'Target',
+		targetNotSet	: '<not set>',
+		targetFrame	: '<frame>',
+		targetPopup	: '<popup window>',
+		targetNew	: 'New Window (_blank)',
+		targetTop	: 'Topmost Window (_top)',
+		targetSelf	: 'Same Window (_self)',
+		targetParent	: 'Parent Window (_parent)',
+		targetFrameName	: 'Target Frame Name',
+		targetPopupName	: 'Popup Window Name',
+		popupFeatures	: 'Popup Window Features',
+		popupResizable	: 'Resizable',
+		popupStatusBar	: 'Status Bar',
+		popupLocationBar	: 'Location Bar',
+		popupToolbar	: 'Toolbar',
+		popupMenuBar	: 'Menu Bar',
+		popupFullScreen	: 'Full Screen (IE)',
+		popupScrollBars	: 'Scroll Bars',
+		popupDependent	: 'Dependent (Netscape)',
+		popupWidth		: 'Width',
+		popupLeft		: 'Left Position',
+		popupHeight		: 'Height',
+		popupTop		: 'Top Position',
+		id				: 'Id',
+		langDir			: 'Language Direction',
+		langDirNotSet	: '<not set>',
+		langDirLTR		: 'Left to Right (LTR)',
+		langDirRTL		: 'Right to Left (RTL)',
+		acccessKey		: 'Access Key',
+		name			: 'Name',
+		langCode		: 'Language Code',
+		tabIndex		: 'Tab Index',
+		advisoryTitle	: 'Advisory Title',
+		advisoryContentType	: 'Advisory Content Type',
+		cssClasses		: 'Stylesheet Classes',
+		charset			: 'Linked Resource Charset',
+		styles			: 'Style',
+		selectAnchor	: 'Select an Anchor',
+		anchorName		: 'By Anchor Name',
+		anchorId		: 'By Element Id',
+		emailAddress	: 'E-Mail Address',
+		emailSubject	: 'Message Subject',
+		emailBody		: 'Message Body',
+		noAnchors		: '(No anchors available in the document)',
+		noUrl			: 'Please type the link URL',
+		noEmail			: 'Please type the e-mail address'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Anchor',
+		menu		: 'Edit Anchor',
+		title		: 'Anchor Properties',
+		name		: 'Anchor Name',
+		errorName	: 'Please type the anchor name'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Find and Replace',
+		find				: 'Find',
+		replace				: 'Replace',
+		findWhat			: 'Find what:',
+		replaceWith			: 'Replace with:',
+		notFoundMsg			: 'The specified text was not found.',
+		matchCase			: 'Match case',
+		matchWord			: 'Match whole word',
+		matchCyclic			: 'Match cyclic',
+		replaceAll			: 'Replace All',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.'
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Table',
+		title		: 'Table Properties',
+		menu		: 'Table Properties',
+		deleteTable	: 'Delete Table',
+		rows		: 'Rows',
+		columns		: 'Columns',
+		border		: 'Border size',
+		align		: 'Alignment',
+		alignNotSet	: '<Not set>',
+		alignLeft	: 'Left',
+		alignCenter	: 'Centre',
+		alignRight	: 'Right',
+		width		: 'Width',
+		widthPx		: 'pixels',
+		widthPc		: 'percent',
+		height		: 'Height',
+		cellSpace	: 'Cell spacing',
+		cellPad		: 'Cell padding',
+		caption		: 'Caption',
+		summary		: 'Summary',
+		headers		: 'Headers',
+		headersNone		: 'None',
+		headersColumn	: 'First column',
+		headersRow		: 'First Row',
+		headersBoth		: 'Both',
+		invalidRows		: 'Number of rows must be a number greater than 0.',
+		invalidCols		: 'Number of columns must be a number greater than 0.',
+		invalidBorder	: 'Border size must be a number.',
+		invalidWidth	: 'Table width must be a number.',
+		invalidHeight	: 'Table height must be a number.',
+		invalidCellSpacing	: 'Cell spacing must be a number.',
+		invalidCellPadding	: 'Cell padding must be a number.',
+
+		cell :
+		{
+			menu			: 'Cell',
+			insertBefore	: 'Insert Cell Before',
+			insertAfter		: 'Insert Cell After',
+			deleteCell		: 'Delete Cells',
+			merge			: 'Merge Cells',
+			mergeRight		: 'Merge Right',
+			mergeDown		: 'Merge Down',
+			splitHorizontal	: 'Split Cell Horizontally',
+			splitVertical	: 'Split Cell Vertically',
+			title			: 'Cell Properties',
+			cellType		: 'Cell Type',
+			rowSpan			: 'Rows Span',
+			colSpan			: 'Columns Span',
+			wordWrap		: 'Word Wrap',
+			hAlign			: 'Horizontal Alignment',
+			vAlign			: 'Vertical Alignment',
+			alignTop		: 'Top',
+			alignMiddle		: 'Middle',
+			alignBottom		: 'Bottom',
+			alignBaseline	: 'Baseline',
+			bgColor			: 'Background Color',
+			borderColor		: 'Border Color',
+			data			: 'Data',
+			header			: 'Header',
+			yes				: 'Yes',
+			no				: 'No',
+			invalidWidth	: 'Cell width must be a number.',
+			invalidHeight	: 'Cell height must be a number.',
+			invalidRowSpan	: 'Rows span must be a whole number.',
+			invalidColSpan	: 'Columns span must be a whole number.'
+		},
+
+		row :
+		{
+			menu			: 'Row',
+			insertBefore	: 'Insert Row Before',
+			insertAfter		: 'Insert Row After',
+			deleteRow		: 'Delete Rows'
+		},
+
+		column :
+		{
+			menu			: 'Column',
+			insertBefore	: 'Insert Column Before',
+			insertAfter		: 'Insert Column After',
+			deleteColumn	: 'Delete Columns'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Button Properties',
+		text		: 'Text (Value)',
+		type		: 'Type',
+		typeBtn		: 'Button',
+		typeSbm		: 'Submit',
+		typeRst		: 'Reset'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Checkbox Properties',
+		radioTitle	: 'Radio Button Properties',
+		value		: 'Value',
+		selected	: 'Selected'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Form Properties',
+		menu		: 'Form Properties',
+		action		: 'Action',
+		method		: 'Method',
+		encoding	: 'Encoding',
+		target		: 'Target',
+		targetNotSet	: '<not set>',
+		targetNew	: 'New Window (_blank)',
+		targetTop	: 'Topmost Window (_top)',
+		targetSelf	: 'Same Window (_self)',
+		targetParent	: 'Parent Window (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Selection Field Properties',
+		selectInfo	: 'Select Info',
+		opAvail		: 'Available Options',
+		value		: 'Value',
+		size		: 'Size',
+		lines		: 'lines',
+		chkMulti	: 'Allow multiple selections',
+		opText		: 'Text',
+		opValue		: 'Value',
+		btnAdd		: 'Add',
+		btnModify	: 'Modify',
+		btnUp		: 'Up',
+		btnDown		: 'Down',
+		btnSetValue : 'Set as selected value',
+		btnDelete	: 'Delete'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Textarea Properties',
+		cols		: 'Columns',
+		rows		: 'Rows'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Text Field Properties',
+		name		: 'Name',
+		value		: 'Value',
+		charWidth	: 'Character Width',
+		maxChars	: 'Maximum Characters',
+		type		: 'Type',
+		typeText	: 'Text',
+		typePass	: 'Password'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Hidden Field Properties',
+		name	: 'Name',
+		value	: 'Value'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Image Properties',
+		titleButton	: 'Image Button Properties',
+		menu		: 'Image Properties',
+		infoTab	: 'Image Info',
+		btnUpload	: 'Send it to the Server',
+		url		: 'URL',
+		upload	: 'Upload',
+		alt		: 'Alternative Text',
+		width		: 'Width',
+		height	: 'Height',
+		lockRatio	: 'Lock Ratio',
+		resetSize	: 'Reset Size',
+		border	: 'Border',
+		hSpace	: 'HSpace',
+		vSpace	: 'VSpace',
+		align		: 'Align',
+		alignLeft	: 'Left',
+		alignAbsBottom: 'Abs Bottom',
+		alignAbsMiddle: 'Abs Middle',
+		alignBaseline	: 'Baseline',
+		alignBottom	: 'Bottom',
+		alignMiddle	: 'Middle',
+		alignRight	: 'Right',
+		alignTextTop	: 'Text Top',
+		alignTop	: 'Top',
+		preview	: 'Preview',
+		alertUrl	: 'Please type the image URL',
+		linkTab	: 'Link',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?',
+		img2Button	: 'Do you want to transform the selected image on a image button?'
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Flash Properties',
+		propertiesTab	: 'Properties',
+		title		: 'Flash Properties',
+		chkPlay		: 'Auto Play',
+		chkLoop		: 'Loop',
+		chkMenu		: 'Enable Flash Menu',
+		chkFull		: 'Allow Fullscreen',
+ 		scale		: 'Scale',
+		scaleAll		: 'Show all',
+		scaleNoBorder	: 'No Border',
+		scaleFit		: 'Exact Fit',
+		access			: 'Script Access',
+		accessAlways	: 'Always',
+		accessSameDomain	: 'Same domain',
+		accessNever	: 'Never',
+		align		: 'Align',
+		alignLeft	: 'Left',
+		alignAbsBottom: 'Abs Bottom',
+		alignAbsMiddle: 'Abs Middle',
+		alignBaseline	: 'Baseline',
+		alignBottom	: 'Bottom',
+		alignMiddle	: 'Middle',
+		alignRight	: 'Right',
+		alignTextTop	: 'Text Top',
+		alignTop	: 'Top',
+		quality		: 'Quality',
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode',
+		flashvars	: 'Variables for Flash',
+		bgcolor	: 'Background colour',
+		width	: 'Width',
+		height	: 'Height',
+		hSpace	: 'HSpace',
+		vSpace	: 'VSpace',
+		validateSrc : 'URL must not be empty.',
+		validateWidth : 'Width must be a number.',
+		validateHeight : 'Height must be a number.',
+		validateHSpace : 'HSpace must be a number.',
+		validateVSpace : 'VSpace must be a number.'
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Check Spelling',
+		title			: 'Spell Check',
+		notAvailable	: 'Sorry, but service is unavailable now.',
+		errorLoading	: 'Error loading application service host: %s.',
+		notInDic		: 'Not in dictionary',
+		changeTo		: 'Change to',
+		btnIgnore		: 'Ignore',
+		btnIgnoreAll	: 'Ignore All',
+		btnReplace		: 'Replace',
+		btnReplaceAll	: 'Replace All',
+		btnUndo			: 'Undo',
+		noSuggestions	: '- No suggestions -',
+		progress		: 'Spell check in progress...',
+		noMispell		: 'Spell check complete: No misspellings found',
+		noChanges		: 'Spell check complete: No words changed',
+		oneChange		: 'Spell check complete: One word changed',
+		manyChanges		: 'Spell check complete: %1 words changed',
+		ieSpellDownload	: 'Spell checker not installed. Do you want to download it now?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Smiley',
+		title	: 'Insert a Smiley'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element'
+	},
+
+	numberedlist : 'Insert/Remove Numbered List',
+	bulletedlist : 'Insert/Remove Bulleted List',
+	indent : 'Increase Indent',
+	outdent : 'Decrease Indent',
+
+	justify :
+	{
+		left : 'Left Justify',
+		center : 'Centre Justify',
+		right : 'Right Justify',
+		block : 'Block Justify'
+	},
+
+	blockquote : 'Blockquote',
+
+	clipboard :
+	{
+		title		: 'Paste',
+		cutError	: 'Your browser security settings don\'t permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X).',
+		copyError	: 'Your browser security settings don\'t permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C).',
+		pasteMsg	: 'Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit OK',
+		securityMsg	: 'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Paste from Word',
+		title : 'Paste from Word',
+		advice : 'Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.',
+		ignoreFontFace : 'Ignore Font Face definitions',
+		removeStyle : 'Remove Styles definitions'
+	},
+
+	pasteText :
+	{
+		button : 'Paste as plain text',
+		title : 'Paste as Plain Text'
+	},
+
+	templates :
+	{
+		button : 'Templates',
+		title : 'Content Templates',
+		insertOption: 'Replace actual contents',
+		selectPromptMsg: 'Please select the template to open in the editor',
+		emptyListMsg : '(No templates defined)'
+	},
+
+	showBlocks : 'Show Blocks',
+
+	stylesCombo :
+	{
+		label : 'Styles',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles',
+		panelTitle2 : 'Inline Styles',
+		panelTitle3 : 'Object Styles'
+	},
+
+	format :
+	{
+		label : 'Format',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Paragraph Format',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normal',
+		tag_pre : 'Formatted',
+		tag_address : 'Address',
+		tag_h1 : 'Heading 1',
+		tag_h2 : 'Heading 2',
+		tag_h3 : 'Heading 3',
+		tag_h4 : 'Heading 4',
+		tag_h5 : 'Heading 5',
+		tag_h6 : 'Heading 6',
+		tag_div : 'Normal (DIV)'
+	},
+
+	font :
+	{
+		label : 'Font',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Font Name',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Size',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Font Size',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Text Colour',
+		bgColorTitle : 'Background Colour',
+		auto : 'Automatic',
+		more : 'More Colours...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor',
+		moreInfo : 'For licensing information please visit our web site:',
+		copy : 'Copyright &copy; $1. All rights reserved.'
+	},
+
+	maximize : 'Maximize',
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/en-uk.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/en-uk.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/en-uk.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * English (Australia) language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['en-uk'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1',
+
+	// Toolbar buttons without dialogs.
+	source			: 'Source',
+	newPage			: 'New Page',
+	save			: 'Save',
+	preview			: 'Preview',
+	cut				: 'Cut',
+	copy			: 'Copy',
+	paste			: 'Paste',
+	print			: 'Print',
+	underline		: 'Underline',
+	bold			: 'Bold',
+	italic			: 'Italic',
+	selectAll		: 'Select All',
+	removeFormat	: 'Remove Format',
+	strike			: 'Strike Through',
+	subscript		: 'Subscript',
+	superscript		: 'Superscript',
+	horizontalrule	: 'Insert Horizontal Line',
+	pagebreak		: 'Insert Page Break for Printing',
+	unlink			: 'Unlink',
+	undo			: 'Undo',
+	redo			: 'Redo',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Browse Server',
+		url				: 'URL',
+		protocol		: 'Protocol',
+		upload			: 'Upload',
+		uploadSubmit	: 'Send it to the Server',
+		image			: 'Image',
+		flash			: 'Flash',
+		form			: 'Form',
+		checkbox		: 'Checkbox',
+		radio		: 'Radio Button',
+		textField		: 'Text Field',
+		textarea		: 'Textarea',
+		hiddenField		: 'Hidden Field',
+		button			: 'Button',
+		select	: 'Selection Field',
+		imageButton		: 'Image Button',
+		notSet			: '<not set>',
+		id				: 'Id',
+		name			: 'Name',
+		langDir			: 'Language Direction',
+		langDirLtr		: 'Left to Right (LTR)',
+		langDirRtl		: 'Right to Left (RTL)',
+		langCode		: 'Language Code',
+		longDescr		: 'Long Description URL',
+		cssClass		: 'Stylesheet Classes',
+		advisoryTitle	: 'Advisory Title',
+		cssStyle		: 'Style',
+		ok				: 'OK',
+		cancel			: 'Cancel',
+		generalTab		: 'General',
+		advancedTab		: 'Advanced',
+		validateNumberFailed	: 'This value is not a number.',
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?',
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Insert Special Character',
+		title		: 'Select Special Character'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Link',
+		menu		: 'Edit Link',
+		title		: 'Link',
+		info		: 'Link Info',
+		target		: 'Target',
+		upload		: 'Upload',
+		advanced	: 'Advanced',
+		type		: 'Link Type',
+		toAnchor	: 'Link to anchor in the text',
+		toEmail		: 'E-mail',
+		target		: 'Target',
+		targetNotSet	: '<not set>',
+		targetFrame	: '<frame>',
+		targetPopup	: '<popup window>',
+		targetNew	: 'New Window (_blank)',
+		targetTop	: 'Topmost Window (_top)',
+		targetSelf	: 'Same Window (_self)',
+		targetParent	: 'Parent Window (_parent)',
+		targetFrameName	: 'Target Frame Name',
+		targetPopupName	: 'Popup Window Name',
+		popupFeatures	: 'Popup Window Features',
+		popupResizable	: 'Resizable',
+		popupStatusBar	: 'Status Bar',
+		popupLocationBar	: 'Location Bar',
+		popupToolbar	: 'Toolbar',
+		popupMenuBar	: 'Menu Bar',
+		popupFullScreen	: 'Full Screen (IE)',
+		popupScrollBars	: 'Scroll Bars',
+		popupDependent	: 'Dependent (Netscape)',
+		popupWidth		: 'Width',
+		popupLeft		: 'Left Position',
+		popupHeight		: 'Height',
+		popupTop		: 'Top Position',
+		id				: 'Id',
+		langDir			: 'Language Direction',
+		langDirNotSet	: '<not set>',
+		langDirLTR		: 'Left to Right (LTR)',
+		langDirRTL		: 'Right to Left (RTL)',
+		acccessKey		: 'Access Key',
+		name			: 'Name',
+		langCode		: 'Language Code',
+		tabIndex		: 'Tab Index',
+		advisoryTitle	: 'Advisory Title',
+		advisoryContentType	: 'Advisory Content Type',
+		cssClasses		: 'Stylesheet Classes',
+		charset			: 'Linked Resource Charset',
+		styles			: 'Style',
+		selectAnchor	: 'Select an Anchor',
+		anchorName		: 'By Anchor Name',
+		anchorId		: 'By Element Id',
+		emailAddress	: 'E-Mail Address',
+		emailSubject	: 'Message Subject',
+		emailBody		: 'Message Body',
+		noAnchors		: '(No anchors available in the document)',
+		noUrl			: 'Please type the link URL',
+		noEmail			: 'Please type the e-mail address'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Anchor',
+		menu		: 'Edit Anchor',
+		title		: 'Anchor Properties',
+		name		: 'Anchor Name',
+		errorName	: 'Please type the anchor name'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Find and Replace',
+		find				: 'Find',
+		replace				: 'Replace',
+		findWhat			: 'Find what:',
+		replaceWith			: 'Replace with:',
+		notFoundMsg			: 'The specified text was not found.',
+		matchCase			: 'Match case',
+		matchWord			: 'Match whole word',
+		matchCyclic			: 'Match cyclic',
+		replaceAll			: 'Replace All',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.'
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Table',
+		title		: 'Table Properties',
+		menu		: 'Table Properties',
+		deleteTable	: 'Delete Table',
+		rows		: 'Rows',
+		columns		: 'Columns',
+		border		: 'Border size',
+		align		: 'Alignment',
+		alignNotSet	: '<Not set>',
+		alignLeft	: 'Left',
+		alignCenter	: 'Centre',
+		alignRight	: 'Right',
+		width		: 'Width',
+		widthPx		: 'pixels',
+		widthPc		: 'percent',
+		height		: 'Height',
+		cellSpace	: 'Cell spacing',
+		cellPad		: 'Cell padding',
+		caption		: 'Caption',
+		summary		: 'Summary',
+		headers		: 'Headers',
+		headersNone		: 'None',
+		headersColumn	: 'First column',
+		headersRow		: 'First Row',
+		headersBoth		: 'Both',
+		invalidRows		: 'Number of rows must be a number greater than 0.',
+		invalidCols		: 'Number of columns must be a number greater than 0.',
+		invalidBorder	: 'Border size must be a number.',
+		invalidWidth	: 'Table width must be a number.',
+		invalidHeight	: 'Table height must be a number.',
+		invalidCellSpacing	: 'Cell spacing must be a number.',
+		invalidCellPadding	: 'Cell padding must be a number.',
+
+		cell :
+		{
+			menu			: 'Cell',
+			insertBefore	: 'Insert Cell Before',
+			insertAfter		: 'Insert Cell After',
+			deleteCell		: 'Delete Cells',
+			merge			: 'Merge Cells',
+			mergeRight		: 'Merge Right',
+			mergeDown		: 'Merge Down',
+			splitHorizontal	: 'Split Cell Horizontally',
+			splitVertical	: 'Split Cell Vertically',
+			title			: 'Cell Properties',
+			cellType		: 'Cell Type',
+			rowSpan			: 'Rows Span',
+			colSpan			: 'Columns Span',
+			wordWrap		: 'Word Wrap',
+			hAlign			: 'Horizontal Alignment',
+			vAlign			: 'Vertical Alignment',
+			alignTop		: 'Top',
+			alignMiddle		: 'Middle',
+			alignBottom		: 'Bottom',
+			alignBaseline	: 'Baseline',
+			bgColor			: 'Background Color',
+			borderColor		: 'Border Color',
+			data			: 'Data',
+			header			: 'Header',
+			yes				: 'Yes',
+			no				: 'No',
+			invalidWidth	: 'Cell width must be a number.',
+			invalidHeight	: 'Cell height must be a number.',
+			invalidRowSpan	: 'Rows span must be a whole number.',
+			invalidColSpan	: 'Columns span must be a whole number.'
+		},
+
+		row :
+		{
+			menu			: 'Row',
+			insertBefore	: 'Insert Row Before',
+			insertAfter		: 'Insert Row After',
+			deleteRow		: 'Delete Rows'
+		},
+
+		column :
+		{
+			menu			: 'Column',
+			insertBefore	: 'Insert Column Before',
+			insertAfter		: 'Insert Column After',
+			deleteColumn	: 'Delete Columns'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Button Properties',
+		text		: 'Text (Value)',
+		type		: 'Type',
+		typeBtn		: 'Button',
+		typeSbm		: 'Submit',
+		typeRst		: 'Reset'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Checkbox Properties',
+		radioTitle	: 'Radio Button Properties',
+		value		: 'Value',
+		selected	: 'Selected'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Form Properties',
+		menu		: 'Form Properties',
+		action		: 'Action',
+		method		: 'Method',
+		encoding	: 'Encoding',
+		target		: 'Target',
+		targetNotSet	: '<not set>',
+		targetNew	: 'New Window (_blank)',
+		targetTop	: 'Topmost Window (_top)',
+		targetSelf	: 'Same Window (_self)',
+		targetParent	: 'Parent Window (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Selection Field Properties',
+		selectInfo	: 'Select Info',
+		opAvail		: 'Available Options',
+		value		: 'Value',
+		size		: 'Size',
+		lines		: 'lines',
+		chkMulti	: 'Allow multiple selections',
+		opText		: 'Text',
+		opValue		: 'Value',
+		btnAdd		: 'Add',
+		btnModify	: 'Modify',
+		btnUp		: 'Up',
+		btnDown		: 'Down',
+		btnSetValue : 'Set as selected value',
+		btnDelete	: 'Delete'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Textarea Properties',
+		cols		: 'Columns',
+		rows		: 'Rows'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Text Field Properties',
+		name		: 'Name',
+		value		: 'Value',
+		charWidth	: 'Character Width',
+		maxChars	: 'Maximum Characters',
+		type		: 'Type',
+		typeText	: 'Text',
+		typePass	: 'Password'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Hidden Field Properties',
+		name	: 'Name',
+		value	: 'Value'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Image Properties',
+		titleButton	: 'Image Button Properties',
+		menu		: 'Image Properties',
+		infoTab	: 'Image Info',
+		btnUpload	: 'Send it to the Server',
+		url		: 'URL',
+		upload	: 'Upload',
+		alt		: 'Alternative Text',
+		width		: 'Width',
+		height	: 'Height',
+		lockRatio	: 'Lock Ratio',
+		resetSize	: 'Reset Size',
+		border	: 'Border',
+		hSpace	: 'HSpace',
+		vSpace	: 'VSpace',
+		align		: 'Align',
+		alignLeft	: 'Left',
+		alignAbsBottom: 'Abs Bottom',
+		alignAbsMiddle: 'Abs Middle',
+		alignBaseline	: 'Baseline',
+		alignBottom	: 'Bottom',
+		alignMiddle	: 'Middle',
+		alignRight	: 'Right',
+		alignTextTop	: 'Text Top',
+		alignTop	: 'Top',
+		preview	: 'Preview',
+		alertUrl	: 'Please type the image URL',
+		linkTab	: 'Link',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?',
+		img2Button	: 'Do you want to transform the selected image on a image button?'
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Flash Properties',
+		propertiesTab	: 'Properties',
+		title		: 'Flash Properties',
+		chkPlay		: 'Auto Play',
+		chkLoop		: 'Loop',
+		chkMenu		: 'Enable Flash Menu',
+		chkFull		: 'Allow Fullscreen',
+ 		scale		: 'Scale',
+		scaleAll		: 'Show all',
+		scaleNoBorder	: 'No Border',
+		scaleFit		: 'Exact Fit',
+		access			: 'Script Access',
+		accessAlways	: 'Always',
+		accessSameDomain	: 'Same domain',
+		accessNever	: 'Never',
+		align		: 'Align',
+		alignLeft	: 'Left',
+		alignAbsBottom: 'Abs Bottom',
+		alignAbsMiddle: 'Abs Middle',
+		alignBaseline	: 'Baseline',
+		alignBottom	: 'Bottom',
+		alignMiddle	: 'Middle',
+		alignRight	: 'Right',
+		alignTextTop	: 'Text Top',
+		alignTop	: 'Top',
+		quality		: 'Quality',
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode',
+		flashvars	: 'Variables for Flash',
+		bgcolor	: 'Background colour',
+		width	: 'Width',
+		height	: 'Height',
+		hSpace	: 'HSpace',
+		vSpace	: 'VSpace',
+		validateSrc : 'URL must not be empty.',
+		validateWidth : 'Width must be a number.',
+		validateHeight : 'Height must be a number.',
+		validateHSpace : 'HSpace must be a number.',
+		validateVSpace : 'VSpace must be a number.'
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Check Spelling',
+		title			: 'Spell Check',
+		notAvailable	: 'Sorry, but service is unavailable now.',
+		errorLoading	: 'Error loading application service host: %s.',
+		notInDic		: 'Not in dictionary',
+		changeTo		: 'Change to',
+		btnIgnore		: 'Ignore',
+		btnIgnoreAll	: 'Ignore All',
+		btnReplace		: 'Replace',
+		btnReplaceAll	: 'Replace All',
+		btnUndo			: 'Undo',
+		noSuggestions	: '- No suggestions -',
+		progress		: 'Spell check in progress...',
+		noMispell		: 'Spell check complete: No misspellings found',
+		noChanges		: 'Spell check complete: No words changed',
+		oneChange		: 'Spell check complete: One word changed',
+		manyChanges		: 'Spell check complete: %1 words changed',
+		ieSpellDownload	: 'Spell checker not installed. Do you want to download it now?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Smiley',
+		title	: 'Insert a Smiley'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element'
+	},
+
+	numberedlist : 'Insert/Remove Numbered List',
+	bulletedlist : 'Insert/Remove Bulleted List',
+	indent : 'Increase Indent',
+	outdent : 'Decrease Indent',
+
+	justify :
+	{
+		left : 'Left Justify',
+		center : 'Centre Justify',
+		right : 'Right Justify',
+		block : 'Block Justify'
+	},
+
+	blockquote : 'Blockquote',
+
+	clipboard :
+	{
+		title		: 'Paste',
+		cutError	: 'Your browser security settings don\'t permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X).',
+		copyError	: 'Your browser security settings don\'t permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C).',
+		pasteMsg	: 'Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit OK',
+		securityMsg	: 'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Paste from Word',
+		title : 'Paste from Word',
+		advice : 'Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.',
+		ignoreFontFace : 'Ignore Font Face definitions',
+		removeStyle : 'Remove Styles definitions'
+	},
+
+	pasteText :
+	{
+		button : 'Paste as plain text',
+		title : 'Paste as Plain Text'
+	},
+
+	templates :
+	{
+		button : 'Templates',
+		title : 'Content Templates',
+		insertOption: 'Replace actual contents',
+		selectPromptMsg: 'Please select the template to open in the editor',
+		emptyListMsg : '(No templates defined)'
+	},
+
+	showBlocks : 'Show Blocks',
+
+	stylesCombo :
+	{
+		label : 'Styles',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles',
+		panelTitle2 : 'Inline Styles',
+		panelTitle3 : 'Object Styles'
+	},
+
+	format :
+	{
+		label : 'Format',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Paragraph Format',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normal',
+		tag_pre : 'Formatted',
+		tag_address : 'Address',
+		tag_h1 : 'Heading 1',
+		tag_h2 : 'Heading 2',
+		tag_h3 : 'Heading 3',
+		tag_h4 : 'Heading 4',
+		tag_h5 : 'Heading 5',
+		tag_h6 : 'Heading 6',
+		tag_div : 'Normal (DIV)'
+	},
+
+	font :
+	{
+		label : 'Font',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Font Name',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Size',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Font Size',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Text Colour',
+		bgColorTitle : 'Background Colour',
+		auto : 'Automatic',
+		more : 'More Colours...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor',
+		moreInfo : 'For licensing information please visit our web site:',
+		copy : 'Copyright &copy; $1. All rights reserved.'
+	},
+
+	maximize : 'Maximize',
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/en.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/en.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/en.js	(revision 3747)
@@ -28,7 +28,18 @@
 	dir : 'ltr',
 
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1',
+
 	// Toolbar buttons without dialogs.
 	source			: 'Source',
 	newPage			: 'New Page',
+	save			: 'Save',
+	preview			: 'Preview',
+	cut				: 'Cut',
+	copy			: 'Copy',
+	paste			: 'Paste',
 	print			: 'Print',
 	underline		: 'Underline',
@@ -41,11 +52,13 @@
 	superscript		: 'Superscript',
 	horizontalrule	: 'Insert Horizontal Line',
-	pagebreak		: 'Insert Page Break',
+	pagebreak		: 'Insert Page Break for Printing',
 	unlink			: 'Unlink',
+	undo			: 'Undo',
+	redo			: 'Redo',
 
 	// Common messages and labels.
 	common :
 	{
-		browseServer	: 'Browser Server',
+		browseServer	: 'Browse Server',
 		url				: 'URL',
 		protocol		: 'Protocol',
@@ -80,5 +93,8 @@
 		validateNumberFailed	: 'This value is not a number.',
 		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?',
-		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?'
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?',
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>'
 	},
 
@@ -93,5 +109,6 @@
 	link :
 	{
-		toolbar		: 'Link\u200b',		// IE6 BUG: A title called "Link" in an <A> tag would invalidate its padding!!
+		toolbar		: 'Link',
+		menu		: 'Edit Link',
 		title		: 'Link',
 		info		: 'Link Info',
@@ -128,6 +145,6 @@
 		langDir			: 'Language Direction',
 		langDirNotSet	: '<not set>',
-		langDirLTR		: 'Left to Right',
-		langDirRTL		: 'Right to Left',
+		langDirLTR		: 'Left to Right (LTR)',
+		langDirRTL		: 'Right to Left (RTL)',
 		acccessKey		: 'Access Key',
 		name			: 'Name',
@@ -154,4 +171,5 @@
 	{
 		toolbar		: 'Anchor',
+		menu		: 'Edit Anchor',
 		title		: 'Anchor Properties',
 		name		: 'Anchor Name',
@@ -171,5 +189,6 @@
 		matchWord			: 'Match whole word',
 		matchCyclic			: 'Match cyclic',
-		replaceAll			: 'Replace All'
+		replaceAll			: 'Replace All',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.'
 	},
 
@@ -179,4 +198,6 @@
 		toolbar		: 'Table',
 		title		: 'Table Properties',
+		menu		: 'Table Properties',
+		deleteTable	: 'Delete Table',
 		rows		: 'Rows',
 		columns		: 'Columns',
@@ -199,5 +220,62 @@
 		headersColumn	: 'First column',
 		headersRow		: 'First Row',
-		headersBoth		: 'Both'
+		headersBoth		: 'Both',
+		invalidRows		: 'Number of rows must be a number greater than 0.',
+		invalidCols		: 'Number of columns must be a number greater than 0.',
+		invalidBorder	: 'Border size must be a number.',
+		invalidWidth	: 'Table width must be a number.',
+		invalidHeight	: 'Table height must be a number.',
+		invalidCellSpacing	: 'Cell spacing must be a number.',
+		invalidCellPadding	: 'Cell padding must be a number.',
+
+		cell :
+		{
+			menu			: 'Cell',
+			insertBefore	: 'Insert Cell Before',
+			insertAfter		: 'Insert Cell After',
+			deleteCell		: 'Delete Cells',
+			merge			: 'Merge Cells',
+			mergeRight		: 'Merge Right',
+			mergeDown		: 'Merge Down',
+			splitHorizontal	: 'Split Cell Horizontally',
+			splitVertical	: 'Split Cell Vertically',
+			title			: 'Cell Properties',
+			cellType		: 'Cell Type',
+			rowSpan			: 'Rows Span',
+			colSpan			: 'Columns Span',
+			wordWrap		: 'Word Wrap',
+			hAlign			: 'Horizontal Alignment',
+			vAlign			: 'Vertical Alignment',
+			alignTop		: 'Top',
+			alignMiddle		: 'Middle',
+			alignBottom		: 'Bottom',
+			alignBaseline	: 'Baseline',
+			bgColor			: 'Background Color',
+			borderColor		: 'Border Color',
+			data			: 'Data',
+			header			: 'Header',
+			yes				: 'Yes',
+			no				: 'No',
+			invalidWidth	: 'Cell width must be a number.',
+			invalidHeight	: 'Cell height must be a number.',
+			invalidRowSpan	: 'Rows span must be a whole number.',
+			invalidColSpan	: 'Columns span must be a whole number.'
+		},
+
+		row :
+		{
+			menu			: 'Row',
+			insertBefore	: 'Insert Row Before',
+			insertAfter		: 'Insert Row After',
+			deleteRow		: 'Delete Rows'
+		},
+
+		column :
+		{
+			menu			: 'Column',
+			insertBefore	: 'Insert Column Before',
+			insertAfter		: 'Insert Column After',
+			deleteColumn	: 'Delete Columns'
+		}
 	},
 
@@ -226,4 +304,5 @@
 	{
 		title		: 'Form Properties',
+		menu		: 'Form Properties',
 		action		: 'Action',
 		method		: 'Method',
@@ -291,4 +370,5 @@
 		title		: 'Image Properties',
 		titleButton	: 'Image Button Properties',
+		menu		: 'Image Properties',
 		infoTab	: 'Image Info',
 		btnUpload	: 'Send it to the Server',
@@ -349,4 +429,13 @@
 		alignTop	: 'Top',
 		quality		: 'Quality',
+		qualityBest		 : 'Best',
+		qualityHigh		 : 'High',
+		qualityAutoHigh	 : 'Auto High',
+		qualityMedium	 : 'Medium',
+		qualityAutoLow	 : 'Auto Low',
+		qualityLow		 : 'Low',
+		windowModeWindow	 : 'Window',
+		windowModeOpaque	 : 'Opaque',
+		windowModeTransparent	 : 'Transparent',
 		windowMode	: 'Window mode',
 		flashvars	: 'Variables for Flash',
@@ -355,5 +444,33 @@
 		height	: 'Height',
 		hSpace	: 'HSpace',
-		vSpace	: 'VSpace'
+		vSpace	: 'VSpace',
+		validateSrc : 'URL must not be empty.',
+		validateWidth : 'Width must be a number.',
+		validateHeight : 'Height must be a number.',
+		validateHSpace : 'HSpace must be a number.',
+		validateVSpace : 'VSpace must be a number.'
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Check Spelling',
+		title			: 'Spell Check',
+		notAvailable	: 'Sorry, but service is unavailable now.',
+		errorLoading	: 'Error loading application service host: %s.',
+		notInDic		: 'Not in dictionary',
+		changeTo		: 'Change to',
+		btnIgnore		: 'Ignore',
+		btnIgnoreAll	: 'Ignore All',
+		btnReplace		: 'Replace',
+		btnReplaceAll	: 'Replace All',
+		btnUndo			: 'Undo',
+		noSuggestions	: '- No suggestions -',
+		progress		: 'Spell check in progress...',
+		noMispell		: 'Spell check complete: No misspellings found',
+		noChanges		: 'Spell check complete: No words changed',
+		oneChange		: 'Spell check complete: One word changed',
+		manyChanges		: 'Spell check complete: %1 words changed',
+		ieSpellDownload	: 'Spell checker not installed. Do you want to download it now?'
 	},
 
@@ -367,4 +484,190 @@
 	{
 		eleTitle : '%1 element'
-	}
+	},
+
+	numberedlist : 'Insert/Remove Numbered List',
+	bulletedlist : 'Insert/Remove Bulleted List',
+	indent : 'Increase Indent',
+	outdent : 'Decrease Indent',
+
+	justify :
+	{
+		left : 'Left Justify',
+		center : 'Center Justify',
+		right : 'Right Justify',
+		block : 'Block Justify'
+	},
+
+	blockquote : 'Blockquote',
+
+	clipboard :
+	{
+		title		: 'Paste',
+		cutError	: 'Your browser security settings don\'t permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X).',
+		copyError	: 'Your browser security settings don\'t permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C).',
+		pasteMsg	: 'Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit OK',
+		securityMsg	: 'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Paste from Word',
+		title : 'Paste from Word',
+		advice : 'Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.',
+		ignoreFontFace : 'Ignore Font Face definitions',
+		removeStyle : 'Remove Styles definitions'
+	},
+
+	pasteText :
+	{
+		button : 'Paste as plain text',
+		title : 'Paste as Plain Text'
+	},
+
+	templates :
+	{
+		button : 'Templates',
+		title : 'Content Templates',
+		insertOption: 'Replace actual contents',
+		selectPromptMsg: 'Please select the template to open in the editor',
+		emptyListMsg : '(No templates defined)'
+	},
+
+	showBlocks : 'Show Blocks',
+
+	stylesCombo :
+	{
+		label : 'Styles',
+		voiceLabel : 'Styles',
+		panelVoiceLabel : 'Select a style',
+		panelTitle1 : 'Block Styles',
+		panelTitle2 : 'Inline Styles',
+		panelTitle3 : 'Object Styles'
+	},
+
+	format :
+	{
+		label : 'Format',
+		voiceLabel : 'Format',
+		panelTitle : 'Paragraph Format',
+		panelVoiceLabel : 'Select a paragraph format',
+
+		tag_p : 'Normal',
+		tag_pre : 'Formatted',
+		tag_address : 'Address',
+		tag_h1 : 'Heading 1',
+		tag_h2 : 'Heading 2',
+		tag_h3 : 'Heading 3',
+		tag_h4 : 'Heading 4',
+		tag_h5 : 'Heading 5',
+		tag_h6 : 'Heading 6',
+		tag_div : 'Normal (DIV)'
+	},
+
+	font :
+	{
+		label : 'Font',
+		voiceLabel : 'Font',
+		panelTitle : 'Font Name',
+		panelVoiceLabel : 'Select a font'
+	},
+
+	fontSize :
+	{
+		label : 'Size',
+		voiceLabel : 'Font Size',
+		panelTitle : 'Font Size',
+		panelVoiceLabel : 'Select a font size'
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Text Color',
+		bgColorTitle : 'Background Color',
+		auto : 'Automatic',
+		more : 'More Colors...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type',
+		enable : 'Enable SCAYT',
+		disable : 'Disable SCAYT',
+		about : 'About SCAYT',
+		toggle : 'Toggle SCAYT',
+		options : 'Options',
+		langs : 'Languages',
+		moreSuggestions : 'More suggestions',
+		ignore : 'Ignore',
+		ignoreAll : 'Ignore All',
+		addWord : 'Add Word',
+		emptyDic : 'Dictionary name should not be empty.',
+		optionsTab : 'Options',
+		languagesTab : 'Languages',
+		dictionariesTab : 'Dictionaries',
+		aboutTab : 'About'
+	},
+
+	about :
+	{
+		title : 'About CKEditor',
+		moreInfo : 'For licensing information please visit our web site:',
+		copy : 'Copyright &copy; $1. All rights reserved.'
+	},
+
+	maximize : 'Maximize',
+
+	fakeobjects :
+	{
+		anchor : 'Anchor',
+		flash : 'Flash Animation',
+		div : 'Page Break',
+		unknown : 'Unknown Object'
+	},
+
+	resize : 'Drag to resize'
 };
Index: /CKEditor/branches/versions/3.0.x/_source/lang/eo.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/eo.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/eo.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Esperanto language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['eo'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Fonto',
+	newPage			: 'Nova Paĝo',
+	save			: 'Sekurigi',
+	preview			: 'Vidigi Aspekton',
+	cut				: 'Eltondi',
+	copy			: 'Kopii',
+	paste			: 'Interglui',
+	print			: 'Presi',
+	underline		: 'Substreko',
+	bold			: 'Grasa',
+	italic			: 'Kursiva',
+	selectAll		: 'Elekti ĉion',
+	removeFormat	: 'Forigi Formaton',
+	strike			: 'Trastreko',
+	subscript		: 'Subskribo',
+	superscript		: 'Superskribo',
+	horizontalrule	: 'Enmeti Horizonta Linio',
+	pagebreak		: 'Insert Page Break for Printing', // MISSING
+	unlink			: 'Forigi Ligilon',
+	undo			: 'Malfari',
+	redo			: 'Refari',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Foliumi en la Servilo',
+		url				: 'URL',
+		protocol		: 'Protokolo',
+		upload			: 'Alŝuti',
+		uploadSubmit	: 'Sendu al Servilo',
+		image			: 'Bildo',
+		flash			: 'Flash', // MISSING
+		form			: 'Formularo',
+		checkbox		: 'Markobutono',
+		radio		: 'Radiobutono',
+		textField		: 'Teksta kampo',
+		textarea		: 'Teksta Areo',
+		hiddenField		: 'Kaŝita Kampo',
+		button			: 'Butono',
+		select	: 'Elekta Kampo',
+		imageButton		: 'Bildbutono',
+		notSet			: '<Defaŭlta>',
+		id				: 'Id',
+		name			: 'Nomo',
+		langDir			: 'Skribdirekto',
+		langDirLtr		: 'De maldekstro dekstren (LTR)',
+		langDirRtl		: 'De dekstro maldekstren (RTL)',
+		langCode		: 'Lingva Kodo',
+		longDescr		: 'URL de Longa Priskribo',
+		cssClass		: 'Klasoj de Stilfolioj',
+		advisoryTitle	: 'Indika Titolo',
+		cssStyle		: 'Stilo',
+		ok				: 'Akcepti',
+		cancel			: 'Rezigni',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'Speciala',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Enmeti Specialan Signon',
+		title		: 'Enmeti Specialan Signon'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Enmeti/Ŝanĝi Ligilon',
+		menu		: 'Modifier Ligilon',
+		title		: 'Ligilo',
+		info		: 'Informoj pri la Ligilo',
+		target		: 'Celo',
+		upload		: 'Alŝuti',
+		advanced	: 'Speciala',
+		type		: 'Tipo de Ligilo',
+		toAnchor	: 'Ankri en tiu ĉi paĝo',
+		toEmail		: 'Retpoŝto',
+		target		: 'Celo',
+		targetNotSet	: '<Defaŭlta>',
+		targetFrame	: '<kadro>',
+		targetPopup	: '<ŝprucfenestro>',
+		targetNew	: 'Nova Fenestro (_blank)',
+		targetTop	: 'Plej Supra Fenestro (_top)',
+		targetSelf	: 'Sama Fenestro (_self)',
+		targetParent	: 'Gepatra Fenestro (_parent)',
+		targetFrameName	: 'Nomo de Kadro',
+		targetPopupName	: 'Nomo de Ŝprucfenestro',
+		popupFeatures	: 'Atributoj de la Ŝprucfenestro',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Statobreto',
+		popupLocationBar	: 'Adresobreto',
+		popupToolbar	: 'Ilobreto',
+		popupMenuBar	: 'Menubreto',
+		popupFullScreen	: 'Tutekrane (IE)',
+		popupScrollBars	: 'Rulumlisteloj',
+		popupDependent	: 'Dependa (Netscape)',
+		popupWidth		: 'Larĝo',
+		popupLeft		: 'Pozicio de Maldekstro',
+		popupHeight		: 'Alto',
+		popupTop		: 'Pozicio de Supro',
+		id				: 'Id', // MISSING
+		langDir			: 'Skribdirekto',
+		langDirNotSet	: '<Defaŭlta>',
+		langDirLTR		: 'De maldekstro dekstren (LTR)',
+		langDirRTL		: 'De dekstro maldekstren (RTL)',
+		acccessKey		: 'Fulmoklavo',
+		name			: 'Nomo',
+		langCode		: 'Skribdirekto',
+		tabIndex		: 'Taba Ordo',
+		advisoryTitle	: 'Indika Titolo',
+		advisoryContentType	: 'Indika Enhavotipo',
+		cssClasses		: 'Klasoj de Stilfolioj',
+		charset			: 'Signaro de la Ligita Rimedo',
+		styles			: 'Stilo',
+		selectAnchor	: 'Elekti Ankron',
+		anchorName		: 'Per Ankronomo',
+		anchorId		: 'Per Elementidentigilo',
+		emailAddress	: 'Retadreso',
+		emailSubject	: 'Temlinio',
+		emailBody		: 'Mesaĝa korpo',
+		noAnchors		: '<Ne disponeblas ankroj en la dokumento>',
+		noUrl			: 'Bonvolu entajpi la URL-on',
+		noEmail			: 'Bonvolu entajpi la retadreson'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Enmeti/Ŝanĝi Ankron',
+		menu		: 'Ankraj Atributoj',
+		title		: 'Ankraj Atributoj',
+		name		: 'Ankra Nomo',
+		errorName	: 'Bv tajpi la ankran nomon'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Find and Replace', // MISSING
+		find				: 'Serĉi',
+		replace				: 'Anstataŭigi',
+		findWhat			: 'Serĉi:',
+		replaceWith			: 'Anstataŭigi per:',
+		notFoundMsg			: 'La celteksto ne estas trovita.',
+		matchCase			: 'Kongruigi Usklecon',
+		matchWord			: 'Tuta Vorto',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Anstataŭigi Ĉiun',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tabelo',
+		title		: 'Atributoj de Tabelo',
+		menu		: 'Atributoj de Tabelo',
+		deleteTable	: 'Delete Table', // MISSING
+		rows		: 'Linioj',
+		columns		: 'Kolumnoj',
+		border		: 'Bordero',
+		align		: 'Ĝisrandigo',
+		alignNotSet	: '<Defaŭlte>',
+		alignLeft	: 'Maldekstre',
+		alignCenter	: 'Centre',
+		alignRight	: 'Dekstre',
+		width		: 'Larĝo',
+		widthPx		: 'Bitbilderoj',
+		widthPc		: 'elcentoj',
+		height		: 'Alto',
+		cellSpace	: 'Interspacigo de Ĉeloj',
+		cellPad		: 'Ĉirkaŭenhava Plenigado',
+		caption		: 'Titolo',
+		summary		: 'Summary', // MISSING
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Cell', // MISSING
+			insertBefore	: 'Insert Cell Before', // MISSING
+			insertAfter		: 'Insert Cell After', // MISSING
+			deleteCell		: 'Forigi Ĉelojn',
+			merge			: 'Kunfandi Ĉelojn',
+			mergeRight		: 'Merge Right', // MISSING
+			mergeDown		: 'Merge Down', // MISSING
+			splitHorizontal	: 'Split Cell Horizontally', // MISSING
+			splitVertical	: 'Split Cell Vertically', // MISSING
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Row', // MISSING
+			insertBefore	: 'Insert Row Before', // MISSING
+			insertAfter		: 'Insert Row After', // MISSING
+			deleteRow		: 'Forigi Liniojn'
+		},
+
+		column :
+		{
+			menu			: 'Column', // MISSING
+			insertBefore	: 'Insert Column Before', // MISSING
+			insertAfter		: 'Insert Column After', // MISSING
+			deleteColumn	: 'Forigi Kolumnojn'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Butonaj Atributoj',
+		text		: 'Teksto (Valoro)',
+		type		: 'Tipo',
+		typeBtn		: 'Button', // MISSING
+		typeSbm		: 'Submit', // MISSING
+		typeRst		: 'Reset' // MISSING
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Markobutonaj Atributoj',
+		radioTitle	: 'Radiobutonaj Atributoj',
+		value		: 'Valoro',
+		selected	: 'Elektita'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Formularaj Atributoj',
+		menu		: 'Formularaj Atributoj',
+		action		: 'Ago',
+		method		: 'Metodo',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Celo',
+		targetNotSet	: '<Defaŭlta>',
+		targetNew	: 'Nova Fenestro (_blank)',
+		targetTop	: 'Plej Supra Fenestro (_top)',
+		targetSelf	: 'Sama Fenestro (_self)',
+		targetParent	: 'Gepatra Fenestro (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Atributoj de Elekta Kampo',
+		selectInfo	: 'Select Info', // MISSING
+		opAvail		: 'Elektoj Disponeblaj',
+		value		: 'Valoro',
+		size		: 'Grando',
+		lines		: 'Linioj',
+		chkMulti	: 'Permesi Plurajn Elektojn',
+		opText		: 'Teksto',
+		opValue		: 'Valoro',
+		btnAdd		: 'Aldoni',
+		btnModify	: 'Modifi',
+		btnUp		: 'Supren',
+		btnDown		: 'Malsupren',
+		btnSetValue : 'Agordi kiel Elektitan Valoron',
+		btnDelete	: 'Forigi'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Atributoj de Teksta Areo',
+		cols		: 'Kolumnoj',
+		rows		: 'Vicoj'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Atributoj de Teksta Kampo',
+		name		: 'Nomo',
+		value		: 'Valoro',
+		charWidth	: 'Signolarĝo',
+		maxChars	: 'Maksimuma Nombro da Signoj',
+		type		: 'Tipo',
+		typeText	: 'Teksto',
+		typePass	: 'Pasvorto'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Atributoj de Kaŝita Kampo',
+		name	: 'Nomo',
+		value	: 'Valoro'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Atributoj de Bildo',
+		titleButton	: 'Bildbutonaj Atributoj',
+		menu		: 'Atributoj de Bildo',
+		infoTab	: 'Informoj pri Bildo',
+		btnUpload	: 'Sendu al Servilo',
+		url		: 'URL',
+		upload	: 'Alŝuti',
+		alt		: 'Anstataŭiga Teksto',
+		width		: 'Larĝo',
+		height	: 'Alto',
+		lockRatio	: 'Konservi Proporcion',
+		resetSize	: 'Origina Grando',
+		border	: 'Bordero',
+		hSpace	: 'HSpaco',
+		vSpace	: 'VSpaco',
+		align		: 'Ĝisrandigo',
+		alignLeft	: 'Maldekstre',
+		alignAbsBottom: 'Abs Malsupre',
+		alignAbsMiddle: 'Abs Centre',
+		alignBaseline	: 'Je Malsupro de Teksto',
+		alignBottom	: 'Malsupre',
+		alignMiddle	: 'Centre',
+		alignRight	: 'Dekstre',
+		alignTextTop	: 'Je Supro de Teksto',
+		alignTop	: 'Supre',
+		preview	: 'Vidigi Aspekton',
+		alertUrl	: 'Bonvolu tajpi la URL de la bildo',
+		linkTab	: 'Link', // MISSING
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Flash Properties', // MISSING
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Flash Properties', // MISSING
+		chkPlay		: 'Auto Play', // MISSING
+		chkLoop		: 'Loop', // MISSING
+		chkMenu		: 'Enable Flash Menu', // MISSING
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Scale', // MISSING
+		scaleAll		: 'Show all', // MISSING
+		scaleNoBorder	: 'No Border', // MISSING
+		scaleFit		: 'Exact Fit', // MISSING
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Ĝisrandigo',
+		alignLeft	: 'Maldekstre',
+		alignAbsBottom: 'Abs Malsupre',
+		alignAbsMiddle: 'Abs Centre',
+		alignBaseline	: 'Je Malsupro de Teksto',
+		alignBottom	: 'Malsupre',
+		alignMiddle	: 'Centre',
+		alignRight	: 'Dekstre',
+		alignTextTop	: 'Je Supro de Teksto',
+		alignTop	: 'Supre',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Fona Koloro',
+		width	: 'Larĝo',
+		height	: 'Alto',
+		hSpace	: 'HSpaco',
+		vSpace	: 'VSpaco',
+		validateSrc : 'Bonvolu entajpi la URL-on',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Literumada Kontrolilo',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Ne trovita en la vortaro',
+		changeTo		: 'Ŝanĝi al',
+		btnIgnore		: 'Malatenti',
+		btnIgnoreAll	: 'Malatenti Ĉiun',
+		btnReplace		: 'Anstataŭigi',
+		btnReplaceAll	: 'Anstataŭigi Ĉiun',
+		btnUndo			: 'Malfari',
+		noSuggestions	: '- Neniu propono -',
+		progress		: 'Literumkontrolado daŭras...',
+		noMispell		: 'Literumkontrolado finita: neniu fuŝo trovita',
+		noChanges		: 'Literumkontrolado finita: neniu vorto ŝanĝita',
+		oneChange		: 'Literumkontrolado finita: unu vorto ŝanĝita',
+		manyChanges		: 'Literumkontrolado finita: %1 vortoj ŝanĝitaj',
+		ieSpellDownload	: 'Literumada Kontrolilo ne instalita. Ĉu vi volas elŝuti ĝin nun?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Mienvinjeto',
+		title	: 'Enmeti Mienvinjeton'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Numera Listo',
+	bulletedlist : 'Bula Listo',
+	indent : 'Pligrandigi Krommarĝenon',
+	outdent : 'Malpligrandigi Krommarĝenon',
+
+	justify :
+	{
+		left : 'Maldekstrigi',
+		center : 'Centrigi',
+		right : 'Dekstrigi',
+		block : 'Ĝisrandigi Ambaŭflanke'
+	},
+
+	blockquote : 'Blockquote', // MISSING
+
+	clipboard :
+	{
+		title		: 'Interglui',
+		cutError	: 'La sekurecagordo de via TTT-legilo ne permesas, ke la redaktilo faras eltondajn operaciojn. Bonvolu uzi la klavaron por tio (ctrl-X).',
+		copyError	: 'La sekurecagordo de via TTT-legilo ne permesas, ke la redaktilo faras kopiajn operaciojn. Bonvolu uzi la klavaron por tio (ctrl-C).',
+		pasteMsg	: 'Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit OK', // MISSING
+		securityMsg	: 'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.' // MISSING
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Interglui el Word',
+		title : 'Interglui el Word',
+		advice : 'Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.', // MISSING
+		ignoreFontFace : 'Ignore Font Face definitions', // MISSING
+		removeStyle : 'Remove Styles definitions' // MISSING
+	},
+
+	pasteText :
+	{
+		button : 'Interglui kiel Tekston',
+		title : 'Interglui kiel Tekston'
+	},
+
+	templates :
+	{
+		button : 'Templates', // MISSING
+		title : 'Content Templates', // MISSING
+		insertOption: 'Replace actual contents', // MISSING
+		selectPromptMsg: 'Please select the template to open in the editor', // MISSING
+		emptyListMsg : '(No templates defined)' // MISSING
+	},
+
+	showBlocks : 'Show Blocks', // MISSING
+
+	stylesCombo :
+	{
+		label : 'Stilo',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Formato',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Formato',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normala',
+		tag_pre : 'Formatita',
+		tag_address : 'Adreso',
+		tag_h1 : 'Titolo 1',
+		tag_h2 : 'Titolo 2',
+		tag_h3 : 'Titolo 3',
+		tag_h4 : 'Titolo 4',
+		tag_h5 : 'Titolo 5',
+		tag_h6 : 'Titolo 6',
+		tag_div : 'Paragrafo (DIV)'
+	},
+
+	font :
+	{
+		label : 'Tiparo',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Tiparo',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Grando',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Grando',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Teksta Koloro',
+		bgColorTitle : 'Fona Koloro',
+		auto : 'Aŭtomata',
+		more : 'Pli da Koloroj...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/es.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/es.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/es.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Spanish language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['es'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Fuente HTML',
+	newPage			: 'Nueva Página',
+	save			: 'Guardar',
+	preview			: 'Vista Previa',
+	cut				: 'Cortar',
+	copy			: 'Copiar',
+	paste			: 'Pegar',
+	print			: 'Imprimir',
+	underline		: 'Subrayado',
+	bold			: 'Negrita',
+	italic			: 'Cursiva',
+	selectAll		: 'Seleccionar Todo',
+	removeFormat	: 'Eliminar Formato',
+	strike			: 'Tachado',
+	subscript		: 'Subíndice',
+	superscript		: 'Superíndice',
+	horizontalrule	: 'Insertar Línea Horizontal',
+	pagebreak		: 'Insertar Salto de Página',
+	unlink			: 'Eliminar Vínculo',
+	undo			: 'Deshacer',
+	redo			: 'Rehacer',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Ver Servidor',
+		url				: 'URL',
+		protocol		: 'Protocolo',
+		upload			: 'Cargar',
+		uploadSubmit	: 'Enviar al Servidor',
+		image			: 'Imagen',
+		flash			: 'Flash',
+		form			: 'Formulario',
+		checkbox		: 'Casilla de Verificación',
+		radio		: 'Botones de Radio',
+		textField		: 'Campo de Texto',
+		textarea		: 'Area de Texto',
+		hiddenField		: 'Campo Oculto',
+		button			: 'Botón',
+		select	: 'Campo de Selección',
+		imageButton		: 'Botón Imagen',
+		notSet			: '<No definido>',
+		id				: 'Id',
+		name			: 'Nombre',
+		langDir			: 'Orientación',
+		langDirLtr		: 'Izquierda a Derecha (LTR)',
+		langDirRtl		: 'Derecha a Izquierda (RTL)',
+		langCode		: 'Cód. de idioma',
+		longDescr		: 'Descripción larga URL',
+		cssClass		: 'Clases de hojas de estilo',
+		advisoryTitle	: 'Título',
+		cssStyle		: 'Estilo',
+		ok				: 'OK',
+		cancel			: 'Cancelar',
+		generalTab		: 'General',
+		advancedTab		: 'Avanzado',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Insertar Caracter Especial',
+		title		: 'Seleccione un caracter especial'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Insertar/Editar Vínculo',
+		menu		: 'Editar Vínculo',
+		title		: 'Vínculo',
+		info		: 'Información de Vínculo',
+		target		: 'Destino',
+		upload		: 'Cargar',
+		advanced	: 'Avanzado',
+		type		: 'Tipo de vínculo',
+		toAnchor	: 'Referencia en esta página',
+		toEmail		: 'E-Mail',
+		target		: 'Destino',
+		targetNotSet	: '<No definido>',
+		targetFrame	: '<marco>',
+		targetPopup	: '<ventana emergente>',
+		targetNew	: 'Nueva Ventana(_blank)',
+		targetTop	: 'Ventana primaria (_top)',
+		targetSelf	: 'Misma Ventana (_self)',
+		targetParent	: 'Ventana Padre (_parent)',
+		targetFrameName	: 'Nombre del Marco Destino',
+		targetPopupName	: 'Nombre de Ventana Emergente',
+		popupFeatures	: 'Características de Ventana Emergente',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Barra de Estado',
+		popupLocationBar	: 'Barra de ubicación',
+		popupToolbar	: 'Barra de Herramientas',
+		popupMenuBar	: 'Barra de Menú',
+		popupFullScreen	: 'Pantalla Completa (IE)',
+		popupScrollBars	: 'Barras de desplazamiento',
+		popupDependent	: 'Dependiente (Netscape)',
+		popupWidth		: 'Anchura',
+		popupLeft		: 'Posición Izquierda',
+		popupHeight		: 'Altura',
+		popupTop		: 'Posición Derecha',
+		id				: 'Id', // MISSING
+		langDir			: 'Orientación',
+		langDirNotSet	: '<No definido>',
+		langDirLTR		: 'Izquierda a Derecha (LTR)',
+		langDirRTL		: 'Derecha a Izquierda (RTL)',
+		acccessKey		: 'Clave de Acceso',
+		name			: 'Nombre',
+		langCode		: 'Orientación',
+		tabIndex		: 'Indice de tabulación',
+		advisoryTitle	: 'Título',
+		advisoryContentType	: 'Tipo de Contenido',
+		cssClasses		: 'Clases de hojas de estilo',
+		charset			: 'Fuente de caracteres vinculado',
+		styles			: 'Estilo',
+		selectAnchor	: 'Seleccionar una referencia',
+		anchorName		: 'Por Nombre de Referencia',
+		anchorId		: 'Por ID de elemento',
+		emailAddress	: 'Dirección de E-Mail',
+		emailSubject	: 'Título del Mensaje',
+		emailBody		: 'Cuerpo del Mensaje',
+		noAnchors		: '(No hay referencias disponibles en el documento)',
+		noUrl			: 'Por favor tipee el vínculo URL',
+		noEmail			: 'Por favor tipee la dirección de e-mail'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Referencia',
+		menu		: 'Propiedades de Referencia',
+		title		: 'Propiedades de Referencia',
+		name		: 'Nombre de la Referencia',
+		errorName	: 'Por favor, complete el nombre de la Referencia'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Buscar y Reemplazar',
+		find				: 'Buscar',
+		replace				: 'Reemplazar',
+		findWhat			: 'Texto a buscar:',
+		replaceWith			: 'Reemplazar con:',
+		notFoundMsg			: 'El texto especificado no ha sido encontrado.',
+		matchCase			: 'Coincidir may/min',
+		matchWord			: 'Coincidir toda la palabra',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Reemplazar Todo',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tabla',
+		title		: 'Propiedades de Tabla',
+		menu		: 'Propiedades de Tabla',
+		deleteTable	: 'Eliminar Tabla',
+		rows		: 'Filas',
+		columns		: 'Columnas',
+		border		: 'Tamaño de Borde',
+		align		: 'Alineación',
+		alignNotSet	: '<No establecido>',
+		alignLeft	: 'Izquierda',
+		alignCenter	: 'Centrado',
+		alignRight	: 'Derecha',
+		width		: 'Anchura',
+		widthPx		: 'pixeles',
+		widthPc		: 'porcentaje',
+		height		: 'Altura',
+		cellSpace	: 'Esp. e/celdas',
+		cellPad		: 'Esp. interior',
+		caption		: 'Título',
+		summary		: 'Síntesis',
+		headers		: 'Encabezados',
+		headersNone		: 'Ninguno',
+		headersColumn	: 'Primera columna',
+		headersRow		: 'Primera fila',
+		headersBoth		: 'Ambas',
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Celda',
+			insertBefore	: 'Insertar celda a la izquierda',
+			insertAfter		: 'Insertar celda a la derecha',
+			deleteCell		: 'Eliminar Celdas',
+			merge			: 'Combinar Celdas',
+			mergeRight		: 'Combinar a la derecha',
+			mergeDown		: 'Combinar hacia abajo',
+			splitHorizontal	: 'Dividir la celda horizontalmente',
+			splitVertical	: 'Dividir la celda verticalmente',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Fila',
+			insertBefore	: 'Insertar fila en la parte superior',
+			insertAfter		: 'Insertar fila en la parte inferior',
+			deleteRow		: 'Eliminar Filas'
+		},
+
+		column :
+		{
+			menu			: 'Columna',
+			insertBefore	: 'Insertar columna a la izquierda',
+			insertAfter		: 'Insertar columna a la derecha',
+			deleteColumn	: 'Eliminar Columnas'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Propiedades de Botón',
+		text		: 'Texto (Valor)',
+		type		: 'Tipo',
+		typeBtn		: 'Boton',
+		typeSbm		: 'Enviar',
+		typeRst		: 'Reestablecer'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Propiedades de Casilla',
+		radioTitle	: 'Propiedades de Botón de Radio',
+		value		: 'Valor',
+		selected	: 'Seleccionado'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Propiedades de Formulario',
+		menu		: 'Propiedades de Formulario',
+		action		: 'Acción',
+		method		: 'Método',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Destino',
+		targetNotSet	: '<No definido>',
+		targetNew	: 'Nueva Ventana(_blank)',
+		targetTop	: 'Ventana primaria (_top)',
+		targetSelf	: 'Misma Ventana (_self)',
+		targetParent	: 'Ventana Padre (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Propiedades de Campo de Selección',
+		selectInfo	: 'Información',
+		opAvail		: 'Opciones disponibles',
+		value		: 'Valor',
+		size		: 'Tamaño',
+		lines		: 'Lineas',
+		chkMulti	: 'Permitir múltiple selección',
+		opText		: 'Texto',
+		opValue		: 'Valor',
+		btnAdd		: 'Agregar',
+		btnModify	: 'Modificar',
+		btnUp		: 'Subir',
+		btnDown		: 'Bajar',
+		btnSetValue : 'Establecer como predeterminado',
+		btnDelete	: 'Eliminar'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Propiedades de Area de Texto',
+		cols		: 'Columnas',
+		rows		: 'Filas'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Propiedades de Campo de Texto',
+		name		: 'Nombre',
+		value		: 'Valor',
+		charWidth	: 'Caracteres de ancho',
+		maxChars	: 'Máximo caracteres',
+		type		: 'Tipo',
+		typeText	: 'Texto',
+		typePass	: 'Contraseña'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Propiedades de Campo Oculto',
+		name	: 'Nombre',
+		value	: 'Valor'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Propiedades de Imagen',
+		titleButton	: 'Propiedades de Botón de Imagen',
+		menu		: 'Propiedades de Imagen',
+		infoTab	: 'Información de Imagen',
+		btnUpload	: 'Enviar al Servidor',
+		url		: 'URL',
+		upload	: 'Cargar',
+		alt		: 'Texto Alternativo',
+		width		: 'Anchura',
+		height	: 'Altura',
+		lockRatio	: 'Proporcional',
+		resetSize	: 'Tamaño Original',
+		border	: 'Borde',
+		hSpace	: 'Esp.Horiz',
+		vSpace	: 'Esp.Vert',
+		align		: 'Alineación',
+		alignLeft	: 'Izquierda',
+		alignAbsBottom: 'Abs inferior',
+		alignAbsMiddle: 'Abs centro',
+		alignBaseline	: 'Línea de base',
+		alignBottom	: 'Pie',
+		alignMiddle	: 'Centro',
+		alignRight	: 'Derecha',
+		alignTextTop	: 'Tope del texto',
+		alignTop	: 'Tope',
+		preview	: 'Vista Previa',
+		alertUrl	: 'Por favor escriba la URL de la imagen',
+		linkTab	: 'Vínculo',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Propiedades de Flash',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Propiedades de Flash',
+		chkPlay		: 'Autoejecución',
+		chkLoop		: 'Repetir',
+		chkMenu		: 'Activar Menú Flash',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Escala',
+		scaleAll		: 'Mostrar todo',
+		scaleNoBorder	: 'Sin Borde',
+		scaleFit		: 'Ajustado',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Alineación',
+		alignLeft	: 'Izquierda',
+		alignAbsBottom: 'Abs inferior',
+		alignAbsMiddle: 'Abs centro',
+		alignBaseline	: 'Línea de base',
+		alignBottom	: 'Pie',
+		alignMiddle	: 'Centro',
+		alignRight	: 'Derecha',
+		alignTextTop	: 'Tope del texto',
+		alignTop	: 'Tope',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Color de Fondo',
+		width	: 'Anchura',
+		height	: 'Altura',
+		hSpace	: 'Esp.Horiz',
+		vSpace	: 'Esp.Vert',
+		validateSrc : 'Por favor tipee el vínculo URL',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Ortografía',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'No se encuentra en el Diccionario',
+		changeTo		: 'Cambiar a',
+		btnIgnore		: 'Ignorar',
+		btnIgnoreAll	: 'Ignorar Todo',
+		btnReplace		: 'Reemplazar',
+		btnReplaceAll	: 'Reemplazar Todo',
+		btnUndo			: 'Deshacer',
+		noSuggestions	: '- No hay sugerencias -',
+		progress		: 'Control de Ortografía en progreso...',
+		noMispell		: 'Control finalizado: no se encontraron errores',
+		noChanges		: 'Control finalizado: no se ha cambiado ninguna palabra',
+		oneChange		: 'Control finalizado: se ha cambiado una palabra',
+		manyChanges		: 'Control finalizado: se ha cambiado %1 palabras',
+		ieSpellDownload	: 'Módulo de Control de Ortografía no instalado. ¿Desea descargarlo ahora?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Emoticons',
+		title	: 'Insertar un Emoticon'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Numeración',
+	bulletedlist : 'Viñetas',
+	indent : 'Aumentar Sangría',
+	outdent : 'Disminuir Sangría',
+
+	justify :
+	{
+		left : 'Alinear a Izquierda',
+		center : 'Centrar',
+		right : 'Alinear a Derecha',
+		block : 'Justificado'
+	},
+
+	blockquote : 'Cita',
+
+	clipboard :
+	{
+		title		: 'Pegar',
+		cutError	: 'La configuración de seguridad de este navegador no permite la ejecución automática de operaciones de cortado. Por favor use el teclado (Ctrl+X).',
+		copyError	: 'La configuración de seguridad de este navegador no permite la ejecución automática de operaciones de copiado. Por favor use el teclado (Ctrl+C).',
+		pasteMsg	: 'Por favor pegue dentro del cuadro utilizando el teclado (<STRONG>Ctrl+V</STRONG>); luego presione <STRONG>OK</STRONG>.',
+		securityMsg	: 'Debido a la configuración de seguridad de su navegador, el editor no tiene acceso al portapapeles. Es necesario que lo pegue de nuevo en esta ventana.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Pegar desde Word',
+		title : 'Pegar desde Word',
+		advice : 'Por favor pegue dentro del cuadro utilizando el teclado (<STRONG>Ctrl+V</STRONG>); luego presione <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Ignorar definiciones de fuentes',
+		removeStyle : 'Remover definiciones de estilo'
+	},
+
+	pasteText :
+	{
+		button : 'Pegar como Texto Plano',
+		title : 'Pegar como Texto Plano'
+	},
+
+	templates :
+	{
+		button : 'Plantillas',
+		title : 'Contenido de Plantillas',
+		insertOption: 'Reemplazar el contenido actual',
+		selectPromptMsg: 'Por favor selecciona la plantilla a abrir en el editor<br>(el contenido actual se perderá):',
+		emptyListMsg : '(No hay plantillas definidas)'
+	},
+
+	showBlocks : 'Mostrar bloques',
+
+	stylesCombo :
+	{
+		label : 'Estilo',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Formato',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Formato',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normal',
+		tag_pre : 'Con formato',
+		tag_address : 'Dirección',
+		tag_h1 : 'Encabezado 1',
+		tag_h2 : 'Encabezado 2',
+		tag_h3 : 'Encabezado 3',
+		tag_h4 : 'Encabezado 4',
+		tag_h5 : 'Encabezado 5',
+		tag_h6 : 'Encabezado 6',
+		tag_div : 'Normal (DIV)'
+	},
+
+	font :
+	{
+		label : 'Fuente',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Fuente',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Tamaño',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Tamaño',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Color de Texto',
+		bgColorTitle : 'Color de Fondo',
+		auto : 'Automático',
+		more : 'Más Colores...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/et.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/et.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/et.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Estonian language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['et'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Lähtekood',
+	newPage			: 'Uus leht',
+	save			: 'Salvesta',
+	preview			: 'Eelvaade',
+	cut				: 'Lõika',
+	copy			: 'Kopeeri',
+	paste			: 'Kleebi',
+	print			: 'Prindi',
+	underline		: 'Allajoonitud',
+	bold			: 'Paks',
+	italic			: 'Kursiiv',
+	selectAll		: 'Vali kõik',
+	removeFormat	: 'Eemalda vorming',
+	strike			: 'Läbijoonitud',
+	subscript		: 'Allindeks',
+	superscript		: 'Ülaindeks',
+	horizontalrule	: 'Sisesta horisontaaljoon',
+	pagebreak		: 'Sisesta lehevahetuskoht',
+	unlink			: 'Eemalda link',
+	undo			: 'Võta tagasi',
+	redo			: 'Korda toimingut',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Sirvi serverit',
+		url				: 'URL',
+		protocol		: 'Protokoll',
+		upload			: 'Lae üles',
+		uploadSubmit	: 'Saada serverissee',
+		image			: 'Pilt',
+		flash			: 'Flash',
+		form			: 'Vorm',
+		checkbox		: 'Märkeruut',
+		radio		: 'Raadionupp',
+		textField		: 'Tekstilahter',
+		textarea		: 'Tekstiala',
+		hiddenField		: 'Varjatud lahter',
+		button			: 'Nupp',
+		select	: 'Valiklahter',
+		imageButton		: 'Piltnupp',
+		notSet			: '<määramata>',
+		id				: 'Id',
+		name			: 'Nimi',
+		langDir			: 'Keele suund',
+		langDirLtr		: 'Vasakult paremale (LTR)',
+		langDirRtl		: 'Paremalt vasakule (RTL)',
+		langCode		: 'Keele kood',
+		longDescr		: 'Pikk kirjeldus URL',
+		cssClass		: 'Stiilistiku klassid',
+		advisoryTitle	: 'Juhendav tiitel',
+		cssStyle		: 'Laad',
+		ok				: 'OK',
+		cancel			: 'Loobu',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'Täpsemalt',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Sisesta erimärk',
+		title		: 'Vali erimärk'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Sisesta link / Muuda linki',
+		menu		: 'Muuda linki',
+		title		: 'Link',
+		info		: 'Lingi info',
+		target		: 'Sihtkoht',
+		upload		: 'Lae üles',
+		advanced	: 'Täpsemalt',
+		type		: 'Lingi tüüp',
+		toAnchor	: 'Ankur sellel lehel',
+		toEmail		: 'E-post',
+		target		: 'Sihtkoht',
+		targetNotSet	: '<määramata>',
+		targetFrame	: '<raam>',
+		targetPopup	: '<hüpikaken>',
+		targetNew	: 'Uus aken (_blank)',
+		targetTop	: 'Pealmine aken (_top)',
+		targetSelf	: 'Sama aken (_self)',
+		targetParent	: 'Esivanem aken (_parent)',
+		targetFrameName	: 'Sihtmärk raami nimi',
+		targetPopupName	: 'Hüpikakna nimi',
+		popupFeatures	: 'Hüpikakna omadused',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Olekuriba',
+		popupLocationBar	: 'Aadressiriba',
+		popupToolbar	: 'Tööriistariba',
+		popupMenuBar	: 'Menüüriba',
+		popupFullScreen	: 'Täisekraan (IE)',
+		popupScrollBars	: 'Kerimisribad',
+		popupDependent	: 'Sõltuv (Netscape)',
+		popupWidth		: 'Laius',
+		popupLeft		: 'Vasak asukoht',
+		popupHeight		: 'Kõrgus',
+		popupTop		: 'Ülemine asukoht',
+		id				: 'Id', // MISSING
+		langDir			: 'Keele suund',
+		langDirNotSet	: '<määramata>',
+		langDirLTR		: 'Vasakult paremale (LTR)',
+		langDirRTL		: 'Paremalt vasakule (RTL)',
+		acccessKey		: 'Juurdepääsu võti',
+		name			: 'Nimi',
+		langCode		: 'Keele suund',
+		tabIndex		: 'Tab indeks',
+		advisoryTitle	: 'Juhendav tiitel',
+		advisoryContentType	: 'Juhendava sisu tüüp',
+		cssClasses		: 'Stiilistiku klassid',
+		charset			: 'Lingitud ressurssi märgistik',
+		styles			: 'Laad',
+		selectAnchor	: 'Vali ankur',
+		anchorName		: 'Ankru nime järgi',
+		anchorId		: 'Elemendi id järgi',
+		emailAddress	: 'E-posti aadress',
+		emailSubject	: 'Sõnumi teema',
+		emailBody		: 'Sõnumi tekst',
+		noAnchors		: '(Selles dokumendis ei ole ankruid)',
+		noUrl			: 'Palun kirjuta lingi URL',
+		noEmail			: 'Palun kirjuta E-Posti aadress'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Sisesta ankur / Muuda ankrut',
+		menu		: 'Ankru omadused',
+		title		: 'Ankru omadused',
+		name		: 'Ankru nimi',
+		errorName	: 'Palun sisest ankru nimi'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Otsi ja asenda',
+		find				: 'Otsi',
+		replace				: 'Asenda',
+		findWhat			: 'Leia mida:',
+		replaceWith			: 'Asenda millega:',
+		notFoundMsg			: 'Valitud teksti ei leitud.',
+		matchCase			: 'Erista suur- ja väiketähti',
+		matchWord			: 'Otsi terviklike sõnu',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Asenda kõik',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tabel',
+		title		: 'Tabeli atribuudid',
+		menu		: 'Tabeli atribuudid',
+		deleteTable	: 'Kustuta tabel',
+		rows		: 'Read',
+		columns		: 'Veerud',
+		border		: 'Joone suurus',
+		align		: 'Joondus',
+		alignNotSet	: '<Määramata>',
+		alignLeft	: 'Vasak',
+		alignCenter	: 'Kesk',
+		alignRight	: 'Parem',
+		width		: 'Laius',
+		widthPx		: 'pikslit',
+		widthPc		: 'protsenti',
+		height		: 'Kõrgus',
+		cellSpace	: 'Lahtri vahe',
+		cellPad		: 'Lahtri täidis',
+		caption		: 'Tabeli tiitel',
+		summary		: 'Kokkuvõte',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Lahter',
+			insertBefore	: 'Sisesta lahter enne',
+			insertAfter		: 'Sisesta lahter peale',
+			deleteCell		: 'Eemalda lahtrid',
+			merge			: 'Ühenda lahtrid',
+			mergeRight		: 'Ühenda paremale',
+			mergeDown		: 'Ühenda alla',
+			splitHorizontal	: 'Poolita lahter horisontaalselt',
+			splitVertical	: 'Poolita lahter vertikaalselt',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Rida',
+			insertBefore	: 'Sisesta rida enne',
+			insertAfter		: 'Sisesta rida peale',
+			deleteRow		: 'Eemalda read'
+		},
+
+		column :
+		{
+			menu			: 'Veerg',
+			insertBefore	: 'Sisesta veerg enne',
+			insertAfter		: 'Sisesta veerg peale',
+			deleteColumn	: 'Eemalda veerud'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Nupu omadused',
+		text		: 'Tekst (väärtus)',
+		type		: 'Tüüp',
+		typeBtn		: 'Nupp',
+		typeSbm		: 'Saada',
+		typeRst		: 'Lähtesta'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Märkeruudu omadused',
+		radioTitle	: 'Raadionupu omadused',
+		value		: 'Väärtus',
+		selected	: 'Valitud'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Vormi omadused',
+		menu		: 'Vormi omadused',
+		action		: 'Toiming',
+		method		: 'Meetod',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Sihtkoht',
+		targetNotSet	: '<määramata>',
+		targetNew	: 'Uus aken (_blank)',
+		targetTop	: 'Pealmine aken (_top)',
+		targetSelf	: 'Sama aken (_self)',
+		targetParent	: 'Esivanem aken (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Valiklahtri omadused',
+		selectInfo	: 'Info',
+		opAvail		: 'Võimalikud valikud',
+		value		: 'Väärtus',
+		size		: 'Suurus',
+		lines		: 'ridu',
+		chkMulti	: 'Võimalda mitu valikut',
+		opText		: 'Tekst',
+		opValue		: 'Väärtus',
+		btnAdd		: 'Lisa',
+		btnModify	: 'Muuda',
+		btnUp		: 'Üles',
+		btnDown		: 'Alla',
+		btnSetValue : 'Sea valitud olekuna',
+		btnDelete	: 'Kustuta'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Tekstiala omadused',
+		cols		: 'Veerge',
+		rows		: 'Ridu'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Tekstilahtri omadused',
+		name		: 'Nimi',
+		value		: 'Väärtus',
+		charWidth	: 'Laius (tähemärkides)',
+		maxChars	: 'Maksimaalselt tähemärke',
+		type		: 'Tüüp',
+		typeText	: 'Tekst',
+		typePass	: 'Parool'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Varjatud lahtri omadused',
+		name	: 'Nimi',
+		value	: 'Väärtus'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Pildi atribuudid',
+		titleButton	: 'Piltnupu omadused',
+		menu		: 'Pildi atribuudid',
+		infoTab	: 'Pildi info',
+		btnUpload	: 'Saada serverissee',
+		url		: 'URL',
+		upload	: 'Lae üles',
+		alt		: 'Alternatiivne tekst',
+		width		: 'Laius',
+		height	: 'Kõrgus',
+		lockRatio	: 'Lukusta kuvasuhe',
+		resetSize	: 'Lähtesta suurus',
+		border	: 'Joon',
+		hSpace	: 'H. vaheruum',
+		vSpace	: 'V. vaheruum',
+		align		: 'Joondus',
+		alignLeft	: 'Vasak',
+		alignAbsBottom: 'Abs alla',
+		alignAbsMiddle: 'Abs keskele',
+		alignBaseline	: 'Baasjoonele',
+		alignBottom	: 'Alla',
+		alignMiddle	: 'Keskele',
+		alignRight	: 'Paremale',
+		alignTextTop	: 'Tekstit üles',
+		alignTop	: 'Üles',
+		preview	: 'Eelvaade',
+		alertUrl	: 'Palun kirjuta pildi URL',
+		linkTab	: 'Link',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Flash omadused',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Flash omadused',
+		chkPlay		: 'Automaatne start ',
+		chkLoop		: 'Korduv',
+		chkMenu		: 'Võimalda flash menüü',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Mastaap',
+		scaleAll		: 'Näita kõike',
+		scaleNoBorder	: 'Äärist ei ole',
+		scaleFit		: 'Täpne sobivus',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Joondus',
+		alignLeft	: 'Vasak',
+		alignAbsBottom: 'Abs alla',
+		alignAbsMiddle: 'Abs keskele',
+		alignBaseline	: 'Baasjoonele',
+		alignBottom	: 'Alla',
+		alignMiddle	: 'Keskele',
+		alignRight	: 'Paremale',
+		alignTextTop	: 'Tekstit üles',
+		alignTop	: 'Üles',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Tausta värv',
+		width	: 'Laius',
+		height	: 'Kõrgus',
+		hSpace	: 'H. vaheruum',
+		vSpace	: 'V. vaheruum',
+		validateSrc : 'Palun kirjuta lingi URL',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Kontrolli õigekirja',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Puudub sõnastikust',
+		changeTo		: 'Muuda',
+		btnIgnore		: 'Ignoreeri',
+		btnIgnoreAll	: 'Ignoreeri kõiki',
+		btnReplace		: 'Asenda',
+		btnReplaceAll	: 'Asenda kõik',
+		btnUndo			: 'Võta tagasi',
+		noSuggestions	: '- Soovitused puuduvad -',
+		progress		: 'Toimub õigekirja kontroll...',
+		noMispell		: 'Õigekirja kontroll sooritatud: õigekirjuvigu ei leitud',
+		noChanges		: 'Õigekirja kontroll sooritatud: ühtegi sõna ei muudetud',
+		oneChange		: 'Õigekirja kontroll sooritatud: üks sõna muudeti',
+		manyChanges		: 'Õigekirja kontroll sooritatud: %1 sõna muudetud',
+		ieSpellDownload	: 'Õigekirja kontrollija ei ole installeeritud. Soovid sa selle alla laadida?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Emotikon',
+		title	: 'Sisesta emotikon'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Nummerdatud loetelu',
+	bulletedlist : 'Punktiseeritud loetelu',
+	indent : 'Suurenda taanet',
+	outdent : 'Vähenda taanet',
+
+	justify :
+	{
+		left : 'Vasakjoondus',
+		center : 'Keskjoondus',
+		right : 'Paremjoondus',
+		block : 'Rööpjoondus'
+	},
+
+	blockquote : 'Blokktsitaat',
+
+	clipboard :
+	{
+		title		: 'Kleebi',
+		cutError	: 'Sinu veebisirvija turvaseaded ei luba redaktoril automaatselt lõigata. Palun kasutage selleks klaviatuuri klahvikombinatsiooni (Ctrl+X).',
+		copyError	: 'Sinu veebisirvija turvaseaded ei luba redaktoril automaatselt kopeerida. Palun kasutage selleks klaviatuuri klahvikombinatsiooni (Ctrl+C).',
+		pasteMsg	: 'Palun kleebi järgnevasse kasti kasutades klaviatuuri klahvikombinatsiooni (<STRONG>Ctrl+V</STRONG>) ja vajuta seejärel <STRONG>OK</STRONG>.',
+		securityMsg	: 'Sinu veebisirvija turvaseadete tõttu, ei oma redaktor otsest ligipääsu lõikelaua andmetele. Sa pead kleepima need uuesti siia aknasse.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Kleebi Wordist',
+		title : 'Kleebi Wordist',
+		advice : 'Palun kleebi järgnevasse kasti kasutades klaviatuuri klahvikombinatsiooni (<STRONG>Ctrl+V</STRONG>) ja vajuta seejärel <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Ignoreeri kirja definitsioone',
+		removeStyle : 'Eemalda stiilide definitsioonid'
+	},
+
+	pasteText :
+	{
+		button : 'Kleebi tavalise tekstina',
+		title : 'Kleebi tavalise tekstina'
+	},
+
+	templates :
+	{
+		button : 'Šabloon',
+		title : 'Sisu šabloonid',
+		insertOption: 'Asenda tegelik sisu',
+		selectPromptMsg: 'Palun vali šabloon, et avada see redaktoris<br />(praegune sisu läheb kaotsi):',
+		emptyListMsg : '(Ühtegi šablooni ei ole defineeritud)'
+	},
+
+	showBlocks : 'Näita blokke',
+
+	stylesCombo :
+	{
+		label : 'Laad',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Vorming',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Vorming',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Tavaline',
+		tag_pre : 'Vormindatud',
+		tag_address : 'Aadress',
+		tag_h1 : 'Pealkiri 1',
+		tag_h2 : 'Pealkiri 2',
+		tag_h3 : 'Pealkiri 3',
+		tag_h4 : 'Pealkiri 4',
+		tag_h5 : 'Pealkiri 5',
+		tag_h6 : 'Pealkiri 6',
+		tag_div : 'Tavaline (DIV)'
+	},
+
+	font :
+	{
+		label : 'Kiri',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Kiri',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Suurus',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Suurus',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Teksti värv',
+		bgColorTitle : 'Tausta värv',
+		auto : 'Automaatne',
+		more : 'Rohkem värve...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/eu.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/eu.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/eu.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Basque language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['eu'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'HTML Iturburua',
+	newPage			: 'Orrialde Berria',
+	save			: 'Gorde',
+	preview			: 'Aurrebista',
+	cut				: 'Ebaki',
+	copy			: 'Kopiatu',
+	paste			: 'Itsatsi',
+	print			: 'Inprimatu',
+	underline		: 'Azpimarratu',
+	bold			: 'Lodia',
+	italic			: 'Etzana',
+	selectAll		: 'Hautatu dena',
+	removeFormat	: 'Kendu Formatua',
+	strike			: 'Marratua',
+	subscript		: 'Azpi-indize',
+	superscript		: 'Goi-indize',
+	horizontalrule	: 'Txertatu Marra Horizontala',
+	pagebreak		: 'Txertatu Orrialde-jauzia',
+	unlink			: 'Kendu Esteka',
+	undo			: 'Desegin',
+	redo			: 'Berregin',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Zerbitzaria arakatu',
+		url				: 'URL',
+		protocol		: 'Protokoloa',
+		upload			: 'Gora kargatu',
+		uploadSubmit	: 'Zerbitzarira bidalia',
+		image			: 'Irudia',
+		flash			: 'Flasha',
+		form			: 'Formularioa',
+		checkbox		: 'Kontrol-laukia',
+		radio		: 'Aukera-botoia',
+		textField		: 'Testu Eremua',
+		textarea		: 'Testu-area',
+		hiddenField		: 'Ezkutuko Eremua',
+		button			: 'Botoia',
+		select	: 'Hautespen Eremua',
+		imageButton		: 'Irudi Botoia',
+		notSet			: '<Ezarri gabe>',
+		id				: 'Id',
+		name			: 'Izena',
+		langDir			: 'Hizkuntzaren Norabidea',
+		langDirLtr		: 'Ezkerretik Eskumara(LTR)',
+		langDirRtl		: 'Eskumatik Ezkerrera (RTL)',
+		langCode		: 'Hizkuntza Kodea',
+		longDescr		: 'URL Deskribapen Luzea',
+		cssClass		: 'Estilo-orriko Klaseak',
+		advisoryTitle	: 'Izenburua',
+		cssStyle		: 'Estiloa',
+		ok				: 'Ados',
+		cancel			: 'Utzi',
+		generalTab		: 'Orokorra',
+		advancedTab		: 'Aurreratua',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Txertatu Karaktere Berezia',
+		title		: 'Karaktere Berezia Aukeratu'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Txertatu/Editatu Esteka',
+		menu		: 'Aldatu Esteka',
+		title		: 'Esteka',
+		info		: 'Estekaren Informazioa',
+		target		: 'Target (Helburua)',
+		upload		: 'Gora kargatu',
+		advanced	: 'Aurreratua',
+		type		: 'Esteka Mota',
+		toAnchor	: 'Aingura orrialde honetan',
+		toEmail		: 'ePosta',
+		target		: 'Target (Helburua)',
+		targetNotSet	: '<Ezarri gabe>',
+		targetFrame	: '<marko>',
+		targetPopup	: '<popup leihoa>',
+		targetNew	: 'Leiho Berria (_blank)',
+		targetTop	: 'Goiko Leihoa (_top)',
+		targetSelf	: 'Leiho Berdina (_self)',
+		targetParent	: 'Leiho Gurasoa (_parent)',
+		targetFrameName	: 'Marko Helburuaren Izena',
+		targetPopupName	: 'Popup Leihoaren Izena',
+		popupFeatures	: 'Popup Leihoaren Ezaugarriak',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Egoera Barra',
+		popupLocationBar	: 'Kokaleku Barra',
+		popupToolbar	: 'Tresna Barra',
+		popupMenuBar	: 'Menu Barra',
+		popupFullScreen	: 'Pantaila Osoa (IE)',
+		popupScrollBars	: 'Korritze Barrak',
+		popupDependent	: 'Menpekoa (Netscape)',
+		popupWidth		: 'Zabalera',
+		popupLeft		: 'Ezkerreko  Posizioa',
+		popupHeight		: 'Altuera',
+		popupTop		: 'Goiko Posizioa',
+		id				: 'Id', // MISSING
+		langDir			: 'Hizkuntzaren Norabidea',
+		langDirNotSet	: '<Ezarri gabe>',
+		langDirLTR		: 'Ezkerretik Eskumara(LTR)',
+		langDirRTL		: 'Eskumatik Ezkerrera (RTL)',
+		acccessKey		: 'Sarbide-gakoa',
+		name			: 'Izena',
+		langCode		: 'Hizkuntzaren Norabidea',
+		tabIndex		: 'Tabulazio Indizea',
+		advisoryTitle	: 'Izenburua',
+		advisoryContentType	: 'Eduki Mota (Content Type)',
+		cssClasses		: 'Estilo-orriko Klaseak',
+		charset			: 'Estekatutako Karaktere Multzoa',
+		styles			: 'Estiloa',
+		selectAnchor	: 'Aingura bat hautatu',
+		anchorName		: 'Aingura izenagatik',
+		anchorId		: 'Elementuaren ID-gatik',
+		emailAddress	: 'ePosta Helbidea',
+		emailSubject	: 'Mezuaren Gaia',
+		emailBody		: 'Mezuaren Gorputza',
+		noAnchors		: '(Ez daude aingurak eskuragarri dokumentuan)',
+		noUrl			: 'Mesedez URL esteka idatzi',
+		noEmail			: 'Mesedez ePosta helbidea idatzi'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Aingura',
+		menu		: 'Ainguraren Ezaugarriak',
+		title		: 'Ainguraren Ezaugarriak',
+		name		: 'Ainguraren Izena',
+		errorName	: 'Idatzi ainguraren izena'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Bilatu eta Ordeztu',
+		find				: 'Bilatu',
+		replace				: 'Ordezkatu',
+		findWhat			: 'Zer bilatu:',
+		replaceWith			: 'Zerekin ordeztu:',
+		notFoundMsg			: 'Idatzitako testua ez da topatu.',
+		matchCase			: 'Maiuskula/minuskula',
+		matchWord			: 'Esaldi osoa bilatu',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Ordeztu Guztiak',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Taula',
+		title		: 'Taularen Ezaugarriak',
+		menu		: 'Taularen Ezaugarriak',
+		deleteTable	: 'Ezabatu Taula',
+		rows		: 'Lerroak',
+		columns		: 'Zutabeak',
+		border		: 'Ertzaren Zabalera',
+		align		: 'Lerrokatu',
+		alignNotSet	: '<Ezarri gabe>',
+		alignLeft	: 'Ezkerrean',
+		alignCenter	: 'Erdian',
+		alignRight	: 'Eskuman',
+		width		: 'Zabalera',
+		widthPx		: 'pixel',
+		widthPc		: 'ehuneko',
+		height		: 'Altuera',
+		cellSpace	: 'Gelaxka arteko tartea',
+		cellPad		: 'Gelaxken betegarria',
+		caption		: 'Epigrafea',
+		summary		: 'Laburpena',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Gelaxka',
+			insertBefore	: 'Txertatu Gelaxka Aurretik',
+			insertAfter		: 'Txertatu Gelaxka Ostean',
+			deleteCell		: 'Kendu Gelaxkak',
+			merge			: 'Batu Gelaxkak',
+			mergeRight		: 'Elkartu Eskumara',
+			mergeDown		: 'Elkartu Behera',
+			splitHorizontal	: 'Banatu Gelaxkak Horizontalki',
+			splitVertical	: 'Banatu Gelaxkak Bertikalki',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Errenkada',
+			insertBefore	: 'Txertatu Lerroa Aurretik',
+			insertAfter		: 'Txertatu Lerroa Ostean',
+			deleteRow		: 'Ezabatu Errenkadak'
+		},
+
+		column :
+		{
+			menu			: 'Zutabea',
+			insertBefore	: 'Txertatu Zutabea Aurretik',
+			insertAfter		: 'Txertatu Zutabea Ostean',
+			deleteColumn	: 'Ezabatu Zutabeak'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Botoiaren Ezaugarriak',
+		text		: 'Testua (Balorea)',
+		type		: 'Mota',
+		typeBtn		: 'Botoia',
+		typeSbm		: 'Bidali',
+		typeRst		: 'Garbitu'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Kontrol-laukiko Ezaugarriak',
+		radioTitle	: 'Aukera-botoiaren Ezaugarriak',
+		value		: 'Balorea',
+		selected	: 'Hautatuta'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Formularioaren Ezaugarriak',
+		menu		: 'Formularioaren Ezaugarriak',
+		action		: 'Ekintza',
+		method		: 'Metodoa',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Target (Helburua)',
+		targetNotSet	: '<Ezarri gabe>',
+		targetNew	: 'Leiho Berria (_blank)',
+		targetTop	: 'Goiko Leihoa (_top)',
+		targetSelf	: 'Leiho Berdina (_self)',
+		targetParent	: 'Leiho Gurasoa (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Hautespen Eremuaren Ezaugarriak',
+		selectInfo	: 'Informazioa',
+		opAvail		: 'Aukera Eskuragarriak',
+		value		: 'Balorea',
+		size		: 'Tamaina',
+		lines		: 'lerro kopurura',
+		chkMulti	: 'Hautaketa anitzak baimendu',
+		opText		: 'Testua',
+		opValue		: 'Balorea',
+		btnAdd		: 'Gehitu',
+		btnModify	: 'Aldatu',
+		btnUp		: 'Gora',
+		btnDown		: 'Behera',
+		btnSetValue : 'Aukeratutako balorea ezarri',
+		btnDelete	: 'Ezabatu'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Testu-arearen Ezaugarriak',
+		cols		: 'Zutabeak',
+		rows		: 'Lerroak'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Testu Eremuaren Ezaugarriak',
+		name		: 'Izena',
+		value		: 'Balorea',
+		charWidth	: 'Zabalera',
+		maxChars	: 'Zenbat karaktere gehienez',
+		type		: 'Mota',
+		typeText	: 'Testua',
+		typePass	: 'Pasahitza'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Ezkutuko Eremuaren Ezaugarriak',
+		name	: 'Izena',
+		value	: 'Balorea'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Irudi Ezaugarriak',
+		titleButton	: 'Irudi Botoiaren Ezaugarriak',
+		menu		: 'Irudi Ezaugarriak',
+		infoTab	: 'Irudi informazioa',
+		btnUpload	: 'Zerbitzarira bidalia',
+		url		: 'URL',
+		upload	: 'Gora Kargatu',
+		alt		: 'Ordezko Testua',
+		width		: 'Zabalera',
+		height	: 'Altuera',
+		lockRatio	: 'Erlazioa Blokeatu',
+		resetSize	: 'Tamaina Berrezarri',
+		border	: 'Ertza',
+		hSpace	: 'HSpace',
+		vSpace	: 'VSpace',
+		align		: 'Lerrokatu',
+		alignLeft	: 'Ezkerrera',
+		alignAbsBottom: 'Abs Behean',
+		alignAbsMiddle: 'Abs Erdian',
+		alignBaseline	: 'Oinan',
+		alignBottom	: 'Behean',
+		alignMiddle	: 'Erdian',
+		alignRight	: 'Eskuman',
+		alignTextTop	: 'Testua Goian',
+		alignTop	: 'Goian',
+		preview	: 'Aurrebista',
+		alertUrl	: 'Mesedez Irudiaren URLa idatzi',
+		linkTab	: 'Esteka',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Flasharen Ezaugarriak',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Flasharen Ezaugarriak',
+		chkPlay		: 'Automatikoki Erreproduzitu',
+		chkLoop		: 'Begizta',
+		chkMenu		: 'Flasharen Menua Gaitu',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Eskalatu',
+		scaleAll		: 'Dena erakutsi',
+		scaleNoBorder	: 'Ertzik gabe',
+		scaleFit		: 'Doitu',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Lerrokatu',
+		alignLeft	: 'Ezkerrera',
+		alignAbsBottom: 'Abs Behean',
+		alignAbsMiddle: 'Abs Erdian',
+		alignBaseline	: 'Oinan',
+		alignBottom	: 'Behean',
+		alignMiddle	: 'Erdian',
+		alignRight	: 'Eskuman',
+		alignTextTop	: 'Testua Goian',
+		alignTop	: 'Goian',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Atzeko kolorea',
+		width	: 'Zabalera',
+		height	: 'Altuera',
+		hSpace	: 'HSpace',
+		vSpace	: 'VSpace',
+		validateSrc : 'Mesedez URL esteka idatzi',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Ortografia',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Ez dago hiztegian',
+		changeTo		: 'Honekin ordezkatu',
+		btnIgnore		: 'Ezikusi',
+		btnIgnoreAll	: 'Denak Ezikusi',
+		btnReplace		: 'Ordezkatu',
+		btnReplaceAll	: 'Denak Ordezkatu',
+		btnUndo			: 'Desegin',
+		noSuggestions	: '- Iradokizunik ez -',
+		progress		: 'Zuzenketa ortografikoa martxan...',
+		noMispell		: 'Zuzenketa ortografikoa bukatuta: Akatsik ez',
+		noChanges		: 'Zuzenketa ortografikoa bukatuta: Ez da ezer aldatu',
+		oneChange		: 'Zuzenketa ortografikoa bukatuta: Hitz bat aldatu da',
+		manyChanges		: 'Zuzenketa ortografikoa bukatuta: %1 hitz aldatu dira',
+		ieSpellDownload	: 'Zuzentzaile ortografikoa ez dago instalatuta. Deskargatu nahi duzu?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Aurpegierak',
+		title	: 'Aurpegiera Sartu'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Zenbakidun Zerrenda',
+	bulletedlist : 'Buletdun Zerrenda',
+	indent : 'Handitu Koska',
+	outdent : 'Txikitu Koska',
+
+	justify :
+	{
+		left : 'Lerrokatu Ezkerrean',
+		center : 'Lerrokatu Erdian',
+		right : 'Lerrokatu Eskuman',
+		block : 'Justifikatu'
+	},
+
+	blockquote : 'Aipamen blokea',
+
+	clipboard :
+	{
+		title		: 'Itsatsi',
+		cutError	: 'Zure web nabigatzailearen segurtasun ezarpenak testuak automatikoki moztea ez dute baimentzen. Mesedez teklatua erabili ezazu (Ctrl+X).',
+		copyError	: 'Zure web nabigatzailearen segurtasun ezarpenak testuak automatikoki kopiatzea ez dute baimentzen. Mesedez teklatua erabili ezazu (Ctrl+C).',
+		pasteMsg	: 'Mesedez teklatua erabilita (<STRONG>Ctrl+V</STRONG>) ondorego eremuan testua itsatsi eta <STRONG>OK</STRONG> sakatu.',
+		securityMsg	: 'Nabigatzailearen segurtasun ezarpenak direla eta, editoreak ezin du arbela zuzenean erabili. Leiho honetan berriro itsatsi behar duzu.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Itsatsi Word-etik',
+		title : 'Itsatsi Word-etik',
+		advice : 'Mesedez teklatua erabilita (<STRONG>Ctrl+V</STRONG>) ondorego eremuan testua itsatsi eta <STRONG>OK</STRONG> sakatu.',
+		ignoreFontFace : 'Letra Motaren definizioa ezikusi',
+		removeStyle : 'Estilo definizioak kendu'
+	},
+
+	pasteText :
+	{
+		button : 'Testu Arrunta bezala Itsatsi',
+		title : 'Testu Arrunta bezala Itsatsi'
+	},
+
+	templates :
+	{
+		button : 'Txantiloiak',
+		title : 'Eduki Txantiloiak',
+		insertOption: 'Ordeztu oraingo edukiak',
+		selectPromptMsg: 'Mesedez txantiloia aukeratu editorean kargatzeko<br>(orain dauden edukiak galduko dira):',
+		emptyListMsg : '(Ez dago definitutako txantiloirik)'
+	},
+
+	showBlocks : 'Blokeak erakutsi',
+
+	stylesCombo :
+	{
+		label : 'Estiloa',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Formatua',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Formatua',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Arrunta',
+		tag_pre : 'Formateatua',
+		tag_address : 'Helbidea',
+		tag_h1 : 'Izenburua 1',
+		tag_h2 : 'Izenburua 2',
+		tag_h3 : 'Izenburua 3',
+		tag_h4 : 'Izenburua 4',
+		tag_h5 : 'Izenburua 5',
+		tag_h6 : 'Izenburua 6',
+		tag_div : 'Paragrafoa (DIV)'
+	},
+
+	font :
+	{
+		label : 'Letra-tipoa',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Letra-tipoa',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Tamaina',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Tamaina',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Testu Kolorea',
+		bgColorTitle : 'Atzeko kolorea',
+		auto : 'Automatikoa',
+		more : 'Kolore gehiago...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/fa.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/fa.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/fa.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Persian language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['fa'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'rtl',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'منبع',
+	newPage			: 'برگهٴ تازه',
+	save			: 'ذخیره',
+	preview			: 'پیشنمایش',
+	cut				: 'برش',
+	copy			: 'کپی',
+	paste			: 'چسباندن',
+	print			: 'چاپ',
+	underline		: 'خطزیردار',
+	bold			: 'درشت',
+	italic			: 'خمیده',
+	selectAll		: 'گزینش همه',
+	removeFormat	: 'برداشتن فرمت',
+	strike			: 'میانخط',
+	subscript		: 'زیرنویس',
+	superscript		: 'بالانویس',
+	horizontalrule	: 'گنجاندن خط ِافقی',
+	pagebreak		: 'گنجاندن شکستگی ِپایان ِبرگه',
+	unlink			: 'برداشتن پیوند',
+	undo			: 'واچیدن',
+	redo			: 'بازچیدن',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'فهرستنمایی سرور',
+		url				: 'URL',
+		protocol		: 'پروتکل',
+		upload			: 'انتقال به سرور',
+		uploadSubmit	: 'به سرور بفرست',
+		image			: 'تصویر',
+		flash			: 'Flash',
+		form			: 'فرم',
+		checkbox		: 'خانهٴ گزینهای',
+		radio		: 'دکمهٴ رادیویی',
+		textField		: 'فیلد متنی',
+		textarea		: 'ناحیهٴ متنی',
+		hiddenField		: 'فیلد پنهان',
+		button			: 'دکمه',
+		select	: 'فیلد چندگزینهای',
+		imageButton		: 'دکمهٴ تصویری',
+		notSet			: '<تعیننشده>',
+		id				: 'شناسه',
+		name			: 'نام',
+		langDir			: 'جهتنمای زبان',
+		langDirLtr		: 'چپ به راست (LTR)',
+		langDirRtl		: 'راست به چپ (RTL)',
+		langCode		: 'کد زبان',
+		longDescr		: 'URL توصیف طولانی',
+		cssClass		: 'کلاسهای شیوهنامه(Stylesheet)',
+		advisoryTitle	: 'عنوان کمکی',
+		cssStyle		: 'شیوه(style)',
+		ok				: 'پذیرش',
+		cancel			: 'انصراف',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'پیشرفته',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'گنجاندن نویسهٴ ویژه',
+		title		: 'گزینش نویسهٴویژه'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'گنجاندن/ویرایش ِپیوند',
+		menu		: 'ویرایش پیوند',
+		title		: 'پیوند',
+		info		: 'اطلاعات پیوند',
+		target		: 'مقصد',
+		upload		: 'انتقال به سرور',
+		advanced	: 'پیشرفته',
+		type		: 'نوع پیوند',
+		toAnchor	: 'لنگر در همین صفحه',
+		toEmail		: 'پست الکترونیکی',
+		target		: 'مقصد',
+		targetNotSet	: '<تعیننشده>',
+		targetFrame	: '<فریم>',
+		targetPopup	: '<پنجرهٴ پاپاپ>',
+		targetNew	: 'پنجرهٴ دیگر (_blank)',
+		targetTop	: 'بالاترین پنجره (_top)',
+		targetSelf	: 'همان پنجره (_self)',
+		targetParent	: 'پنجرهٴ والد (_parent)',
+		targetFrameName	: 'نام فریم مقصد',
+		targetPopupName	: 'نام پنجرهٴ پاپاپ',
+		popupFeatures	: 'ویژگیهای پنجرهٴ پاپاپ',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'نوار وضعیت',
+		popupLocationBar	: 'نوار موقعیت',
+		popupToolbar	: 'نوارابزار',
+		popupMenuBar	: 'نوار منو',
+		popupFullScreen	: 'تمامصفحه (IE)',
+		popupScrollBars	: 'میلههای پیمایش',
+		popupDependent	: 'وابسته (Netscape)',
+		popupWidth		: 'پهنا',
+		popupLeft		: 'موقعیت ِچپ',
+		popupHeight		: 'درازا',
+		popupTop		: 'موقعیت ِبالا',
+		id				: 'Id', // MISSING
+		langDir			: 'جهتنمای زبان',
+		langDirNotSet	: '<تعیننشده>',
+		langDirLTR		: 'چپ به راست (LTR)',
+		langDirRTL		: 'راست به چپ (RTL)',
+		acccessKey		: 'کلید دستیابی',
+		name			: 'نام',
+		langCode		: 'جهتنمای زبان',
+		tabIndex		: 'نمایهٴ دسترسی با Tab',
+		advisoryTitle	: 'عنوان کمکی',
+		advisoryContentType	: 'نوع محتوای کمکی',
+		cssClasses		: 'کلاسهای شیوهنامه(Stylesheet)',
+		charset			: 'نویسهگان منبع ِپیوندشده',
+		styles			: 'شیوه(style)',
+		selectAnchor	: 'یک لنگر برگزینید',
+		anchorName		: 'با نام لنگر',
+		anchorId		: 'با شناسهٴ المان',
+		emailAddress	: 'نشانی پست الکترونیکی',
+		emailSubject	: 'موضوع پیام',
+		emailBody		: 'متن پیام',
+		noAnchors		: '(در این سند لنگری دردسترس نیست)',
+		noUrl			: 'لطفا URL پیوند را بنویسید',
+		noEmail			: 'لطفا نشانی پست الکترونیکی را بنویسید'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'گنجاندن/ویرایش ِلنگر',
+		menu		: 'ویژگیهای لنگر',
+		title		: 'ویژگیهای لنگر',
+		name		: 'نام لنگر',
+		errorName	: 'لطفا نام لنگر را بنویسید'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'جستجو و جایگزینی',
+		find				: 'جستجو',
+		replace				: 'جایگزینی',
+		findWhat			: 'چهچیز را مییابید:',
+		replaceWith			: 'جایگزینی با:',
+		notFoundMsg			: 'متن موردنظر یافت نشد.',
+		matchCase			: 'همسانی در بزرگی و کوچکی نویسهها',
+		matchWord			: 'همسانی با واژهٴ کامل',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'جایگزینی همهٴ یافتهها',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'جدول',
+		title		: 'ویژگیهای جدول',
+		menu		: 'ویژگیهای جدول',
+		deleteTable	: 'پاککردن جدول',
+		rows		: 'سطرها',
+		columns		: 'ستونها',
+		border		: 'اندازهٴ لبه',
+		align		: 'چینش',
+		alignNotSet	: '<تعیننشده>',
+		alignLeft	: 'چپ',
+		alignCenter	: 'وسط',
+		alignRight	: 'راست',
+		width		: 'پهنا',
+		widthPx		: 'پیکسل',
+		widthPc		: 'درصد',
+		height		: 'درازا',
+		cellSpace	: 'فاصلهٴ میان سلولها',
+		cellPad		: 'فاصلهٴ پرشده در سلول',
+		caption		: 'عنوان',
+		summary		: 'خلاصه',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'سلول',
+			insertBefore	: 'افزودن سلول قبل از',
+			insertAfter		: 'افزودن سلول بعد از',
+			deleteCell		: 'حذف سلولها',
+			merge			: 'ادغام سلولها',
+			mergeRight		: 'ادغام به راست',
+			mergeDown		: 'ادغام به پایین',
+			splitHorizontal	: 'جدا کردن افقی سلول',
+			splitVertical	: 'جدا کردن عمودی سلول',
+			title			: 'ویژگیهای سلول',
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'سطر',
+			insertBefore	: 'افزودن سطر قبل از',
+			insertAfter		: 'افزودن سطر بعد از',
+			deleteRow		: 'حذف سطرها'
+		},
+
+		column :
+		{
+			menu			: 'ستون',
+			insertBefore	: 'افزودن ستون قبل از',
+			insertAfter		: 'افزودن ستون بعد از',
+			deleteColumn	: 'حذف ستونها'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'ویژگیهای دکمه',
+		text		: 'متن (مقدار)',
+		type		: 'نوع',
+		typeBtn		: 'دکمه',
+		typeSbm		: 'Submit',
+		typeRst		: 'بازنشانی (Reset)'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'ویژگیهای خانهٴ گزینهای',
+		radioTitle	: 'ویژگیهای دکمهٴ رادیویی',
+		value		: 'مقدار',
+		selected	: 'برگزیده'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'ویژگیهای فرم',
+		menu		: 'ویژگیهای فرم',
+		action		: 'رویداد',
+		method		: 'متد',
+		encoding	: 'Encoding', // MISSING
+		target		: 'مقصد',
+		targetNotSet	: '<تعیننشده>',
+		targetNew	: 'پنجرهٴ دیگر (_blank)',
+		targetTop	: 'بالاترین پنجره (_top)',
+		targetSelf	: 'همان پنجره (_self)',
+		targetParent	: 'پنجرهٴ والد (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'ویژگیهای فیلد چندگزینهای',
+		selectInfo	: 'اطلاعات',
+		opAvail		: 'گزینههای دردسترس',
+		value		: 'مقدار',
+		size		: 'اندازه',
+		lines		: 'خطوط',
+		chkMulti	: 'گزینش چندگانه فراهم باشد',
+		opText		: 'متن',
+		opValue		: 'مقدار',
+		btnAdd		: 'افزودن',
+		btnModify	: 'ویرایش',
+		btnUp		: 'بالا',
+		btnDown		: 'پائین',
+		btnSetValue : 'تنظیم به عنوان مقدار ِبرگزیده',
+		btnDelete	: 'پاککردن'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'ویژگیهای ناحیهٴ متنی',
+		cols		: 'ستونها',
+		rows		: 'سطرها'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'ویژگیهای فیلد متنی',
+		name		: 'نام',
+		value		: 'مقدار',
+		charWidth	: 'پهنای نویسه',
+		maxChars	: 'بیشینهٴ نویسهها',
+		type		: 'نوع',
+		typeText	: 'متن',
+		typePass	: 'گذرواژه'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'ویژگیهای فیلد پنهان',
+		name	: 'نام',
+		value	: 'مقدار'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'ویژگیهای تصویر',
+		titleButton	: 'ویژگیهای دکمهٴ تصویری',
+		menu		: 'ویژگیهای تصویر',
+		infoTab	: 'اطلاعات تصویر',
+		btnUpload	: 'به سرور بفرست',
+		url		: 'URL',
+		upload	: 'انتقال به سرور',
+		alt		: 'متن جایگزین',
+		width		: 'پهنا',
+		height	: 'درازا',
+		lockRatio	: 'قفلکردن ِنسبت',
+		resetSize	: 'بازنشانی اندازه',
+		border	: 'لبه',
+		hSpace	: 'فاصلهٴ افقی',
+		vSpace	: 'فاصلهٴ عمودی',
+		align		: 'چینش',
+		alignLeft	: 'چپ',
+		alignAbsBottom: 'پائین مطلق',
+		alignAbsMiddle: 'وسط مطلق',
+		alignBaseline	: 'خطپایه',
+		alignBottom	: 'پائین',
+		alignMiddle	: 'وسط',
+		alignRight	: 'راست',
+		alignTextTop	: 'متن بالا',
+		alignTop	: 'بالا',
+		preview	: 'پیشنمایش',
+		alertUrl	: 'لطفا URL تصویر را بنویسید',
+		linkTab	: 'پیوند',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'ویژگیهای Flash',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'ویژگیهای Flash',
+		chkPlay		: 'آغاز ِخودکار',
+		chkLoop		: 'اجرای پیاپی',
+		chkMenu		: 'دردسترسبودن منوی Flash',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'مقیاس',
+		scaleAll		: 'نمایش همه',
+		scaleNoBorder	: 'بدون کران',
+		scaleFit		: 'جایگیری کامل',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'چینش',
+		alignLeft	: 'چپ',
+		alignAbsBottom: 'پائین مطلق',
+		alignAbsMiddle: 'وسط مطلق',
+		alignBaseline	: 'خطپایه',
+		alignBottom	: 'پائین',
+		alignMiddle	: 'وسط',
+		alignRight	: 'راست',
+		alignTextTop	: 'متن بالا',
+		alignTop	: 'بالا',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'رنگ پسزمینه',
+		width	: 'پهنا',
+		height	: 'درازا',
+		hSpace	: 'فاصلهٴ افقی',
+		vSpace	: 'فاصلهٴ عمودی',
+		validateSrc : 'لطفا URL پیوند را بنویسید',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'بررسی املا',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'در واژهنامه یافت نشد',
+		changeTo		: 'تغییر به',
+		btnIgnore		: 'چشمپوشی',
+		btnIgnoreAll	: 'چشمپوشی همه',
+		btnReplace		: 'جایگزینی',
+		btnReplaceAll	: 'جایگزینی همه',
+		btnUndo			: 'واچینش',
+		noSuggestions	: '- پیشنهادی نیست -',
+		progress		: 'بررسی املا در حال انجام...',
+		noMispell		: 'بررسی املا انجام شد. هیچ غلطاملائی یافت نشد',
+		noChanges		: 'بررسی املا انجام شد. هیچ واژهای تغییر نیافت',
+		oneChange		: 'بررسی املا انجام شد. یک واژه تغییر یافت',
+		manyChanges		: 'بررسی املا انجام شد. %1 واژه تغییر یافت',
+		ieSpellDownload	: 'بررسیکنندهٴ املا نصب نشده است. آیا میخواهید آن را هماکنون دریافت کنید؟'
+	},
+
+	smiley :
+	{
+		toolbar	: 'خندانک',
+		title	: 'گنجاندن خندانک'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'فهرست شمارهدار',
+	bulletedlist : 'فهرست نقطهای',
+	indent : 'افزایش تورفتگی',
+	outdent : 'کاهش تورفتگی',
+
+	justify :
+	{
+		left : 'چپچین',
+		center : 'میانچین',
+		right : 'راستچین',
+		block : 'بلوکچین'
+	},
+
+	blockquote : 'بلوک نقل قول',
+
+	clipboard :
+	{
+		title		: 'چسباندن',
+		cutError	: 'تنظیمات امنیتی مرورگر شما اجازه نمیدهد که ویرایشگر به طور خودکار عملکردهای برش را انجام دهد. لطفا با دکمههای صفحهکلید این کار را انجام دهید (Ctrl+X).',
+		copyError	: 'تنظیمات امنیتی مرورگر شما اجازه نمیدهد که ویرایشگر به طور خودکار عملکردهای کپیکردن را انجام دهد. لطفا با دکمههای صفحهکلید این کار را انجام دهید (Ctrl+C).',
+		pasteMsg	: 'لطفا متن را با کلیدهای (<STRONG>Ctrl+V</STRONG>) در این جعبهٴ متنی بچسبانید و <STRONG>پذیرش</STRONG> را بزنید.',
+		securityMsg	: 'به خاطر تنظیمات امنیتی مرورگر شما، ویرایشگر نمیتواند دسترسی مستقیم به دادههای clipboard داشته باشد. شما باید دوباره آنرا در این پنجره بچسبانید.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'چسباندن از Word',
+		title : 'چسباندن از Word',
+		advice : 'لطفا متن را با کلیدهای (<STRONG>Ctrl+V</STRONG>) در این جعبهٴ متنی بچسبانید و <STRONG>پذیرش</STRONG> را بزنید.',
+		ignoreFontFace : 'چشمپوشی از تعاریف نوع قلم',
+		removeStyle : 'چشمپوشی از تعاریف سبک (style)'
+	},
+
+	pasteText :
+	{
+		button : 'چسباندن به عنوان متن ِساده',
+		title : 'چسباندن به عنوان متن ِساده'
+	},
+
+	templates :
+	{
+		button : 'الگوها',
+		title : 'الگوهای محتویات',
+		insertOption: 'محتویات کنونی جایگزین شوند',
+		selectPromptMsg: 'لطفا الگوی موردنظر را برای بازکردن در ویرایشگر برگزینید<br>(محتویات کنونی از دست خواهند رفت):',
+		emptyListMsg : '(الگوئی تعریف نشده است)'
+	},
+
+	showBlocks : 'نمایش بلوکها',
+
+	stylesCombo :
+	{
+		label : 'سبک',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'فرمت',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'فرمت',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'نرمال',
+		tag_pre : 'فرمتشده',
+		tag_address : 'آدرس',
+		tag_h1 : 'سرنویس 1',
+		tag_h2 : 'سرنویس 2',
+		tag_h3 : 'سرنویس 3',
+		tag_h4 : 'سرنویس 4',
+		tag_h5 : 'سرنویس 5',
+		tag_h6 : 'سرنویس 6',
+		tag_div : 'بند'
+	},
+
+	font :
+	{
+		label : 'قلم',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'قلم',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'اندازه',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'اندازه',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'رنگ متن',
+		bgColorTitle : 'رنگ پسزمینه',
+		auto : 'خودکار',
+		more : 'رنگهای بیشتر...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/fi.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/fi.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/fi.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Finnish language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['fi'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Koodi',
+	newPage			: 'Tyhjennä',
+	save			: 'Tallenna',
+	preview			: 'Esikatsele',
+	cut				: 'Leikkaa',
+	copy			: 'Kopioi',
+	paste			: 'Liitä',
+	print			: 'Tulosta',
+	underline		: 'Alleviivattu',
+	bold			: 'Lihavoitu',
+	italic			: 'Kursivoitu',
+	selectAll		: 'Valitse kaikki',
+	removeFormat	: 'Poista muotoilu',
+	strike			: 'Yliviivattu',
+	subscript		: 'Alaindeksi',
+	superscript		: 'Yläindeksi',
+	horizontalrule	: 'Lisää murtoviiva',
+	pagebreak		: 'Lisää sivun vaihto',
+	unlink			: 'Poista linkki',
+	undo			: 'Kumoa',
+	redo			: 'Toista',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Selaa palvelinta',
+		url				: 'Osoite',
+		protocol		: 'Protokolla',
+		upload			: 'Lisää tiedosto',
+		uploadSubmit	: 'Lähetä palvelimelle',
+		image			: 'Kuva',
+		flash			: 'Flash',
+		form			: 'Lomake',
+		checkbox		: 'Valintaruutu',
+		radio		: 'Radiopainike',
+		textField		: 'Tekstikenttä',
+		textarea		: 'Tekstilaatikko',
+		hiddenField		: 'Piilokenttä',
+		button			: 'Painike',
+		select	: 'Valintakenttä',
+		imageButton		: 'Kuvapainike',
+		notSet			: '<ei asetettu>',
+		id				: 'Tunniste',
+		name			: 'Nimi',
+		langDir			: 'Kielen suunta',
+		langDirLtr		: 'Vasemmalta oikealle (LTR)',
+		langDirRtl		: 'Oikealta vasemmalle (RTL)',
+		langCode		: 'Kielikoodi',
+		longDescr		: 'Pitkän kuvauksen URL',
+		cssClass		: 'Tyyliluokat',
+		advisoryTitle	: 'Avustava otsikko',
+		cssStyle		: 'Tyyli',
+		ok				: 'OK',
+		cancel			: 'Peruuta',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'Lisäominaisuudet',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Lisää erikoismerkki',
+		title		: 'Valitse erikoismerkki'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Lisää linkki/muokkaa linkkiä',
+		menu		: 'Muokkaa linkkiä',
+		title		: 'Linkki',
+		info		: 'Linkin tiedot',
+		target		: 'Kohde',
+		upload		: 'Lisää tiedosto',
+		advanced	: 'Lisäominaisuudet',
+		type		: 'Linkkityyppi',
+		toAnchor	: 'Ankkuri tässä sivussa',
+		toEmail		: 'Sähköposti',
+		target		: 'Kohde',
+		targetNotSet	: '<ei asetettu>',
+		targetFrame	: '<kehys>',
+		targetPopup	: '<popup ikkuna>',
+		targetNew	: 'Uusi ikkuna (_blank)',
+		targetTop	: 'Päällimmäisin ikkuna (_top)',
+		targetSelf	: 'Sama ikkuna (_self)',
+		targetParent	: 'Emoikkuna (_parent)',
+		targetFrameName	: 'Kohdekehyksen nimi',
+		targetPopupName	: 'Popup ikkunan nimi',
+		popupFeatures	: 'Popup ikkunan ominaisuudet',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Tilarivi',
+		popupLocationBar	: 'Osoiterivi',
+		popupToolbar	: 'Vakiopainikkeet',
+		popupMenuBar	: 'Valikkorivi',
+		popupFullScreen	: 'Täysi ikkuna (IE)',
+		popupScrollBars	: 'Vierityspalkit',
+		popupDependent	: 'Riippuva (Netscape)',
+		popupWidth		: 'Leveys',
+		popupLeft		: 'Vasemmalta (px)',
+		popupHeight		: 'Korkeus',
+		popupTop		: 'Ylhäältä (px)',
+		id				: 'Id', // MISSING
+		langDir			: 'Kielen suunta',
+		langDirNotSet	: '<ei asetettu>',
+		langDirLTR		: 'Vasemmalta oikealle (LTR)',
+		langDirRTL		: 'Oikealta vasemmalle (RTL)',
+		acccessKey		: 'Pikanäppäin',
+		name			: 'Nimi',
+		langCode		: 'Kielen suunta',
+		tabIndex		: 'Tabulaattori indeksi',
+		advisoryTitle	: 'Avustava otsikko',
+		advisoryContentType	: 'Avustava sisällön tyyppi',
+		cssClasses		: 'Tyyliluokat',
+		charset			: 'Linkitetty kirjaimisto',
+		styles			: 'Tyyli',
+		selectAnchor	: 'Valitse ankkuri',
+		anchorName		: 'Ankkurin nimen mukaan',
+		anchorId		: 'Ankkurin ID:n mukaan',
+		emailAddress	: 'Sähköpostiosoite',
+		emailSubject	: 'Aihe',
+		emailBody		: 'Viesti',
+		noAnchors		: '(Ei ankkureita tässä dokumentissa)',
+		noUrl			: 'Linkille on kirjoitettava URL',
+		noEmail			: 'Kirjoita sähköpostiosoite'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Lisää ankkuri/muokkaa ankkuria',
+		menu		: 'Ankkurin ominaisuudet',
+		title		: 'Ankkurin ominaisuudet',
+		name		: 'Nimi',
+		errorName	: 'Ankkurille on kirjoitettava nimi'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Etsi ja korvaa',
+		find				: 'Etsi',
+		replace				: 'Korvaa',
+		findWhat			: 'Etsi mitä:',
+		replaceWith			: 'Korvaa tällä:',
+		notFoundMsg			: 'Etsittyä tekstiä ei löytynyt.',
+		matchCase			: 'Sama kirjainkoko',
+		matchWord			: 'Koko sana',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Korvaa kaikki',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Taulu',
+		title		: 'Taulun ominaisuudet',
+		menu		: 'Taulun ominaisuudet',
+		deleteTable	: 'Poista taulu',
+		rows		: 'Rivit',
+		columns		: 'Sarakkeet',
+		border		: 'Rajan paksuus',
+		align		: 'Kohdistus',
+		alignNotSet	: '<ei asetettu>',
+		alignLeft	: 'Vasemmalle',
+		alignCenter	: 'Keskelle',
+		alignRight	: 'Oikealle',
+		width		: 'Leveys',
+		widthPx		: 'pikseliä',
+		widthPc		: 'prosenttia',
+		height		: 'Korkeus',
+		cellSpace	: 'Solujen väli',
+		cellPad		: 'Solujen sisennys',
+		caption		: 'Otsikko',
+		summary		: 'Yhteenveto',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Solu',
+			insertBefore	: 'Lisää solu eteen',
+			insertAfter		: 'Lisää solu perään',
+			deleteCell		: 'Poista solut',
+			merge			: 'Yhdistä solut',
+			mergeRight		: 'Yhdistä oikealla olevan kanssa',
+			mergeDown		: 'Yhdistä alla olevan kanssa',
+			splitHorizontal	: 'Jaa solu vaakasuunnassa',
+			splitVertical	: 'Jaa solu pystysuunnassa',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Rivi',
+			insertBefore	: 'Lisää rivi yläpuolelle',
+			insertAfter		: 'Lisää rivi alapuolelle',
+			deleteRow		: 'Poista rivit'
+		},
+
+		column :
+		{
+			menu			: 'Sarake',
+			insertBefore	: 'Lisää sarake vasemmalle',
+			insertAfter		: 'Lisää sarake oikealle',
+			deleteColumn	: 'Poista sarakkeet'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Painikkeen ominaisuudet',
+		text		: 'Teksti (arvo)',
+		type		: 'Tyyppi',
+		typeBtn		: 'Painike',
+		typeSbm		: 'Lähetä',
+		typeRst		: 'Tyhjennä'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Valintaruudun ominaisuudet',
+		radioTitle	: 'Radiopainikkeen ominaisuudet',
+		value		: 'Arvo',
+		selected	: 'Valittu'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Lomakkeen ominaisuudet',
+		menu		: 'Lomakkeen ominaisuudet',
+		action		: 'Toiminto',
+		method		: 'Tapa',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Kohde',
+		targetNotSet	: '<ei asetettu>',
+		targetNew	: 'Uusi ikkuna (_blank)',
+		targetTop	: 'Päällimmäisin ikkuna (_top)',
+		targetSelf	: 'Sama ikkuna (_self)',
+		targetParent	: 'Emoikkuna (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Valintakentän ominaisuudet',
+		selectInfo	: 'Info',
+		opAvail		: 'Ominaisuudet',
+		value		: 'Arvo',
+		size		: 'Koko',
+		lines		: 'Rivit',
+		chkMulti	: 'Salli usea valinta',
+		opText		: 'Teksti',
+		opValue		: 'Arvo',
+		btnAdd		: 'Lisää',
+		btnModify	: 'Muuta',
+		btnUp		: 'Ylös',
+		btnDown		: 'Alas',
+		btnSetValue : 'Aseta valituksi',
+		btnDelete	: 'Poista'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Tekstilaatikon ominaisuudet',
+		cols		: 'Sarakkeita',
+		rows		: 'Rivejä'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Tekstikentän ominaisuudet',
+		name		: 'Nimi',
+		value		: 'Arvo',
+		charWidth	: 'Leveys',
+		maxChars	: 'Maksimi merkkimäärä',
+		type		: 'Tyyppi',
+		typeText	: 'Teksti',
+		typePass	: 'Salasana'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Piilokentän ominaisuudet',
+		name	: 'Nimi',
+		value	: 'Arvo'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Kuvan ominaisuudet',
+		titleButton	: 'Kuvapainikkeen ominaisuudet',
+		menu		: 'Kuvan ominaisuudet',
+		infoTab	: 'Kuvan tiedot',
+		btnUpload	: 'Lähetä palvelimelle',
+		url		: 'Osoite',
+		upload	: 'Lisää kuva',
+		alt		: 'Vaihtoehtoinen teksti',
+		width		: 'Leveys',
+		height	: 'Korkeus',
+		lockRatio	: 'Lukitse suhteet',
+		resetSize	: 'Alkuperäinen koko',
+		border	: 'Raja',
+		hSpace	: 'Vaakatila',
+		vSpace	: 'Pystytila',
+		align		: 'Kohdistus',
+		alignLeft	: 'Vasemmalle',
+		alignAbsBottom: 'Aivan alas',
+		alignAbsMiddle: 'Aivan keskelle',
+		alignBaseline	: 'Alas (teksti)',
+		alignBottom	: 'Alas',
+		alignMiddle	: 'Keskelle',
+		alignRight	: 'Oikealle',
+		alignTextTop	: 'Ylös (teksti)',
+		alignTop	: 'Ylös',
+		preview	: 'Esikatselu',
+		alertUrl	: 'Kirjoita kuvan osoite (URL)',
+		linkTab	: 'Linkki',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Flash ominaisuudet',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Flash ominaisuudet',
+		chkPlay		: 'Automaattinen käynnistys',
+		chkLoop		: 'Toisto',
+		chkMenu		: 'Näytä Flash-valikko',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Levitä',
+		scaleAll		: 'Näytä kaikki',
+		scaleNoBorder	: 'Ei rajaa',
+		scaleFit		: 'Tarkka koko',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Kohdistus',
+		alignLeft	: 'Vasemmalle',
+		alignAbsBottom: 'Aivan alas',
+		alignAbsMiddle: 'Aivan keskelle',
+		alignBaseline	: 'Alas (teksti)',
+		alignBottom	: 'Alas',
+		alignMiddle	: 'Keskelle',
+		alignRight	: 'Oikealle',
+		alignTextTop	: 'Ylös (teksti)',
+		alignTop	: 'Ylös',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Taustaväri',
+		width	: 'Leveys',
+		height	: 'Korkeus',
+		hSpace	: 'Vaakatila',
+		vSpace	: 'Pystytila',
+		validateSrc : 'Linkille on kirjoitettava URL',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Tarkista oikeinkirjoitus',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Ei sanakirjassa',
+		changeTo		: 'Vaihda',
+		btnIgnore		: 'Jätä huomioimatta',
+		btnIgnoreAll	: 'Jätä kaikki huomioimatta',
+		btnReplace		: 'Korvaa',
+		btnReplaceAll	: 'Korvaa kaikki',
+		btnUndo			: 'Kumoa',
+		noSuggestions	: 'Ei ehdotuksia',
+		progress		: 'Tarkistus käynnissä...',
+		noMispell		: 'Tarkistus valmis: Ei virheitä',
+		noChanges		: 'Tarkistus valmis: Yhtään sanaa ei muutettu',
+		oneChange		: 'Tarkistus valmis: Yksi sana muutettiin',
+		manyChanges		: 'Tarkistus valmis: %1 sanaa muutettiin',
+		ieSpellDownload	: 'Oikeinkirjoituksen tarkistusta ei ole asennettu. Haluatko ladata sen nyt?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Hymiö',
+		title	: 'Lisää hymiö'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Numerointi',
+	bulletedlist : 'Luottelomerkit',
+	indent : 'Suurenna sisennystä',
+	outdent : 'Pienennä sisennystä',
+
+	justify :
+	{
+		left : 'Tasaa vasemmat reunat',
+		center : 'Keskitä',
+		right : 'Tasaa oikeat reunat',
+		block : 'Tasaa molemmat reunat'
+	},
+
+	blockquote : 'Lainaus',
+
+	clipboard :
+	{
+		title		: 'Liitä',
+		cutError	: 'Selaimesi turva-asetukset eivät salli editorin toteuttaa leikkaamista. Käytä näppäimistöä leikkaamiseen (Ctrl+X).',
+		copyError	: 'Selaimesi turva-asetukset eivät salli editorin toteuttaa kopioimista. Käytä näppäimistöä kopioimiseen (Ctrl+C).',
+		pasteMsg	: 'Liitä painamalla (<STRONG>Ctrl+V</STRONG>) ja painamalla <STRONG>OK</STRONG>.',
+		securityMsg	: 'Selaimesi turva-asetukset eivät salli editorin käyttää leikepöytää suoraan. Sinun pitää suorittaa liittäminen tässä ikkunassa.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Liitä Wordista',
+		title : 'Liitä Wordista',
+		advice : 'Liitä painamalla (<STRONG>Ctrl+V</STRONG>) ja painamalla <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Jätä huomioimatta fonttimääritykset',
+		removeStyle : 'Poista tyylimääritykset'
+	},
+
+	pasteText :
+	{
+		button : 'Liitä tekstinä',
+		title : 'Liitä tekstinä'
+	},
+
+	templates :
+	{
+		button : 'Pohjat',
+		title : 'Sisältöpohjat',
+		insertOption: 'Korvaa editorin koko sisältö',
+		selectPromptMsg: 'Valitse pohja editoriin<br>(aiempi sisältö menetetään):',
+		emptyListMsg : '(Ei määriteltyjä pohjia)'
+	},
+
+	showBlocks : 'Näytä elementit',
+
+	stylesCombo :
+	{
+		label : 'Tyyli',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Muotoilu',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Muotoilu',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normaali',
+		tag_pre : 'Muotoiltu',
+		tag_address : 'Osoite',
+		tag_h1 : 'Otsikko 1',
+		tag_h2 : 'Otsikko 2',
+		tag_h3 : 'Otsikko 3',
+		tag_h4 : 'Otsikko 4',
+		tag_h5 : 'Otsikko 5',
+		tag_h6 : 'Otsikko 6',
+		tag_div : 'Normal (DIV)' // MISSING
+	},
+
+	font :
+	{
+		label : 'Fontti',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Fontti',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Koko',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Koko',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Tekstiväri',
+		bgColorTitle : 'Taustaväri',
+		auto : 'Automaattinen',
+		more : 'Lisää värejä...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/fo.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/fo.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/fo.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Faroese language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['fo'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Kelda',
+	newPage			: 'Nýggj síða',
+	save			: 'Goym',
+	preview			: 'Frumsýning',
+	cut				: 'Kvett',
+	copy			: 'Avrita',
+	paste			: 'Innrita',
+	print			: 'Prenta',
+	underline		: 'Undirstrikað',
+	bold			: 'Feit skrift',
+	italic			: 'Skráskrift',
+	selectAll		: 'Markera alt',
+	removeFormat	: 'Strika sniðgeving',
+	strike			: 'Yvirstrikað',
+	subscript		: 'Lækkað skrift',
+	superscript		: 'Hækkað skrift',
+	horizontalrule	: 'Ger vatnrætta linju',
+	pagebreak		: 'Ger síðuskift',
+	unlink			: 'Strika tilknýti',
+	undo			: 'Angra',
+	redo			: 'Vend aftur',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Ambætarakagi',
+		url				: 'URL',
+		protocol		: 'Protokoll',
+		upload			: 'Send til ambætaran',
+		uploadSubmit	: 'Send til ambætaran',
+		image			: 'Myndir',
+		flash			: 'Flash',
+		form			: 'Formur',
+		checkbox		: 'Flugubein',
+		radio		: 'Radioknøttur',
+		textField		: 'Tekstteigur',
+		textarea		: 'Tekstumráði',
+		hiddenField		: 'Fjaldur teigur',
+		button			: 'Knøttur',
+		select	: 'Valskrá',
+		imageButton		: 'Myndaknøttur',
+		notSet			: '<ikki sett>',
+		id				: 'Id',
+		name			: 'Navn',
+		langDir			: 'Tekstkós',
+		langDirLtr		: 'Frá vinstru til høgru (LTR)',
+		langDirRtl		: 'Frá høgru til vinstru (RTL)',
+		langCode		: 'Málkoda',
+		longDescr		: 'Víðkað URL frágreiðing',
+		cssClass		: 'Typografi klassar',
+		advisoryTitle	: 'Vegleiðandi heiti',
+		cssStyle		: 'Typografi',
+		ok				: 'Góðkent',
+		cancel			: 'Avlýst',
+		generalTab		: 'Generelt',
+		advancedTab		: 'Fjølbroytt',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Set inn sertekn',
+		title		: 'Vel sertekn'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Ger/broyt tilknýti',
+		menu		: 'Broyt tilknýti',
+		title		: 'Tilknýti',
+		info		: 'Tilknýtis upplýsingar',
+		target		: 'Mál',
+		upload		: 'Send til ambætaran',
+		advanced	: 'Fjølbroytt',
+		type		: 'Tilknýtisslag',
+		toAnchor	: 'Tilknýti til marknastein í tekstinum',
+		toEmail		: 'Teldupostur',
+		target		: 'Mál',
+		targetNotSet	: '<ikki sett>',
+		targetFrame	: '<ramma>',
+		targetPopup	: '<popup vindeyga>',
+		targetNew	: 'Nýtt vindeyga (_blank)',
+		targetTop	: 'Alt vindeygað (_top)',
+		targetSelf	: 'Sama vindeygað (_self)',
+		targetParent	: 'Upphavliga vindeygað (_parent)',
+		targetFrameName	: 'Vís navn vindeygans',
+		targetPopupName	: 'Popup vindeygans navn',
+		popupFeatures	: 'Popup vindeygans víðkaðu eginleikar',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Støðufrágreiðingarbjálki',
+		popupLocationBar	: 'Adressulinja',
+		popupToolbar	: 'Amboðsbjálki',
+		popupMenuBar	: 'Skrábjálki',
+		popupFullScreen	: 'Fullur skermur (IE)',
+		popupScrollBars	: 'Rullibjálki',
+		popupDependent	: 'Bundið (Netscape)',
+		popupWidth		: 'Breidd',
+		popupLeft		: 'Frástøða frá vinstru',
+		popupHeight		: 'Hædd',
+		popupTop		: 'Frástøða frá íerva',
+		id				: 'Id', // MISSING
+		langDir			: 'Tekstkós',
+		langDirNotSet	: '<ikki sett>',
+		langDirLTR		: 'Frá vinstru til høgru (LTR)',
+		langDirRTL		: 'Frá høgru til vinstru (RTL)',
+		acccessKey		: 'Snarvegisknappur',
+		name			: 'Navn',
+		langCode		: 'Tekstkós',
+		tabIndex		: 'Inntriv indeks',
+		advisoryTitle	: 'Vegleiðandi heiti',
+		advisoryContentType	: 'Vegleiðandi innihaldsslag',
+		cssClasses		: 'Typografi klassar',
+		charset			: 'Atknýtt teknsett',
+		styles			: 'Typografi',
+		selectAnchor	: 'Vel ein marknastein',
+		anchorName		: 'Eftir navni á marknasteini',
+		anchorId		: 'Eftir element Id',
+		emailAddress	: 'Teldupost-adressa',
+		emailSubject	: 'Evni',
+		emailBody		: 'Breyðtekstur',
+		noAnchors		: '(Eingir marknasteinar eru í hesum dokumentið)',
+		noUrl			: 'Vinarliga skriva tilknýti (URL)',
+		noEmail			: 'Vinarliga skriva teldupost-adressu'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Ger/broyt marknastein',
+		menu		: 'Eginleikar fyri marknastein',
+		title		: 'Eginleikar fyri marknastein',
+		name		: 'Heiti marknasteinsins',
+		errorName	: 'Vinarliga rita marknasteinsins heiti'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Finn og broyt',
+		find				: 'Leita',
+		replace				: 'Yvirskriva',
+		findWhat			: 'Finn:',
+		replaceWith			: 'Yvirskriva við:',
+		notFoundMsg			: 'Leititeksturin varð ikki funnin',
+		matchCase			: 'Munur á stórum og smáðum bókstavum',
+		matchWord			: 'Bert heil orð',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Yvirskriva alt',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tabell',
+		title		: 'Eginleikar fyri tabell',
+		menu		: 'Eginleikar fyri tabell',
+		deleteTable	: 'Strika tabell',
+		rows		: 'Røðir',
+		columns		: 'Kolonnur',
+		border		: 'Bordabreidd',
+		align		: 'Justering',
+		alignNotSet	: '<Einki valt>',
+		alignLeft	: 'Vinstrasett',
+		alignCenter	: 'Miðsett',
+		alignRight	: 'Høgrasett',
+		width		: 'Breidd',
+		widthPx		: 'pixels',
+		widthPc		: 'prosent',
+		height		: 'Hædd',
+		cellSpace	: 'Fjarstøða millum meskar',
+		cellPad		: 'Meskubreddi',
+		caption		: 'Tabellfrágreiðing',
+		summary		: 'Samandráttur',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Meski',
+			insertBefore	: 'Set meska inn áðrenn',
+			insertAfter		: 'Set meska inn aftaná',
+			deleteCell		: 'Strika meskar',
+			merge			: 'Flætta meskar',
+			mergeRight		: 'Flætta meskar til høgru',
+			mergeDown		: 'Flætta saman',
+			splitHorizontal	: 'Kloyv meska vatnrætt',
+			splitVertical	: 'Kloyv meska loddrætt',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Rað',
+			insertBefore	: 'Set rað inn áðrenn',
+			insertAfter		: 'Set rað inn aftaná',
+			deleteRow		: 'Strika røðir'
+		},
+
+		column :
+		{
+			menu			: 'Kolonna',
+			insertBefore	: 'Set kolonnu inn áðrenn',
+			insertAfter		: 'Set kolonnu inn aftaná',
+			deleteColumn	: 'Strika kolonnur'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Eginleikar fyri knøtt',
+		text		: 'Tekstur',
+		type		: 'Slag',
+		typeBtn		: 'Knøttur',
+		typeSbm		: 'Send',
+		typeRst		: 'Nullstilla'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Eginleikar fyri flugubein',
+		radioTitle	: 'Eginleikar fyri radioknøtt',
+		value		: 'Virði',
+		selected	: 'Valt'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Eginleikar fyri Form',
+		menu		: 'Eginleikar fyri Form',
+		action		: 'Hending',
+		method		: 'Háttur',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Mál',
+		targetNotSet	: '<ikki sett>',
+		targetNew	: 'Nýtt vindeyga (_blank)',
+		targetTop	: 'Alt vindeygað (_top)',
+		targetSelf	: 'Sama vindeygað (_self)',
+		targetParent	: 'Upphavliga vindeygað (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Eginleikar fyri valskrá',
+		selectInfo	: 'Upplýsingar',
+		opAvail		: 'Tøkir møguleikar',
+		value		: 'Virði',
+		size		: 'Stødd',
+		lines		: 'Linjur',
+		chkMulti	: 'Loyv fleiri valmøguleikum samstundis',
+		opText		: 'Tekstur',
+		opValue		: 'Virði',
+		btnAdd		: 'Legg afturat',
+		btnModify	: 'Broyt',
+		btnUp		: 'Upp',
+		btnDown		: 'Niður',
+		btnSetValue : 'Set sum valt virði',
+		btnDelete	: 'Strika'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Eginleikar fyri tekstumráði',
+		cols		: 'kolonnur',
+		rows		: 'røðir'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Eginleikar fyri tekstteig',
+		name		: 'Navn',
+		value		: 'Virði',
+		charWidth	: 'Breidd (sjónlig tekn)',
+		maxChars	: 'Mest loyvdu tekn',
+		type		: 'Slag',
+		typeText	: 'Tekstur',
+		typePass	: 'Loyniorð'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Eginleikar fyri fjaldan teig',
+		name	: 'Navn',
+		value	: 'Virði'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Myndaeginleikar',
+		titleButton	: 'Eginleikar fyri myndaknøtt',
+		menu		: 'Myndaeginleikar',
+		infoTab	: 'Myndaupplýsingar',
+		btnUpload	: 'Send til ambætaran',
+		url		: 'URL',
+		upload	: 'Send',
+		alt		: 'Alternativur tekstur',
+		width		: 'Breidd',
+		height	: 'Hædd',
+		lockRatio	: 'Læs lutfallið',
+		resetSize	: 'Upprunastødd',
+		border	: 'Bordi',
+		hSpace	: 'Høgri breddi',
+		vSpace	: 'Vinstri breddi',
+		align		: 'Justering',
+		alignLeft	: 'Vinstra',
+		alignAbsBottom: 'Abs botnur',
+		alignAbsMiddle: 'Abs miðja',
+		alignBaseline	: 'Basislinja',
+		alignBottom	: 'Botnur',
+		alignMiddle	: 'Miðja',
+		alignRight	: 'Høgra',
+		alignTextTop	: 'Tekst toppur',
+		alignTop	: 'Ovast',
+		preview	: 'Frumsýning',
+		alertUrl	: 'Rita slóðina til myndina',
+		linkTab	: 'Tilknýti',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Flash eginleikar',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Flash eginleikar',
+		chkPlay		: 'Avspælingin byrjar sjálv',
+		chkLoop		: 'Endurspæl',
+		chkMenu		: 'Ger Flash skrá virkna',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Skalering',
+		scaleAll		: 'Vís alt',
+		scaleNoBorder	: 'Eingin bordi',
+		scaleFit		: 'Neyv skalering',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Justering',
+		alignLeft	: 'Vinstra',
+		alignAbsBottom: 'Abs botnur',
+		alignAbsMiddle: 'Abs miðja',
+		alignBaseline	: 'Basislinja',
+		alignBottom	: 'Botnur',
+		alignMiddle	: 'Miðja',
+		alignRight	: 'Høgra',
+		alignTextTop	: 'Tekst toppur',
+		alignTop	: 'Ovast',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Bakgrundslitur',
+		width	: 'Breidd',
+		height	: 'Hædd',
+		hSpace	: 'Høgri breddi',
+		vSpace	: 'Vinstri breddi',
+		validateSrc : 'Vinarliga skriva tilknýti (URL)',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Kanna stavseting',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Finst ikki í orðabókini',
+		changeTo		: 'Broyt til',
+		btnIgnore		: 'Forfjóna',
+		btnIgnoreAll	: 'Forfjóna alt',
+		btnReplace		: 'Yvirskriva',
+		btnReplaceAll	: 'Yvirskriva alt',
+		btnUndo			: 'Angra',
+		noSuggestions	: '- Einki uppskot -',
+		progress		: 'Rættstavarin arbeiðir...',
+		noMispell		: 'Rættstavarain liðugur: Eingin feilur funnin',
+		noChanges		: 'Rættstavarain liðugur: Einki orð varð broytt',
+		oneChange		: 'Rættstavarain liðugur: Eitt orð er broytt',
+		manyChanges		: 'Rættstavarain liðugur: %1 orð broytt',
+		ieSpellDownload	: 'Rættstavarin er ikki tøkur í tekstviðgeranum. Vilt tú heinta hann nú?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Smiley',
+		title	: 'Vel Smiley'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Talmerktur listi',
+	bulletedlist : 'Punktmerktur listi',
+	indent : 'Økja reglubrotarinntriv',
+	outdent : 'Minka reglubrotarinntriv',
+
+	justify :
+	{
+		left : 'Vinstrasett',
+		center : 'Miðsett',
+		right : 'Høgrasett',
+		block : 'Javnir tekstkantar'
+	},
+
+	blockquote : 'Blockquote',
+
+	clipboard :
+	{
+		title		: 'Innrita',
+		cutError	: 'Trygdaruppseting alnótskagans forðar tekstviðgeranum í at kvetta tekstin. Vinarliga nýt knappaborðið til at kvetta tekstin (CTRL+X).',
+		copyError	: 'Trygdaruppseting alnótskagans forðar tekstviðgeranum í at avrita tekstin. Vinarliga nýt knappaborðið til at avrita tekstin (CTRL+C).',
+		pasteMsg	: 'Vinarliga koyr tekstin í hendan rútin við knappaborðinum (<strong>CTRL+V</strong>) og klikk á <strong>Góðtak</strong>.',
+		securityMsg	: 'Trygdaruppseting alnótskagans forðar tekstviðgeranum í beinleiðis atgongd til avritingarminnið. Tygum mugu royna aftur í hesum rútinum.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Innrita frá Word',
+		title : 'Innrita frá Word',
+		advice : 'Vinarliga koyr tekstin í hendan rútin við knappaborðinum (<strong>CTRL+V</strong>) og klikk á <strong>Góðtak</strong>.',
+		ignoreFontFace : 'Forfjóna Font definitiónirnar',
+		removeStyle : 'Strika typografi definitiónir'
+	},
+
+	pasteText :
+	{
+		button : 'Innrita som reinan tekst',
+		title : 'Innrita som reinan tekst'
+	},
+
+	templates :
+	{
+		button : 'Skabelónir',
+		title : 'Innihaldsskabelónir',
+		insertOption: 'Yvirskriva núverandi innihald',
+		selectPromptMsg: 'Vinarliga vel ta skabelón, ið skal opnast í tekstviðgeranum<br>(Hetta yvirskrivar núverandi innihald):',
+		emptyListMsg : '(Ongar skabelónir tøkar)'
+	},
+
+	showBlocks : 'Vís blokkar',
+
+	stylesCombo :
+	{
+		label : 'Typografi',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Skriftsnið',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Skriftsnið',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Vanligt',
+		tag_pre : 'Sniðgivið',
+		tag_address : 'Adressa',
+		tag_h1 : 'Yvirskrift 1',
+		tag_h2 : 'Yvirskrift 2',
+		tag_h3 : 'Yvirskrift 3',
+		tag_h4 : 'Yvirskrift 4',
+		tag_h5 : 'Yvirskrift 5',
+		tag_h6 : 'Yvirskrift 6',
+		tag_div : 'Normal (DIV)' // MISSING
+	},
+
+	font :
+	{
+		label : 'Skrift',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Skrift',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Skriftstødd',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Skriftstødd',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Tekstlitur',
+		bgColorTitle : 'Bakgrundslitur',
+		auto : 'Automatiskt',
+		more : 'Fleiri litir...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/fr-ca.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/fr-ca.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/fr-ca.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Canadian French language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['fr-ca'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Source',
+	newPage			: 'Nouvelle page',
+	save			: 'Sauvegarder',
+	preview			: 'Previsualiser',
+	cut				: 'Couper',
+	copy			: 'Copier',
+	paste			: 'Coller',
+	print			: 'Imprimer',
+	underline		: 'Souligné',
+	bold			: 'Gras',
+	italic			: 'Italique',
+	selectAll		: 'Tout sélectionner',
+	removeFormat	: 'Supprimer le formatage',
+	strike			: 'Barrer',
+	subscript		: 'Indice',
+	superscript		: 'Exposant',
+	horizontalrule	: 'Insérer un séparateur',
+	pagebreak		: 'Insérer un saut de page',
+	unlink			: 'Supprimer le lien',
+	undo			: 'Annuler',
+	redo			: 'Refaire',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Parcourir le serveur',
+		url				: 'URL',
+		protocol		: 'Protocole',
+		upload			: 'Télécharger',
+		uploadSubmit	: 'Envoyer sur le serveur',
+		image			: 'Image',
+		flash			: 'Animation Flash',
+		form			: 'Formulaire',
+		checkbox		: 'Case à cocher',
+		radio		: 'Bouton radio',
+		textField		: 'Champ texte',
+		textarea		: 'Zone de texte',
+		hiddenField		: 'Champ caché',
+		button			: 'Bouton',
+		select	: 'Champ de sélection',
+		imageButton		: 'Bouton image',
+		notSet			: '<Par défaut>',
+		id				: 'Id',
+		name			: 'Nom',
+		langDir			: 'Sens d\'écriture',
+		langDirLtr		: 'De gauche à droite (LTR)',
+		langDirRtl		: 'De droite à gauche (RTL)',
+		langCode		: 'Code langue',
+		longDescr		: 'URL de description longue',
+		cssClass		: 'Classes de feuilles de style',
+		advisoryTitle	: 'Titre',
+		cssStyle		: 'Style',
+		ok				: 'OK',
+		cancel			: 'Annuler',
+		generalTab		: 'Général',
+		advancedTab		: 'Avancée',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Insérer un caractère spécial',
+		title		: 'Insérer un caractère spécial'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Insérer/modifier le lien',
+		menu		: 'Modifier le lien',
+		title		: 'Propriétés du lien',
+		info		: 'Informations sur le lien',
+		target		: 'Destination',
+		upload		: 'Télécharger',
+		advanced	: 'Avancée',
+		type		: 'Type de lien',
+		toAnchor	: 'Ancre dans cette page',
+		toEmail		: 'E-Mail',
+		target		: 'Destination',
+		targetNotSet	: '<Par défaut>',
+		targetFrame	: '<Cadre>',
+		targetPopup	: '<fenêtre popup>',
+		targetNew	: 'Nouvelle fenêtre (_blank)',
+		targetTop	: 'Fenêtre supérieure (_top)',
+		targetSelf	: 'Même fenêtre (_self)',
+		targetParent	: 'Fenêtre mère (_parent)',
+		targetFrameName	: 'Nom du cadre de destination',
+		targetPopupName	: 'Nom de la fenêtre popup',
+		popupFeatures	: 'Caractéristiques de la fenêtre popup',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Barre d\'état',
+		popupLocationBar	: 'Barre d\'adresses',
+		popupToolbar	: 'Barre d\'outils',
+		popupMenuBar	: 'Barre de menu',
+		popupFullScreen	: 'Plein écran (IE)',
+		popupScrollBars	: 'Barres de défilement',
+		popupDependent	: 'Dépendante (Netscape)',
+		popupWidth		: 'Largeur',
+		popupLeft		: 'Position à partir de la gauche',
+		popupHeight		: 'Hauteur',
+		popupTop		: 'Position à partir du haut',
+		id				: 'Id', // MISSING
+		langDir			: 'Sens d\'écriture',
+		langDirNotSet	: '<Par défaut>',
+		langDirLTR		: 'De gauche à droite (LTR)',
+		langDirRTL		: 'De droite à gauche (RTL)',
+		acccessKey		: 'Équivalent clavier',
+		name			: 'Nom',
+		langCode		: 'Sens d\'écriture',
+		tabIndex		: 'Ordre de tabulation',
+		advisoryTitle	: 'Titre',
+		advisoryContentType	: 'Type de contenu',
+		cssClasses		: 'Classes de feuilles de style',
+		charset			: 'Encodage de caractère',
+		styles			: 'Style',
+		selectAnchor	: 'Sélectionner une ancre',
+		anchorName		: 'Par nom',
+		anchorId		: 'Par id',
+		emailAddress	: 'Adresse E-Mail',
+		emailSubject	: 'Sujet du message',
+		emailBody		: 'Corps du message',
+		noAnchors		: '(Pas d\'ancre disponible dans le document)',
+		noUrl			: 'Veuillez saisir l\'URL',
+		noEmail			: 'Veuillez saisir l\'adresse e-mail'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Insérer/modifier l\'ancre',
+		menu		: 'Propriétés de l\'ancre',
+		title		: 'Propriétés de l\'ancre',
+		name		: 'Nom de l\'ancre',
+		errorName	: 'Veuillez saisir le nom de l\'ancre'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Chercher et Remplacer',
+		find				: 'Chercher',
+		replace				: 'Remplacer',
+		findWhat			: 'Rechercher:',
+		replaceWith			: 'Remplacer par:',
+		notFoundMsg			: 'Le texte indiqué est introuvable.',
+		matchCase			: 'Respecter la casse',
+		matchWord			: 'Mot entier',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Tout remplacer',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tableau',
+		title		: 'Propriétés du tableau',
+		menu		: 'Propriétés du tableau',
+		deleteTable	: 'Supprimer le tableau',
+		rows		: 'Lignes',
+		columns		: 'Colonnes',
+		border		: 'Taille de la bordure',
+		align		: 'Alignement',
+		alignNotSet	: '<Par défaut>',
+		alignLeft	: 'Gauche',
+		alignCenter	: 'Centré',
+		alignRight	: 'Droite',
+		width		: 'Largeur',
+		widthPx		: 'pixels',
+		widthPc		: 'pourcentage',
+		height		: 'Hauteur',
+		cellSpace	: 'Espacement',
+		cellPad		: 'Contour',
+		caption		: 'Titre',
+		summary		: 'Résumé',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Cellule',
+			insertBefore	: 'Insérer une cellule avant',
+			insertAfter		: 'Insérer une cellule après',
+			deleteCell		: 'Supprimer des cellules',
+			merge			: 'Fusionner les cellules',
+			mergeRight		: 'Fusionner à droite',
+			mergeDown		: 'Fusionner en bas',
+			splitHorizontal	: 'Scinder la cellule horizontalement',
+			splitVertical	: 'Scinder la cellule verticalement',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Ligne',
+			insertBefore	: 'Insérer une ligne avant',
+			insertAfter		: 'Insérer une ligne après',
+			deleteRow		: 'Supprimer des lignes'
+		},
+
+		column :
+		{
+			menu			: 'Colonne',
+			insertBefore	: 'Insérer une colonne avant',
+			insertAfter		: 'Insérer une colonne après',
+			deleteColumn	: 'Supprimer des colonnes'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Propriétés du bouton',
+		text		: 'Texte (Valeur)',
+		type		: 'Type',
+		typeBtn		: 'Bouton',
+		typeSbm		: 'Soumettre',
+		typeRst		: 'Réinitialiser'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Propriétés de la case à cocher',
+		radioTitle	: 'Propriétés du bouton radio',
+		value		: 'Valeur',
+		selected	: 'Sélectionné'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Propriétés du formulaire',
+		menu		: 'Propriétés du formulaire',
+		action		: 'Action',
+		method		: 'Méthode',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Destination',
+		targetNotSet	: '<Par défaut>',
+		targetNew	: 'Nouvelle fenêtre (_blank)',
+		targetTop	: 'Fenêtre supérieure (_top)',
+		targetSelf	: 'Même fenêtre (_self)',
+		targetParent	: 'Fenêtre mère (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Propriétés de la liste/du menu',
+		selectInfo	: 'Info',
+		opAvail		: 'Options disponibles',
+		value		: 'Valeur',
+		size		: 'Taille',
+		lines		: 'lignes',
+		chkMulti	: 'Sélection multiple',
+		opText		: 'Texte',
+		opValue		: 'Valeur',
+		btnAdd		: 'Ajouter',
+		btnModify	: 'Modifier',
+		btnUp		: 'Monter',
+		btnDown		: 'Descendre',
+		btnSetValue : 'Valeur sélectionnée',
+		btnDelete	: 'Supprimer'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Propriétés de la zone de texte',
+		cols		: 'Colonnes',
+		rows		: 'Lignes'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Propriétés du champ texte',
+		name		: 'Nom',
+		value		: 'Valeur',
+		charWidth	: 'Largeur en caractères',
+		maxChars	: 'Nombre maximum de caractères',
+		type		: 'Type',
+		typeText	: 'Texte',
+		typePass	: 'Mot de passe'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Propriétés du champ caché',
+		name	: 'Nom',
+		value	: 'Valeur'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Propriétés de l\'image',
+		titleButton	: 'Propriétés du bouton image',
+		menu		: 'Propriétés de l\'image',
+		infoTab	: 'Informations sur l\'image',
+		btnUpload	: 'Envoyer sur le serveur',
+		url		: 'URL',
+		upload	: 'Télécharger',
+		alt		: 'Texte de remplacement',
+		width		: 'Largeur',
+		height	: 'Hauteur',
+		lockRatio	: 'Garder les proportions',
+		resetSize	: 'Taille originale',
+		border	: 'Bordure',
+		hSpace	: 'Espacement horizontal',
+		vSpace	: 'Espacement vertical',
+		align		: 'Alignement',
+		alignLeft	: 'Gauche',
+		alignAbsBottom: 'Abs Bas',
+		alignAbsMiddle: 'Abs Milieu',
+		alignBaseline	: 'Bas du texte',
+		alignBottom	: 'Bas',
+		alignMiddle	: 'Milieu',
+		alignRight	: 'Droite',
+		alignTextTop	: 'Haut du texte',
+		alignTop	: 'Haut',
+		preview	: 'Prévisualisation',
+		alertUrl	: 'Veuillez saisir l\'URL de l\'image',
+		linkTab	: 'Lien',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Propriétés de l\'animation Flash',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Propriétés de l\'animation Flash',
+		chkPlay		: 'Lecture automatique',
+		chkLoop		: 'Boucle',
+		chkMenu		: 'Activer le menu Flash',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Affichage',
+		scaleAll		: 'Par défaut (tout montrer)',
+		scaleNoBorder	: 'Sans bordure',
+		scaleFit		: 'Ajuster aux dimensions',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Alignement',
+		alignLeft	: 'Gauche',
+		alignAbsBottom: 'Abs Bas',
+		alignAbsMiddle: 'Abs Milieu',
+		alignBaseline	: 'Bas du texte',
+		alignBottom	: 'Bas',
+		alignMiddle	: 'Milieu',
+		alignRight	: 'Droite',
+		alignTextTop	: 'Haut du texte',
+		alignTop	: 'Haut',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Couleur de fond',
+		width	: 'Largeur',
+		height	: 'Hauteur',
+		hSpace	: 'Espacement horizontal',
+		vSpace	: 'Espacement vertical',
+		validateSrc : 'Veuillez saisir l\'URL',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Orthographe',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Pas dans le dictionnaire',
+		changeTo		: 'Changer en',
+		btnIgnore		: 'Ignorer',
+		btnIgnoreAll	: 'Ignorer tout',
+		btnReplace		: 'Remplacer',
+		btnReplaceAll	: 'Remplacer tout',
+		btnUndo			: 'Annuler',
+		noSuggestions	: '- Pas de suggestion -',
+		progress		: 'Vérification d\'orthographe en cours...',
+		noMispell		: 'Vérification d\'orthographe terminée: pas d\'erreur trouvée',
+		noChanges		: 'Vérification d\'orthographe terminée: Pas de modifications',
+		oneChange		: 'Vérification d\'orthographe terminée: Un mot modifié',
+		manyChanges		: 'Vérification d\'orthographe terminée: %1 mots modifiés',
+		ieSpellDownload	: 'Le Correcteur d\'orthographe n\'est pas installé. Souhaitez-vous le télécharger maintenant?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Emoticon',
+		title	: 'Insérer un Emoticon'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Liste numérotée',
+	bulletedlist : 'Liste à puces',
+	indent : 'Augmenter le retrait',
+	outdent : 'Diminuer le retrait',
+
+	justify :
+	{
+		left : 'Aligner à gauche',
+		center : 'Centrer',
+		right : 'Aligner à Droite',
+		block : 'Texte justifié'
+	},
+
+	blockquote : 'Citation',
+
+	clipboard :
+	{
+		title		: 'Coller',
+		cutError	: 'Les paramètres de sécurité de votre navigateur empêchent l\'éditeur de couper automatiquement vos données. Veuillez utiliser les équivalents claviers (Ctrl+X).',
+		copyError	: 'Les paramètres de sécurité de votre navigateur empêchent l\'éditeur de copier automatiquement vos données. Veuillez utiliser les équivalents claviers (Ctrl+C).',
+		pasteMsg	: 'Veuillez coller dans la zone ci-dessous en utilisant le clavier (<STRONG>Ctrl+V</STRONG>) et appuyer sur <STRONG>OK</STRONG>.',
+		securityMsg	: 'A cause des paramètres de sécurité de votre navigateur, l\'éditeur ne peut accéder au presse-papier directement. Vous devez coller à nouveau le contenu dans cette fenêtre.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Coller en tant que Word (formaté)',
+		title : 'Coller en tant que Word (formaté)',
+		advice : 'Veuillez coller dans la zone ci-dessous en utilisant le clavier (<STRONG>Ctrl+V</STRONG>) et appuyer sur <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Ignorer les polices de caractères',
+		removeStyle : 'Supprimer les styles'
+	},
+
+	pasteText :
+	{
+		button : 'Coller comme texte',
+		title : 'Coller comme texte'
+	},
+
+	templates :
+	{
+		button : 'Modèles',
+		title : 'Modèles de contenu',
+		insertOption: 'Remplacer tout le contenu actuel',
+		selectPromptMsg: 'Sélectionner le modèle à ouvrir dans l\'éditeur<br>(le contenu actuel sera remplacé):',
+		emptyListMsg : '(Aucun modèle disponible)'
+	},
+
+	showBlocks : 'Afficher les blocs',
+
+	stylesCombo :
+	{
+		label : 'Style',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Format',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Format',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normal',
+		tag_pre : 'Formaté',
+		tag_address : 'Adresse',
+		tag_h1 : 'En-tête 1',
+		tag_h2 : 'En-tête 2',
+		tag_h3 : 'En-tête 3',
+		tag_h4 : 'En-tête 4',
+		tag_h5 : 'En-tête 5',
+		tag_h6 : 'En-tête 6',
+		tag_div : 'Normal (DIV)'
+	},
+
+	font :
+	{
+		label : 'Police',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Police',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Taille',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Taille',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Couleur de caractère',
+		bgColorTitle : 'Couleur de fond',
+		auto : 'Automatique',
+		more : 'Plus de couleurs...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/fr.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/fr.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/fr.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * French language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['fr'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Source',
+	newPage			: 'Nouvelle page',
+	save			: 'Sauver',
+	preview			: 'Aperçu',
+	cut				: 'Couper',
+	copy			: 'Copier',
+	paste			: 'Coller',
+	print			: 'Imprimer',
+	underline		: 'Souligné',
+	bold			: 'Gras',
+	italic			: 'Italique',
+	selectAll		: 'Tout sélectionner',
+	removeFormat	: 'Supprimer la mise en forme',
+	strike			: 'Barré',
+	subscript		: 'Indice',
+	superscript		: 'Exposant',
+	horizontalrule	: 'Ligne horizontale',
+	pagebreak		: 'Saut de page',
+	unlink			: 'Supprimer le lien',
+	undo			: 'Annuler',
+	redo			: 'Rétablir',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Explorer le serveur',
+		url				: 'URL',
+		protocol		: 'Protocole',
+		upload			: 'Envoyer',
+		uploadSubmit	: 'Envoyer sur le serveur',
+		image			: 'Image',
+		flash			: 'Flash',
+		form			: 'Formulaire',
+		checkbox		: 'Case à cocher',
+		radio		: 'Bouton Radio',
+		textField		: 'Champ texte',
+		textarea		: 'Zone de texte',
+		hiddenField		: 'Champ caché',
+		button			: 'Bouton',
+		select	: 'Liste déroulante',
+		imageButton		: 'Bouton image',
+		notSet			: '<non défini>',
+		id				: 'Id',
+		name			: 'Nom',
+		langDir			: 'Sens d\'écriture',
+		langDirLtr		: 'Gauche à droite (LTR)',
+		langDirRtl		: 'Droite à gauche (RTL)',
+		langCode		: 'Code de langue',
+		longDescr		: 'URL de longue description (longdesc => malvoyant)',
+		cssClass		: 'Classe CSS',
+		advisoryTitle	: 'Description (title)',
+		cssStyle		: 'Style',
+		ok				: 'OK',
+		cancel			: 'Annuler',
+		generalTab		: 'General',
+		advancedTab		: 'Avancé',
+		validateNumberFailed	: 'Cette valeur n\'est pas un nombre.',
+		confirmNewPage	: 'Les changements non sauvegardés seront perdus. Etes-vous sur de voiloir charger une nouvelle page ?',
+		confirmCancel	: 'Certaines options ont été modifiées. Etes-vous sur de vouloir fermer ?',
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Insérer un caractère spécial',
+		title		: 'Sélectionnez un caractère'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Lien',
+		menu		: 'Editer le lien',
+		title		: 'Lien',
+		info		: 'Infos sur le lien',
+		target		: 'Cible',
+		upload		: 'Envoyer',
+		advanced	: 'Avancé',
+		type		: 'Type de lien',
+		toAnchor	: 'Transformer le lien en ancre dans le texte',
+		toEmail		: 'E-mail',
+		target		: 'Cible',
+		targetNotSet	: '<non définie>',
+		targetFrame	: '<frame>',
+		targetPopup	: '<fenêtre popup>',
+		targetNew	: 'Nouvelle fenêtre (_blank)',
+		targetTop	: 'Même fenêtre (_top)',
+		targetSelf	: 'Même Frame (_self)',
+		targetParent	: 'Fenêtre parente (_parent)',
+		targetFrameName	: 'Nom de la Frame cible',
+		targetPopupName	: 'Nom de la fenêtre popup',
+		popupFeatures	: 'Options de la fenêtre popup',
+		popupResizable	: 'Redimensionnable',
+		popupStatusBar	: 'Barre de status',
+		popupLocationBar	: 'Barre d\'adresse',
+		popupToolbar	: 'Barre d\'outils',
+		popupMenuBar	: 'Barre de menu',
+		popupFullScreen	: 'Plein écran (IE)',
+		popupScrollBars	: 'Barres de défillement',
+		popupDependent	: 'Dépendante (Netscape)',
+		popupWidth		: 'Largeur',
+		popupLeft		: 'Position gauche',
+		popupHeight		: 'Hauteur',
+		popupTop		: 'Position haute',
+		id				: 'Id',
+		langDir			: 'Sens d\'écriture',
+		langDirNotSet	: '<non défini>',
+		langDirLTR		: 'Gauche à droite',
+		langDirRTL		: 'Droite à gauche',
+		acccessKey		: 'Touche daccessibilité',
+		name			: 'Nom',
+		langCode		: 'Code de langue',
+		tabIndex		: 'Index de tabulation',
+		advisoryTitle	: 'Description (title)',
+		advisoryContentType	: 'Type de contenu (ex: text/html)',
+		cssClasses		: 'Classe du CSS',
+		charset			: 'Charset de la cible',
+		styles			: 'Style',
+		selectAnchor	: 'Selectionner l\'ancre',
+		anchorName		: 'Par nom d\'ancre',
+		anchorId		: 'Par ID d\'élément',
+		emailAddress	: 'Adresse E-Mail',
+		emailSubject	: 'Sujet du message',
+		emailBody		: 'Corps du message',
+		noAnchors		: '(Aucune ancre disponible dans ce document)',
+		noUrl			: 'Veuillez entrer l\'adresse du lien',
+		noEmail			: 'Veuillez entrer l\'adresse e-mail'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Ancre',
+		menu		: 'Editer l\'ancre',
+		title		: 'Propriétés de l\'ancre',
+		name		: 'Nom de l\'ancre',
+		errorName	: 'Veuillez entrer le nom de l\'ancre'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Trouver et remplacer',
+		find				: 'Trouver',
+		replace				: 'Remplacer',
+		findWhat			: 'Expression à trouver : ',
+		replaceWith			: 'Remplacer par : ',
+		notFoundMsg			: 'Le texte spécifié ne peut être trouvé.',
+		matchCase			: 'Respecter la casse',
+		matchWord			: 'Mot entier uniquement',
+		matchCyclic			: 'Boucler',
+		replaceAll			: 'Remplacer tout',
+		replaceSuccessMsg	: '%1 occurrence(s) replacée(s).'
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tableau',
+		title		: 'Propriétés du tableau',
+		menu		: 'Propriétés du tableau',
+		deleteTable	: 'Supprimer le tableau',
+		rows		: 'Lignes',
+		columns		: 'Colonnes',
+		border		: 'Taille de la bordure',
+		align		: 'Alignment du contenu',
+		alignNotSet	: '<non définie>',
+		alignLeft	: 'Gauche',
+		alignCenter	: 'Centré',
+		alignRight	: 'Droite',
+		width		: 'Largeur',
+		widthPx		: 'pixels',
+		widthPc		: '% pourcents',
+		height		: 'Hauteur',
+		cellSpace	: 'Espacement des cellules',
+		cellPad		: 'Marge interne des cellules',
+		caption		: 'Titre du tableau',
+		summary		: 'Résumé (description)',
+		headers		: 'En-Têtes',
+		headersNone		: 'Aucunes',
+		headersColumn	: 'Première colonne',
+		headersRow		: 'Première ligne',
+		headersBoth		: 'Les deux',
+		invalidRows		: 'Le nombre de lignes doit être supérieur à 0.',
+		invalidCols		: 'Le nombre de colonnes doit être supérieur à 0.',
+		invalidBorder	: 'La taille de la bordure doit être un nombre.',
+		invalidWidth	: 'La largeur du tableau doit être un nombre.',
+		invalidHeight	: 'La hauteur du tableau doit être un nombre.',
+		invalidCellSpacing	: 'L\'espacement des cellules doit être un nombre.',
+		invalidCellPadding	: 'La marge intérieure des cellules doit être un nombre.',
+
+		cell :
+		{
+			menu			: 'Cellule',
+			insertBefore	: 'Insérer une cellule avant',
+			insertAfter		: 'Inserer une cellule après',
+			deleteCell		: 'Supprimer les cellules',
+			merge			: 'Fusionner les cellules',
+			mergeRight		: 'Fusionner à droite',
+			mergeDown		: 'Fusionner en bas',
+			splitHorizontal	: 'Fractionner horizontallement',
+			splitVertical	: 'Fractionner verticallement',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Ligne',
+			insertBefore	: 'Insérer une ligne avant',
+			insertAfter		: 'Inserer une ligne après',
+			deleteRow		: 'Supprimer les lignes'
+		},
+
+		column :
+		{
+			menu			: 'Colonnes',
+			insertBefore	: 'Inserer une colonne avant',
+			insertAfter		: 'Inserer une colonne après',
+			deleteColumn	: 'Supprimer les colonnes'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Propriétés du bouton',
+		text		: 'Texte (Value)',
+		type		: 'Type',
+		typeBtn		: 'Bouton',
+		typeSbm		: 'Validation (submit)',
+		typeRst		: 'Remise à zéro'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Propriétés de la case à cocher',
+		radioTitle	: 'Propriétés du bouton Radio',
+		value		: 'Valeur',
+		selected	: 'Selectionné'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Propriétés du formulaire',
+		menu		: 'Propriétés du formulaire',
+		action		: 'Action',
+		method		: 'Méthode',
+		encoding	: 'Encodage',
+		target		: 'Cible',
+		targetNotSet	: '<non définie>',
+		targetNew	: 'Nouvelle fenêtre (_blank)',
+		targetTop	: 'Même fenêtre (_top)',
+		targetSelf	: 'Même Frame (_self)',
+		targetParent	: 'Fenêtre parente (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Propriétés du menu déroulant',
+		selectInfo	: 'Informations sur le menu déroulant',
+		opAvail		: 'Options disponibles',
+		value		: 'Valeur',
+		size		: 'Taille',
+		lines		: 'Lignes',
+		chkMulti	: 'Permettre les sélections multiples',
+		opText		: 'Texte',
+		opValue		: 'Valeur',
+		btnAdd		: 'Ajouter',
+		btnModify	: 'Modifier',
+		btnUp		: 'Haut',
+		btnDown		: 'Bas',
+		btnSetValue : 'Définir comme valeur sélectionnée',
+		btnDelete	: 'Supprimer'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Propriétés de la zone de texte',
+		cols		: 'Colonnes',
+		rows		: 'Lignes'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Propriétés du champ texte',
+		name		: 'Nom',
+		value		: 'Valeur',
+		charWidth	: 'Taille des caractères',
+		maxChars	: 'Nombre maximum de caractères',
+		type		: 'Type',
+		typeText	: 'Texte',
+		typePass	: 'Mot de passe'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Propriétés du champ caché',
+		name	: 'Nom',
+		value	: 'Valeur'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Propriétés de l\'image',
+		titleButton	: 'Propriétés du bouton image',
+		menu		: 'Propriétés de l\'image',
+		infoTab	: 'Informations sur l\'image',
+		btnUpload	: 'Envoyer sur le serveur',
+		url		: 'URL',
+		upload	: 'Envoyer',
+		alt		: 'Texte de remplacement',
+		width		: 'Largeur',
+		height	: 'Hauteur',
+		lockRatio	: 'Garder les proportions',
+		resetSize	: 'Taille d\'origine',
+		border	: 'Bordure',
+		hSpace	: 'Espacement horizontal',
+		vSpace	: 'Espacement vertical',
+		align		: 'Alignement',
+		alignLeft	: 'Gauche',
+		alignAbsBottom: 'Bas absolue',
+		alignAbsMiddle: 'Milieu absolue',
+		alignBaseline	: 'Bas du texte',
+		alignBottom	: 'Bas',
+		alignMiddle	: 'Milieu',
+		alignRight	: 'Droite',
+		alignTextTop	: 'Haut du texte',
+		alignTop	: 'Haut',
+		preview	: 'Aperçu',
+		alertUrl	: 'Veuillez entrer l\'adresse de l\'image',
+		linkTab	: 'Lien',
+		button2Img	: 'Voulez vous transformer le bouton image sélectionné, en simple image ?',
+		img2Button	: 'Voulez vous transformer l\'image en bouton image ?'
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Propriétés du Flash',
+		propertiesTab	: 'Propriétés',
+		title		: 'Propriétés du Flash',
+		chkPlay		: 'Jouer automatiquement',
+		chkLoop		: 'Boucle',
+		chkMenu		: 'Activer le menu Flash',
+		chkFull		: 'Permettre le plein écran',
+ 		scale		: 'Echelle',
+		scaleAll		: 'Afficher tout',
+		scaleNoBorder	: 'Pas de bordure',
+		scaleFit		: 'Taille d\'origine',
+		access			: 'Accès aux scripts',
+		accessAlways	: 'Toujours',
+		accessSameDomain	: 'Même domaine',
+		accessNever	: 'Jamais',
+		align		: 'Alignement',
+		alignLeft	: 'Gauche',
+		alignAbsBottom: 'Bas absolue',
+		alignAbsMiddle: 'Milieu absolue',
+		alignBaseline	: 'Bas du texte',
+		alignBottom	: 'Bas',
+		alignMiddle	: 'Milieu',
+		alignRight	: 'Droite',
+		alignTextTop	: 'Haut du texte',
+		alignTop	: 'Dessus',
+		quality		: 'Qualité',
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Mode fenêtre',
+		flashvars	: 'Variables du Flash',
+		bgcolor	: 'Couleur d\'arrière plan',
+		width	: 'Largeur',
+		height	: 'Hauteur',
+		hSpace	: 'Espacement horizontal',
+		vSpace	: 'Espacement vertical',
+		validateSrc : 'L\'adresse ne dois pas être vide.',
+		validateWidth : 'La largeur doit être un nombre.',
+		validateHeight : 'La hauteur doit être un nombre.',
+		validateHSpace : 'L\'espacement horizontal doit être un nombre.',
+		validateVSpace : 'L\'espacement vertical doit être un nombre.'
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Vérifier l\'orthographe',
+		title			: 'Vérifier l\'orthographe',
+		notAvailable	: 'Désolé, le service est indisponnible actuellement.',
+		errorLoading	: 'Erreur du chargement du service depuis l\'hôte : %s.',
+		notInDic		: 'N\'existe pas dasn le dictionnaire',
+		changeTo		: 'Modifier pour',
+		btnIgnore		: 'Ignorer',
+		btnIgnoreAll	: 'Ignorer tout',
+		btnReplace		: 'Remplacer',
+		btnReplaceAll	: 'Remplacer tout',
+		btnUndo			: 'Annuler',
+		noSuggestions	: '- Aucunes sugestions -',
+		progress		: 'Vérification de l\'orthographe en cours...',
+		noMispell		: 'Vérification de l\'orthographe terminée : aucune erreur trouvée',
+		noChanges		: 'Vérification de l\'orthographe terminée : Aucun mot corrigé',
+		oneChange		: 'Vérification de l\'orthographe terminée : Un seul mot corrigé',
+		manyChanges		: 'Vérification de l\'orthographe terminée : %1 mots corrigés',
+		ieSpellDownload	: 'La vérification orthographique n\'est pas installée. Voulez-vous la télécharger maintenant ?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Emoticon',
+		title	: 'Insérer un émoticon'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 éléments'
+	},
+
+	numberedlist : 'Insérer/Supprimer la liste numérotée',
+	bulletedlist : 'Insérer/Supprimer la liste à puces',
+	indent : 'Augmenter le retrait (tabulation)',
+	outdent : 'Diminuer le retrait (tabulation)',
+
+	justify :
+	{
+		left : 'Aligner à gauche',
+		center : 'Centrer',
+		right : 'Aligner à droite',
+		block : 'Justifier'
+	},
+
+	blockquote : 'Citation',
+
+	clipboard :
+	{
+		title		: 'Coller',
+		cutError	: 'Les paramètres de sécurité de votre navigateur, ne permettent pas à l\'éditeur d\'exécuter automatiquement des opérations de coupage. Veuillez utiliser le raccourci clavier (Ctrl+X).',
+		copyError	: 'Les paramètres de sécurité de votre navigateur, ne permettent pas à l\'éditeur d\'exécuter automatiquement des opérations de copie. Veuillez utiliser le raccourci clavier (Ctrl+C).',
+		pasteMsg	: 'Veuillez coller le texte dans la zone suivante, en utilisant le raccourci clavier (<strong>Ctrl+V</strong>) et cliquez sur OK',
+		securityMsg	: 'A cause des paramètres de sécurité de votre navigateur, l\'éditeur n\'est pas en mesure d\'accéder directement à vos données contenues dans le presse-papier. Vous devriez réessayer de coller les données dans la fenêtre.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Coller depuis Word',
+		title : 'Coller depuis Word',
+		advice : 'Veuillez coller le texte dans la zone suivante, en utilisant le raccourci clavier (<strong>Ctrl+V</strong>) et cliquez sur OK.',
+		ignoreFontFace : 'Supprimer la définition des polices',
+		removeStyle : 'Supprimer la défiition des styles'
+	},
+
+	pasteText :
+	{
+		button : 'Coller comme texte sans mise en forme',
+		title : 'Coller comme texte sans mise en forme'
+	},
+
+	templates :
+	{
+		button : 'Modèles',
+		title : 'Contenu des modèles',
+		insertOption: 'Remplacer le contenu actuel',
+		selectPromptMsg: 'Veuillez sélectionner le modèle pour l\'ouvrir dans l\'éditeur',
+		emptyListMsg : '(Aucun modèle disponible)'
+	},
+
+	showBlocks : 'Afficher les blocs',
+
+	stylesCombo :
+	{
+		label : 'Styles',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Styles de blocs',
+		panelTitle2 : 'Styles en ligne',
+		panelTitle3 : 'Styles d\'objet'
+	},
+
+	format :
+	{
+		label : 'Format',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Format de paragraphes',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normal',
+		tag_pre : 'Formatté',
+		tag_address : 'Adresse',
+		tag_h1 : 'Titre 1',
+		tag_h2 : 'Titre 2',
+		tag_h3 : 'Titre 3',
+		tag_h4 : 'Titre 4',
+		tag_h5 : 'Titre 5',
+		tag_h6 : 'Titre 6',
+		tag_div : 'Normal (DIV)'
+	},
+
+	font :
+	{
+		label : 'Police',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Style de police',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Taille',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Taille de police',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Couleur de texte',
+		bgColorTitle : 'Couleur d\'arrière plan',
+		auto : 'Automatique',
+		more : 'Plus de couleurs...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/gl.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/gl.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/gl.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Galician language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['gl'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Código Fonte',
+	newPage			: 'Nova Páxina',
+	save			: 'Gardar',
+	preview			: 'Vista Previa',
+	cut				: 'Cortar',
+	copy			: 'Copiar',
+	paste			: 'Pegar',
+	print			: 'Imprimir',
+	underline		: 'Sub-raiado',
+	bold			: 'Negrita',
+	italic			: 'Cursiva',
+	selectAll		: 'Seleccionar todo',
+	removeFormat	: 'Eliminar Formato',
+	strike			: 'Tachado',
+	subscript		: 'Subíndice',
+	superscript		: 'Superíndice',
+	horizontalrule	: 'Inserir Liña Horizontal',
+	pagebreak		: 'Inserir Salto de Páxina',
+	unlink			: 'Eliminar Ligazón',
+	undo			: 'Desfacer',
+	redo			: 'Refacer',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Navegar no Servidor',
+		url				: 'URL',
+		protocol		: 'Protocolo',
+		upload			: 'Carregar',
+		uploadSubmit	: 'Enviar ó Servidor',
+		image			: 'Imaxe',
+		flash			: 'Flash',
+		form			: 'Formulario',
+		checkbox		: 'Cadro de Verificación',
+		radio		: 'Botón de Radio',
+		textField		: 'Campo de Texto',
+		textarea		: 'Área de Texto',
+		hiddenField		: 'Campo Oculto',
+		button			: 'Botón',
+		select	: 'Campo de Selección',
+		imageButton		: 'Botón de Imaxe',
+		notSet			: '<non definido>',
+		id				: 'Id',
+		name			: 'Nome',
+		langDir			: 'Orientación do Idioma',
+		langDirLtr		: 'Esquerda a Dereita (LTR)',
+		langDirRtl		: 'Dereita a Esquerda (RTL)',
+		langCode		: 'Código do Idioma',
+		longDescr		: 'Descrición Completa da URL',
+		cssClass		: 'Clases da Folla de Estilos',
+		advisoryTitle	: 'Título',
+		cssStyle		: 'Estilo',
+		ok				: 'OK',
+		cancel			: 'Cancelar',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'Advanzado',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Inserir Carácter Especial',
+		title		: 'Seleccione Caracter Especial'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Inserir/Editar Ligazón',
+		menu		: 'Editar Ligazón',
+		title		: 'Ligazón',
+		info		: 'Información da Ligazón',
+		target		: 'Destino',
+		upload		: 'Carregar',
+		advanced	: 'Advanzado',
+		type		: 'Tipo de Ligazón',
+		toAnchor	: 'Referencia nesta páxina',
+		toEmail		: 'E-Mail',
+		target		: 'Destino',
+		targetNotSet	: '<non definido>',
+		targetFrame	: '<frame>',
+		targetPopup	: '<Xanela Emerxente>',
+		targetNew	: 'Nova Xanela (_blank)',
+		targetTop	: 'Xanela Primaria (_top)',
+		targetSelf	: 'Mesma Xanela (_self)',
+		targetParent	: 'Xanela Pai (_parent)',
+		targetFrameName	: 'Nome do Marco Destino',
+		targetPopupName	: 'Nome da Xanela Emerxente',
+		popupFeatures	: 'Características da Xanela Emerxente',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Barra de Estado',
+		popupLocationBar	: 'Barra de Localización',
+		popupToolbar	: 'Barra de Ferramentas',
+		popupMenuBar	: 'Barra de Menú',
+		popupFullScreen	: 'A Toda Pantalla (IE)',
+		popupScrollBars	: 'Barras de Desplazamento',
+		popupDependent	: 'Dependente (Netscape)',
+		popupWidth		: 'Largura',
+		popupLeft		: 'Posición Esquerda',
+		popupHeight		: 'Altura',
+		popupTop		: 'Posición dende Arriba',
+		id				: 'Id', // MISSING
+		langDir			: 'Orientación do Idioma',
+		langDirNotSet	: '<non definido>',
+		langDirLTR		: 'Esquerda a Dereita (LTR)',
+		langDirRTL		: 'Dereita a Esquerda (RTL)',
+		acccessKey		: 'Chave de Acceso',
+		name			: 'Nome',
+		langCode		: 'Orientación do Idioma',
+		tabIndex		: 'Índice de Tabulación',
+		advisoryTitle	: 'Título',
+		advisoryContentType	: 'Tipo de Contido',
+		cssClasses		: 'Clases da Folla de Estilos',
+		charset			: 'Fonte de Caracteres Vinculado',
+		styles			: 'Estilo',
+		selectAnchor	: 'Seleccionar unha Referencia',
+		anchorName		: 'Por Nome de Referencia',
+		anchorId		: 'Por Element Id',
+		emailAddress	: 'Enderezo de E-Mail',
+		emailSubject	: 'Asunto do Mensaxe',
+		emailBody		: 'Corpo do Mensaxe',
+		noAnchors		: '(Non hai referencias disponibles no documento)',
+		noUrl			: 'Por favor, escriba a ligazón URL',
+		noEmail			: 'Por favor, escriba o enderezo de e-mail'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Inserir/Editar Referencia',
+		menu		: 'Propriedades da Referencia',
+		title		: 'Propriedades da Referencia',
+		name		: 'Nome da Referencia',
+		errorName	: 'Por favor, escriba o nome da referencia'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Find and Replace', // MISSING
+		find				: 'Procurar',
+		replace				: 'Substituir',
+		findWhat			: 'Texto a procurar:',
+		replaceWith			: 'Substituir con:',
+		notFoundMsg			: 'Non te atopou o texto indicado.',
+		matchCase			: 'Coincidir Mai./min.',
+		matchWord			: 'Coincidir con toda a palabra',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Substitiur Todo',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tabla',
+		title		: 'Propiedades da Táboa',
+		menu		: 'Propiedades da Táboa',
+		deleteTable	: 'Borrar Táboa',
+		rows		: 'Filas',
+		columns		: 'Columnas',
+		border		: 'Tamaño do Borde',
+		align		: 'Aliñamento',
+		alignNotSet	: '<Non Definido>',
+		alignLeft	: 'Esquerda',
+		alignCenter	: 'Centro',
+		alignRight	: 'Ereita',
+		width		: 'Largura',
+		widthPx		: 'pixels',
+		widthPc		: 'percent',
+		height		: 'Altura',
+		cellSpace	: 'Marxe entre Celas',
+		cellPad		: 'Marxe interior',
+		caption		: 'Título',
+		summary		: 'Sumario',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Cela',
+			insertBefore	: 'Insert Cell Before', // MISSING
+			insertAfter		: 'Insert Cell After', // MISSING
+			deleteCell		: 'Borrar Cela',
+			merge			: 'Unir Celas',
+			mergeRight		: 'Merge Right', // MISSING
+			mergeDown		: 'Merge Down', // MISSING
+			splitHorizontal	: 'Split Cell Horizontally', // MISSING
+			splitVertical	: 'Split Cell Vertically', // MISSING
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Fila',
+			insertBefore	: 'Insert Row Before', // MISSING
+			insertAfter		: 'Insert Row After', // MISSING
+			deleteRow		: 'Borrar Filas'
+		},
+
+		column :
+		{
+			menu			: 'Columna',
+			insertBefore	: 'Insert Column Before', // MISSING
+			insertAfter		: 'Insert Column After', // MISSING
+			deleteColumn	: 'Borrar Columnas'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Propriedades do Botón',
+		text		: 'Texto (Valor)',
+		type		: 'Tipo',
+		typeBtn		: 'Button', // MISSING
+		typeSbm		: 'Submit', // MISSING
+		typeRst		: 'Reset' // MISSING
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Propriedades do Cadro de Verificación',
+		radioTitle	: 'Propriedades do Botón de Radio',
+		value		: 'Valor',
+		selected	: 'Seleccionado'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Propriedades do Formulario',
+		menu		: 'Propriedades do Formulario',
+		action		: 'Acción',
+		method		: 'Método',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Destino',
+		targetNotSet	: '<non definido>',
+		targetNew	: 'Nova Xanela (_blank)',
+		targetTop	: 'Xanela Primaria (_top)',
+		targetSelf	: 'Mesma Xanela (_self)',
+		targetParent	: 'Xanela Pai (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Propriedades do Campo de Selección',
+		selectInfo	: 'Info',
+		opAvail		: 'Opcións Disponibles',
+		value		: 'Valor',
+		size		: 'Tamaño',
+		lines		: 'liñas',
+		chkMulti	: 'Permitir múltiples seleccións',
+		opText		: 'Texto',
+		opValue		: 'Valor',
+		btnAdd		: 'Engadir',
+		btnModify	: 'Modificar',
+		btnUp		: 'Subir',
+		btnDown		: 'Baixar',
+		btnSetValue : 'Definir como valor por defecto',
+		btnDelete	: 'Borrar'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Propriedades da Área de Texto',
+		cols		: 'Columnas',
+		rows		: 'Filas'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Propriedades do Campo de Texto',
+		name		: 'Nome',
+		value		: 'Valor',
+		charWidth	: 'Tamaño do Caracter',
+		maxChars	: 'Máximo de Caracteres',
+		type		: 'Tipo',
+		typeText	: 'Texto',
+		typePass	: 'Chave'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Propriedades do Campo Oculto',
+		name	: 'Nome',
+		value	: 'Valor'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Propriedades da Imaxe',
+		titleButton	: 'Propriedades do Botón de Imaxe',
+		menu		: 'Propriedades da Imaxe',
+		infoTab	: 'Información da Imaxe',
+		btnUpload	: 'Enviar ó Servidor',
+		url		: 'URL',
+		upload	: 'Carregar',
+		alt		: 'Texto Alternativo',
+		width		: 'Largura',
+		height	: 'Altura',
+		lockRatio	: 'Proporcional',
+		resetSize	: 'Tamaño Orixinal',
+		border	: 'Límite',
+		hSpace	: 'Esp. Horiz.',
+		vSpace	: 'Esp. Vert.',
+		align		: 'Aliñamento',
+		alignLeft	: 'Esquerda',
+		alignAbsBottom: 'Abs Inferior',
+		alignAbsMiddle: 'Abs Centro',
+		alignBaseline	: 'Liña Base',
+		alignBottom	: 'Pé',
+		alignMiddle	: 'Centro',
+		alignRight	: 'Dereita',
+		alignTextTop	: 'Tope do Texto',
+		alignTop	: 'Tope',
+		preview	: 'Vista Previa',
+		alertUrl	: 'Por favor, escriba a URL da imaxe',
+		linkTab	: 'Ligazón',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Propriedades Flash',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Propriedades Flash',
+		chkPlay		: 'Auto Execución',
+		chkLoop		: 'Bucle',
+		chkMenu		: 'Activar Menú Flash',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Escalar',
+		scaleAll		: 'Amosar Todo',
+		scaleNoBorder	: 'Sen Borde',
+		scaleFit		: 'Encaixar axustando',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Aliñamento',
+		alignLeft	: 'Esquerda',
+		alignAbsBottom: 'Abs Inferior',
+		alignAbsMiddle: 'Abs Centro',
+		alignBaseline	: 'Liña Base',
+		alignBottom	: 'Pé',
+		alignMiddle	: 'Centro',
+		alignRight	: 'Dereita',
+		alignTextTop	: 'Tope do Texto',
+		alignTop	: 'Tope',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Cor do Fondo',
+		width	: 'Largura',
+		height	: 'Altura',
+		hSpace	: 'Esp. Horiz.',
+		vSpace	: 'Esp. Vert.',
+		validateSrc : 'Por favor, escriba a ligazón URL',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Corrección Ortográfica',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Non está no diccionario',
+		changeTo		: 'Cambiar a',
+		btnIgnore		: 'Ignorar',
+		btnIgnoreAll	: 'Ignorar Todas',
+		btnReplace		: 'Substituir',
+		btnReplaceAll	: 'Substituir Todas',
+		btnUndo			: 'Desfacer',
+		noSuggestions	: '- Sen candidatos -',
+		progress		: 'Corrección ortográfica en progreso...',
+		noMispell		: 'Corrección ortográfica rematada: Non se atoparon erros',
+		noChanges		: 'Corrección ortográfica rematada: Non se substituiu nengunha verba',
+		oneChange		: 'Corrección ortográfica rematada: Unha verba substituida',
+		manyChanges		: 'Corrección ortográfica rematada: %1 verbas substituidas',
+		ieSpellDownload	: 'O corrector ortográfico non está instalado. ¿Quere descargalo agora?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Smiley',
+		title	: 'Inserte un Smiley'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Lista Numerada',
+	bulletedlist : 'Marcas',
+	indent : 'Aumentar Sangría',
+	outdent : 'Disminuir Sangría',
+
+	justify :
+	{
+		left : 'Aliñar á Esquerda',
+		center : 'Centrado',
+		right : 'Aliñar á Dereita',
+		block : 'Xustificado'
+	},
+
+	blockquote : 'Blockquote', // MISSING
+
+	clipboard :
+	{
+		title		: 'Pegar',
+		cutError	: 'Os axustes de seguridade do seu navegador non permiten que o editor realice automáticamente as tarefas de corte. Por favor, use o teclado para iso (Ctrl+X).',
+		copyError	: 'Os axustes de seguridade do seu navegador non permiten que o editor realice automáticamente as tarefas de copia. Por favor, use o teclado para iso (Ctrl+C).',
+		pasteMsg	: 'Por favor, pegue dentro do seguinte cadro usando o teclado (<STRONG>Ctrl+V</STRONG>) e pulse <STRONG>OK</STRONG>.',
+		securityMsg	: 'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.' // MISSING
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Pegar dende Word',
+		title : 'Pegar dende Word',
+		advice : 'Por favor, pegue dentro do seguinte cadro usando o teclado (<STRONG>Ctrl+V</STRONG>) e pulse <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Ignorar as definicións de Tipografía',
+		removeStyle : 'Eliminar as definicións de Estilos'
+	},
+
+	pasteText :
+	{
+		button : 'Pegar como texto plano',
+		title : 'Pegar como texto plano'
+	},
+
+	templates :
+	{
+		button : 'Plantillas',
+		title : 'Plantillas de Contido',
+		insertOption: 'Replace actual contents', // MISSING
+		selectPromptMsg: 'Por favor, seleccione a plantilla a abrir no editor<br>(o contido actual perderase):',
+		emptyListMsg : '(Non hai plantillas definidas)'
+	},
+
+	showBlocks : 'Show Blocks', // MISSING
+
+	stylesCombo :
+	{
+		label : 'Estilo',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Formato',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Formato',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normal',
+		tag_pre : 'Formateado',
+		tag_address : 'Enderezo',
+		tag_h1 : 'Enacabezado 1',
+		tag_h2 : 'Encabezado 2',
+		tag_h3 : 'Encabezado 3',
+		tag_h4 : 'Encabezado 4',
+		tag_h5 : 'Encabezado 5',
+		tag_h6 : 'Encabezado 6',
+		tag_div : 'Paragraph (DIV)'
+	},
+
+	font :
+	{
+		label : 'Tipo',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Tipo',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Tamaño',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Tamaño',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Cor do Texto',
+		bgColorTitle : 'Cor do Fondo',
+		auto : 'Automático',
+		more : 'Máis Cores...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/gu.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/gu.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/gu.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Gujarati language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['gu'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'મૂળ કે પ્રાથમિક દસ્તાવેજ',
+	newPage			: 'નવુ પાનું',
+	save			: 'સેવ',
+	preview			: 'પૂર્વદર્શન',
+	cut				: 'કાપવું',
+	copy			: 'નકલ',
+	paste			: 'પેસ્ટ',
+	print			: 'પ્રિન્ટ',
+	underline		: 'અન્ડર્લાઇન, નીચે લીટી',
+	bold			: 'બોલ્ડ/સ્પષ્ટ',
+	italic			: 'ઇટેલિક, ત્રાંસા',
+	selectAll		: 'બઘું પસંદ કરવું',
+	removeFormat	: 'ફૉર્મટ કાઢવું',
+	strike			: 'છેકી નાખવું',
+	subscript		: 'એક ચિહ્નની નીચે કરેલું બીજું ચિહ્ન',
+	superscript		: 'એક ચિહ્ન ઉપર કરેલું બીજું ચિહ્ન.',
+	horizontalrule	: 'સમસ્તરીય રેખા ઇન્સર્ટ/દાખલ કરવી',
+	pagebreak		: 'ઇન્સર્ટ પેજબ્રેક/પાનાને અલગ કરવું/દાખલ કરવું',
+	unlink			: 'લિંક કાઢવી',
+	undo			: 'રદ કરવું; પહેલાં હતી એવી સ્થિતિ પાછી લાવવી',
+	redo			: 'રિડૂ; પછી હતી એવી સ્થિતિ પાછી લાવવી',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'સર્વર બ્રાઉઝ કરો',
+		url				: 'URL',
+		protocol		: 'પ્રોટોકૉલ',
+		upload			: 'અપલોડ',
+		uploadSubmit	: 'આ સર્વરને મોકલવું',
+		image			: 'ચિત્ર',
+		flash			: 'ફ્લૅશ',
+		form			: 'ફૉર્મ/પત્રક',
+		checkbox		: 'ચેક બોક્સ',
+		radio		: 'રેડિઓ બટન',
+		textField		: 'ટેક્સ્ટ ફીલ્ડ, શબ્દ ક્ષેત્ર',
+		textarea		: 'ટેક્સ્ટ એરિઆ, શબ્દ વિસ્તાર',
+		hiddenField		: 'ગુપ્ત ક્ષેત્ર',
+		button			: 'બટન',
+		select	: 'પસંદગી ક્ષેત્ર',
+		imageButton		: 'ચિત્ર બટન',
+		notSet			: '<સેટ નથી>',
+		id				: 'Id',
+		name			: 'નામ',
+		langDir			: 'ભાષા લેખવાની પદ્ધતિ',
+		langDirLtr		: 'ડાબે થી જમણે (LTR)',
+		langDirRtl		: 'જમણે થી ડાબે (RTL)',
+		langCode		: 'ભાષા કોડ',
+		longDescr		: 'વધારે માહિતી માટે URL',
+		cssClass		: 'સ્ટાઇલ-શીટ ક્લાસ',
+		advisoryTitle	: 'મુખ્ય મથાળું',
+		cssStyle		: 'સ્ટાઇલ',
+		ok				: 'ઠીક છે',
+		cancel			: 'રદ કરવું',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'અડ્વાન્સડ',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'વિશિષ્ટ અક્ષર ઇન્સર્ટ/દાખલ કરવું',
+		title		: 'સ્પેશિઅલ વિશિષ્ટ અક્ષર પસંદ કરો'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'લિંક ઇન્સર્ટ/દાખલ કરવી',
+		menu		: ' લિંક એડિટ/માં ફેરફાર કરવો',
+		title		: 'લિંક',
+		info		: 'લિંક ઇન્ફૉ ટૅબ',
+		target		: 'ટાર્ગેટ/લક્ષ્ય',
+		upload		: 'અપલોડ',
+		advanced	: 'અડ્વાન્સડ',
+		type		: 'લિંક પ્રકાર',
+		toAnchor	: 'આ પેજનો ઍંકર',
+		toEmail		: 'ઈ-મેલ',
+		target		: 'ટાર્ગેટ/લક્ષ્ય',
+		targetNotSet	: '<સેટ નથી>',
+		targetFrame	: '<ફ્રેમ>',
+		targetPopup	: '<પૉપ-અપ વિન્ડો>',
+		targetNew	: 'નવી  વિન્ડો (_blank)',
+		targetTop	: 'ઉપરની વિન્ડો (_top)',
+		targetSelf	: 'આજ વિન્ડો (_self)',
+		targetParent	: 'મૂળ વિન્ડો (_parent)',
+		targetFrameName	: 'ટાર્ગેટ ફ્રેમ નું નામ',
+		targetPopupName	: 'પૉપ-અપ વિન્ડો નું નામ',
+		popupFeatures	: 'પૉપ-અપ વિન્ડો ફીચરસૅ',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'સ્ટૅટસ બાર',
+		popupLocationBar	: 'લોકેશન બાર',
+		popupToolbar	: 'ટૂલ બાર',
+		popupMenuBar	: 'મેન્યૂ બાર',
+		popupFullScreen	: 'ફુલ સ્ક્રીન (IE)',
+		popupScrollBars	: 'સ્ક્રોલ બાર',
+		popupDependent	: 'ડિપેન્ડન્ટ (Netscape)',
+		popupWidth		: 'પહોળાઈ',
+		popupLeft		: 'ડાબી બાજુ',
+		popupHeight		: 'ઊંચાઈ',
+		popupTop		: 'જમણી બાજુ',
+		id				: 'Id', // MISSING
+		langDir			: 'ભાષા લેખવાની પદ્ધતિ',
+		langDirNotSet	: '<સેટ નથી>',
+		langDirLTR		: 'ડાબે થી જમણે (LTR)',
+		langDirRTL		: 'જમણે થી ડાબે (RTL)',
+		acccessKey		: 'ઍક્સેસ કી',
+		name			: 'નામ',
+		langCode		: 'ભાષા લેખવાની પદ્ધતિ',
+		tabIndex		: 'ટૅબ ઇન્ડેક્સ',
+		advisoryTitle	: 'મુખ્ય મથાળું',
+		advisoryContentType	: 'મુખ્ય કન્ટેન્ટ પ્રકાર',
+		cssClasses		: 'સ્ટાઇલ-શીટ ક્લાસ',
+		charset			: 'લિંક રિસૉર્સ કૅરિક્ટર સેટ',
+		styles			: 'સ્ટાઇલ',
+		selectAnchor	: 'ઍંકર પસંદ કરો',
+		anchorName		: 'ઍંકર નામથી પસંદ કરો',
+		anchorId		: 'ઍંકર એલિમન્ટ Id થી પસંદ કરો',
+		emailAddress	: 'ઈ-મેલ સરનામું',
+		emailSubject	: 'ઈ-મેલ વિષય',
+		emailBody		: 'સંદેશ',
+		noAnchors		: '(ડૉક્યુમન્ટમાં ઍંકરની સંખ્યા)',
+		noUrl			: 'લિંક  URL ટાઇપ કરો',
+		noEmail			: 'ઈ-મેલ સરનામું ટાઇપ કરો'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'ઍંકર ઇન્સર્ટ/દાખલ કરવી',
+		menu		: 'ઍંકરના ગુણ',
+		title		: 'ઍંકરના ગુણ',
+		name		: 'ઍંકરનું નામ',
+		errorName	: 'ઍંકરનું નામ ટાઈપ કરો'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'શોધવું અને બદલવું',
+		find				: 'શોધવું',
+		replace				: 'રિપ્લેસ/બદલવું',
+		findWhat			: 'આ શોધો',
+		replaceWith			: 'આનાથી બદલો',
+		notFoundMsg			: 'તમે શોધેલી ટેક્સ્ટ નથી મળી',
+		matchCase			: 'કેસ સરખા રાખો',
+		matchWord			: 'બઘા શબ્દ સરખા રાખો',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'બઘા બદલી ',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'ટેબલ, કોઠો',
+		title		: 'ટેબલ, કોઠાનું મથાળું',
+		menu		: 'ટેબલ, કોઠાનું મથાળું',
+		deleteTable	: 'કોઠો ડિલીટ/કાઢી નાખવું',
+		rows		: 'પંક્તિના ખાના',
+		columns		: 'કૉલમ/ઊભી કટાર',
+		border		: 'કોઠાની બાજુ(બોર્ડર) સાઇઝ',
+		align		: 'અલાઇનમન્ટ/ગોઠવાયેલું ',
+		alignNotSet	: '<સેટ નથી>',
+		alignLeft	: 'ડાબી બાજુ',
+		alignCenter	: 'મધ્ય સેન્ટર',
+		alignRight	: 'જમણી બાજુ',
+		width		: 'પહોળાઈ',
+		widthPx		: 'પિકસલ',
+		widthPc		: 'પ્રતિશત',
+		height		: 'ઊંચાઈ',
+		cellSpace	: 'સેલ અંતર',
+		cellPad		: 'સેલ પૅડિંગ',
+		caption		: 'મથાળું/કૅપ્શન ',
+		summary		: 'ટૂંકો એહેવાલ',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'કોષના ખાના',
+			insertBefore	: 'પહેલાં કોષ ઉમેરવો',
+			insertAfter		: 'પછી કોષ ઉમેરવો',
+			deleteCell		: 'કોષ ડિલીટ/કાઢી નાખવો',
+			merge			: 'કોષ ભેગા કરવા',
+			mergeRight		: 'જમણી બાજુ ભેગા કરવા',
+			mergeDown		: 'નીચે ભેગા કરવા',
+			splitHorizontal	: 'કોષને સમસ્તરીય વિભાજન કરવું',
+			splitVertical	: 'કોષને સીધું ને ઊભું વિભાજન કરવું',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'પંક્તિના ખાના',
+			insertBefore	: 'પહેલાં પંક્તિ ઉમેરવી',
+			insertAfter		: 'પછી પંક્તિ ઉમેરવી',
+			deleteRow		: 'પંક્તિઓ ડિલીટ/કાઢી નાખવી'
+		},
+
+		column :
+		{
+			menu			: 'કૉલમ/ઊભી કટાર',
+			insertBefore	: 'પહેલાં કૉલમ/ઊભી કટાર ઉમેરવી',
+			insertAfter		: 'પછી કૉલમ/ઊભી કટાર ઉમેરવી',
+			deleteColumn	: 'કૉલમ/ઊભી કટાર ડિલીટ/કાઢી નાખવી'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'બટનના ગુણ',
+		text		: 'ટેક્સ્ટ (વૅલ્યૂ)',
+		type		: 'પ્રકાર',
+		typeBtn		: 'બટન',
+		typeSbm		: 'સબ્મિટ',
+		typeRst		: 'રિસેટ'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'ચેક બોક્સ ગુણ',
+		radioTitle	: 'રેડિઓ બટનના ગુણ',
+		value		: 'વૅલ્યૂ',
+		selected	: 'સિલેક્ટેડ'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'ફૉર્મ/પત્રકના ગુણ',
+		menu		: 'ફૉર્મ/પત્રકના ગુણ',
+		action		: 'ક્રિયા',
+		method		: 'પદ્ધતિ',
+		encoding	: 'Encoding', // MISSING
+		target		: 'ટાર્ગેટ/લક્ષ્ય',
+		targetNotSet	: '<સેટ નથી>',
+		targetNew	: 'નવી  વિન્ડો (_blank)',
+		targetTop	: 'ઉપરની વિન્ડો (_top)',
+		targetSelf	: 'આજ વિન્ડો (_self)',
+		targetParent	: 'મૂળ વિન્ડો (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'પસંદગી ક્ષેત્રના ગુણ',
+		selectInfo	: 'સૂચના',
+		opAvail		: 'ઉપલબ્ધ વિકલ્પ',
+		value		: 'વૅલ્યૂ',
+		size		: 'સાઇઝ',
+		lines		: 'લીટીઓ',
+		chkMulti	: 'એકથી વધારે પસંદ કરી શકો',
+		opText		: 'ટેક્સ્ટ',
+		opValue		: 'વૅલ્યૂ',
+		btnAdd		: 'ઉમેરવું',
+		btnModify	: 'બદલવું',
+		btnUp		: 'ઉપર',
+		btnDown		: 'નીચે',
+		btnSetValue : 'પસંદ કરલી વૅલ્યૂ સેટ કરો',
+		btnDelete	: 'રદ કરવું'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'ટેક્સ્ટ એઅરિઆ, શબ્દ વિસ્તારના ગુણ',
+		cols		: 'કૉલમ/ઊભી કટાર',
+		rows		: 'પંક્તિઓ'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'ટેક્સ્ટ ફીલ્ડ, શબ્દ ક્ષેત્રના ગુણ',
+		name		: 'નામ',
+		value		: 'વૅલ્યૂ',
+		charWidth	: 'કેરેક્ટરની પહોળાઈ',
+		maxChars	: 'અધિકતમ કેરેક્ટર',
+		type		: 'ટાઇપ',
+		typeText	: 'ટેક્સ્ટ',
+		typePass	: 'પાસવર્ડ'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'ગુપ્ત ક્ષેત્રના ગુણ',
+		name	: 'નામ',
+		value	: 'વૅલ્યૂ'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'ચિત્રના ગુણ',
+		titleButton	: 'ચિત્ર બટનના ગુણ',
+		menu		: 'ચિત્રના ગુણ',
+		infoTab	: 'ચિત્ર ની જાણકારી',
+		btnUpload	: 'આ સર્વરને મોકલવું',
+		url		: 'URL',
+		upload	: 'અપલોડ',
+		alt		: 'ઑલ્ટર્નટ ટેક્સ્ટ',
+		width		: 'પહોળાઈ',
+		height	: 'ઊંચાઈ',
+		lockRatio	: 'લૉક ગુણોત્તર',
+		resetSize	: 'રીસેટ સાઇઝ',
+		border	: 'બોર્ડર',
+		hSpace	: 'સમસ્તરીય જગ્યા',
+		vSpace	: 'લંબરૂપ જગ્યા',
+		align		: 'લાઇનદોરીમાં ગોઠવવું',
+		alignLeft	: 'ડાબી બાજુ ગોઠવવું',
+		alignAbsBottom: 'Abs નીચે',
+		alignAbsMiddle: 'Abs ઉપર',
+		alignBaseline	: 'આધાર લીટી',
+		alignBottom	: 'નીચે',
+		alignMiddle	: 'વચ્ચે',
+		alignRight	: 'જમણી',
+		alignTextTop	: 'ટેક્સ્ટ ઉપર',
+		alignTop	: 'ઉપર',
+		preview	: 'પૂર્વદર્શન',
+		alertUrl	: 'ચિત્રની URL ટાઇપ કરો',
+		linkTab	: 'લિંક',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'ફ્લૅશના ગુણ',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'ફ્લૅશ ગુણ',
+		chkPlay		: 'ઑટો/સ્વયં પ્લે',
+		chkLoop		: 'લૂપ',
+		chkMenu		: 'ફ્લૅશ મેન્યૂ નો પ્રયોગ કરો',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'સ્કેલ',
+		scaleAll		: 'સ્કેલ ઓલ/બધુ બતાવો',
+		scaleNoBorder	: 'સ્કેલ બોર્ડર વગર',
+		scaleFit		: 'સ્કેલ એકદમ ફીટ',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'લાઇનદોરીમાં ગોઠવવું',
+		alignLeft	: 'ડાબી બાજુ ગોઠવવું',
+		alignAbsBottom: 'Abs નીચે',
+		alignAbsMiddle: 'Abs ઉપર',
+		alignBaseline	: 'આધાર લીટી',
+		alignBottom	: 'નીચે',
+		alignMiddle	: 'વચ્ચે',
+		alignRight	: 'જમણી',
+		alignTextTop	: 'ટેક્સ્ટ ઉપર',
+		alignTop	: 'ઉપર',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'બૅકગ્રાઉન્ડ રંગ,',
+		width	: 'પહોળાઈ',
+		height	: 'ઊંચાઈ',
+		hSpace	: 'સમસ્તરીય જગ્યા',
+		vSpace	: 'લંબરૂપ જગ્યા',
+		validateSrc : 'લિંક  URL ટાઇપ કરો',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'જોડણી (સ્પેલિંગ) તપાસવી',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'શબ્દકોશમાં નથી',
+		changeTo		: 'આનાથી બદલવું',
+		btnIgnore		: 'ઇગ્નોર/અવગણના કરવી',
+		btnIgnoreAll	: 'બધાની ઇગ્નોર/અવગણના કરવી',
+		btnReplace		: 'બદલવું',
+		btnReplaceAll	: 'બધા બદલી કરો',
+		btnUndo			: 'અન્ડૂ',
+		noSuggestions	: '- કઇ સજેશન નથી -',
+		progress		: 'શબ્દની જોડણી/સ્પેલ ચેક ચાલુ છે...',
+		noMispell		: 'શબ્દની જોડણી/સ્પેલ ચેક પૂર્ણ: ખોટી જોડણી મળી નથી',
+		noChanges		: 'શબ્દની જોડણી/સ્પેલ ચેક પૂર્ણ: એકપણ શબ્દ બદલયો નથી',
+		oneChange		: 'શબ્દની જોડણી/સ્પેલ ચેક પૂર્ણ: એક શબ્દ બદલયો છે',
+		manyChanges		: 'શબ્દની જોડણી/સ્પેલ ચેક પૂર્ણ: %1 શબ્દ બદલયા છે',
+		ieSpellDownload	: 'સ્પેલ-ચેકર ઇન્સ્ટોલ નથી. શું તમે ડાઉનલોડ કરવા માંગો છો?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'સ્માઇલી',
+		title	: 'સ્માઇલી  પસંદ કરો'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'સંખ્યાંકન સૂચિ',
+	bulletedlist : 'બુલેટ સૂચિ',
+	indent : 'ઇન્ડેન્ટ, લીટીના આરંભમાં જગ્યા વધારવી',
+	outdent : 'ઇન્ડેન્ટ લીટીના આરંભમાં જગ્યા ઘટાડવી',
+
+	justify :
+	{
+		left : 'ડાબી બાજુએ/બાજુ તરફ',
+		center : 'સંકેંદ્રણ/સેંટરિંગ',
+		right : 'જમણી બાજુએ/બાજુ તરફ',
+		block : 'બ્લૉક, અંતરાય જસ્ટિફાઇ'
+	},
+
+	blockquote : 'બ્લૉક-કોટ, અવતરણચિહ્નો',
+
+	clipboard :
+	{
+		title		: 'પેસ્ટ',
+		cutError	: 'તમારા બ્રાઉઝર ની સુરક્ષિત સેટિંગસ કટ કરવાની પરવાનગી નથી આપતી. (Ctrl+X) નો ઉપયોગ કરો.',
+		copyError	: 'તમારા બ્રાઉઝર ની સુરક્ષિત સેટિંગસ કોપી કરવાની પરવાનગી નથી આપતી.  (Ctrl+C) का प्रयोग करें।',
+		pasteMsg	: 'Ctrl+V નો પ્રયોગ કરી પેસ્ટ કરો',
+		securityMsg	: 'તમારા બ્રાઉઝર ની સુરક્ષિત સેટિંગસના કારણે,એડિટર તમારા કિલ્પબોર્ડ ડેટા ને કોપી નથી કરી શકતો. તમારે આ વિન્ડોમાં ફરીથી પેસ્ટ કરવું પડશે.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'પેસ્ટ (વડૅ ટેક્સ્ટ)',
+		title : 'પેસ્ટ (વડૅ ટેક્સ્ટ)',
+		advice : 'Ctrl+V નો પ્રયોગ કરી પેસ્ટ કરો',
+		ignoreFontFace : 'ફૉન્ટફેસ વ્યાખ્યાની અવગણના',
+		removeStyle : 'સ્ટાઇલ વ્યાખ્યા કાઢી નાખવી'
+	},
+
+	pasteText :
+	{
+		button : 'પેસ્ટ (ટેક્સ્ટ)',
+		title : 'પેસ્ટ (ટેક્સ્ટ)'
+	},
+
+	templates :
+	{
+		button : 'ટેમ્પ્લેટ',
+		title : 'કન્ટેન્ટ ટેમ્પ્લેટ',
+		insertOption: 'મૂળ શબ્દને બદલો',
+		selectPromptMsg: 'એડિટરમાં ઓપન કરવા ટેમ્પ્લેટ પસંદ કરો (વર્તમાન કન્ટેન્ટ સેવ નહીં થાય):',
+		emptyListMsg : '(કોઈ ટેમ્પ્લેટ ડિફાઇન નથી)'
+	},
+
+	showBlocks : 'બ્લૉક બતાવવું',
+
+	stylesCombo :
+	{
+		label : 'શૈલી/રીત',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'ફૉન્ટ ફૉર્મટ, રચનાની શૈલી',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'ફૉન્ટ ફૉર્મટ, રચનાની શૈલી',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'સામાન્ય',
+		tag_pre : 'ફૉર્મટેડ',
+		tag_address : 'સરનામું',
+		tag_h1 : 'શીર્ષક 1',
+		tag_h2 : 'શીર્ષક 2',
+		tag_h3 : 'શીર્ષક 3',
+		tag_h4 : 'શીર્ષક 4',
+		tag_h5 : 'શીર્ષક 5',
+		tag_h6 : 'શીર્ષક 6',
+		tag_div : 'શીર્ષક (DIV)'
+	},
+
+	font :
+	{
+		label : 'ફૉન્ટ',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'ફૉન્ટ',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'ફૉન્ટ સાઇઝ/કદ',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'ફૉન્ટ સાઇઝ/કદ',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'શબ્દનો રંગ',
+		bgColorTitle : 'બૅકગ્રાઉન્ડ રંગ,',
+		auto : 'સ્વચાલિત',
+		more : 'ઔર રંગ...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/he.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/he.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/he.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Hebrew language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['he'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'rtl',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'מקור',
+	newPage			: 'דף חדש',
+	save			: 'שמירה',
+	preview			: 'תצוגה מקדימה',
+	cut				: 'גזירה',
+	copy			: 'העתקה',
+	paste			: 'הדבקה',
+	print			: 'הדפסה',
+	underline		: 'קו תחתון',
+	bold			: 'מודגש',
+	italic			: 'נטוי',
+	selectAll		: 'בחירת הכל',
+	removeFormat	: 'הסרת העיצוב',
+	strike			: 'כתיב מחוק',
+	subscript		: 'כתיב תחתון',
+	superscript		: 'כתיב עליון',
+	horizontalrule	: 'הוספת קו אופקי',
+	pagebreak		: 'הוסף שבירת דף',
+	unlink			: 'הסרת הקישור',
+	undo			: 'ביטול צעד אחרון',
+	redo			: 'חזרה על צעד אחרון',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'סייר השרת',
+		url				: 'כתובת (URL)',
+		protocol		: 'פרוטוקול',
+		upload			: 'העלאה',
+		uploadSubmit	: 'שליחה לשרת',
+		image			: 'תמונה',
+		flash			: 'פלאש',
+		form			: 'טופס',
+		checkbox		: 'תיבת סימון',
+		radio		: 'לחצן אפשרויות',
+		textField		: 'שדה טקסט',
+		textarea		: 'איזור טקסט',
+		hiddenField		: 'שדה חבוי',
+		button			: 'כפתור',
+		select	: 'שדה בחירה',
+		imageButton		: 'כפתור תמונה',
+		notSet			: '<לא נקבע>',
+		id				: 'זיהוי (Id)',
+		name			: 'שם',
+		langDir			: 'כיוון שפה',
+		langDirLtr		: 'שמאל לימין (LTR)',
+		langDirRtl		: 'ימין לשמאל (RTL)',
+		langCode		: 'קוד שפה',
+		longDescr		: 'קישור לתיאור מפורט',
+		cssClass		: 'גיליונות עיצוב קבוצות',
+		advisoryTitle	: 'כותרת מוצעת',
+		cssStyle		: 'סגנון',
+		ok				: 'אישור',
+		cancel			: 'ביטול',
+		generalTab		: 'כללי',
+		advancedTab		: 'אפשרויות מתקדמות',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'הוספת תו מיוחד',
+		title		: 'בחירת תו מיוחד'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'הוספת/עריכת קישור',
+		menu		: 'עריכת קישור',
+		title		: 'קישור',
+		info		: 'מידע על הקישור',
+		target		: 'מטרה',
+		upload		: 'העלאה',
+		advanced	: 'אפשרויות מתקדמות',
+		type		: 'סוג קישור',
+		toAnchor	: 'עוגן בעמוד זה',
+		toEmail		: 'דוא\'\'ל',
+		target		: 'מטרה',
+		targetNotSet	: '<לא נקבע>',
+		targetFrame	: '<מסגרת>',
+		targetPopup	: '<חלון קופץ>',
+		targetNew	: 'חלון חדש (_blank)',
+		targetTop	: 'חלון ראשי (_top)',
+		targetSelf	: 'באותו החלון (_self)',
+		targetParent	: 'חלון האב (_parent)',
+		targetFrameName	: 'שם מסגרת היעד',
+		targetPopupName	: 'שם החלון הקופץ',
+		popupFeatures	: 'תכונות החלון הקופץ',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'סרגל חיווי',
+		popupLocationBar	: 'סרגל כתובת',
+		popupToolbar	: 'סרגל הכלים',
+		popupMenuBar	: 'סרגל תפריט',
+		popupFullScreen	: 'מסך מלא (IE)',
+		popupScrollBars	: 'ניתן לגלילה',
+		popupDependent	: 'תלוי (Netscape)',
+		popupWidth		: 'רוחב',
+		popupLeft		: 'מיקום צד שמאל',
+		popupHeight		: 'גובה',
+		popupTop		: 'מיקום צד עליון',
+		id				: 'Id', // MISSING
+		langDir			: 'כיוון שפה',
+		langDirNotSet	: '<לא נקבע>',
+		langDirLTR		: 'שמאל לימין (LTR)',
+		langDirRTL		: 'ימין לשמאל (RTL)',
+		acccessKey		: 'מקש גישה',
+		name			: 'שם',
+		langCode		: 'כיוון שפה',
+		tabIndex		: 'מספר טאב',
+		advisoryTitle	: 'כותרת מוצעת',
+		advisoryContentType	: 'Content Type מוצע',
+		cssClasses		: 'גיליונות עיצוב קבוצות',
+		charset			: 'קידוד המשאב המקושר',
+		styles			: 'סגנון',
+		selectAnchor	: 'בחירת עוגן',
+		anchorName		: 'עפ\'\'י שם העוגן',
+		anchorId		: 'עפ\'\'י זיהוי (Id) הרכיב',
+		emailAddress	: 'כתובת הדוא\'\'ל',
+		emailSubject	: 'נושא ההודעה',
+		emailBody		: 'גוף ההודעה',
+		noAnchors		: '(אין עוגנים זמינים בדף)',
+		noUrl			: 'נא להקליד את כתובת הקישור (URL)',
+		noEmail			: 'נא להקליד את כתובת הדוא\'\'ל'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'הוספת/עריכת נקודת עיגון',
+		menu		: 'מאפייני נקודת עיגון',
+		title		: 'מאפייני נקודת עיגון',
+		name		: 'שם לנקודת עיגון',
+		errorName	: 'אנא הזן שם לנקודת עיגון'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'חפש והחלף',
+		find				: 'חיפוש',
+		replace				: 'החלפה',
+		findWhat			: 'חיפוש מחרוזת:',
+		replaceWith			: 'החלפה במחרוזת:',
+		notFoundMsg			: 'הטקסט המבוקש לא נמצא.',
+		matchCase			: 'התאמת סוג אותיות (Case)',
+		matchWord			: 'התאמה למילה המלאה',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'החלפה בכל העמוד',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'טבלה',
+		title		: 'תכונות טבלה',
+		menu		: 'תכונות טבלה',
+		deleteTable	: 'מחק טבלה',
+		rows		: 'שורות',
+		columns		: 'עמודות',
+		border		: 'גודל מסגרת',
+		align		: 'יישור',
+		alignNotSet	: '<לא נקבע>',
+		alignLeft	: 'שמאל',
+		alignCenter	: 'מרכז',
+		alignRight	: 'ימין',
+		width		: 'רוחב',
+		widthPx		: 'פיקסלים',
+		widthPc		: 'אחוז',
+		height		: 'גובה',
+		cellSpace	: 'מרווח תא',
+		cellPad		: 'ריפוד תא',
+		caption		: 'כיתוב',
+		summary		: 'סיכום',
+		headers		: 'כותרות',
+		headersNone		: 'אין',
+		headersColumn	: 'עמודה ראשונה',
+		headersRow		: 'שורה ראשונה',
+		headersBoth		: 'שניהם',
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'תא',
+			insertBefore	: 'הוסף תא אחרי',
+			insertAfter		: 'הוסף תא אחרי',
+			deleteCell		: 'מחיקת תאים',
+			merge			: 'מיזוג תאים',
+			mergeRight		: 'מזג ימינה',
+			mergeDown		: 'מזג למטה',
+			splitHorizontal	: 'פצל תא אופקית',
+			splitVertical	: 'פצל תא אנכית',
+			title			: 'תכונות התא',
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'שורה',
+			insertBefore	: 'הוסף שורה לפני',
+			insertAfter		: 'הוסף שורה אחרי',
+			deleteRow		: 'מחיקת שורות'
+		},
+
+		column :
+		{
+			menu			: 'עמודה',
+			insertBefore	: 'הוסף עמודה לפני',
+			insertAfter		: 'הוסף עמודה אחרי',
+			deleteColumn	: 'מחיקת עמודות'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'מאפייני כפתור',
+		text		: 'טקסט (ערך)',
+		type		: 'סוג',
+		typeBtn		: 'כפתור',
+		typeSbm		: 'שלח',
+		typeRst		: 'אפס'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'מאפייני תיבת סימון',
+		radioTitle	: 'מאפייני לחצן אפשרויות',
+		value		: 'ערך',
+		selected	: 'בחור'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'מאפיני טופס',
+		menu		: 'מאפיני טופס',
+		action		: 'שלח אל',
+		method		: 'סוג שליחה',
+		encoding	: 'Encoding', // MISSING
+		target		: 'מטרה',
+		targetNotSet	: '<לא נקבע>',
+		targetNew	: 'חלון חדש (_blank)',
+		targetTop	: 'חלון ראשי (_top)',
+		targetSelf	: 'באותו החלון (_self)',
+		targetParent	: 'חלון האב (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'מאפייני שדה בחירה',
+		selectInfo	: 'מידע',
+		opAvail		: 'אפשרויות זמינות',
+		value		: 'ערך',
+		size		: 'גודל',
+		lines		: 'שורות',
+		chkMulti	: 'אפשר בחירות מרובות',
+		opText		: 'טקסט',
+		opValue		: 'ערך',
+		btnAdd		: 'הוסף',
+		btnModify	: 'שנה',
+		btnUp		: 'למעלה',
+		btnDown		: 'למטה',
+		btnSetValue : 'קבע כברירת מחדל',
+		btnDelete	: 'מחק'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'מאפיני איזור טקסט',
+		cols		: 'עמודות',
+		rows		: 'שורות'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'מאפייני שדה טקסט',
+		name		: 'שם',
+		value		: 'ערך',
+		charWidth	: 'רוחב באותיות',
+		maxChars	: 'מקסימות אותיות',
+		type		: 'סוג',
+		typeText	: 'טקסט',
+		typePass	: 'סיסמה'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'מאפיני שדה חבוי',
+		name	: 'שם',
+		value	: 'ערך'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'תכונות התמונה',
+		titleButton	: 'מאפיני כפתור תמונה',
+		menu		: 'תכונות התמונה',
+		infoTab	: 'מידע על התמונה',
+		btnUpload	: 'שליחה לשרת',
+		url		: 'כתובת (URL)',
+		upload	: 'העלאה',
+		alt		: 'טקסט חלופי',
+		width		: 'רוחב',
+		height	: 'גובה',
+		lockRatio	: 'נעילת היחס',
+		resetSize	: 'איפוס הגודל',
+		border	: 'מסגרת',
+		hSpace	: 'מרווח אופקי',
+		vSpace	: 'מרווח אנכי',
+		align		: 'יישור',
+		alignLeft	: 'לשמאל',
+		alignAbsBottom: 'לתחתית האבסולוטית',
+		alignAbsMiddle: 'מרכוז אבסולוטי',
+		alignBaseline	: 'לקו התחתית',
+		alignBottom	: 'לתחתית',
+		alignMiddle	: 'לאמצע',
+		alignRight	: 'לימין',
+		alignTextTop	: 'לראש הטקסט',
+		alignTop	: 'למעלה',
+		preview	: 'תצוגה מקדימה',
+		alertUrl	: 'נא להקליד את כתובת התמונה',
+		linkTab	: 'קישור',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'מאפייני פלאש',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'מאפיני פלאש',
+		chkPlay		: 'נגן אוטומטי',
+		chkLoop		: 'לולאה',
+		chkMenu		: 'אפשר תפריט פלאש',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'גודל',
+		scaleAll		: 'הצג הכל',
+		scaleNoBorder	: 'ללא גבולות',
+		scaleFit		: 'התאמה מושלמת',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'יישור',
+		alignLeft	: 'לשמאל',
+		alignAbsBottom: 'לתחתית האבסולוטית',
+		alignAbsMiddle: 'מרכוז אבסולוטי',
+		alignBaseline	: 'לקו התחתית',
+		alignBottom	: 'לתחתית',
+		alignMiddle	: 'לאמצע',
+		alignRight	: 'לימין',
+		alignTextTop	: 'לראש הטקסט',
+		alignTop	: 'למעלה',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'צבע רקע',
+		width	: 'רוחב',
+		height	: 'גובה',
+		hSpace	: 'מרווח אופקי',
+		vSpace	: 'מרווח אנכי',
+		validateSrc : 'נא להקליד את כתובת הקישור (URL)',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'בדיקת איות',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'לא נמצא במילון',
+		changeTo		: 'שנה ל',
+		btnIgnore		: 'התעלם',
+		btnIgnoreAll	: 'התעלם מהכל',
+		btnReplace		: 'החלף',
+		btnReplaceAll	: 'החלף הכל',
+		btnUndo			: 'החזר',
+		noSuggestions	: '- אין הצעות -',
+		progress		: 'בדיקות איות בתהליך ....',
+		noMispell		: 'בדיקות איות הסתיימה: לא נמצאו שגיעות כתיב',
+		noChanges		: 'בדיקות איות הסתיימה: לא שונתה אף מילה',
+		oneChange		: 'בדיקות איות הסתיימה: שונתה מילה אחת',
+		manyChanges		: 'בדיקות איות הסתיימה: %1 מילים שונו',
+		ieSpellDownload	: 'בודק האיות לא מותקן, האם אתה מעוניין להוריד?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'סמיילי',
+		title	: 'הוספת סמיילי'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'רשימה ממוספרת',
+	bulletedlist : 'רשימת נקודות',
+	indent : 'הגדלת אינדנטציה',
+	outdent : 'הקטנת אינדנטציה',
+
+	justify :
+	{
+		left : 'יישור לשמאל',
+		center : 'מרכוז',
+		right : 'יישור לימין',
+		block : 'יישור לשוליים'
+	},
+
+	blockquote : 'בלוק ציטוט',
+
+	clipboard :
+	{
+		title		: 'הדבקה',
+		cutError	: 'הגדרות האבטחה בדפדפן שלך לא מאפשרות לעורך לבצע פעולות גזירה  אוטומטיות. יש להשתמש במקלדת לשם כך (Ctrl+X).',
+		copyError	: 'הגדרות האבטחה בדפדפן שלך לא מאפשרות לעורך לבצע פעולות העתקה אוטומטיות. יש להשתמש במקלדת לשם כך (Ctrl+C).',
+		pasteMsg	: 'אנא הדבק בתוך הקופסה באמצעות  (<STRONG>Ctrl+V</STRONG>) ולחץ על  <STRONG>אישור</STRONG>.',
+		securityMsg	: 'עקב הגדרות אבטחה בדפדפן, לא ניתן לגשת אל לוח הגזירים (clipboard) בצורה ישירה.אנא בצע הדבק שוב בחלון זה.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'הדבקה מ-וורד',
+		title : 'הדבקה מ-וורד',
+		advice : 'אנא הדבק בתוך הקופסה באמצעות  (<STRONG>Ctrl+V</STRONG>) ולחץ על  <STRONG>אישור</STRONG>.',
+		ignoreFontFace : 'התעלם מהגדרות סוג פונט',
+		removeStyle : 'הסר הגדרות סגנון'
+	},
+
+	pasteText :
+	{
+		button : 'הדבקה כטקסט פשוט',
+		title : 'הדבקה כטקסט פשוט'
+	},
+
+	templates :
+	{
+		button : 'תבניות',
+		title : 'תביות תוכן',
+		insertOption: 'החלפת תוכן ממשי',
+		selectPromptMsg: 'אנא בחר תבנית לפתיחה בעורך <BR>התוכן המקורי ימחק:',
+		emptyListMsg : '(לא הוגדרו תבניות)'
+	},
+
+	showBlocks : 'הצג בלוקים',
+
+	stylesCombo :
+	{
+		label : 'סגנון',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'עיצוב',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'עיצוב',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'נורמלי',
+		tag_pre : 'קוד',
+		tag_address : 'כתובת',
+		tag_h1 : 'כותרת',
+		tag_h2 : 'כותרת 2',
+		tag_h3 : 'כותרת 3',
+		tag_h4 : 'כותרת 4',
+		tag_h5 : 'כותרת 5',
+		tag_h6 : 'כותרת 6',
+		tag_div : 'Normal (DIV)' // MISSING
+	},
+
+	font :
+	{
+		label : 'גופן',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'גופן',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'גודל',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'גודל',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'צבע טקסט',
+		bgColorTitle : 'צבע רקע',
+		auto : 'אוטומטי',
+		more : 'צבעים נוספים...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/hi.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/hi.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/hi.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Hindi language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['hi'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'सोर्स',
+	newPage			: 'नया पेज',
+	save			: 'सेव',
+	preview			: 'प्रीव्यू',
+	cut				: 'कट',
+	copy			: 'कॉपी',
+	paste			: 'पेस्ट',
+	print			: 'प्रिन्ट',
+	underline		: 'रेखांकण',
+	bold			: 'बोल्ड',
+	italic			: 'इटैलिक',
+	selectAll		: 'सब सॅलॅक्ट करें',
+	removeFormat	: 'फ़ॉर्मैट हटायें',
+	strike			: 'स्ट्राइक थ्रू',
+	subscript		: 'अधोलेख',
+	superscript		: 'अभिलेख',
+	horizontalrule	: 'हॉरिज़ॉन्टल रेखा इन्सर्ट करें',
+	pagebreak		: 'पेज ब्रेक इन्सर्ट् करें',
+	unlink			: 'लिंक हटायें',
+	undo			: 'अन्डू',
+	redo			: 'रीडू',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'सर्वर ब्राउज़ करें',
+		url				: 'URL',
+		protocol		: 'प्रोटोकॉल',
+		upload			: 'अपलोड',
+		uploadSubmit	: 'इसे सर्वर को भेजें',
+		image			: 'तस्वीर',
+		flash			: 'फ़्लैश',
+		form			: 'फ़ॉर्म',
+		checkbox		: 'चॅक बॉक्स',
+		radio		: 'रेडिओ बटन',
+		textField		: 'टेक्स्ट फ़ील्ड',
+		textarea		: 'टेक्स्ट एरिया',
+		hiddenField		: 'गुप्त फ़ील्ड',
+		button			: 'बटन',
+		select	: 'चुनाव फ़ील्ड',
+		imageButton		: 'तस्वीर बटन',
+		notSet			: '<सॅट नहीं>',
+		id				: 'Id',
+		name			: 'नाम',
+		langDir			: 'भाषा लिखने की दिशा',
+		langDirLtr		: 'बायें से दायें (LTR)',
+		langDirRtl		: 'दायें से बायें (RTL)',
+		langCode		: 'भाषा कोड',
+		longDescr		: 'अधिक विवरण के लिए URL',
+		cssClass		: 'स्टाइल-शीट क्लास',
+		advisoryTitle	: 'परामर्श शीर्शक',
+		cssStyle		: 'स्टाइल',
+		ok				: 'ठीक है',
+		cancel			: 'रद्द करें',
+		generalTab		: 'सामान्य',
+		advancedTab		: 'ऍड्वान्स्ड',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'विशेष करॅक्टर इन्सर्ट करें',
+		title		: 'विशेष करॅक्टर चुनें'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'लिंक इन्सर्ट/संपादन',
+		menu		: 'लिंक संपादन',
+		title		: 'लिंक',
+		info		: 'लिंक  ',
+		target		: 'टार्गेट',
+		upload		: 'अपलोड',
+		advanced	: 'ऍड्वान्स्ड',
+		type		: 'लिंक प्रकार',
+		toAnchor	: 'इस पेज का ऐंकर',
+		toEmail		: 'ई-मेल',
+		target		: 'टार्गेट',
+		targetNotSet	: '<सॅट नहीं>',
+		targetFrame	: '<फ़्रेम>',
+		targetPopup	: '<पॉप-अप विन्डो>',
+		targetNew	: 'नया विन्डो (_blank)',
+		targetTop	: 'शीर्ष विन्डो (_top)',
+		targetSelf	: 'इसी विन्डो (_self)',
+		targetParent	: 'मूल विन्डो (_parent)',
+		targetFrameName	: 'टार्गेट फ़्रेम का नाम',
+		targetPopupName	: 'पॉप-अप विन्डो का नाम',
+		popupFeatures	: 'पॉप-अप विन्डो फ़ीचर्स',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'स्टेटस बार',
+		popupLocationBar	: 'लोकेशन बार',
+		popupToolbar	: 'टूल बार',
+		popupMenuBar	: 'मॅन्यू बार',
+		popupFullScreen	: 'फ़ुल स्क्रीन (IE)',
+		popupScrollBars	: 'स्क्रॉल बार',
+		popupDependent	: 'डिपेन्डॅन्ट (Netscape)',
+		popupWidth		: 'चौड़ाई',
+		popupLeft		: 'बायीं तरफ',
+		popupHeight		: 'ऊँचाई',
+		popupTop		: 'दायीं तरफ',
+		id				: 'Id', // MISSING
+		langDir			: 'भाषा लिखने की दिशा',
+		langDirNotSet	: '<सॅट नहीं>',
+		langDirLTR		: 'बायें से दायें (LTR)',
+		langDirRTL		: 'दायें से बायें (RTL)',
+		acccessKey		: 'ऍक्सॅस की',
+		name			: 'नाम',
+		langCode		: 'भाषा लिखने की दिशा',
+		tabIndex		: 'टैब इन्डॅक्स',
+		advisoryTitle	: 'परामर्श शीर्शक',
+		advisoryContentType	: 'परामर्श कन्टॅन्ट प्रकार',
+		cssClasses		: 'स्टाइल-शीट क्लास',
+		charset			: 'लिंक रिसोर्स करॅक्टर सॅट',
+		styles			: 'स्टाइल',
+		selectAnchor	: 'ऐंकर चुनें',
+		anchorName		: 'ऐंकर नाम से',
+		anchorId		: 'ऍलीमॅन्ट Id से',
+		emailAddress	: 'ई-मेल पता',
+		emailSubject	: 'संदेश विषय',
+		emailBody		: 'संदेश',
+		noAnchors		: '(डॉक्यूमॅन्ट में ऐंकर्स की संख्या)',
+		noUrl			: 'लिंक URL टाइप करें',
+		noEmail			: 'ई-मेल पता टाइप करें'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'ऐंकर इन्सर्ट/संपादन',
+		menu		: 'ऐंकर प्रॉपर्टीज़',
+		title		: 'ऐंकर प्रॉपर्टीज़',
+		name		: 'ऐंकर का नाम',
+		errorName	: 'ऐंकर का नाम टाइप करें'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'खोजें और बदलें',
+		find				: 'खोजें',
+		replace				: 'रीप्लेस',
+		findWhat			: 'यह खोजें:',
+		replaceWith			: 'इससे रिप्लेस करें:',
+		notFoundMsg			: 'आपके द्वारा दिया गया टेक्स्ट नहीं मिला',
+		matchCase			: 'केस मिलायें',
+		matchWord			: 'पूरा शब्द मिलायें',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'सभी रिप्लेस करें',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'टेबल',
+		title		: 'टेबल प्रॉपर्टीज़',
+		menu		: 'टेबल प्रॉपर्टीज़',
+		deleteTable	: 'टेबल डिलीट करें',
+		rows		: 'पंक्तियाँ',
+		columns		: 'कालम',
+		border		: 'बॉर्डर साइज़',
+		align		: 'ऍलाइन्मॅन्ट',
+		alignNotSet	: '<सॅट नहीं>',
+		alignLeft	: 'दायें',
+		alignCenter	: 'बीच में',
+		alignRight	: 'बायें',
+		width		: 'चौड़ाई',
+		widthPx		: 'पिक्सैल',
+		widthPc		: 'प्रतिशत',
+		height		: 'ऊँचाई',
+		cellSpace	: 'सैल अंतर',
+		cellPad		: 'सैल पैडिंग',
+		caption		: 'शीर्षक',
+		summary		: 'सारांश',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'खाना',
+			insertBefore	: 'पहले सैल डालें',
+			insertAfter		: 'बाद में सैल डालें',
+			deleteCell		: 'सैल डिलीट करें',
+			merge			: 'सैल मिलायें',
+			mergeRight		: 'बाँया विलय',
+			mergeDown		: 'नीचे विलय करें',
+			splitHorizontal	: 'सैल को क्षैतिज स्थिति में विभाजित करें',
+			splitVertical	: 'सैल को लम्बाकार में विभाजित करें',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'पंक्ति',
+			insertBefore	: 'पहले पंक्ति डालें',
+			insertAfter		: 'बाद में पंक्ति डालें',
+			deleteRow		: 'पंक्तियाँ डिलीट करें'
+		},
+
+		column :
+		{
+			menu			: 'कालम',
+			insertBefore	: 'पहले कालम डालें',
+			insertAfter		: 'बाद में कालम डालें',
+			deleteColumn	: 'कालम डिलीट करें'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'बटन प्रॉपर्टीज़',
+		text		: 'टेक्स्ट (वैल्यू)',
+		type		: 'प्रकार',
+		typeBtn		: 'बटन',
+		typeSbm		: 'सब्मिट',
+		typeRst		: 'रिसेट'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'चॅक बॉक्स प्रॉपर्टीज़',
+		radioTitle	: 'रेडिओ बटन प्रॉपर्टीज़',
+		value		: 'वैल्यू',
+		selected	: 'सॅलॅक्टॅड'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'फ़ॉर्म प्रॉपर्टीज़',
+		menu		: 'फ़ॉर्म प्रॉपर्टीज़',
+		action		: 'क्रिया',
+		method		: 'तरीका',
+		encoding	: 'Encoding', // MISSING
+		target		: 'टार्गेट',
+		targetNotSet	: '<सॅट नहीं>',
+		targetNew	: 'नया विन्डो (_blank)',
+		targetTop	: 'शीर्ष विन्डो (_top)',
+		targetSelf	: 'इसी विन्डो (_self)',
+		targetParent	: 'मूल विन्डो (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'चुनाव फ़ील्ड प्रॉपर्टीज़',
+		selectInfo	: 'सूचना',
+		opAvail		: 'उपलब्ध विकल्प',
+		value		: 'वैल्यू',
+		size		: 'साइज़',
+		lines		: 'पंक्तियाँ',
+		chkMulti	: 'एक से ज्यादा विकल्प चुनने दें',
+		opText		: 'टेक्स्ट',
+		opValue		: 'वैल्यू',
+		btnAdd		: 'जोड़ें',
+		btnModify	: 'बदलें',
+		btnUp		: 'ऊपर',
+		btnDown		: 'नीचे',
+		btnSetValue : 'चुनी गई वैल्यू सॅट करें',
+		btnDelete	: 'डिलीट'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'टेक्स्त एरिया प्रॉपर्टीज़',
+		cols		: 'कालम',
+		rows		: 'पंक्तियां'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'टेक्स्ट फ़ील्ड प्रॉपर्टीज़',
+		name		: 'नाम',
+		value		: 'वैल्यू',
+		charWidth	: 'करॅक्टर की चौढ़ाई',
+		maxChars	: 'अधिकतम करॅक्टर',
+		type		: 'टाइप',
+		typeText	: 'टेक्स्ट',
+		typePass	: 'पास्वर्ड'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'गुप्त फ़ील्ड प्रॉपर्टीज़',
+		name	: 'नाम',
+		value	: 'वैल्यू'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'तस्वीर प्रॉपर्टीज़',
+		titleButton	: 'तस्वीर बटन प्रॉपर्टीज़',
+		menu		: 'तस्वीर प्रॉपर्टीज़',
+		infoTab	: 'तस्वीर की जानकारी',
+		btnUpload	: 'इसे सर्वर को भेजें',
+		url		: 'URL',
+		upload	: 'अपलोड',
+		alt		: 'वैकल्पिक टेक्स्ट',
+		width		: 'चौड़ाई',
+		height	: 'ऊँचाई',
+		lockRatio	: 'लॉक अनुपात',
+		resetSize	: 'रीसॅट साइज़',
+		border	: 'बॉर्डर',
+		hSpace	: 'हॉरिज़ॉन्टल स्पेस',
+		vSpace	: 'वर्टिकल स्पेस',
+		align		: 'ऍलाइन',
+		alignLeft	: 'दायें',
+		alignAbsBottom: 'Abs नीचे',
+		alignAbsMiddle: 'Abs ऊपर',
+		alignBaseline	: 'मूल रेखा',
+		alignBottom	: 'नीचे',
+		alignMiddle	: 'मध्य',
+		alignRight	: 'दायें',
+		alignTextTop	: 'टेक्स्ट ऊपर',
+		alignTop	: 'ऊपर',
+		preview	: 'प्रीव्यू',
+		alertUrl	: 'तस्वीर का URL टाइप करें ',
+		linkTab	: 'लिंक',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'फ़्लैश प्रॉपर्टीज़',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'फ़्लैश प्रॉपर्टीज़',
+		chkPlay		: 'ऑटो प्ले',
+		chkLoop		: 'लूप',
+		chkMenu		: 'फ़्लैश मॅन्यू का प्रयोग करें',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'स्केल',
+		scaleAll		: 'सभी दिखायें',
+		scaleNoBorder	: 'कोई बॉर्डर नहीं',
+		scaleFit		: 'बिल्कुल फ़िट',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'ऍलाइन',
+		alignLeft	: 'दायें',
+		alignAbsBottom: 'Abs नीचे',
+		alignAbsMiddle: 'Abs ऊपर',
+		alignBaseline	: 'मूल रेखा',
+		alignBottom	: 'नीचे',
+		alignMiddle	: 'मध्य',
+		alignRight	: 'दायें',
+		alignTextTop	: 'टेक्स्ट ऊपर',
+		alignTop	: 'ऊपर',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'बैक्ग्राउन्ड रंग',
+		width	: 'चौड़ाई',
+		height	: 'ऊँचाई',
+		hSpace	: 'हॉरिज़ॉन्टल स्पेस',
+		vSpace	: 'वर्टिकल स्पेस',
+		validateSrc : 'लिंक URL टाइप करें',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'वर्तनी (स्पेलिंग) जाँच',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'शब्दकोश में नहीं',
+		changeTo		: 'इसमें बदलें',
+		btnIgnore		: 'इग्नोर',
+		btnIgnoreAll	: 'सभी इग्नोर करें',
+		btnReplace		: 'रिप्लेस',
+		btnReplaceAll	: 'सभी रिप्लेस करें',
+		btnUndo			: 'अन्डू',
+		noSuggestions	: '- कोई सुझाव नहीं -',
+		progress		: 'वर्तनी की जाँच (स्पॅल-चॅक) जारी है...',
+		noMispell		: 'वर्तनी की जाँच : कोई गलत वर्तनी (स्पॅलिंग) नहीं पाई गई',
+		noChanges		: 'वर्तनी की जाँच :कोई शब्द नहीं बदला गया',
+		oneChange		: 'वर्तनी की जाँच : एक शब्द बदला गया',
+		manyChanges		: 'वर्तनी की जाँच : %1 शब्द बदले गये',
+		ieSpellDownload	: 'स्पॅल-चॅकर इन्स्टाल नहीं किया गया है। क्या आप इसे डाउनलोड करना चाहेंगे?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'स्माइली',
+		title	: 'स्माइली इन्सर्ट करें'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'अंकीय सूची',
+	bulletedlist : 'बुलॅट सूची',
+	indent : 'इन्डॅन्ट बढ़ायें',
+	outdent : 'इन्डॅन्ट कम करें',
+
+	justify :
+	{
+		left : 'बायीं तरफ',
+		center : 'बीच में',
+		right : 'दायीं तरफ',
+		block : 'ब्लॉक जस्टीफ़ाई'
+	},
+
+	blockquote : 'ब्लॉक-कोट',
+
+	clipboard :
+	{
+		title		: 'पेस्ट',
+		cutError	: 'आपके ब्राउज़र की सुरक्षा सॅटिन्ग्स ने कट करने की अनुमति नहीं प्रदान की है। (Ctrl+X) का प्रयोग करें।',
+		copyError	: 'आपके ब्राआउज़र की सुरक्षा सॅटिन्ग्स ने कॉपी करने की अनुमति नहीं प्रदान की है। (Ctrl+C) का प्रयोग करें।',
+		pasteMsg	: 'Ctrl+V का प्रयोग करके पेस्ट करें और ठीक है करें.',
+		securityMsg	: 'आपके ब्राउज़र की सुरक्षा आपके ब्राउज़र की सुरKश सैटिंग के कारण, एडिटर आपके क्लिपबोर्ड डेटा को नहीं पा सकता है. आपको उसे इस विन्डो में दोबारा पेस्ट करना होगा.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'पेस्ट (वर्ड से)',
+		title : 'पेस्ट (वर्ड से)',
+		advice : 'Ctrl+V का प्रयोग करके पेस्ट करें और ठीक है करें.',
+		ignoreFontFace : 'फ़ॉन्ट परिभाषा निकालें',
+		removeStyle : 'स्टाइल परिभाषा निकालें'
+	},
+
+	pasteText :
+	{
+		button : 'पेस्ट (सादा टॅक्स्ट)',
+		title : 'पेस्ट (सादा टॅक्स्ट)'
+	},
+
+	templates :
+	{
+		button : 'टॅम्प्लेट',
+		title : 'कन्टेन्ट टॅम्प्लेट',
+		insertOption: 'मूल शब्दों को बदलें',
+		selectPromptMsg: 'ऍडिटर में ओपन करने हेतु टॅम्प्लेट चुनें(वर्तमान कन्टॅन्ट सेव नहीं होंगे):',
+		emptyListMsg : '(कोई टॅम्प्लेट डिफ़ाइन नहीं किया गया है)'
+	},
+
+	showBlocks : 'ब्लॉक दिखायें',
+
+	stylesCombo :
+	{
+		label : 'स्टाइल',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'फ़ॉर्मैट',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'फ़ॉर्मैट',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'साधारण',
+		tag_pre : 'फ़ॉर्मैटॅड',
+		tag_address : 'पता',
+		tag_h1 : 'शीर्षक 1',
+		tag_h2 : 'शीर्षक 2',
+		tag_h3 : 'शीर्षक 3',
+		tag_h4 : 'शीर्षक 4',
+		tag_h5 : 'शीर्षक 5',
+		tag_h6 : 'शीर्षक 6',
+		tag_div : 'शीर्षक (DIV)'
+	},
+
+	font :
+	{
+		label : 'फ़ॉन्ट',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'फ़ॉन्ट',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'साइज़',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'साइज़',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'टेक्स्ट रंग',
+		bgColorTitle : 'बैक्ग्राउन्ड रंग',
+		auto : 'स्वचालित',
+		more : 'और रंग...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/hr.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/hr.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/hr.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Croatian language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['hr'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Kôd',
+	newPage			: 'Nova stranica',
+	save			: 'Snimi',
+	preview			: 'Pregledaj',
+	cut				: 'Izreži',
+	copy			: 'Kopiraj',
+	paste			: 'Zalijepi',
+	print			: 'Ispiši',
+	underline		: 'Potcrtano',
+	bold			: 'Podebljaj',
+	italic			: 'Ukosi',
+	selectAll		: 'Odaberi sve',
+	removeFormat	: 'Ukloni formatiranje',
+	strike			: 'Precrtano',
+	subscript		: 'Subscript',
+	superscript		: 'Superscript',
+	horizontalrule	: 'Ubaci vodoravnu liniju',
+	pagebreak		: 'Ubaci prijelom stranice',
+	unlink			: 'Ukloni link',
+	undo			: 'Poništi',
+	redo			: 'Ponovi',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Pretraži server',
+		url				: 'URL',
+		protocol		: 'Protokol',
+		upload			: 'Pošalji',
+		uploadSubmit	: 'Pošalji na server',
+		image			: 'Slika',
+		flash			: 'Flash',
+		form			: 'Form',
+		checkbox		: 'Checkbox',
+		radio		: 'Radio Button',
+		textField		: 'Text Field',
+		textarea		: 'Textarea',
+		hiddenField		: 'Hidden Field',
+		button			: 'Button',
+		select	: 'Selection Field',
+		imageButton		: 'Image Button',
+		notSet			: '<nije postavljeno>',
+		id				: 'Id',
+		name			: 'Naziv',
+		langDir			: 'Smjer jezika',
+		langDirLtr		: 'S lijeva na desno (LTR)',
+		langDirRtl		: 'S desna na lijevo (RTL)',
+		langCode		: 'Kôd jezika',
+		longDescr		: 'Dugački opis URL',
+		cssClass		: 'Stylesheet klase',
+		advisoryTitle	: 'Advisory naslov',
+		cssStyle		: 'Stil',
+		ok				: 'OK',
+		cancel			: 'Poništi',
+		generalTab		: 'Općenito',
+		advancedTab		: 'Napredno',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Ubaci posebne znakove',
+		title		: 'Odaberite posebni karakter'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Ubaci/promijeni link',
+		menu		: 'Promijeni link',
+		title		: 'Link',
+		info		: 'Link Info',
+		target		: 'Meta',
+		upload		: 'Pošalji',
+		advanced	: 'Napredno',
+		type		: 'Link vrsta',
+		toAnchor	: 'Sidro na ovoj stranici',
+		toEmail		: 'E-Mail',
+		target		: 'Meta',
+		targetNotSet	: '<nije postavljeno>',
+		targetFrame	: '<okvir>',
+		targetPopup	: '<popup prozor>',
+		targetNew	: 'Novi prozor (_blank)',
+		targetTop	: 'Vršni prozor (_top)',
+		targetSelf	: 'Isti prozor (_self)',
+		targetParent	: 'Roditeljski prozor (_parent)',
+		targetFrameName	: 'Ime ciljnog okvira',
+		targetPopupName	: 'Naziv popup prozora',
+		popupFeatures	: 'Mogućnosti popup prozora',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Statusna traka',
+		popupLocationBar	: 'Traka za lokaciju',
+		popupToolbar	: 'Traka s alatima',
+		popupMenuBar	: 'Izborna traka',
+		popupFullScreen	: 'Cijeli ekran (IE)',
+		popupScrollBars	: 'Scroll traka',
+		popupDependent	: 'Ovisno (Netscape)',
+		popupWidth		: 'Širina',
+		popupLeft		: 'Lijeva pozicija',
+		popupHeight		: 'Visina',
+		popupTop		: 'Gornja pozicija',
+		id				: 'Id', // MISSING
+		langDir			: 'Smjer jezika',
+		langDirNotSet	: '<nije postavljeno>',
+		langDirLTR		: 'S lijeva na desno (LTR)',
+		langDirRTL		: 'S desna na lijevo (RTL)',
+		acccessKey		: 'Pristupna tipka',
+		name			: 'Naziv',
+		langCode		: 'Smjer jezika',
+		tabIndex		: 'Tab Indeks',
+		advisoryTitle	: 'Advisory naslov',
+		advisoryContentType	: 'Advisory vrsta sadržaja',
+		cssClasses		: 'Stylesheet klase',
+		charset			: 'Kodna stranica povezanih resursa',
+		styles			: 'Stil',
+		selectAnchor	: 'Odaberi sidro',
+		anchorName		: 'Po nazivu sidra',
+		anchorId		: 'Po Id elementa',
+		emailAddress	: 'E-Mail adresa',
+		emailSubject	: 'Naslov',
+		emailBody		: 'Sadržaj poruke',
+		noAnchors		: '(Nema dostupnih sidra)',
+		noUrl			: 'Molimo upišite URL link',
+		noEmail			: 'Molimo upišite e-mail adresu'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Ubaci/promijeni sidro',
+		menu		: 'Svojstva sidra',
+		title		: 'Svojstva sidra',
+		name		: 'Ime sidra',
+		errorName	: 'Molimo unesite ime sidra'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Pronađi i zamijeni',
+		find				: 'Pronađi',
+		replace				: 'Zamijeni',
+		findWhat			: 'Pronađi:',
+		replaceWith			: 'Zamijeni s:',
+		notFoundMsg			: 'Traženi tekst nije pronađen.',
+		matchCase			: 'Usporedi mala/velika slova',
+		matchWord			: 'Usporedi cijele riječi',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Zamijeni sve',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tablica',
+		title		: 'Svojstva tablice',
+		menu		: 'Svojstva tablice',
+		deleteTable	: 'Izbriši tablicu',
+		rows		: 'Redova',
+		columns		: 'Kolona',
+		border		: 'Veličina okvira',
+		align		: 'Poravnanje',
+		alignNotSet	: '<nije postavljeno>',
+		alignLeft	: 'Lijevo',
+		alignCenter	: 'Središnje',
+		alignRight	: 'Desno',
+		width		: 'Širina',
+		widthPx		: 'piksela',
+		widthPc		: 'postotaka',
+		height		: 'Visina',
+		cellSpace	: 'Prostornost ćelija',
+		cellPad		: 'Razmak ćelija',
+		caption		: 'Naslov',
+		summary		: 'Sažetak',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Ćelija',
+			insertBefore	: 'Ubaci ćeliju prije',
+			insertAfter		: 'Ubaci ćeliju poslije',
+			deleteCell		: 'Izbriši ćelije',
+			merge			: 'Spoji ćelije',
+			mergeRight		: 'Spoji desno',
+			mergeDown		: 'Spoji dolje',
+			splitHorizontal	: 'Podijeli ćeliju vodoravno',
+			splitVertical	: 'Podijeli ćeliju okomito',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Red',
+			insertBefore	: 'Ubaci red prije',
+			insertAfter		: 'Ubaci red poslije',
+			deleteRow		: 'Izbriši redove'
+		},
+
+		column :
+		{
+			menu			: 'Kolona',
+			insertBefore	: 'Ubaci kolonu prije',
+			insertAfter		: 'Ubaci kolonu poslije',
+			deleteColumn	: 'Izbriši kolone'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Image Button svojstva',
+		text		: 'Tekst (vrijednost)',
+		type		: 'Vrsta',
+		typeBtn		: 'Gumb',
+		typeSbm		: 'Pošalji',
+		typeRst		: 'Poništi'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Checkbox svojstva',
+		radioTitle	: 'Radio Button svojstva',
+		value		: 'Vrijednost',
+		selected	: 'Odabrano'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Form svojstva',
+		menu		: 'Form svojstva',
+		action		: 'Akcija',
+		method		: 'Metoda',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Meta',
+		targetNotSet	: '<nije postavljeno>',
+		targetNew	: 'Novi prozor (_blank)',
+		targetTop	: 'Vršni prozor (_top)',
+		targetSelf	: 'Isti prozor (_self)',
+		targetParent	: 'Roditeljski prozor (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Selection svojstva',
+		selectInfo	: 'Info',
+		opAvail		: 'Dostupne opcije',
+		value		: 'Vrijednost',
+		size		: 'Veličina',
+		lines		: 'linija',
+		chkMulti	: 'Dozvoli višestruki odabir',
+		opText		: 'Tekst',
+		opValue		: 'Vrijednost',
+		btnAdd		: 'Dodaj',
+		btnModify	: 'Promijeni',
+		btnUp		: 'Gore',
+		btnDown		: 'Dolje',
+		btnSetValue : 'Postavi kao odabranu vrijednost',
+		btnDelete	: 'Obriši'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Textarea svojstva',
+		cols		: 'Kolona',
+		rows		: 'Redova'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Text Field svojstva',
+		name		: 'Ime',
+		value		: 'Vrijednost',
+		charWidth	: 'Širina',
+		maxChars	: 'Najviše karaktera',
+		type		: 'Vrsta',
+		typeText	: 'Tekst',
+		typePass	: 'Šifra'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Hidden Field svojstva',
+		name	: 'Ime',
+		value	: 'Vrijednost'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Svojstva slika',
+		titleButton	: 'Image Button svojstva',
+		menu		: 'Svojstva slika',
+		infoTab	: 'Info slike',
+		btnUpload	: 'Pošalji na server',
+		url		: 'URL',
+		upload	: 'Pošalji',
+		alt		: 'Alternativni tekst',
+		width		: 'Širina',
+		height	: 'Visina',
+		lockRatio	: 'Zaključaj odnos',
+		resetSize	: 'Obriši veličinu',
+		border	: 'Okvir',
+		hSpace	: 'HSpace',
+		vSpace	: 'VSpace',
+		align		: 'Poravnaj',
+		alignLeft	: 'Lijevo',
+		alignAbsBottom: 'Abs dolje',
+		alignAbsMiddle: 'Abs sredina',
+		alignBaseline	: 'Bazno',
+		alignBottom	: 'Dolje',
+		alignMiddle	: 'Sredina',
+		alignRight	: 'Desno',
+		alignTextTop	: 'Vrh teksta',
+		alignTop	: 'Vrh',
+		preview	: 'Pregledaj',
+		alertUrl	: 'Unesite URL slike',
+		linkTab	: 'Link',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Flash svojstva',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Flash svojstva',
+		chkPlay		: 'Auto Play',
+		chkLoop		: 'Ponavljaj',
+		chkMenu		: 'Omogući Flash izbornik',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Omjer',
+		scaleAll		: 'Prikaži sve',
+		scaleNoBorder	: 'Bez okvira',
+		scaleFit		: 'Točna veličina',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Poravnaj',
+		alignLeft	: 'Lijevo',
+		alignAbsBottom: 'Abs dolje',
+		alignAbsMiddle: 'Abs sredina',
+		alignBaseline	: 'Bazno',
+		alignBottom	: 'Dolje',
+		alignMiddle	: 'Sredina',
+		alignRight	: 'Desno',
+		alignTextTop	: 'Vrh teksta',
+		alignTop	: 'Vrh',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Boja pozadine',
+		width	: 'Širina',
+		height	: 'Visina',
+		hSpace	: 'HSpace',
+		vSpace	: 'VSpace',
+		validateSrc : 'Molimo upišite URL link',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Provjeri pravopis',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Nije u rječniku',
+		changeTo		: 'Promijeni u',
+		btnIgnore		: 'Zanemari',
+		btnIgnoreAll	: 'Zanemari sve',
+		btnReplace		: 'Zamijeni',
+		btnReplaceAll	: 'Zamijeni sve',
+		btnUndo			: 'Vrati',
+		noSuggestions	: '-Nema preporuke-',
+		progress		: 'Provjera u tijeku...',
+		noMispell		: 'Provjera završena: Nema grešaka',
+		noChanges		: 'Provjera završena: Nije napravljena promjena',
+		oneChange		: 'Provjera završena: Jedna riječ promjenjena',
+		manyChanges		: 'Provjera završena: Promijenjeno %1 riječi',
+		ieSpellDownload	: 'Provjera pravopisa nije instalirana. Želite li skinuti provjeru pravopisa?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Smješko',
+		title	: 'Ubaci smješka'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Brojčana lista',
+	bulletedlist : 'Obična lista',
+	indent : 'Pomakni udesno',
+	outdent : 'Pomakni ulijevo',
+
+	justify :
+	{
+		left : 'Lijevo poravnanje',
+		center : 'Središnje poravnanje',
+		right : 'Desno poravnanje',
+		block : 'Blok poravnanje'
+	},
+
+	blockquote : 'Blockquote',
+
+	clipboard :
+	{
+		title		: 'Zalijepi',
+		cutError	: 'Sigurnosne postavke Vašeg pretraživača ne dozvoljavaju operacije automatskog izrezivanja. Molimo koristite kraticu na tipkovnici (Ctrl+X).',
+		copyError	: 'Sigurnosne postavke Vašeg pretraživača ne dozvoljavaju operacije automatskog kopiranja. Molimo koristite kraticu na tipkovnici (Ctrl+C).',
+		pasteMsg	: 'Molimo zaljepite unutar doljnjeg okvira koristeći tipkovnicu (<STRONG>Ctrl+V</STRONG>) i kliknite <STRONG>OK</STRONG>.',
+		securityMsg	: 'Zbog sigurnosnih postavki Vašeg pretraživača, editor nema direktan pristup Vašem međuspremniku. Potrebno je ponovno zalijepiti tekst u ovaj prozor.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Zalijepi iz Worda',
+		title : 'Zalijepi iz Worda',
+		advice : 'Molimo zaljepite unutar doljnjeg okvira koristeći tipkovnicu (<STRONG>Ctrl+V</STRONG>) i kliknite <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Zanemari definiciju vrste fonta',
+		removeStyle : 'Ukloni definicije stilova'
+	},
+
+	pasteText :
+	{
+		button : 'Zalijepi kao čisti tekst',
+		title : 'Zalijepi kao čisti tekst'
+	},
+
+	templates :
+	{
+		button : 'Predlošci',
+		title : 'Predlošci sadržaja',
+		insertOption: 'Zamijeni trenutne sadržaje',
+		selectPromptMsg: 'Molimo odaberite predložak koji želite otvoriti<br>(stvarni sadržaj će biti izgubljen):',
+		emptyListMsg : '(Nema definiranih predložaka)'
+	},
+
+	showBlocks : 'Prikaži blokove',
+
+	stylesCombo :
+	{
+		label : 'Stil',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Format',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Format',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normal',
+		tag_pre : 'Formatted',
+		tag_address : 'Address',
+		tag_h1 : 'Heading 1',
+		tag_h2 : 'Heading 2',
+		tag_h3 : 'Heading 3',
+		tag_h4 : 'Heading 4',
+		tag_h5 : 'Heading 5',
+		tag_h6 : 'Heading 6',
+		tag_div : 'Normal (DIV)'
+	},
+
+	font :
+	{
+		label : 'Font',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Font',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Veličina',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Veličina',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Boja teksta',
+		bgColorTitle : 'Boja pozadine',
+		auto : 'Automatski',
+		more : 'Više boja...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/hu.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/hu.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/hu.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Hungarian language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['hu'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Forráskód',
+	newPage			: 'Új oldal',
+	save			: 'Mentés',
+	preview			: 'Előnézet',
+	cut				: 'Kivágás',
+	copy			: 'Másolás',
+	paste			: 'Beillesztés',
+	print			: 'Nyomtatás',
+	underline		: 'Aláhúzott',
+	bold			: 'Félkövér',
+	italic			: 'Dőlt',
+	selectAll		: 'Mindent kijelöl',
+	removeFormat	: 'Formázás eltávolítása',
+	strike			: 'Áthúzott',
+	subscript		: 'Alsó index',
+	superscript		: 'Felső index',
+	horizontalrule	: 'Elválasztóvonal beillesztése',
+	pagebreak		: 'Oldaltörés beillesztése',
+	unlink			: 'Hivatkozás törlése',
+	undo			: 'Visszavonás',
+	redo			: 'Ismétlés',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Böngészés a szerveren',
+		url				: 'Hivatkozás',
+		protocol		: 'Protokoll',
+		upload			: 'Feltöltés',
+		uploadSubmit	: 'Küldés a szerverre',
+		image			: 'Kép',
+		flash			: 'Flash',
+		form			: 'Űrlap',
+		checkbox		: 'Jelölőnégyzet',
+		radio		: 'Választógomb',
+		textField		: 'Szövegmező',
+		textarea		: 'Szövegterület',
+		hiddenField		: 'Rejtettmező',
+		button			: 'Gomb',
+		select	: 'Legördülő lista',
+		imageButton		: 'Képgomb',
+		notSet			: '<nincs beállítva>',
+		id				: 'Azonosító',
+		name			: 'Név',
+		langDir			: 'Írás iránya',
+		langDirLtr		: 'Balról jobbra',
+		langDirRtl		: 'Jobbról balra',
+		langCode		: 'Nyelv kódja',
+		longDescr		: 'Részletes leírás webcíme',
+		cssClass		: 'Stíluskészlet',
+		advisoryTitle	: 'Súgócimke',
+		cssStyle		: 'Stílus',
+		ok				: 'Rendben',
+		cancel			: 'Mégsem',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'További opciók',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Speciális karakter beillesztése',
+		title		: 'Speciális karakter választása'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Hivatkozás beillesztése/módosítása',
+		menu		: 'Hivatkozás módosítása',
+		title		: 'Hivatkozás tulajdonságai',
+		info		: 'Alaptulajdonságok',
+		target		: 'Tartalom megjelenítése',
+		upload		: 'Feltöltés',
+		advanced	: 'További opciók',
+		type		: 'Hivatkozás típusa',
+		toAnchor	: 'Horgony az oldalon',
+		toEmail		: 'E-Mail',
+		target		: 'Tartalom megjelenítése',
+		targetNotSet	: '<nincs beállítva>',
+		targetFrame	: '<keretben>',
+		targetPopup	: '<felugró ablakban>',
+		targetNew	: 'Új ablakban (_blank)',
+		targetTop	: 'Legfelső ablakban (_top)',
+		targetSelf	: 'Azonos ablakban (_self)',
+		targetParent	: 'Szülő ablakban (_parent)',
+		targetFrameName	: 'Keret neve',
+		targetPopupName	: 'Felugró ablak neve',
+		popupFeatures	: 'Felugró ablak jellemzői',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Állapotsor',
+		popupLocationBar	: 'Címsor',
+		popupToolbar	: 'Eszköztár',
+		popupMenuBar	: 'Menü sor',
+		popupFullScreen	: 'Teljes képernyő (csak IE)',
+		popupScrollBars	: 'Gördítősáv',
+		popupDependent	: 'Szülőhöz kapcsolt (csak Netscape)',
+		popupWidth		: 'Szélesség',
+		popupLeft		: 'Bal pozíció',
+		popupHeight		: 'Magasság',
+		popupTop		: 'Felső pozíció',
+		id				: 'Id', // MISSING
+		langDir			: 'Írás iránya',
+		langDirNotSet	: '<nincs beállítva>',
+		langDirLTR		: 'Balról jobbra',
+		langDirRTL		: 'Jobbról balra',
+		acccessKey		: 'Billentyűkombináció',
+		name			: 'Név',
+		langCode		: 'Írás iránya',
+		tabIndex		: 'Tabulátor index',
+		advisoryTitle	: 'Súgócimke',
+		advisoryContentType	: 'Súgó tartalomtípusa',
+		cssClasses		: 'Stíluskészlet',
+		charset			: 'Hivatkozott tartalom kódlapja',
+		styles			: 'Stílus',
+		selectAnchor	: 'Horgony választása',
+		anchorName		: 'Horgony név szerint',
+		anchorId		: 'Azonosító szerint',
+		emailAddress	: 'E-Mail cím',
+		emailSubject	: 'Üzenet tárgya',
+		emailBody		: 'Üzenet',
+		noAnchors		: '(Nincs horgony a dokumentumban)',
+		noUrl			: 'Adja meg a hivatkozás webcímét',
+		noEmail			: 'Adja meg az E-Mail címet'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Horgony beillesztése/szerkesztése',
+		menu		: 'Horgony tulajdonságai',
+		title		: 'Horgony tulajdonságai',
+		name		: 'Horgony neve',
+		errorName	: 'Kérem adja meg a horgony nevét'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Keresés és csere',
+		find				: 'Keresés',
+		replace				: 'Csere',
+		findWhat			: 'Keresett szöveg:',
+		replaceWith			: 'Csere erre:',
+		notFoundMsg			: 'A keresett szöveg nem található.',
+		matchCase			: 'kis- és nagybetű megkülönböztetése',
+		matchWord			: 'csak ha ez a teljes szó',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Az összes cseréje',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Táblázat',
+		title		: 'Táblázat tulajdonságai',
+		menu		: 'Táblázat tulajdonságai',
+		deleteTable	: 'Táblázat törlése',
+		rows		: 'Sorok',
+		columns		: 'Oszlopok',
+		border		: 'Szegélyméret',
+		align		: 'Igazítás',
+		alignNotSet	: '<Nincs beállítva>',
+		alignLeft	: 'Balra',
+		alignCenter	: 'Középre',
+		alignRight	: 'Jobbra',
+		width		: 'Szélesség',
+		widthPx		: 'képpont',
+		widthPc		: 'százalék',
+		height		: 'Magasság',
+		cellSpace	: 'Cella térköz',
+		cellPad		: 'Cella belső margó',
+		caption		: 'Felirat',
+		summary		: 'Leírás',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Cella',
+			insertBefore	: 'Cella beillesztése az aktuális cella elé',
+			insertAfter		: 'Cella beillesztése az aktuális cella mögé',
+			deleteCell		: 'Cellák törlése',
+			merge			: 'Cellák egyesítése',
+			mergeRight		: 'Cellák egyesítése jobbra',
+			mergeDown		: 'Cellák egyesítése lefelé',
+			splitHorizontal	: 'Cellák szétválasztása vízszintesen',
+			splitVertical	: 'Cellák szétválasztása függőlegesen',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Sor',
+			insertBefore	: 'Sor beillesztése az aktuális sor elé',
+			insertAfter		: 'Sor beillesztése az aktuális sor mögé',
+			deleteRow		: 'Sorok törlése'
+		},
+
+		column :
+		{
+			menu			: 'Oszlop',
+			insertBefore	: 'Oszlop beillesztése az aktuális oszlop elé',
+			insertAfter		: 'Oszlop beillesztése az aktuális oszlop mögé',
+			deleteColumn	: 'Oszlopok törlése'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Gomb tulajdonságai',
+		text		: 'Szöveg (Érték)',
+		type		: 'Típus',
+		typeBtn		: 'Gomb',
+		typeSbm		: 'Küldés',
+		typeRst		: 'Alaphelyzet'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Jelölőnégyzet tulajdonságai',
+		radioTitle	: 'Választógomb tulajdonságai',
+		value		: 'Érték',
+		selected	: 'Kiválasztott'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Űrlap tulajdonságai',
+		menu		: 'Űrlap tulajdonságai',
+		action		: 'Adatfeldolgozást végző hivatkozás',
+		method		: 'Adatküldés módja',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Tartalom megjelenítése',
+		targetNotSet	: '<nincs beállítva>',
+		targetNew	: 'Új ablakban (_blank)',
+		targetTop	: 'Legfelső ablakban (_top)',
+		targetSelf	: 'Azonos ablakban (_self)',
+		targetParent	: 'Szülő ablakban (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Legördülő lista tulajdonságai',
+		selectInfo	: 'Alaptulajdonságok',
+		opAvail		: 'Elérhető opciók',
+		value		: 'Érték',
+		size		: 'Méret',
+		lines		: 'sor',
+		chkMulti	: 'több sor is kiválasztható',
+		opText		: 'Szöveg',
+		opValue		: 'Érték',
+		btnAdd		: 'Hozzáad',
+		btnModify	: 'Módosít',
+		btnUp		: 'Fel',
+		btnDown		: 'Le',
+		btnSetValue : 'Legyen az alapértelmezett érték',
+		btnDelete	: 'Töröl'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Szövegterület tulajdonságai',
+		cols		: 'Karakterek száma egy sorban',
+		rows		: 'Sorok száma'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Szövegmező tulajdonságai',
+		name		: 'Név',
+		value		: 'Érték',
+		charWidth	: 'Megjelenített karakterek száma',
+		maxChars	: 'Maximális karakterszám',
+		type		: 'Típus',
+		typeText	: 'Szöveg',
+		typePass	: 'Jelszó'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Rejtett mező tulajdonságai',
+		name	: 'Név',
+		value	: 'Érték'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Kép tulajdonságai',
+		titleButton	: 'Képgomb tulajdonságai',
+		menu		: 'Kép tulajdonságai',
+		infoTab	: 'Alaptulajdonságok',
+		btnUpload	: 'Küldés a szerverre',
+		url		: 'Hivatkozás',
+		upload	: 'Feltöltés',
+		alt		: 'Buborék szöveg',
+		width		: 'Szélesség',
+		height	: 'Magasság',
+		lockRatio	: 'Arány megtartása',
+		resetSize	: 'Eredeti méret',
+		border	: 'Keret',
+		hSpace	: 'Vízsz. táv',
+		vSpace	: 'Függ. táv',
+		align		: 'Igazítás',
+		alignLeft	: 'Bal',
+		alignAbsBottom: 'Legaljára',
+		alignAbsMiddle: 'Közepére',
+		alignBaseline	: 'Alapvonalhoz',
+		alignBottom	: 'Aljára',
+		alignMiddle	: 'Középre',
+		alignRight	: 'Jobbra',
+		alignTextTop	: 'Szöveg tetejére',
+		alignTop	: 'Tetejére',
+		preview	: 'Előnézet',
+		alertUrl	: 'Töltse ki a kép webcímét',
+		linkTab	: 'Hivatkozás',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Flash tulajdonságai',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Flash tulajdonságai',
+		chkPlay		: 'Automata lejátszás',
+		chkLoop		: 'Folyamatosan',
+		chkMenu		: 'Flash menü engedélyezése',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Méretezés',
+		scaleAll		: 'Mindent mutat',
+		scaleNoBorder	: 'Keret nélkül',
+		scaleFit		: 'Teljes kitöltés',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Igazítás',
+		alignLeft	: 'Bal',
+		alignAbsBottom: 'Legaljára',
+		alignAbsMiddle: 'Közepére',
+		alignBaseline	: 'Alapvonalhoz',
+		alignBottom	: 'Aljára',
+		alignMiddle	: 'Középre',
+		alignRight	: 'Jobbra',
+		alignTextTop	: 'Szöveg tetejére',
+		alignTop	: 'Tetejére',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Háttérszín',
+		width	: 'Szélesség',
+		height	: 'Magasság',
+		hSpace	: 'Vízsz. táv',
+		vSpace	: 'Függ. táv',
+		validateSrc : 'Adja meg a hivatkozás webcímét',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Helyesírás-ellenőrzés',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Nincs a szótárban',
+		changeTo		: 'Módosítás',
+		btnIgnore		: 'Kihagyja',
+		btnIgnoreAll	: 'Mindet kihagyja',
+		btnReplace		: 'Csere',
+		btnReplaceAll	: 'Összes cseréje',
+		btnUndo			: 'Visszavonás',
+		noSuggestions	: 'Nincs javaslat',
+		progress		: 'Helyesírás-ellenőrzés folyamatban...',
+		noMispell		: 'Helyesírás-ellenőrzés kész: Nem találtam hibát',
+		noChanges		: 'Helyesírás-ellenőrzés kész: Nincs változtatott szó',
+		oneChange		: 'Helyesírás-ellenőrzés kész: Egy szó cserélve',
+		manyChanges		: 'Helyesírás-ellenőrzés kész: %1 szó cserélve',
+		ieSpellDownload	: 'A helyesírás-ellenőrző nincs telepítve. Szeretné letölteni most?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Hangulatjelek',
+		title	: 'Hangulatjel beszúrása'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Számozás',
+	bulletedlist : 'Felsorolás',
+	indent : 'Behúzás növelése',
+	outdent : 'Behúzás csökkentése',
+
+	justify :
+	{
+		left : 'Balra',
+		center : 'Középre',
+		right : 'Jobbra',
+		block : 'Sorkizárt'
+	},
+
+	blockquote : 'Idézet blokk',
+
+	clipboard :
+	{
+		title		: 'Beillesztés',
+		cutError	: 'A böngésző biztonsági beállításai nem engedélyezik a szerkesztőnek, hogy végrehajtsa a kivágás műveletet. Használja az alábbi billentyűkombinációt (Ctrl+X).',
+		copyError	: 'A böngésző biztonsági beállításai nem engedélyezik a szerkesztőnek, hogy végrehajtsa a másolás műveletet. Használja az alábbi billentyűkombinációt (Ctrl+X).',
+		pasteMsg	: 'Másolja be az alábbi mezőbe a <STRONG>Ctrl+V</STRONG> billentyűk lenyomásával, majd nyomjon <STRONG>Rendben</STRONG>-t.',
+		securityMsg	: 'A böngésző biztonsági beállításai miatt a szerkesztő nem képes hozzáférni a vágólap adataihoz. Illeszd be újra ebben az ablakban.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Beillesztés Word-ből',
+		title : 'Beillesztés Word-ből',
+		advice : 'Másolja be az alábbi mezőbe a <STRONG>Ctrl+V</STRONG> billentyűk lenyomásával, majd nyomjon <STRONG>Rendben</STRONG>-t.',
+		ignoreFontFace : 'Betű formázások megszüntetése',
+		removeStyle : 'Stílusok eltávolítása'
+	},
+
+	pasteText :
+	{
+		button : 'Beillesztés formázatlan szövegként',
+		title : 'Beillesztés formázatlan szövegként'
+	},
+
+	templates :
+	{
+		button : 'Sablonok',
+		title : 'Elérhető sablonok',
+		insertOption: 'Kicseréli a jelenlegi tartalmat',
+		selectPromptMsg: 'Válassza ki melyik sablon nyíljon meg a szerkesztőben<br>(a jelenlegi tartalom elveszik):',
+		emptyListMsg : '(Nincs sablon megadva)'
+	},
+
+	showBlocks : 'Blokkok megjelenítése',
+
+	stylesCombo :
+	{
+		label : 'Stílus',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Formátum',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Formátum',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normál',
+		tag_pre : 'Formázott',
+		tag_address : 'Címsor',
+		tag_h1 : 'Fejléc 1',
+		tag_h2 : 'Fejléc 2',
+		tag_h3 : 'Fejléc 3',
+		tag_h4 : 'Fejléc 4',
+		tag_h5 : 'Fejléc 5',
+		tag_h6 : 'Fejléc 6',
+		tag_div : 'Bekezdés (DIV)'
+	},
+
+	font :
+	{
+		label : 'Betűtípus',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Betűtípus',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Méret',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Méret',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Betűszín',
+		bgColorTitle : 'Háttérszín',
+		auto : 'Automatikus',
+		more : 'További színek...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/is.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/is.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/is.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Icelandic language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['is'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Kóði',
+	newPage			: 'Ný síða',
+	save			: 'Vista',
+	preview			: 'Forskoða',
+	cut				: 'Klippa',
+	copy			: 'Afrita',
+	paste			: 'Líma',
+	print			: 'Prenta',
+	underline		: 'Undirstrikað',
+	bold			: 'Feitletrað',
+	italic			: 'Skáletrað',
+	selectAll		: 'Velja allt',
+	removeFormat	: 'Fjarlægja snið',
+	strike			: 'Yfirstrikað',
+	subscript		: 'Niðurskrifað',
+	superscript		: 'Uppskrifað',
+	horizontalrule	: 'Lóðrétt lína',
+	pagebreak		: 'Setja inn síðuskil',
+	unlink			: 'Fjarlægja stiklu',
+	undo			: 'Afturkalla',
+	redo			: 'Hætta við afturköllun',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Fletta í skjalasafni',
+		url				: 'Vefslóð',
+		protocol		: 'Samskiptastaðall',
+		upload			: 'Senda upp',
+		uploadSubmit	: 'Hlaða upp',
+		image			: 'Setja inn mynd',
+		flash			: 'Flash',
+		form			: 'Setja inn innsláttarform',
+		checkbox		: 'Setja inn hökunarreit',
+		radio		: 'Setja inn valhnapp',
+		textField		: 'Setja inn textareit',
+		textarea		: 'Setja inn textasvæði',
+		hiddenField		: 'Setja inn falið svæði',
+		button			: 'Setja inn hnapp',
+		select	: 'Setja inn lista',
+		imageButton		: 'Setja inn myndahnapp',
+		notSet			: '<ekkert valið>',
+		id				: 'Auðkenni',
+		name			: 'Nafn',
+		langDir			: 'Lesstefna',
+		langDirLtr		: 'Frá vinstri til hægri (LTR)',
+		langDirRtl		: 'Frá hægri til vinstri (RTL)',
+		langCode		: 'Tungumálakóði',
+		longDescr		: 'Nánari lýsing',
+		cssClass		: 'Stílsniðsflokkur',
+		advisoryTitle	: 'Titill',
+		cssStyle		: 'Stíll',
+		ok				: 'Í lagi',
+		cancel			: 'Hætta við',
+		generalTab		: 'Almennt',
+		advancedTab		: 'Tæknilegt',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Setja inn merki',
+		title		: 'Velja tákn'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Stofna/breyta stiklu',
+		menu		: 'Breyta stiklu',
+		title		: 'Stikla',
+		info		: 'Almennt',
+		target		: 'Mark',
+		upload		: 'Senda upp',
+		advanced	: 'Tæknilegt',
+		type		: 'Stikluflokkur',
+		toAnchor	: 'Bókamerki á þessari síðu',
+		toEmail		: 'Netfang',
+		target		: 'Mark',
+		targetNotSet	: '<ekkert valið>',
+		targetFrame	: '<rammi>',
+		targetPopup	: '<sprettigluggi>',
+		targetNew	: 'Nýr gluggi (_blank)',
+		targetTop	: 'Allur glugginn (_top)',
+		targetSelf	: 'Sami gluggi (_self)',
+		targetParent	: 'Yfirsettur rammi (_parent)',
+		targetFrameName	: 'Nafn markglugga',
+		targetPopupName	: 'Nafn sprettiglugga',
+		popupFeatures	: 'Eigindi sprettiglugga',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Stöðustika',
+		popupLocationBar	: 'Fanglína',
+		popupToolbar	: 'Verkfærastika',
+		popupMenuBar	: 'Vallína',
+		popupFullScreen	: 'Heilskjár (IE)',
+		popupScrollBars	: 'Skrunstikur',
+		popupDependent	: 'Háð venslum (Netscape)',
+		popupWidth		: 'Breidd',
+		popupLeft		: 'Fjarlægð frá vinstri',
+		popupHeight		: 'Hæð',
+		popupTop		: 'Fjarlægð frá efri brún',
+		id				: 'Id', // MISSING
+		langDir			: 'Lesstefna',
+		langDirNotSet	: '<ekkert valið>',
+		langDirLTR		: 'Frá vinstri til hægri (LTR)',
+		langDirRTL		: 'Frá hægri til vinstri (RTL)',
+		acccessKey		: 'Skammvalshnappur',
+		name			: 'Nafn',
+		langCode		: 'Lesstefna',
+		tabIndex		: 'Raðnúmer innsláttarreits',
+		advisoryTitle	: 'Titill',
+		advisoryContentType	: 'Tegund innihalds',
+		cssClasses		: 'Stílsniðsflokkur',
+		charset			: 'Táknróf',
+		styles			: 'Stíll',
+		selectAnchor	: 'Veldu akkeri',
+		anchorName		: 'Eftir akkerisnafni',
+		anchorId		: 'Eftir auðkenni einingar',
+		emailAddress	: 'Netfang',
+		emailSubject	: 'Efni',
+		emailBody		: 'Meginmál',
+		noAnchors		: '<Engin bókamerki á skrá>',
+		noUrl			: 'Sláðu inn veffang stiklunnar!',
+		noEmail			: 'Sláðu inn netfang!'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Stofna/breyta kaflamerki',
+		menu		: 'Eigindi kaflamerkis',
+		title		: 'Eigindi kaflamerkis',
+		name		: 'Nafn bókamerkis',
+		errorName	: 'Sláðu inn nafn bókamerkis!'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Finna og skipta',
+		find				: 'Leita',
+		replace				: 'Skipta út',
+		findWhat			: 'Leita að:',
+		replaceWith			: 'Skipta út fyrir:',
+		notFoundMsg			: 'Leitartexti fannst ekki!',
+		matchCase			: 'Gera greinarmun á¡ há¡- og lágstöfum',
+		matchWord			: 'Aðeins heil orð',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Skipta út allsstaðar',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tafla',
+		title		: 'Eigindi töflu',
+		menu		: 'Eigindi töflu',
+		deleteTable	: 'Fella töflu',
+		rows		: 'Raðir',
+		columns		: 'Dálkar',
+		border		: 'Breidd ramma',
+		align		: 'Jöfnun',
+		alignNotSet	: '<ekkert valið>',
+		alignLeft	: 'Vinstrijafnað',
+		alignCenter	: 'Miðjað',
+		alignRight	: 'Hægrijafnað',
+		width		: 'Breidd',
+		widthPx		: 'myndeindir',
+		widthPc		: 'prósent',
+		height		: 'Hæð',
+		cellSpace	: 'Bil milli reita',
+		cellPad		: 'Reitaspássía',
+		caption		: 'Titill',
+		summary		: 'Áfram',
+		headers		: 'Fyrirsagnir',
+		headersNone		: 'Engar',
+		headersColumn	: 'Fyrsti dálkur',
+		headersRow		: 'Fyrsta röð',
+		headersBoth		: 'Hvort tveggja',
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Reitur',
+			insertBefore	: 'Skjóta inn reiti fyrir aftan',
+			insertAfter		: 'Skjóta inn reiti fyrir framan',
+			deleteCell		: 'Fella reit',
+			merge			: 'Sameina reiti',
+			mergeRight		: 'Sameina til hægri',
+			mergeDown		: 'Sameina niður á við',
+			splitHorizontal	: 'Kljúfa reit lárétt',
+			splitVertical	: 'Kljúfa reit lóðrétt',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Röð',
+			insertBefore	: 'Skjóta inn röð fyrir ofan',
+			insertAfter		: 'Skjóta inn röð fyrir neðan',
+			deleteRow		: 'Eyða röð'
+		},
+
+		column :
+		{
+			menu			: 'Dálkur',
+			insertBefore	: 'Skjóta inn dálki vinstra megin',
+			insertAfter		: 'Skjóta inn dálki hægra megin',
+			deleteColumn	: 'Fella dálk'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Eigindi hnapps',
+		text		: 'Texti',
+		type		: 'Gerð',
+		typeBtn		: 'Hnappur',
+		typeSbm		: 'Staðfesta',
+		typeRst		: 'Hreinsa'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Eigindi markreits',
+		radioTitle	: 'Eigindi valhnapps',
+		value		: 'Gildi',
+		selected	: 'Valið'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Eigindi innsláttarforms',
+		menu		: 'Eigindi innsláttarforms',
+		action		: 'Aðgerð',
+		method		: 'Aðferð',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Mark',
+		targetNotSet	: '<ekkert valið>',
+		targetNew	: 'Nýr gluggi (_blank)',
+		targetTop	: 'Allur glugginn (_top)',
+		targetSelf	: 'Sami gluggi (_self)',
+		targetParent	: 'Yfirsettur rammi (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Eigindi lista',
+		selectInfo	: 'Upplýsingar',
+		opAvail		: 'Kostir',
+		value		: 'Gildi',
+		size		: 'Stærð',
+		lines		: 'línur',
+		chkMulti	: 'Leyfa fleiri kosti',
+		opText		: 'Texti',
+		opValue		: 'Gildi',
+		btnAdd		: 'Bæta við',
+		btnModify	: 'Breyta',
+		btnUp		: 'Upp',
+		btnDown		: 'Niður',
+		btnSetValue : 'Merkja sem valið',
+		btnDelete	: 'Eyða'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Eigindi textasvæðis',
+		cols		: 'Dálkar',
+		rows		: 'Línur'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Eigindi textareits',
+		name		: 'Nafn',
+		value		: 'Gildi',
+		charWidth	: 'Breidd (leturtákn)',
+		maxChars	: 'Hámarksfjöldi leturtákna',
+		type		: 'Gerð',
+		typeText	: 'Texti',
+		typePass	: 'Lykilorð'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Eigindi falins svæðis',
+		name	: 'Nafn',
+		value	: 'Gildi'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Eigindi myndar',
+		titleButton	: 'Eigindi myndahnapps',
+		menu		: 'Eigindi myndar',
+		infoTab	: 'Almennt',
+		btnUpload	: 'Hlaða upp',
+		url		: 'Vefslóð',
+		upload	: 'Hlaða upp',
+		alt		: 'Baklægur texti',
+		width		: 'Breidd',
+		height	: 'Hæð',
+		lockRatio	: 'Festa stærðarhlutfall',
+		resetSize	: 'Reikna stærð',
+		border	: 'Rammi',
+		hSpace	: 'Vinstri bil',
+		vSpace	: 'Hægri bil',
+		align		: 'Jöfnun',
+		alignLeft	: 'Vinstri',
+		alignAbsBottom: 'Abs neðst',
+		alignAbsMiddle: 'Abs miðjuð',
+		alignBaseline	: 'Grunnlína',
+		alignBottom	: 'Neðst',
+		alignMiddle	: 'Miðjuð',
+		alignRight	: 'Hægri',
+		alignTextTop	: 'Efri brún texta',
+		alignTop	: 'Efst',
+		preview	: 'Sýna dæmi',
+		alertUrl	: 'Sláðu inn slóðina að myndinni',
+		linkTab	: 'Stikla',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Eigindi Flash',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Eigindi Flash',
+		chkPlay		: 'Sjálfvirk spilun',
+		chkLoop		: 'Endurtekning',
+		chkMenu		: 'Sýna Flash-valmynd',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Skali',
+		scaleAll		: 'Sýna allt',
+		scaleNoBorder	: 'Án ramma',
+		scaleFit		: 'Fella skala að stærð',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Jöfnun',
+		alignLeft	: 'Vinstri',
+		alignAbsBottom: 'Abs neðst',
+		alignAbsMiddle: 'Abs miðjuð',
+		alignBaseline	: 'Grunnlína',
+		alignBottom	: 'Neðst',
+		alignMiddle	: 'Miðjuð',
+		alignRight	: 'Hægri',
+		alignTextTop	: 'Efri brún texta',
+		alignTop	: 'Efst',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Bakgrunnslitur',
+		width	: 'Breidd',
+		height	: 'Hæð',
+		hSpace	: 'Vinstri bil',
+		vSpace	: 'Hægri bil',
+		validateSrc : 'Sláðu inn veffang stiklunnar!',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Villuleit',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Ekki í orðabókinni',
+		changeTo		: 'Tillaga',
+		btnIgnore		: 'Hunsa',
+		btnIgnoreAll	: 'Hunsa allt',
+		btnReplace		: 'Skipta',
+		btnReplaceAll	: 'Skipta öllu',
+		btnUndo			: 'Til baka',
+		noSuggestions	: '- engar tillögur -',
+		progress		: 'Villuleit í gangi...',
+		noMispell		: 'Villuleit lokið: Engin villa fannst',
+		noChanges		: 'Villuleit lokið: Engu orði breytt',
+		oneChange		: 'Villuleit lokið: Einu orði breytt',
+		manyChanges		: 'Villuleit lokið: %1 orðum breytt',
+		ieSpellDownload	: 'Villuleit ekki sett upp.<br>Viltu setja hana upp?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Svipur',
+		title	: 'Velja svip'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Númeraður listi',
+	bulletedlist : 'Punktalisti',
+	indent : 'Minnka inndrátt',
+	outdent : 'Auka inndrátt',
+
+	justify :
+	{
+		left : 'Vinstrijöfnun',
+		center : 'Miðja texta',
+		right : 'Hægrijöfnun',
+		block : 'Jafna báðum megin'
+	},
+
+	blockquote : 'Inndráttur',
+
+	clipboard :
+	{
+		title		: 'Líma',
+		cutError	: 'Öryggisstillingar vafrans þíns leyfa ekki klippingu texta með músaraðgerð. Notaðu lyklaborðið í klippa (Ctrl+X).',
+		copyError	: 'Öryggisstillingar vafrans þíns leyfa ekki afritun texta með músaraðgerð. Notaðu lyklaborðið í afrita (Ctrl+C).',
+		pasteMsg	: 'Límdu í svæðið hér að neðan og (<STRONG>Ctrl+V</STRONG>) og smelltu á <STRONG>OK</STRONG>.',
+		securityMsg	: 'Vegna öryggisstillinga í vafranum þínum fær ritillinn ekki beinan aðgang að klippuborðinu. Þú verður að líma innihaldið aftur inn í þennan glugga.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Líma úr Word',
+		title : 'Líma úr Word',
+		advice : 'Límdu í svæðið hér að neðan og (<STRONG>Ctrl+V</STRONG>) og smelltu á <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Hunsa leturskilgreiningar',
+		removeStyle : 'Hunsa letureigindi'
+	},
+
+	pasteText :
+	{
+		button : 'Líma sem ósniðinn texta',
+		title : 'Líma sem ósniðinn texta'
+	},
+
+	templates :
+	{
+		button : 'Sniðmát',
+		title : 'Innihaldssniðmát',
+		insertOption: 'Skipta út raunverulegu innihaldi',
+		selectPromptMsg: 'Veldu sniðmát til að opna í ritlinum.<br>(Núverandi innihald víkur fyrir því!):',
+		emptyListMsg : '(Ekkert sniðmát er skilgreint!)'
+	},
+
+	showBlocks : 'Sýna blokkir',
+
+	stylesCombo :
+	{
+		label : 'Stílflokkur',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Stílsnið',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Stílsnið',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Venjulegt letur',
+		tag_pre : 'Forsniðið',
+		tag_address : 'Vistfang',
+		tag_h1 : 'Fyrirsögn 1',
+		tag_h2 : 'Fyrirsögn 2',
+		tag_h3 : 'Fyrirsögn 3',
+		tag_h4 : 'Fyrirsögn 4',
+		tag_h5 : 'Fyrirsögn 5',
+		tag_h6 : 'Fyrirsögn 6',
+		tag_div : 'Venjulegt (DIV)'
+	},
+
+	font :
+	{
+		label : 'Leturgerð ',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Leturgerð ',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Leturstærð ',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Leturstærð ',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Litur texta',
+		bgColorTitle : 'Bakgrunnslitur',
+		auto : 'Sjálfval',
+		more : 'Fleiri liti...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/it.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/it.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/it.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Italian language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['it'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Codice Sorgente',
+	newPage			: 'Nuova pagina vuota',
+	save			: 'Salva',
+	preview			: 'Anteprima',
+	cut				: 'Taglia',
+	copy			: 'Copia',
+	paste			: 'Incolla',
+	print			: 'Stampa',
+	underline		: 'Sottolineato',
+	bold			: 'Grassetto',
+	italic			: 'Corsivo',
+	selectAll		: 'Seleziona tutto',
+	removeFormat	: 'Elimina formattazione',
+	strike			: 'Barrato',
+	subscript		: 'Pedice',
+	superscript		: 'Apice',
+	horizontalrule	: 'Inserisci riga orizzontale',
+	pagebreak		: 'Inserisci interruzione di pagina',
+	unlink			: 'Elimina collegamento',
+	undo			: 'Annulla',
+	redo			: 'Ripristina',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Cerca sul server',
+		url				: 'URL',
+		protocol		: 'Protocollo',
+		upload			: 'Carica',
+		uploadSubmit	: 'Invia al server',
+		image			: 'Immagine',
+		flash			: 'Oggetto Flash',
+		form			: 'Modulo',
+		checkbox		: 'Checkbox',
+		radio		: 'Radio Button',
+		textField		: 'Campo di testo',
+		textarea		: 'Area di testo',
+		hiddenField		: 'Campo nascosto',
+		button			: 'Bottone',
+		select	: 'Menu di selezione',
+		imageButton		: 'Bottone immagine',
+		notSet			: '<non impostato>',
+		id				: 'Id',
+		name			: 'Nome',
+		langDir			: 'Direzione scrittura',
+		langDirLtr		: 'Da Sinistra a Destra (LTR)',
+		langDirRtl		: 'Da Destra a Sinistra (RTL)',
+		langCode		: 'Codice Lingua',
+		longDescr		: 'URL descrizione estesa',
+		cssClass		: 'Nome classe CSS',
+		advisoryTitle	: 'Titolo',
+		cssStyle		: 'Stile',
+		ok				: 'OK',
+		cancel			: 'Annulla',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'Avanzate',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Inserisci carattere speciale',
+		title		: 'Seleziona carattere speciale'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Inserisci/Modifica collegamento',
+		menu		: 'Modifica collegamento',
+		title		: 'Collegamento',
+		info		: 'Informazioni collegamento',
+		target		: 'Destinazione',
+		upload		: 'Carica',
+		advanced	: 'Avanzate',
+		type		: 'Tipo di Collegamento',
+		toAnchor	: 'Ancora nella pagina',
+		toEmail		: 'E-Mail',
+		target		: 'Destinazione',
+		targetNotSet	: '<non impostato>',
+		targetFrame	: '<riquadro>',
+		targetPopup	: '<finestra popup>',
+		targetNew	: 'Nuova finestra (_blank)',
+		targetTop	: 'Finestra superiore (_top)',
+		targetSelf	: 'Stessa finestra (_self)',
+		targetParent	: 'Finestra padre (_parent)',
+		targetFrameName	: 'Nome del riquadro di destinazione',
+		targetPopupName	: 'Nome finestra popup',
+		popupFeatures	: 'Caratteristiche finestra popup',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Barra di stato',
+		popupLocationBar	: 'Barra degli indirizzi',
+		popupToolbar	: 'Barra degli strumenti',
+		popupMenuBar	: 'Barra del menu',
+		popupFullScreen	: 'A tutto schermo (IE)',
+		popupScrollBars	: 'Barre di scorrimento',
+		popupDependent	: 'Dipendente (Netscape)',
+		popupWidth		: 'Larghezza',
+		popupLeft		: 'Posizione da sinistra',
+		popupHeight		: 'Altezza',
+		popupTop		: 'Posizione dall\'alto',
+		id				: 'Id', // MISSING
+		langDir			: 'Direzione scrittura',
+		langDirNotSet	: '<non impostato>',
+		langDirLTR		: 'Da Sinistra a Destra (LTR)',
+		langDirRTL		: 'Da Destra a Sinistra (RTL)',
+		acccessKey		: 'Scorciatoia<br />da tastiera',
+		name			: 'Nome',
+		langCode		: 'Direzione scrittura',
+		tabIndex		: 'Ordine di tabulazione',
+		advisoryTitle	: 'Titolo',
+		advisoryContentType	: 'Tipo della risorsa collegata',
+		cssClasses		: 'Nome classe CSS',
+		charset			: 'Set di caretteri della risorsa collegata',
+		styles			: 'Stile',
+		selectAnchor	: 'Scegli Ancora',
+		anchorName		: 'Per Nome',
+		anchorId		: 'Per id elemento',
+		emailAddress	: 'Indirizzo E-Mail',
+		emailSubject	: 'Oggetto del messaggio',
+		emailBody		: 'Corpo del messaggio',
+		noAnchors		: '(Nessuna ancora disponibile nel documento)',
+		noUrl			: 'Devi inserire l\'URL del collegamento',
+		noEmail			: 'Devi inserire un\'indirizzo e-mail'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Inserisci/Modifica Ancora',
+		menu		: 'Proprietà ancora',
+		title		: 'Proprietà ancora',
+		name		: 'Nome ancora',
+		errorName	: 'Inserici il nome dell\'ancora'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Cerca e Sostituisci',
+		find				: 'Trova',
+		replace				: 'Sostituisci',
+		findWhat			: 'Trova:',
+		replaceWith			: 'Sostituisci con:',
+		notFoundMsg			: 'L\'elemento cercato non è stato trovato.',
+		matchCase			: 'Maiuscole/minuscole',
+		matchWord			: 'Solo parole intere',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Sostituisci tutto',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tabella',
+		title		: 'Proprietà tabella',
+		menu		: 'Proprietà tabella',
+		deleteTable	: 'Cancella Tabella',
+		rows		: 'Righe',
+		columns		: 'Colonne',
+		border		: 'Dimensione bordo',
+		align		: 'Allineamento',
+		alignNotSet	: '<non impostato>',
+		alignLeft	: 'Sinistra',
+		alignCenter	: 'Centrato',
+		alignRight	: 'Destra',
+		width		: 'Larghezza',
+		widthPx		: 'pixel',
+		widthPc		: 'percento',
+		height		: 'Altezza',
+		cellSpace	: 'Spaziatura celle',
+		cellPad		: 'Padding celle',
+		caption		: 'Intestazione',
+		summary		: 'Indice',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Cella',
+			insertBefore	: 'Inserisci Cella Prima',
+			insertAfter		: 'Inserisci Cella Dopo',
+			deleteCell		: 'Elimina celle',
+			merge			: 'Unisce celle',
+			mergeRight		: 'Unisci a Destra',
+			mergeDown		: 'Unisci in Basso',
+			splitHorizontal	: 'Dividi Cella Orizzontalmente',
+			splitVertical	: 'Dividi Cella Verticalmente',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Riga',
+			insertBefore	: 'Inserisci Riga Prima',
+			insertAfter		: 'Inserisci Riga Dopo',
+			deleteRow		: 'Elimina righe'
+		},
+
+		column :
+		{
+			menu			: 'Colonna',
+			insertBefore	: 'Inserisci Colonna Prima',
+			insertAfter		: 'Inserisci Colonna Dopo',
+			deleteColumn	: 'Elimina colonne'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Proprietà bottone',
+		text		: 'Testo (Value)',
+		type		: 'Tipo',
+		typeBtn		: 'Bottone',
+		typeSbm		: 'Invio',
+		typeRst		: 'Annulla'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Proprietà checkbox',
+		radioTitle	: 'Proprietà radio button',
+		value		: 'Valore',
+		selected	: 'Selezionato'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Proprietà modulo',
+		menu		: 'Proprietà modulo',
+		action		: 'Azione',
+		method		: 'Metodo',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Destinazione',
+		targetNotSet	: '<non impostato>',
+		targetNew	: 'Nuova finestra (_blank)',
+		targetTop	: 'Finestra superiore (_top)',
+		targetSelf	: 'Stessa finestra (_self)',
+		targetParent	: 'Finestra padre (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Proprietà menu di selezione',
+		selectInfo	: 'Info',
+		opAvail		: 'Opzioni disponibili',
+		value		: 'Valore',
+		size		: 'Dimensione',
+		lines		: 'righe',
+		chkMulti	: 'Permetti selezione multipla',
+		opText		: 'Testo',
+		opValue		: 'Valore',
+		btnAdd		: 'Aggiungi',
+		btnModify	: 'Modifica',
+		btnUp		: 'Su',
+		btnDown		: 'Gi',
+		btnSetValue : 'Imposta come predefinito',
+		btnDelete	: 'Rimuovi'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Proprietà area di testo',
+		cols		: 'Colonne',
+		rows		: 'Righe'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Proprietà campo di testo',
+		name		: 'Nome',
+		value		: 'Valore',
+		charWidth	: 'Larghezza',
+		maxChars	: 'Numero massimo di caratteri',
+		type		: 'Tipo',
+		typeText	: 'Testo',
+		typePass	: 'Password'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Proprietà campo nascosto',
+		name	: 'Nome',
+		value	: 'Valore'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Proprietà immagine',
+		titleButton	: 'Proprietà bottone immagine',
+		menu		: 'Proprietà immagine',
+		infoTab	: 'Informazioni immagine',
+		btnUpload	: 'Invia al server',
+		url		: 'URL',
+		upload	: 'Carica',
+		alt		: 'Testo alternativo',
+		width		: 'Larghezza',
+		height	: 'Altezza',
+		lockRatio	: 'Blocca rapporto',
+		resetSize	: 'Reimposta dimensione',
+		border	: 'Bordo',
+		hSpace	: 'HSpace',
+		vSpace	: 'VSpace',
+		align		: 'Allineamento',
+		alignLeft	: 'Sinistra',
+		alignAbsBottom: 'In basso assoluto',
+		alignAbsMiddle: 'Centrato assoluto',
+		alignBaseline	: 'Linea base',
+		alignBottom	: 'In Basso',
+		alignMiddle	: 'Centrato',
+		alignRight	: 'Destra',
+		alignTextTop	: 'In alto al testo',
+		alignTop	: 'In Alto',
+		preview	: 'Anteprima',
+		alertUrl	: 'Devi inserire l\'URL per l\'immagine',
+		linkTab	: 'Collegamento',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Proprietà Oggetto Flash',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Proprietà Oggetto Flash',
+		chkPlay		: 'Avvio Automatico',
+		chkLoop		: 'Cicla',
+		chkMenu		: 'Abilita Menu di Flash',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Ridimensiona',
+		scaleAll		: 'Mostra Tutto',
+		scaleNoBorder	: 'Senza Bordo',
+		scaleFit		: 'Dimensione Esatta',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Allineamento',
+		alignLeft	: 'Sinistra',
+		alignAbsBottom: 'In basso assoluto',
+		alignAbsMiddle: 'Centrato assoluto',
+		alignBaseline	: 'Linea base',
+		alignBottom	: 'In Basso',
+		alignMiddle	: 'Centrato',
+		alignRight	: 'Destra',
+		alignTextTop	: 'In alto al testo',
+		alignTop	: 'In Alto',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Colore sfondo',
+		width	: 'Larghezza',
+		height	: 'Altezza',
+		hSpace	: 'HSpace',
+		vSpace	: 'VSpace',
+		validateSrc : 'Devi inserire l\'URL del collegamento',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Correttore ortografico',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Non nel dizionario',
+		changeTo		: 'Cambia in',
+		btnIgnore		: 'Ignora',
+		btnIgnoreAll	: 'Ignora tutto',
+		btnReplace		: 'Cambia',
+		btnReplaceAll	: 'Cambia tutto',
+		btnUndo			: 'Annulla',
+		noSuggestions	: '- Nessun suggerimento -',
+		progress		: 'Controllo ortografico in corso',
+		noMispell		: 'Controllo ortografico completato: nessun errore trovato',
+		noChanges		: 'Controllo ortografico completato: nessuna parola cambiata',
+		oneChange		: 'Controllo ortografico completato: 1 parola cambiata',
+		manyChanges		: 'Controllo ortografico completato: %1 parole cambiate',
+		ieSpellDownload	: 'Contollo ortografico non installato. Lo vuoi scaricare ora?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Emoticon',
+		title	: 'Inserisci emoticon'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Elenco numerato',
+	bulletedlist : 'Elenco puntato',
+	indent : 'Aumenta rientro',
+	outdent : 'Riduci rientro',
+
+	justify :
+	{
+		left : 'Allinea a sinistra',
+		center : 'Centra',
+		right : 'Allinea a destra',
+		block : 'Giustifica'
+	},
+
+	blockquote : 'Blockquote', // MISSING
+
+	clipboard :
+	{
+		title		: 'Incolla',
+		cutError	: 'Le impostazioni di sicurezza del browser non permettono di tagliare automaticamente il testo. Usa la tastiera (Ctrl+X).',
+		copyError	: 'Le impostazioni di sicurezza del browser non permettono di copiare automaticamente il testo. Usa la tastiera (Ctrl+C).',
+		pasteMsg	: 'Incolla il testo all\'interno dell\'area sottostante usando la scorciatoia di tastiere (<STRONG>Ctrl+V</STRONG>) e premi <STRONG>OK</STRONG>.',
+		securityMsg	: 'A causa delle impostazioni di sicurezza del browser,l\'editor non è in grado di accedere direttamente agli appunti. E\' pertanto necessario incollarli di nuovo in questa finestra.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Incolla da Word',
+		title : 'Incolla da Word',
+		advice : 'Incolla il testo all\'interno dell\'area sottostante usando la scorciatoia di tastiere (<STRONG>Ctrl+V</STRONG>) e premi <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Ignora le definizioni di Font',
+		removeStyle : 'Rimuovi le definizioni di Stile'
+	},
+
+	pasteText :
+	{
+		button : 'Incolla come testo semplice',
+		title : 'Incolla come testo semplice'
+	},
+
+	templates :
+	{
+		button : 'Modelli',
+		title : 'Contenuto dei modelli',
+		insertOption: 'Cancella il contenuto corrente',
+		selectPromptMsg: 'Seleziona il modello da aprire nell\'editor<br />(il contenuto attuale verrà eliminato):',
+		emptyListMsg : '(Nessun modello definito)'
+	},
+
+	showBlocks : 'Visualizza Blocchi',
+
+	stylesCombo :
+	{
+		label : 'Stile',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Formato',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Formato',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normale',
+		tag_pre : 'Formattato',
+		tag_address : 'Indirizzo',
+		tag_h1 : 'Titolo 1',
+		tag_h2 : 'Titolo 2',
+		tag_h3 : 'Titolo 3',
+		tag_h4 : 'Titolo 4',
+		tag_h5 : 'Titolo 5',
+		tag_h6 : 'Titolo 6',
+		tag_div : 'Paragrafo (DIV)'
+	},
+
+	font :
+	{
+		label : 'Font',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Font',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Dimensione',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Dimensione',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Colore testo',
+		bgColorTitle : 'Colore sfondo',
+		auto : 'Automatico',
+		more : 'Altri colori...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/ja.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/ja.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/ja.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Japanese language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['ja'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'ソース',
+	newPage			: '新しいページ',
+	save			: '保存',
+	preview			: 'プレビュー',
+	cut				: '切り取り',
+	copy			: 'コピー',
+	paste			: '貼り付け',
+	print			: '印刷',
+	underline		: '下線',
+	bold			: '太字',
+	italic			: '斜体',
+	selectAll		: 'すべて選択',
+	removeFormat	: 'フォーマット削除',
+	strike			: '打ち消し線',
+	subscript		: '添え字',
+	superscript		: '上付き文字',
+	horizontalrule	: '横罫線',
+	pagebreak		: '改ページ挿入',
+	unlink			: 'リンク削除',
+	undo			: '元に戻す',
+	redo			: 'やり直し',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'サーバーブラウザー',
+		url				: 'URL',
+		protocol		: 'プロトコル',
+		upload			: 'アップロード',
+		uploadSubmit	: 'サーバーに送信',
+		image			: 'イメージ',
+		flash			: 'Flash',
+		form			: 'フォーム',
+		checkbox		: 'チェックボックス',
+		radio		: 'ラジオボタン',
+		textField		: '１行テキスト',
+		textarea		: 'テキストエリア',
+		hiddenField		: '不可視フィールド',
+		button			: 'ボタン',
+		select	: '選択フィールド',
+		imageButton		: '画像ボタン',
+		notSet			: '<なし>',
+		id				: 'Id',
+		name			: 'Name属性',
+		langDir			: '文字表記の方向',
+		langDirLtr		: '左から右 (LTR)',
+		langDirRtl		: '右から左 (RTL)',
+		langCode		: '言語コード',
+		longDescr		: 'longdesc属性(長文説明)',
+		cssClass		: 'スタイルシートクラス',
+		advisoryTitle	: 'Title属性',
+		cssStyle		: 'スタイルシート',
+		ok				: 'OK',
+		cancel			: 'キャンセル',
+		generalTab		: '全般',
+		advancedTab		: '高度な設定',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: '特殊文字挿入',
+		title		: '特殊文字選択'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'リンク挿入/編集',
+		menu		: 'リンク編集',
+		title		: 'ハイパーリンク',
+		info		: 'ハイパーリンク 情報',
+		target		: 'ターゲット',
+		upload		: 'アップロード',
+		advanced	: '高度な設定',
+		type		: 'リンクタイプ',
+		toAnchor	: 'このページのアンカー',
+		toEmail		: 'E-Mail',
+		target		: 'ターゲット',
+		targetNotSet	: '<なし>',
+		targetFrame	: '<フレーム>',
+		targetPopup	: '<ポップアップウィンドウ>',
+		targetNew	: '新しいウィンドウ (_blank)',
+		targetTop	: '最上位ウィンドウ (_top)',
+		targetSelf	: '同じウィンドウ (_self)',
+		targetParent	: '親ウィンドウ (_parent)',
+		targetFrameName	: '目的のフレーム名',
+		targetPopupName	: 'ポップアップウィンドウ名',
+		popupFeatures	: 'ポップアップウィンドウ特徴',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'ステータスバー',
+		popupLocationBar	: 'ロケーションバー',
+		popupToolbar	: 'ツールバー',
+		popupMenuBar	: 'メニューバー',
+		popupFullScreen	: '全画面モード(IE)',
+		popupScrollBars	: 'スクロールバー',
+		popupDependent	: '開いたウィンドウに連動して閉じる (Netscape)',
+		popupWidth		: '幅',
+		popupLeft		: '左端からの座標で指定',
+		popupHeight		: '高さ',
+		popupTop		: '上端からの座標で指定',
+		id				: 'Id', // MISSING
+		langDir			: '文字表記の方向',
+		langDirNotSet	: '<なし>',
+		langDirLTR		: '左から右 (LTR)',
+		langDirRTL		: '右から左 (RTL)',
+		acccessKey		: 'アクセスキー',
+		name			: 'Name属性',
+		langCode		: '文字表記の方向',
+		tabIndex		: 'タブインデックス',
+		advisoryTitle	: 'Title属性',
+		advisoryContentType	: 'Content Type属性',
+		cssClasses		: 'スタイルシートクラス',
+		charset			: 'リンクcharset属性',
+		styles			: 'スタイルシート',
+		selectAnchor	: 'アンカーを選択',
+		anchorName		: 'アンカー名',
+		anchorId		: 'エレメントID',
+		emailAddress	: 'E-Mail アドレス',
+		emailSubject	: '件名',
+		emailBody		: '本文',
+		noAnchors		: '(ドキュメントにおいて利用可能なアンカーはありません。)',
+		noUrl			: 'リンクURLを入力してください。',
+		noEmail			: 'メールアドレスを入力してください。'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'アンカー挿入/編集',
+		menu		: 'アンカー プロパティ',
+		title		: 'アンカー プロパティ',
+		name		: 'アンカー名',
+		errorName	: 'アンカー名を必ず入力してください。'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: '検索して置換',
+		find				: '検索',
+		replace				: '置き換え',
+		findWhat			: '検索する文字列:',
+		replaceWith			: '置換えする文字列:',
+		notFoundMsg			: '指定された文字列は見つかりませんでした。',
+		matchCase			: '部分一致',
+		matchWord			: '単語単位で一致',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'すべて置換え',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'テーブル',
+		title		: 'テーブル プロパティ',
+		menu		: 'テーブル プロパティ',
+		deleteTable	: 'テーブル削除',
+		rows		: '行',
+		columns		: '列',
+		border		: 'ボーダーサイズ',
+		align		: 'キャプションの整列',
+		alignNotSet	: '<なし>',
+		alignLeft	: '左',
+		alignCenter	: '中央',
+		alignRight	: '右',
+		width		: 'テーブル幅',
+		widthPx		: 'ピクセル',
+		widthPc		: 'パーセント',
+		height		: 'テーブル高さ',
+		cellSpace	: 'セル内余白',
+		cellPad		: 'セル内間隔',
+		caption		: 'ｷｬﾌﾟｼｮﾝ',
+		summary		: 'テーブル目的/構造',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'セル',
+			insertBefore	: 'セルの前に挿入',
+			insertAfter		: 'セルの後に挿入',
+			deleteCell		: 'セル削除',
+			merge			: 'セル結合',
+			mergeRight		: '右に結合',
+			mergeDown		: '下に結合',
+			splitHorizontal	: 'セルを水平方向分割',
+			splitVertical	: 'セルを垂直方向に分割',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: '行',
+			insertBefore	: '列の前に挿入',
+			insertAfter		: '列の後に挿入',
+			deleteRow		: '行削除'
+		},
+
+		column :
+		{
+			menu			: 'カラム',
+			insertBefore	: 'カラムの前に挿入',
+			insertAfter		: 'カラムの後に挿入',
+			deleteColumn	: '列削除'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'ボタン プロパティ',
+		text		: 'テキスト (値)',
+		type		: 'タイプ',
+		typeBtn		: 'ボタン',
+		typeSbm		: '送信',
+		typeRst		: 'リセット'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'チェックボックス プロパティ',
+		radioTitle	: 'ラジオボタン プロパティ',
+		value		: '値',
+		selected	: '選択済み'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'フォーム プロパティ',
+		menu		: 'フォーム プロパティ',
+		action		: 'アクション',
+		method		: 'メソッド',
+		encoding	: 'Encoding', // MISSING
+		target		: 'ターゲット',
+		targetNotSet	: '<なし>',
+		targetNew	: '新しいウィンドウ (_blank)',
+		targetTop	: '最上位ウィンドウ (_top)',
+		targetSelf	: '同じウィンドウ (_self)',
+		targetParent	: '親ウィンドウ (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: '選択フィールド プロパティ',
+		selectInfo	: '情報',
+		opAvail		: '利用可能なオプション',
+		value		: '選択項目値',
+		size		: 'サイズ',
+		lines		: '行',
+		chkMulti	: '複数項目選択を許可',
+		opText		: '選択項目名',
+		opValue		: '値',
+		btnAdd		: '追加',
+		btnModify	: '編集',
+		btnUp		: '上へ',
+		btnDown		: '下へ',
+		btnSetValue : '選択した値を設定',
+		btnDelete	: '削除'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'テキストエリア プロパティ',
+		cols		: '列',
+		rows		: '行'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: '１行テキスト プロパティ',
+		name		: '名前',
+		value		: '値',
+		charWidth	: 'サイズ',
+		maxChars	: '最大長',
+		type		: 'タイプ',
+		typeText	: 'テキスト',
+		typePass	: 'パスワード入力'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: '不可視フィールド プロパティ',
+		name	: '名前',
+		value	: '値'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'イメージ プロパティ',
+		titleButton	: '画像ボタン プロパティ',
+		menu		: 'イメージ プロパティ',
+		infoTab	: 'イメージ 情報',
+		btnUpload	: 'サーバーに送信',
+		url		: 'URL',
+		upload	: 'アップロード',
+		alt		: '代替テキスト',
+		width		: '幅',
+		height	: '高さ',
+		lockRatio	: 'ロック比率',
+		resetSize	: 'サイズリセット',
+		border	: 'ボーダー',
+		hSpace	: '横間隔',
+		vSpace	: '縦間隔',
+		align		: '行揃え',
+		alignLeft	: '左',
+		alignAbsBottom: '下部(絶対的)',
+		alignAbsMiddle: '中央(絶対的)',
+		alignBaseline	: 'ベースライン',
+		alignBottom	: '下',
+		alignMiddle	: '中央',
+		alignRight	: '右',
+		alignTextTop	: 'テキスト上部',
+		alignTop	: '上',
+		preview	: 'プレビュー',
+		alertUrl	: 'イメージのURLを入力してください。',
+		linkTab	: 'リンク',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Flash プロパティ',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Flash プロパティ',
+		chkPlay		: '再生',
+		chkLoop		: 'ループ再生',
+		chkMenu		: 'Flashメニュー可能',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: '拡大縮小設定',
+		scaleAll		: 'すべて表示',
+		scaleNoBorder	: '外が見えない様に拡大',
+		scaleFit		: '上下左右にフィット',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: '行揃え',
+		alignLeft	: '左',
+		alignAbsBottom: '下部(絶対的)',
+		alignAbsMiddle: '中央(絶対的)',
+		alignBaseline	: 'ベースライン',
+		alignBottom	: '下',
+		alignMiddle	: '中央',
+		alignRight	: '右',
+		alignTextTop	: 'テキスト上部',
+		alignTop	: '上',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: '背景色',
+		width	: '幅',
+		height	: '高さ',
+		hSpace	: '横間隔',
+		vSpace	: '縦間隔',
+		validateSrc : 'リンクURLを入力してください。',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'スペルチェック',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: '辞書にありません',
+		changeTo		: '変更',
+		btnIgnore		: '無視',
+		btnIgnoreAll	: 'すべて無視',
+		btnReplace		: '置換',
+		btnReplaceAll	: 'すべて置換',
+		btnUndo			: 'やり直し',
+		noSuggestions	: '- 該当なし -',
+		progress		: 'スペルチェック処理中...',
+		noMispell		: 'スペルチェック完了: スペルの誤りはありませんでした',
+		noChanges		: 'スペルチェック完了: 語句は変更されませんでした',
+		oneChange		: 'スペルチェック完了: １語句変更されました',
+		manyChanges		: 'スペルチェック完了: %1 語句変更されました',
+		ieSpellDownload	: 'スペルチェッカーがインストールされていません。今すぐダウンロードしますか?'
+	},
+
+	smiley :
+	{
+		toolbar	: '絵文字',
+		title	: '顔文字挿入'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : '段落番号',
+	bulletedlist : '箇条書き',
+	indent : 'インデント',
+	outdent : 'インデント解除',
+
+	justify :
+	{
+		left : '左揃え',
+		center : '中央揃え',
+		right : '右揃え',
+		block : '両端揃え'
+	},
+
+	blockquote : 'ブロック引用',
+
+	clipboard :
+	{
+		title		: '貼り付け',
+		cutError	: 'ブラウザーのセキュリティ設定によりエディタの切り取り操作が自動で実行することができません。実行するには手動でキーボードの(Ctrl+X)を使用してください。',
+		copyError	: 'ブラウザーのセキュリティ設定によりエディタのコピー操作が自動で実行することができません。実行するには手動でキーボードの(Ctrl+C)を使用してください。',
+		pasteMsg	: 'キーボード(<STRONG>Ctrl+V</STRONG>)を使用して、次の入力エリア内で貼って、<STRONG>OK</STRONG>を押してください。',
+		securityMsg	: 'ブラウザのセキュリティ設定により、エディタはクリップボード・データに直接アクセスすることができません。このウィンドウは貼り付け操作を行う度に表示されます。'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'ワード文章から貼り付け',
+		title : 'ワード文章から貼り付け',
+		advice : 'キーボード(<STRONG>Ctrl+V</STRONG>)を使用して、次の入力エリア内で貼って、<STRONG>OK</STRONG>を押してください。',
+		ignoreFontFace : 'FontタグのFace属性を無視します。',
+		removeStyle : 'スタイル定義を削除します。'
+	},
+
+	pasteText :
+	{
+		button : 'プレーンテキスト貼り付け',
+		title : 'プレーンテキスト貼り付け'
+	},
+
+	templates :
+	{
+		button : 'テンプレート(雛形)',
+		title : 'テンプレート内容',
+		insertOption: '現在のエディタの内容と置換えをします',
+		selectPromptMsg: 'エディターで使用するテンプレートを選択してください。<br>(現在のエディタの内容は失われます):',
+		emptyListMsg : '(テンプレートが定義されていません)'
+	},
+
+	showBlocks : 'ブロック表示',
+
+	stylesCombo :
+	{
+		label : 'スタイル',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'フォーマット',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'フォーマット',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : '標準',
+		tag_pre : '書式付き',
+		tag_address : 'アドレス',
+		tag_h1 : '見出し 1',
+		tag_h2 : '見出し 2',
+		tag_h3 : '見出し 3',
+		tag_h4 : '見出し 4',
+		tag_h5 : '見出し 5',
+		tag_h6 : '見出し 6',
+		tag_div : '標準 (DIV)'
+	},
+
+	font :
+	{
+		label : 'フォント',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'フォント',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'サイズ',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'サイズ',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'テキスト色',
+		bgColorTitle : '背景色',
+		auto : '自動',
+		more : 'その他の色...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/km.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/km.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/km.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Khmer language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['km'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'កូត',
+	newPage			: 'ទំព័រថ្មី',
+	save			: 'រក្សាទុក',
+	preview			: 'មើលសាកល្បង',
+	cut				: 'កាត់យក',
+	copy			: 'ចំលងយក',
+	paste			: 'ចំលងដាក់',
+	print			: 'បោះពុម្ភ',
+	underline		: 'ដិតបន្ទាត់ពីក្រោមអក្សរ',
+	bold			: 'អក្សរដិតធំ',
+	italic			: 'អក្សរផ្តេក',
+	selectAll		: 'ជ្រើសរើសទាំងអស់',
+	removeFormat	: 'លប់ចោល ការរចនា',
+	strike			: 'ដិតបន្ទាត់ពាក់កណ្តាលអក្សរ',
+	subscript		: 'អក្សរតូចក្រោម',
+	superscript		: 'អក្សរតូចលើ',
+	horizontalrule	: 'បន្ថែមបន្ទាត់ផ្តេក',
+	pagebreak		: 'បន្ថែម ការផ្តាច់ទំព័រ',
+	unlink			: 'លប់ឈ្នាប់',
+	undo			: 'សារឡើងវិញ',
+	redo			: 'ធ្វើឡើងវិញ',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'មើល',
+		url				: 'URL',
+		protocol		: 'ប្រូតូកូល',
+		upload			: 'ទាញយក',
+		uploadSubmit	: 'បញ្ជូនទៅកាន់ម៉ាស៊ីនផ្តល់សេវា',
+		image			: 'រូបភាព',
+		flash			: 'Flash',
+		form			: 'បែបបទ',
+		checkbox		: 'ប្រអប់ជ្រើសរើស',
+		radio		: 'ប៉ូតុនរង្វង់មូល',
+		textField		: 'ជួរសរសេរអត្ថបទ',
+		textarea		: 'តំបន់សរសេរអត្ថបទ',
+		hiddenField		: 'ជួរលាក់',
+		button			: 'ប៉ូតុន',
+		select	: 'ជួរជ្រើសរើស',
+		imageButton		: 'ប៉ូតុនរូបភាព',
+		notSet			: '<មិនមែន>',
+		id				: 'Id',
+		name			: 'ឈ្មោះ',
+		langDir			: 'ទិសដៅភាសា',
+		langDirLtr		: 'ពីឆ្វេងទៅស្តាំ(LTR)',
+		langDirRtl		: 'ពីស្តាំទៅឆ្វេង(RTL)',
+		langCode		: 'លេខកូតភាសា',
+		longDescr		: 'អធិប្បាយ URL វែង',
+		cssClass		: 'Stylesheet Classes',
+		advisoryTitle	: 'ចំណងជើង ប្រឹក្សា',
+		cssStyle		: 'ម៉ូត',
+		ok				: 'យល់ព្រម',
+		cancel			: 'មិនយល់ព្រម',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'កំរិតខ្ពស់',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'បន្ថែមអក្សរពិសេស',
+		title		: 'តូអក្សរពិសេស'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'បន្ថែម/កែប្រែ ឈ្នាប់',
+		menu		: 'កែប្រែឈ្នាប់',
+		title		: 'ឈ្នាប់',
+		info		: 'ពត៌មានអំពីឈ្នាប់',
+		target		: 'គោលដៅ',
+		upload		: 'ទាញយក',
+		advanced	: 'កំរិតខ្ពស់',
+		type		: 'ប្រភេទឈ្នាប់',
+		toAnchor	: 'យុថ្កានៅក្នុងទំព័រនេះ',
+		toEmail		: 'អ៊ីមែល',
+		target		: 'គោលដៅ',
+		targetNotSet	: '<មិនមែន>',
+		targetFrame	: '<ហ្វ្រេម>',
+		targetPopup	: '<វីនដូវ លោត>',
+		targetNew	: 'វីនដូវថ្មី (_blank)',
+		targetTop	: 'វីនដូវនៅលើគេ(_top)',
+		targetSelf	: 'វីនដូវដដែល (_self)',
+		targetParent	: 'វីនដូវមេ (_parent)',
+		targetFrameName	: 'ឈ្មោះហ្រ្វេមដែលជាគោលដៅ',
+		targetPopupName	: 'ឈ្មោះវីនដូវលោត',
+		popupFeatures	: 'លក្ខណះរបស់វីនដូលលោត',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'របា ពត៌មាន',
+		popupLocationBar	: 'របា ទីតាំង',
+		popupToolbar	: 'របា ឩបករណ៍',
+		popupMenuBar	: 'របា មឺនុយ',
+		popupFullScreen	: 'អេក្រុងពេញ(IE)',
+		popupScrollBars	: 'របា ទាញ',
+		popupDependent	: 'អាស្រ័យលើ (Netscape)',
+		popupWidth		: 'ទទឹង',
+		popupLeft		: 'ទីតាំងខាងឆ្វេង',
+		popupHeight		: 'កំពស់',
+		popupTop		: 'ទីតាំងខាងលើ',
+		id				: 'Id', // MISSING
+		langDir			: 'ទិសដៅភាសា',
+		langDirNotSet	: '<មិនមែន>',
+		langDirLTR		: 'ពីឆ្វេងទៅស្តាំ(LTR)',
+		langDirRTL		: 'ពីស្តាំទៅឆ្វេង(RTL)',
+		acccessKey		: 'ឃី សំរាប់ចូល',
+		name			: 'ឈ្មោះ',
+		langCode		: 'ទិសដៅភាសា',
+		tabIndex		: 'លេខ Tab',
+		advisoryTitle	: 'ចំណងជើង ប្រឹក្សា',
+		advisoryContentType	: 'ប្រភេទអត្ថបទ ប្រឹក្សា',
+		cssClasses		: 'Stylesheet Classes',
+		charset			: 'លេខកូតអក្សររបស់ឈ្នាប់',
+		styles			: 'ម៉ូត',
+		selectAnchor	: 'ជ្រើសរើសយុថ្កា',
+		anchorName		: 'តាមឈ្មោះរបស់យុថ្កា',
+		anchorId		: 'តាម Id',
+		emailAddress	: 'អ៊ីមែល',
+		emailSubject	: 'ចំណងជើងអត្ថបទ',
+		emailBody		: 'អត្ថបទ',
+		noAnchors		: '(No anchors available in the document)', // MISSING
+		noUrl			: 'សូមសរសេរ អាស័យដ្ឋាន URL',
+		noEmail			: 'សូមសរសេរ អាស័យដ្ឋាន អ៊ីមែល'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'បន្ថែម/កែប្រែ យុថ្កា',
+		menu		: 'ការកំណត់យុថ្កា',
+		title		: 'ការកំណត់យុថ្កា',
+		name		: 'ឈ្មោះយុទ្ធថ្កា',
+		errorName	: 'សូមសរសេរ ឈ្មោះយុទ្ធថ្កា'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Find and Replace', // MISSING
+		find				: 'ស្វែងរក',
+		replace				: 'ជំនួស',
+		findWhat			: 'ស្វែងរកអ្វី:',
+		replaceWith			: 'ជំនួសជាមួយ:',
+		notFoundMsg			: 'ពាក្យនេះ រកមិនឃើញទេ ។',
+		matchCase			: 'ករណ៉ត្រូវរក',
+		matchWord			: 'ត្រូវពាក្យទាំងអស់',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'ជំនួសទាំងអស់',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'តារាង',
+		title		: 'ការកំណត់ តារាង',
+		menu		: 'ការកំណត់ តារាង',
+		deleteTable	: 'លប់តារាង',
+		rows		: 'ជួរផ្តេក',
+		columns		: 'ជួរឈរ',
+		border		: 'ទំហំស៊ុម',
+		align		: 'ការកំណត់ទីតាំង',
+		alignNotSet	: '<មិនកំណត់>',
+		alignLeft	: 'ខាងឆ្វេង',
+		alignCenter	: 'កណ្តាល',
+		alignRight	: 'ខាងស្តាំ',
+		width		: 'ទទឹង',
+		widthPx		: 'ភីកសែល',
+		widthPc		: 'ភាគរយ',
+		height		: 'កំពស់',
+		cellSpace	: 'គំលាតសែល',
+		cellPad		: 'គែមសែល',
+		caption		: 'ចំណងជើង',
+		summary		: 'សេចក្តីសង្ខេប',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Cell', // MISSING
+			insertBefore	: 'Insert Cell Before', // MISSING
+			insertAfter		: 'Insert Cell After', // MISSING
+			deleteCell		: 'លប់សែល',
+			merge			: 'បញ្ជូលសែល',
+			mergeRight		: 'Merge Right', // MISSING
+			mergeDown		: 'Merge Down', // MISSING
+			splitHorizontal	: 'Split Cell Horizontally', // MISSING
+			splitVertical	: 'Split Cell Vertically', // MISSING
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Row', // MISSING
+			insertBefore	: 'Insert Row Before', // MISSING
+			insertAfter		: 'Insert Row After', // MISSING
+			deleteRow		: 'លប់ជួរផ្តេក'
+		},
+
+		column :
+		{
+			menu			: 'Column', // MISSING
+			insertBefore	: 'Insert Column Before', // MISSING
+			insertAfter		: 'Insert Column After', // MISSING
+			deleteColumn	: 'លប់ជួរឈរ'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'ការកំណត់ ប៉ូតុន',
+		text		: 'អត្ថបទ(តំលៃ)',
+		type		: 'ប្រភេទ',
+		typeBtn		: 'Button', // MISSING
+		typeSbm		: 'Submit', // MISSING
+		typeRst		: 'Reset' // MISSING
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'ការកំណត់ប្រអប់ជ្រើសរើស',
+		radioTitle	: 'ការកំណត់ប៉ូតុនរង្វង់',
+		value		: 'តំលៃ',
+		selected	: 'បានជ្រើសរើស'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'ការកំណត់បែបបទ',
+		menu		: 'ការកំណត់បែបបទ',
+		action		: 'សកម្មភាព',
+		method		: 'វិធី',
+		encoding	: 'Encoding', // MISSING
+		target		: 'គោលដៅ',
+		targetNotSet	: '<មិនមែន>',
+		targetNew	: 'វីនដូវថ្មី (_blank)',
+		targetTop	: 'វីនដូវនៅលើគេ(_top)',
+		targetSelf	: 'វីនដូវដដែល (_self)',
+		targetParent	: 'វីនដូវមេ (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'ការកំណត់ជួរជ្រើសរើស',
+		selectInfo	: 'ពត៌មាន',
+		opAvail		: 'ការកំណត់ជ្រើសរើស ដែលអាចកំណត់បាន',
+		value		: 'តំលៃ',
+		size		: 'ទំហំ',
+		lines		: 'បន្ទាត់',
+		chkMulti	: 'អនុញ្ញាតអោយជ្រើសរើសច្រើន',
+		opText		: 'ពាក្យ',
+		opValue		: 'តំលៃ',
+		btnAdd		: 'បន្ថែម',
+		btnModify	: 'ផ្លាស់ប្តូរ',
+		btnUp		: 'លើ',
+		btnDown		: 'ក្រោម',
+		btnSetValue : 'Set as selected value', // MISSING
+		btnDelete	: 'លប់'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'ការកំណត់កន្លែងសរសេរអត្ថបទ',
+		cols		: 'ជូរឈរ',
+		rows		: 'ជូរផ្តេក'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'ការកំណត់ជួរអត្ថបទ',
+		name		: 'ឈ្មោះ',
+		value		: 'តំលៃ',
+		charWidth	: 'ទទឹង អក្សរ',
+		maxChars	: 'អក្សរអតិបរិមា',
+		type		: 'ប្រភេទ',
+		typeText	: 'ពាក្យ',
+		typePass	: 'ពាក្យសំងាត់'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'ការកំណត់ជួរលាក់',
+		name	: 'ឈ្មោះ',
+		value	: 'តំលៃ'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'ការកំណត់រូបភាព',
+		titleButton	: 'ការកំណត់ប៉ូតុនរូបភាព',
+		menu		: 'ការកំណត់រូបភាព',
+		infoTab	: 'ពត៌មានអំពីរូបភាព',
+		btnUpload	: 'បញ្ជូនទៅកាន់ម៉ាស៊ីនផ្តល់សេវា',
+		url		: 'URL',
+		upload	: 'ទាញយក',
+		alt		: 'អត្ថបទជំនួស',
+		width		: 'ទទឹង',
+		height	: 'កំពស់',
+		lockRatio	: 'អត្រាឡុក',
+		resetSize	: 'កំណត់ទំហំឡើងវិញ',
+		border	: 'ស៊ុម',
+		hSpace	: 'គំលាតទទឹង',
+		vSpace	: 'គំលាតបណ្តោយ',
+		align		: 'កំណត់ទីតាំង',
+		alignLeft	: 'ខាងឆ្វង',
+		alignAbsBottom: 'Abs Bottom', // MISSING
+		alignAbsMiddle: 'Abs Middle', // MISSING
+		alignBaseline	: 'បន្ទាត់ជាមូលដ្ឋាន',
+		alignBottom	: 'ខាងក្រោម',
+		alignMiddle	: 'កណ្តាល',
+		alignRight	: 'ខាងស្តាំ',
+		alignTextTop	: 'លើអត្ថបទ',
+		alignTop	: 'ខាងលើ',
+		preview	: 'មើលសាកល្បង',
+		alertUrl	: 'សូមសរសេរងាស័យដ្ឋានរបស់រូបភាព',
+		linkTab	: 'ឈ្នាប់',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'ការកំណត់ Flash',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'ការកំណត់ Flash',
+		chkPlay		: 'លេងដោយស្វ័យប្រវត្ត',
+		chkLoop		: 'ចំនួនដង',
+		chkMenu		: 'បង្ហាញ មឺនុយរបស់ Flash',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'ទំហំ',
+		scaleAll		: 'បង្ហាញទាំងអស់',
+		scaleNoBorder	: 'មិនបង្ហាញស៊ុម',
+		scaleFit		: 'ត្រូវល្មម',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'កំណត់ទីតាំង',
+		alignLeft	: 'ខាងឆ្វង',
+		alignAbsBottom: 'Abs Bottom', // MISSING
+		alignAbsMiddle: 'Abs Middle', // MISSING
+		alignBaseline	: 'បន្ទាត់ជាមូលដ្ឋាន',
+		alignBottom	: 'ខាងក្រោម',
+		alignMiddle	: 'កណ្តាល',
+		alignRight	: 'ខាងស្តាំ',
+		alignTextTop	: 'លើអត្ថបទ',
+		alignTop	: 'ខាងលើ',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'ពណ៌ផ្ទៃខាងក្រោយ',
+		width	: 'ទទឹង',
+		height	: 'កំពស់',
+		hSpace	: 'គំលាតទទឹង',
+		vSpace	: 'គំលាតបណ្តោយ',
+		validateSrc : 'សូមសរសេរ អាស័យដ្ឋាន URL',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'ពិនិត្យអក្ខរាវិរុទ្ធ',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'គ្មានក្នុងវចនានុក្រម',
+		changeTo		: 'ផ្លាស់ប្តូរទៅ',
+		btnIgnore		: 'មិនផ្លាស់ប្តូរ',
+		btnIgnoreAll	: 'មិនផ្លាស់ប្តូរ ទាំងអស់',
+		btnReplace		: 'ជំនួស',
+		btnReplaceAll	: 'ជំនួសទាំងអស់',
+		btnUndo			: 'សារឡើងវិញ',
+		noSuggestions	: '- គ្មានសំណើរ -',
+		progress		: 'កំពុងពិនិត្យអក្ខរាវិរុទ្ធ...',
+		noMispell		: 'ការពិនិត្យអក្ខរាវិរុទ្ធបានចប់: គ្មានកំហុស',
+		noChanges		: 'ការពិនិត្យអក្ខរាវិរុទ្ធបានចប់: ពុំមានផ្លាស់ប្តូរ',
+		oneChange		: 'ការពិនិត្យអក្ខរាវិរុទ្ធបានចប់: ពាក្យមួយត្រូចបានផ្លាស់ប្តូរ',
+		manyChanges		: 'ការពិនិត្យអក្ខរាវិរុទ្ធបានចប់: %1 ពាក្យបានផ្លាស់ប្តូរ',
+		ieSpellDownload	: 'ពុំមានកម្មវិធីពិនិត្យអក្ខរាវិរុទ្ធ ។ តើចង់ទាញយកពីណា?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'រូបភាព',
+		title	: 'បញ្ជូលរូបភាព'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'បញ្ជីជាអក្សរ',
+	bulletedlist : 'បញ្ជីជារង្វង់មូល',
+	indent : 'បន្ថែមការចូលបន្ទាត់',
+	outdent : 'បន្ថយការចូលបន្ទាត់',
+
+	justify :
+	{
+		left : 'តំរឹមឆ្វេង',
+		center : 'តំរឹមកណ្តាល',
+		right : 'តំរឹមស្តាំ',
+		block : 'តំរឹមសងខាង'
+	},
+
+	blockquote : 'Blockquote', // MISSING
+
+	clipboard :
+	{
+		title		: 'ចំលងដាក់',
+		cutError	: 'ការកំណត់សុវត្ថភាពរបស់កម្មវិធីរុករករបស់លោកអ្នក នេះ\u200bមិនអាចធ្វើកម្មវិធីតាក់តែងអត្ថបទ កាត់អត្ថបទយកដោយស្វ័យប្រវត្តបានឡើយ ។ សូមប្រើប្រាស់បន្សំ ឃីដូចនេះ  (Ctrl+X) ។',
+		copyError	: 'ការកំណត់សុវត្ថភាពរបស់កម្មវិធីរុករករបស់លោកអ្នក នេះ\u200bមិនអាចធ្វើកម្មវិធីតាក់តែងអត្ថបទ ចំលងអត្ថបទយកដោយស្វ័យប្រវត្តបានឡើយ ។ សូមប្រើប្រាស់បន្សំ ឃីដូចនេះ (Ctrl+C)។',
+		pasteMsg	: 'សូមចំលងអត្ថបទទៅដាក់ក្នុងប្រអប់ដូចខាងក្រោមដោយប្រើប្រាស់ ឃី \u200b(<STRONG>Ctrl+V</STRONG>) ហើយចុច <STRONG>OK</STRONG> ។',
+		securityMsg	: 'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.' // MISSING
+	},
+
+	pastefromword :
+	{
+		toolbar : 'ចំលងដាក់ពី Word',
+		title : 'ចំលងដាក់ពី Word',
+		advice : 'សូមចំលងអត្ថបទទៅដាក់ក្នុងប្រអប់ដូចខាងក្រោមដោយប្រើប្រាស់ ឃី \u200b(<STRONG>Ctrl+V</STRONG>) ហើយចុច <STRONG>OK</STRONG> ។',
+		ignoreFontFace : 'មិនគិតអំពីប្រភេទពុម្ភអក្សរ',
+		removeStyle : 'លប់ម៉ូត'
+	},
+
+	pasteText :
+	{
+		button : 'ចំលងដាក់អត្ថបទធម្មតា',
+		title : 'ចំលងដាក់អត្ថបទធម្មតា'
+	},
+
+	templates :
+	{
+		button : 'ឯកសារគំរូ',
+		title : 'ឯកសារគំរូ របស់អត្ថន័យ',
+		insertOption: 'Replace actual contents', // MISSING
+		selectPromptMsg: 'សូមជ្រើសរើសឯកសារគំរូ ដើម្បីបើកនៅក្នុងកម្មវិធីតាក់តែងអត្ថបទ<br>(អត្ថបទនឹងបាត់បង់):',
+		emptyListMsg : '(ពុំមានឯកសារគំរូត្រូវបានកំណត់)'
+	},
+
+	showBlocks : 'Show Blocks', // MISSING
+
+	stylesCombo :
+	{
+		label : 'ម៉ូត',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'រចនា',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'រចនា',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normal',
+		tag_pre : 'Formatted',
+		tag_address : 'Address',
+		tag_h1 : 'Heading 1',
+		tag_h2 : 'Heading 2',
+		tag_h3 : 'Heading 3',
+		tag_h4 : 'Heading 4',
+		tag_h5 : 'Heading 5',
+		tag_h6 : 'Heading 6',
+		tag_div : 'Normal (DIV)'
+	},
+
+	font :
+	{
+		label : 'ហ្វុង',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'ហ្វុង',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'ទំហំ',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'ទំហំ',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'ពណ៌អក្សរ',
+		bgColorTitle : 'ពណ៌ផ្ទៃខាងក្រោយ',
+		auto : 'ស្វ័យប្រវត្ត',
+		more : 'ពណ៌ផ្សេងទៀត..'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/ko.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/ko.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/ko.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Korean language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['ko'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: '소스',
+	newPage			: '새 문서',
+	save			: '저장하기',
+	preview			: '미리보기',
+	cut				: '잘라내기',
+	copy			: '복사하기',
+	paste			: '붙여넣기',
+	print			: '인쇄하기',
+	underline		: '밑줄',
+	bold			: '진하게',
+	italic			: '이텔릭',
+	selectAll		: '전체선택',
+	removeFormat	: '포맷 지우기',
+	strike			: '취소선',
+	subscript		: '아래 첨자',
+	superscript		: '위 첨자',
+	horizontalrule	: '수평선 삽입',
+	pagebreak		: 'Insert Page Break for Printing', // MISSING
+	unlink			: '링크 삭제',
+	undo			: '취소',
+	redo			: '재실행',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: '서버 보기',
+		url				: 'URL',
+		protocol		: '프로토콜',
+		upload			: '업로드',
+		uploadSubmit	: '서버로 전송',
+		image			: '이미지',
+		flash			: '플래쉬',
+		form			: '폼',
+		checkbox		: '체크박스',
+		radio		: '라디오버튼',
+		textField		: '입력필드',
+		textarea		: '입력영역',
+		hiddenField		: '숨김필드',
+		button			: '버튼',
+		select	: '펼침목록',
+		imageButton		: '이미지버튼',
+		notSet			: '<설정되지 않음>',
+		id				: 'ID',
+		name			: 'Name',
+		langDir			: '쓰기 방향',
+		langDirLtr		: '왼쪽에서 오른쪽 (LTR)',
+		langDirRtl		: '오른쪽에서 왼쪽 (RTL)',
+		langCode		: '언어 코드',
+		longDescr		: 'URL 설명',
+		cssClass		: 'Stylesheet Classes',
+		advisoryTitle	: 'Advisory Title',
+		cssStyle		: 'Style',
+		ok				: '예',
+		cancel			: '아니오',
+		generalTab		: 'General', // MISSING
+		advancedTab		: '자세히',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: '특수문자 삽입',
+		title		: '특수문자 선택'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: '링크 삽입/변경',
+		menu		: '링크 수정',
+		title		: '링크',
+		info		: '링크 정보',
+		target		: '타겟',
+		upload		: '업로드',
+		advanced	: '자세히',
+		type		: '링크 종류',
+		toAnchor	: '책갈피',
+		toEmail		: '이메일',
+		target		: '타겟',
+		targetNotSet	: '<설정되지 않음>',
+		targetFrame	: '<프레임>',
+		targetPopup	: '<팝업창>',
+		targetNew	: '새 창 (_blank)',
+		targetTop	: '최 상위 창 (_top)',
+		targetSelf	: '현재 창 (_self)',
+		targetParent	: '부모 창 (_parent)',
+		targetFrameName	: '타겟 프레임 이름',
+		targetPopupName	: '팝업창 이름',
+		popupFeatures	: '팝업창 설정',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: '상태바',
+		popupLocationBar	: '주소표시줄',
+		popupToolbar	: '툴바',
+		popupMenuBar	: '메뉴바',
+		popupFullScreen	: '전체화면 (IE)',
+		popupScrollBars	: '스크롤바',
+		popupDependent	: 'Dependent (Netscape)',
+		popupWidth		: '너비',
+		popupLeft		: '왼쪽 위치',
+		popupHeight		: '높이',
+		popupTop		: '윗쪽 위치',
+		id				: 'Id', // MISSING
+		langDir			: '쓰기 방향',
+		langDirNotSet	: '<설정되지 않음>',
+		langDirLTR		: '왼쪽에서 오른쪽 (LTR)',
+		langDirRTL		: '오른쪽에서 왼쪽 (RTL)',
+		acccessKey		: '엑세스 키',
+		name			: 'Name',
+		langCode		: '쓰기 방향',
+		tabIndex		: '탭 순서',
+		advisoryTitle	: 'Advisory Title',
+		advisoryContentType	: 'Advisory Content Type',
+		cssClasses		: 'Stylesheet Classes',
+		charset			: 'Linked Resource Charset',
+		styles			: 'Style',
+		selectAnchor	: '책갈피 선택',
+		anchorName		: '책갈피 이름',
+		anchorId		: '책갈피 ID',
+		emailAddress	: '이메일 주소',
+		emailSubject	: '제목',
+		emailBody		: '내용',
+		noAnchors		: '(문서에 책갈피가 없습니다.)',
+		noUrl			: '링크 URL을 입력하십시요.',
+		noEmail			: '이메일주소를 입력하십시요.'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: '책갈피 삽입/변경',
+		menu		: '책갈피 속성',
+		title		: '책갈피 속성',
+		name		: '책갈피 이름',
+		errorName	: '책갈피 이름을 입력하십시요.'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: '찾기 & 바꾸기',
+		find				: '찾기',
+		replace				: '바꾸기',
+		findWhat			: '찾을 문자열:',
+		replaceWith			: '바꿀 문자열:',
+		notFoundMsg			: '문자열을 찾을 수 없습니다.',
+		matchCase			: '대소문자 구분',
+		matchWord			: '온전한 단어',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: '모두 바꾸기',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: '표',
+		title		: '표 설정',
+		menu		: '표 설정',
+		deleteTable	: '표 삭제',
+		rows		: '가로줄',
+		columns		: '세로줄',
+		border		: '테두리 크기',
+		align		: '정렬',
+		alignNotSet	: '<설정되지 않음>',
+		alignLeft	: '왼쪽',
+		alignCenter	: '가운데',
+		alignRight	: '오른쪽',
+		width		: '너비',
+		widthPx		: '픽셀',
+		widthPc		: '퍼센트',
+		height		: '높이',
+		cellSpace	: '셀 간격',
+		cellPad		: '셀 여백',
+		caption		: '캡션',
+		summary		: 'Summary', // MISSING
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: '셀/칸(Cell)',
+			insertBefore	: '앞에 셀/칸 삽입',
+			insertAfter		: '뒤에 셀/칸 삽입',
+			deleteCell		: '셀 삭제',
+			merge			: '셀 합치기',
+			mergeRight		: '오른쪽 뭉치기',
+			mergeDown		: '왼쪽 뭉치기',
+			splitHorizontal	: '수평 나누기',
+			splitVertical	: '수직 나누기',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: '행(Row)',
+			insertBefore	: '앞에 행 삽입',
+			insertAfter		: '뒤에 행 삽입',
+			deleteRow		: '가로줄 삭제'
+		},
+
+		column :
+		{
+			menu			: '열(Column)',
+			insertBefore	: '앞에 열 삽입',
+			insertAfter		: '뒤에 열 삽입',
+			deleteColumn	: '세로줄 삭제'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: '버튼 속성',
+		text		: '버튼글자(값)',
+		type		: '버튼종류',
+		typeBtn		: 'Button', // MISSING
+		typeSbm		: 'Submit', // MISSING
+		typeRst		: 'Reset' // MISSING
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : '체크박스 속성',
+		radioTitle	: '라디오버튼 속성',
+		value		: '값',
+		selected	: '선택됨'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: '폼 속성',
+		menu		: '폼 속성',
+		action		: '실행경로(Action)',
+		method		: '방법(Method)',
+		encoding	: 'Encoding', // MISSING
+		target		: '타겟',
+		targetNotSet	: '<설정되지 않음>',
+		targetNew	: '새 창 (_blank)',
+		targetTop	: '최 상위 창 (_top)',
+		targetSelf	: '현재 창 (_self)',
+		targetParent	: '부모 창 (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: '펼침목록 속성',
+		selectInfo	: '정보',
+		opAvail		: '선택옵션',
+		value		: '값',
+		size		: '세로크기',
+		lines		: '줄',
+		chkMulti	: '여러항목 선택 허용',
+		opText		: '이름',
+		opValue		: '값',
+		btnAdd		: '추가',
+		btnModify	: '변경',
+		btnUp		: '위로',
+		btnDown		: '아래로',
+		btnSetValue : '선택된것으로 설정',
+		btnDelete	: '삭제'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: '입력영역 속성',
+		cols		: '칸수',
+		rows		: '줄수'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: '입력필드 속성',
+		name		: '이름',
+		value		: '값',
+		charWidth	: '글자 너비',
+		maxChars	: '최대 글자수',
+		type		: '종류',
+		typeText	: '문자열',
+		typePass	: '비밀번호'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: '숨김필드 속성',
+		name	: '이름',
+		value	: '값'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: '이미지 설정',
+		titleButton	: '이미지버튼 속성',
+		menu		: '이미지 설정',
+		infoTab	: '이미지 정보',
+		btnUpload	: '서버로 전송',
+		url		: 'URL',
+		upload	: '업로드',
+		alt		: '이미지 설명',
+		width		: '너비',
+		height	: '높이',
+		lockRatio	: '비율 유지',
+		resetSize	: '원래 크기로',
+		border	: '테두리',
+		hSpace	: '수평여백',
+		vSpace	: '수직여백',
+		align		: '정렬',
+		alignLeft	: '왼쪽',
+		alignAbsBottom: '줄아래(Abs Bottom)',
+		alignAbsMiddle: '줄중간(Abs Middle)',
+		alignBaseline	: '기준선',
+		alignBottom	: '아래',
+		alignMiddle	: '중간',
+		alignRight	: '오른쪽',
+		alignTextTop	: '글자상단',
+		alignTop	: '위',
+		preview	: '미리보기',
+		alertUrl	: '이미지 URL을 입력하십시요',
+		linkTab	: '링크',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: '플래쉬 속성',
+		propertiesTab	: 'Properties', // MISSING
+		title		: '플래쉬 등록정보',
+		chkPlay		: '자동재생',
+		chkLoop		: '반복',
+		chkMenu		: '플래쉬메뉴 가능',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: '영역',
+		scaleAll		: '모두보기',
+		scaleNoBorder	: '경계선없음',
+		scaleFit		: '영역자동조절',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: '정렬',
+		alignLeft	: '왼쪽',
+		alignAbsBottom: '줄아래(Abs Bottom)',
+		alignAbsMiddle: '줄중간(Abs Middle)',
+		alignBaseline	: '기준선',
+		alignBottom	: '아래',
+		alignMiddle	: '중간',
+		alignRight	: '오른쪽',
+		alignTextTop	: '글자상단',
+		alignTop	: '위',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: '배경 색상',
+		width	: '너비',
+		height	: '높이',
+		hSpace	: '수평여백',
+		vSpace	: '수직여백',
+		validateSrc : '링크 URL을 입력하십시요.',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: '철자검사',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: '사전에 없는 단어',
+		changeTo		: '변경할 단어',
+		btnIgnore		: '건너뜀',
+		btnIgnoreAll	: '모두 건너뜀',
+		btnReplace		: '변경',
+		btnReplaceAll	: '모두 변경',
+		btnUndo			: '취소',
+		noSuggestions	: '- 추천단어 없음 -',
+		progress		: '철자검사를 진행중입니다...',
+		noMispell		: '철자검사 완료: 잘못된 철자가 없습니다.',
+		noChanges		: '철자검사 완료: 변경된 단어가 없습니다.',
+		oneChange		: '철자검사 완료: 단어가 변경되었습니다.',
+		manyChanges		: '철자검사 완료: %1 단어가 변경되었습니다.',
+		ieSpellDownload	: '철자 검사기가 철치되지 않았습니다. 지금 다운로드하시겠습니까?'
+	},
+
+	smiley :
+	{
+		toolbar	: '아이콘',
+		title	: '아이콘 삽입'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : '순서있는 목록',
+	bulletedlist : '순서없는 목록',
+	indent : '들여쓰기',
+	outdent : '내어쓰기',
+
+	justify :
+	{
+		left : '왼쪽 정렬',
+		center : '가운데 정렬',
+		right : '오른쪽 정렬',
+		block : '양쪽 맞춤'
+	},
+
+	blockquote : 'Blockquote', // MISSING
+
+	clipboard :
+	{
+		title		: '붙여넣기',
+		cutError	: '브라우저의 보안설정때문에 잘라내기 기능을 실행할 수 없습니다. 키보드 명령을 사용하십시요. (Ctrl+X).',
+		copyError	: '브라우저의 보안설정때문에 복사하기 기능을 실행할 수 없습니다. 키보드 명령을 사용하십시요.  (Ctrl+C).',
+		pasteMsg	: '키보드의 (<STRONG>Ctrl+V</STRONG>) 를 이용해서 상자안에 붙여넣고 <STRONG>OK</STRONG> 를 누르세요.',
+		securityMsg	: '브러우저 보안 설정으로 인해, 클립보드의 자료를 직접 접근할 수 없습니다. 이 창에 다시 붙여넣기 하십시오.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'MS Word 형식에서 붙여넣기',
+		title : 'MS Word 형식에서 붙여넣기',
+		advice : '키보드의 (<STRONG>Ctrl+V</STRONG>) 를 이용해서 상자안에 붙여넣고 <STRONG>OK</STRONG> 를 누르세요.',
+		ignoreFontFace : '폰트 설정 무시',
+		removeStyle : '스타일 정의 제거'
+	},
+
+	pasteText :
+	{
+		button : '텍스트로 붙여넣기',
+		title : '텍스트로 붙여넣기'
+	},
+
+	templates :
+	{
+		button : '템플릿',
+		title : '내용 템플릿',
+		insertOption: '현재 내용 바꾸기',
+		selectPromptMsg: '에디터에서 사용할 템플릿을 선택하십시요.<br>(지금까지 작성된 내용은 사라집니다.):',
+		emptyListMsg : '(템플릿이 없습니다.)'
+	},
+
+	showBlocks : 'Show Blocks', // MISSING
+
+	stylesCombo :
+	{
+		label : '스타일',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : '포맷',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : '포맷',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normal',
+		tag_pre : 'Formatted',
+		tag_address : 'Address',
+		tag_h1 : 'Heading 1',
+		tag_h2 : 'Heading 2',
+		tag_h3 : 'Heading 3',
+		tag_h4 : 'Heading 4',
+		tag_h5 : 'Heading 5',
+		tag_h6 : 'Heading 6',
+		tag_div : 'Normal (DIV)' // MISSING
+	},
+
+	font :
+	{
+		label : '폰트',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : '폰트',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : '글자 크기',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : '글자 크기',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : '글자 색상',
+		bgColorTitle : '배경 색상',
+		auto : '기본색상',
+		more : '색상선택...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/lt.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/lt.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/lt.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Lithuanian language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['lt'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Šaltinis',
+	newPage			: 'Naujas puslapis',
+	save			: 'Išsaugoti',
+	preview			: 'Peržiūra',
+	cut				: 'Iškirpti',
+	copy			: 'Kopijuoti',
+	paste			: 'Įdėti',
+	print			: 'Spausdinti',
+	underline		: 'Pabrauktas',
+	bold			: 'Pusjuodis',
+	italic			: 'Kursyvas',
+	selectAll		: 'Pažymėti viską',
+	removeFormat	: 'Panaikinti formatą',
+	strike			: 'Perbrauktas',
+	subscript		: 'Apatinis indeksas',
+	superscript		: 'Viršutinis indeksas',
+	horizontalrule	: 'Įterpti horizontalią liniją',
+	pagebreak		: 'Įterpti puslapių skirtuką',
+	unlink			: 'Panaikinti nuorodą',
+	undo			: 'Atšaukti',
+	redo			: 'Atstatyti',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Naršyti po serverį',
+		url				: 'URL',
+		protocol		: 'Protokolas',
+		upload			: 'Siųsti',
+		uploadSubmit	: 'Siųsti į serverį',
+		image			: 'Vaizdas',
+		flash			: 'Flash',
+		form			: 'Forma',
+		checkbox		: 'Žymimasis langelis',
+		radio		: 'Žymimoji akutė',
+		textField		: 'Teksto laukas',
+		textarea		: 'Teksto sritis',
+		hiddenField		: 'Nerodomas laukas',
+		button			: 'Mygtukas',
+		select	: 'Atrankos laukas',
+		imageButton		: 'Vaizdinis mygtukas',
+		notSet			: '<nėra nustatyta>',
+		id				: 'Id',
+		name			: 'Vardas',
+		langDir			: 'Teksto kryptis',
+		langDirLtr		: 'Iš kairės į dešinę (LTR)',
+		langDirRtl		: 'Iš dešinės į kairę (RTL)',
+		langCode		: 'Kalbos kodas',
+		longDescr		: 'Ilgas aprašymas URL',
+		cssClass		: 'Stilių lentelės klasės',
+		advisoryTitle	: 'Konsultacinė antraštė',
+		cssStyle		: 'Stilius',
+		ok				: 'OK',
+		cancel			: 'Nutraukti',
+		generalTab		: 'Bendros savybės',
+		advancedTab		: 'Papildomas',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Įterpti specialų simbolį',
+		title		: 'Pasirinkite specialų simbolį'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Įterpti/taisyti nuorodą',
+		menu		: 'Taisyti nuorodą',
+		title		: 'Nuoroda',
+		info		: 'Nuorodos informacija',
+		target		: 'Paskirties vieta',
+		upload		: 'Siųsti',
+		advanced	: 'Papildomas',
+		type		: 'Nuorodos tipas',
+		toAnchor	: 'Žymė šiame puslapyje',
+		toEmail		: 'El.paštas',
+		target		: 'Paskirties vieta',
+		targetNotSet	: '<nėra nustatyta>',
+		targetFrame	: '<kadras>',
+		targetPopup	: '<išskleidžiamas langas>',
+		targetNew	: 'Naujas langas (_blank)',
+		targetTop	: 'Svarbiausias langas (_top)',
+		targetSelf	: 'Tas pats langas (_self)',
+		targetParent	: 'Pirminis langas (_parent)',
+		targetFrameName	: 'Paskirties kadro vardas',
+		targetPopupName	: 'Paskirties lango vardas',
+		popupFeatures	: 'Išskleidžiamo lango savybės',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Būsenos juosta',
+		popupLocationBar	: 'Adreso juosta',
+		popupToolbar	: 'Mygtukų juosta',
+		popupMenuBar	: 'Meniu juosta',
+		popupFullScreen	: 'Visas ekranas (IE)',
+		popupScrollBars	: 'Slinkties juostos',
+		popupDependent	: 'Priklausomas (Netscape)',
+		popupWidth		: 'Plotis',
+		popupLeft		: 'Kairė pozicija',
+		popupHeight		: 'Aukštis',
+		popupTop		: 'Viršutinė pozicija',
+		id				: 'Id', // MISSING
+		langDir			: 'Teksto kryptis',
+		langDirNotSet	: '<nėra nustatyta>',
+		langDirLTR		: 'Iš kairės į dešinę (LTR)',
+		langDirRTL		: 'Iš dešinės į kairę (RTL)',
+		acccessKey		: 'Prieigos raktas',
+		name			: 'Vardas',
+		langCode		: 'Teksto kryptis',
+		tabIndex		: 'Tabuliavimo indeksas',
+		advisoryTitle	: 'Konsultacinė antraštė',
+		advisoryContentType	: 'Konsultacinio turinio tipas',
+		cssClasses		: 'Stilių lentelės klasės',
+		charset			: 'Susietų išteklių simbolių lentelė',
+		styles			: 'Stilius',
+		selectAnchor	: 'Pasirinkite žymę',
+		anchorName		: 'Pagal žymės vardą',
+		anchorId		: 'Pagal žymės Id',
+		emailAddress	: 'El.pašto adresas',
+		emailSubject	: 'Žinutės tema',
+		emailBody		: 'Žinutės turinys',
+		noAnchors		: '(Šiame dokumente žymių nėra)',
+		noUrl			: 'Prašome įvesti nuorodos URL',
+		noEmail			: 'Prašome įvesti el.pašto adresą'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Įterpti/modifikuoti žymę',
+		menu		: 'Žymės savybės',
+		title		: 'Žymės savybės',
+		name		: 'Žymės vardas',
+		errorName	: 'Prašome įvesti žymės vardą'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Surasti ir pakeisti',
+		find				: 'Rasti',
+		replace				: 'Pakeisti',
+		findWhat			: 'Surasti tekstą:',
+		replaceWith			: 'Pakeisti tekstu:',
+		notFoundMsg			: 'Nurodytas tekstas nerastas.',
+		matchCase			: 'Skirti didžiąsias ir mažąsias raides',
+		matchWord			: 'Atitikti pilną žodį',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Pakeisti viską',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Lentelė',
+		title		: 'Lentelės savybės',
+		menu		: 'Lentelės savybės',
+		deleteTable	: 'Šalinti lentelę',
+		rows		: 'Eilutės',
+		columns		: 'Stulpeliai',
+		border		: 'Rėmelio dydis',
+		align		: 'Lygiuoti',
+		alignNotSet	: '<Nenustatyta>',
+		alignLeft	: 'Kairę',
+		alignCenter	: 'Centrą',
+		alignRight	: 'Dešinę',
+		width		: 'Plotis',
+		widthPx		: 'taškais',
+		widthPc		: 'procentais',
+		height		: 'Aukštis',
+		cellSpace	: 'Tarpas tarp langelių',
+		cellPad		: 'Trapas nuo langelio rėmo iki teksto',
+		caption		: 'Antraštė',
+		summary		: 'Santrauka',
+		headers		: 'Antraštės',
+		headersNone		: 'Nėra',
+		headersColumn	: 'Pirmas stulpelis',
+		headersRow		: 'Pirma eilutė',
+		headersBoth		: 'Abu',
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Langelis',
+			insertBefore	: 'Įterpti langelį prieš',
+			insertAfter		: 'Įterpti langelį po',
+			deleteCell		: 'Šalinti langelius',
+			merge			: 'Sujungti langelius',
+			mergeRight		: 'Sujungti su dešine',
+			mergeDown		: 'Sujungti su apačia',
+			splitHorizontal	: 'Skaidyti langelį horizontaliai',
+			splitVertical	: 'Skaidyti langelį vertikaliai',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Eilutė',
+			insertBefore	: 'Įterpti eilutę prieš',
+			insertAfter		: 'Įterpti eilutę po',
+			deleteRow		: 'Šalinti eilutes'
+		},
+
+		column :
+		{
+			menu			: 'Stulpelis',
+			insertBefore	: 'Įterpti stulpelį prieš',
+			insertAfter		: 'Įterpti stulpelį po',
+			deleteColumn	: 'Šalinti stulpelius'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Mygtuko savybės',
+		text		: 'Tekstas (Reikšmė)',
+		type		: 'Tipas',
+		typeBtn		: 'Mygtukas',
+		typeSbm		: 'Siųsti',
+		typeRst		: 'Išvalyti'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Žymimojo langelio savybės',
+		radioTitle	: 'Žymimosios akutės savybės',
+		value		: 'Reikšmė',
+		selected	: 'Pažymėtas'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Formos savybės',
+		menu		: 'Formos savybės',
+		action		: 'Veiksmas',
+		method		: 'Metodas',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Paskirties vieta',
+		targetNotSet	: '<nėra nustatyta>',
+		targetNew	: 'Naujas langas (_blank)',
+		targetTop	: 'Svarbiausias langas (_top)',
+		targetSelf	: 'Tas pats langas (_self)',
+		targetParent	: 'Pirminis langas (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Atrankos lauko savybės',
+		selectInfo	: 'Informacija',
+		opAvail		: 'Galimos parinktys',
+		value		: 'Reikšmė',
+		size		: 'Dydis',
+		lines		: 'eilučių',
+		chkMulti	: 'Leisti daugeriopą atranką',
+		opText		: 'Tekstas',
+		opValue		: 'Reikšmė',
+		btnAdd		: 'Įtraukti',
+		btnModify	: 'Modifikuoti',
+		btnUp		: 'Aukštyn',
+		btnDown		: 'Žemyn',
+		btnSetValue : 'Laikyti pažymėta reikšme',
+		btnDelete	: 'Trinti'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Teksto srities savybės',
+		cols		: 'Ilgis',
+		rows		: 'Plotis'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Teksto lauko savybės',
+		name		: 'Vardas',
+		value		: 'Reikšmė',
+		charWidth	: 'Ilgis simboliais',
+		maxChars	: 'Maksimalus simbolių skaičius',
+		type		: 'Tipas',
+		typeText	: 'Tekstas',
+		typePass	: 'Slaptažodis'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Nerodomo lauko savybės',
+		name	: 'Vardas',
+		value	: 'Reikšmė'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Vaizdo savybės',
+		titleButton	: 'Vaizdinio mygtuko savybės',
+		menu		: 'Vaizdo savybės',
+		infoTab	: 'Vaizdo informacija',
+		btnUpload	: 'Siųsti į serverį',
+		url		: 'URL',
+		upload	: 'Nusiųsti',
+		alt		: 'Alternatyvus Tekstas',
+		width		: 'Plotis',
+		height	: 'Aukštis',
+		lockRatio	: 'Išlaikyti proporciją',
+		resetSize	: 'Atstatyti dydį',
+		border	: 'Rėmelis',
+		hSpace	: 'Hor.Erdvė',
+		vSpace	: 'Vert.Erdvė',
+		align		: 'Lygiuoti',
+		alignLeft	: 'Kairę',
+		alignAbsBottom: 'Absoliučią apačią',
+		alignAbsMiddle: 'Absoliutų vidurį',
+		alignBaseline	: 'Apatinę liniją',
+		alignBottom	: 'Apačią',
+		alignMiddle	: 'Vidurį',
+		alignRight	: 'Dešinę',
+		alignTextTop	: 'Teksto viršūnę',
+		alignTop	: 'Viršūnę',
+		preview	: 'Peržiūra',
+		alertUrl	: 'Prašome įvesti vaizdo URL',
+		linkTab	: 'Nuoroda',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Flash savybės',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Flash savybės',
+		chkPlay		: 'Automatinis paleidimas',
+		chkLoop		: 'Ciklas',
+		chkMenu		: 'Leisti Flash meniu',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Mastelis',
+		scaleAll		: 'Rodyti visą',
+		scaleNoBorder	: 'Be rėmelio',
+		scaleFit		: 'Tikslus atitikimas',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Lygiuoti',
+		alignLeft	: 'Kairę',
+		alignAbsBottom: 'Absoliučią apačią',
+		alignAbsMiddle: 'Absoliutų vidurį',
+		alignBaseline	: 'Apatinę liniją',
+		alignBottom	: 'Apačią',
+		alignMiddle	: 'Vidurį',
+		alignRight	: 'Dešinę',
+		alignTextTop	: 'Teksto viršūnę',
+		alignTop	: 'Viršūnę',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Fono spalva',
+		width	: 'Plotis',
+		height	: 'Aukštis',
+		hSpace	: 'Hor.Erdvė',
+		vSpace	: 'Vert.Erdvė',
+		validateSrc : 'Prašome įvesti nuorodos URL',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Rašybos tikrinimas',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Žodyne nerastas',
+		changeTo		: 'Pakeisti į',
+		btnIgnore		: 'Ignoruoti',
+		btnIgnoreAll	: 'Ignoruoti visus',
+		btnReplace		: 'Pakeisti',
+		btnReplaceAll	: 'Pakeisti visus',
+		btnUndo			: 'Atšaukti',
+		noSuggestions	: '- Nėra pasiūlymų -',
+		progress		: 'Vyksta rašybos tikrinimas...',
+		noMispell		: 'Rašybos tikrinimas baigtas: Nerasta rašybos klaidų',
+		noChanges		: 'Rašybos tikrinimas baigtas: Nėra pakeistų žodžių',
+		oneChange		: 'Rašybos tikrinimas baigtas: Vienas žodis pakeistas',
+		manyChanges		: 'Rašybos tikrinimas baigtas: Pakeista %1 žodžių',
+		ieSpellDownload	: 'Rašybos tikrinimas neinstaliuotas. Ar Jūs norite jį dabar atsisiųsti?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Veideliai',
+		title	: 'Įterpti veidelį'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Numeruotas sąrašas',
+	bulletedlist : 'Suženklintas sąrašas',
+	indent : 'Padidinti įtrauką',
+	outdent : 'Sumažinti įtrauką',
+
+	justify :
+	{
+		left : 'Lygiuoti kairę',
+		center : 'Centruoti',
+		right : 'Lygiuoti dešinę',
+		block : 'Lygiuoti abi puses'
+	},
+
+	blockquote : 'Citata',
+
+	clipboard :
+	{
+		title		: 'Įdėti',
+		cutError	: 'Jūsų naršyklės saugumo nustatymai neleidžia redaktoriui automatiškai įvykdyti iškirpimo operacijų. Tam prašome naudoti klaviatūrą (Ctrl+X).',
+		copyError	: 'Jūsų naršyklės saugumo nustatymai neleidžia redaktoriui automatiškai įvykdyti kopijavimo operacijų. Tam prašome naudoti klaviatūrą (Ctrl+C).',
+		pasteMsg	: 'Žemiau esančiame įvedimo lauke įdėkite tekstą, naudodami klaviatūrą (<STRONG>Ctrl+V</STRONG>) ir paspauskite mygtuką <STRONG>OK</STRONG>.',
+		securityMsg	: 'Dėl jūsų naršyklės saugumo nustatymų, redaktorius negali tiesiogiai pasiekti laikinosios atminties. Jums reikia nukopijuoti dar kartą į šį langą.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Įdėti iš Word',
+		title : 'Įdėti iš Word',
+		advice : 'Žemiau esančiame įvedimo lauke įdėkite tekstą, naudodami klaviatūrą (<STRONG>Ctrl+V</STRONG>) ir paspauskite mygtuką <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Ignoruoti šriftų nustatymus',
+		removeStyle : 'Pašalinti stilių nustatymus'
+	},
+
+	pasteText :
+	{
+		button : 'Įdėti kaip gryną tekstą',
+		title : 'Įdėti kaip gryną tekstą'
+	},
+
+	templates :
+	{
+		button : 'Šablonai',
+		title : 'Turinio šablonai',
+		insertOption: 'Pakeisti dabartinį turinį pasirinktu šablonu',
+		selectPromptMsg: 'Pasirinkite norimą šabloną<br>(<b>Dėmesio!</b> esamas turinys bus prarastas):',
+		emptyListMsg : '(Šablonų sąrašas tuščias)'
+	},
+
+	showBlocks : 'Rodyti blokus',
+
+	stylesCombo :
+	{
+		label : 'Stilius',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Šrifto formatas',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Šrifto formatas',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normalus',
+		tag_pre : 'Formuotas',
+		tag_address : 'Kreipinio',
+		tag_h1 : 'Antraštinis 1',
+		tag_h2 : 'Antraštinis 2',
+		tag_h3 : 'Antraštinis 3',
+		tag_h4 : 'Antraštinis 4',
+		tag_h5 : 'Antraštinis 5',
+		tag_h6 : 'Antraštinis 6',
+		tag_div : 'Normal (DIV)' // MISSING
+	},
+
+	font :
+	{
+		label : 'Šriftas',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Šriftas',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Šrifto dydis',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Šrifto dydis',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Teksto spalva',
+		bgColorTitle : 'Fono spalva',
+		auto : 'Automatinis',
+		more : 'Daugiau spalvų...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/lv.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/lv.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/lv.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Latvian language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['lv'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'HTML kods',
+	newPage			: 'Jauna lapa',
+	save			: 'Saglabāt',
+	preview			: 'Pārskatīt',
+	cut				: 'Izgriezt',
+	copy			: 'Kopēt',
+	paste			: 'Ievietot',
+	print			: 'Drukāt',
+	underline		: 'Apakšsvītra',
+	bold			: 'Treknu šriftu',
+	italic			: 'Slīprakstā',
+	selectAll		: 'Iezīmēt visu',
+	removeFormat	: 'Noņemt stilus',
+	strike			: 'Pārsvītrots',
+	subscript		: 'Zemrakstā',
+	superscript		: 'Augšrakstā',
+	horizontalrule	: 'Ievietot horizontālu Atdalītājsvītru',
+	pagebreak		: 'Ievietot lapas pārtraukumu',
+	unlink			: 'Noņemt hipersaiti',
+	undo			: 'Atcelt',
+	redo			: 'Atkārtot',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Skatīt servera saturu',
+		url				: 'URL',
+		protocol		: 'Protokols',
+		upload			: 'Augšupielādēt',
+		uploadSubmit	: 'Nosūtīt serverim',
+		image			: 'Attēls',
+		flash			: 'Flash',
+		form			: 'Forma',
+		checkbox		: 'Atzīmēšanas kastīte',
+		radio		: 'Izvēles poga',
+		textField		: 'Teksta rinda',
+		textarea		: 'Teksta laukums',
+		hiddenField		: 'Paslēpta teksta rinda',
+		button			: 'Poga',
+		select	: 'Iezīmēšanas lauks',
+		imageButton		: 'Attēlpoga',
+		notSet			: '<nav iestatīts>',
+		id				: 'Id',
+		name			: 'Nosaukums',
+		langDir			: 'Valodas lasīšanas virziens',
+		langDirLtr		: 'No kreisās uz labo (LTR)',
+		langDirRtl		: 'No labās uz kreiso (RTL)',
+		langCode		: 'Valodas kods',
+		longDescr		: 'Gara apraksta Hipersaite',
+		cssClass		: 'Stilu saraksta klases',
+		advisoryTitle	: 'Konsultatīvs virsraksts',
+		cssStyle		: 'Stils',
+		ok				: 'Darīts!',
+		cancel			: 'Atcelt',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'Izvērstais',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Ievietot speciālo simbolu',
+		title		: 'Ievietot īpašu simbolu'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Ievietot/Labot hipersaiti',
+		menu		: 'Labot hipersaiti',
+		title		: 'Hipersaite',
+		info		: 'Hipersaites informācija',
+		target		: 'Mērķis',
+		upload		: 'Augšupielādēt',
+		advanced	: 'Izvērstais',
+		type		: 'Hipersaites tips',
+		toAnchor	: 'Iezīme šajā lapā',
+		toEmail		: 'E-pasts',
+		target		: 'Mērķis',
+		targetNotSet	: '<nav iestatīts>',
+		targetFrame	: '<ietvars>',
+		targetPopup	: '<uznirstošā logā>',
+		targetNew	: 'Jaunā logā (_blank)',
+		targetTop	: 'Visredzamākajā logā (_top)',
+		targetSelf	: 'Tajā pašā logā (_self)',
+		targetParent	: 'Esošajā logā (_parent)',
+		targetFrameName	: 'Mērķa ietvara nosaukums',
+		targetPopupName	: 'Uznirstošā loga nosaukums',
+		popupFeatures	: 'Uznirstošā loga nosaukums īpašības',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Statusa josla',
+		popupLocationBar	: 'Atrašanās vietas josla',
+		popupToolbar	: 'Rīku josla',
+		popupMenuBar	: 'Izvēlnes josla',
+		popupFullScreen	: 'Pilnā ekrānā (IE)',
+		popupScrollBars	: 'Ritjoslas',
+		popupDependent	: 'Atkarīgs (Netscape)',
+		popupWidth		: 'Platums',
+		popupLeft		: 'Kreisā koordināte',
+		popupHeight		: 'Augstums',
+		popupTop		: 'Augšējā koordināte',
+		id				: 'Id', // MISSING
+		langDir			: 'Valodas lasīšanas virziens',
+		langDirNotSet	: '<nav iestatīts>',
+		langDirLTR		: 'No kreisās uz labo (LTR)',
+		langDirRTL		: 'No labās uz kreiso (RTL)',
+		acccessKey		: 'Pieejas kods',
+		name			: 'Nosaukums',
+		langCode		: 'Valodas lasīšanas virziens',
+		tabIndex		: 'Ciļņu indekss',
+		advisoryTitle	: 'Konsultatīvs virsraksts',
+		advisoryContentType	: 'Konsultatīvs satura tips',
+		cssClasses		: 'Stilu saraksta klases',
+		charset			: 'Pievienotā resursa kodu tabula',
+		styles			: 'Stils',
+		selectAnchor	: 'Izvēlēties iezīmi',
+		anchorName		: 'Pēc iezīmes nosaukuma',
+		anchorId		: 'Pēc elementa ID',
+		emailAddress	: 'E-pasta adrese',
+		emailSubject	: 'Ziņas tēma',
+		emailBody		: 'Ziņas saturs',
+		noAnchors		: '(Šajā dokumentā nav iezīmju)',
+		noUrl			: 'Lūdzu norādi hipersaiti',
+		noEmail			: 'Lūdzu norādi e-pasta adresi'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Ievietot/Labot iezīmi',
+		menu		: 'Iezīmes īpašības',
+		title		: 'Iezīmes īpašības',
+		name		: 'Iezīmes nosaukums',
+		errorName	: 'Lūdzu norādiet iezīmes nosaukumu'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Find and Replace', // MISSING
+		find				: 'Meklēt',
+		replace				: 'Nomainīt',
+		findWhat			: 'Meklēt:',
+		replaceWith			: 'Nomainīt uz:',
+		notFoundMsg			: 'Norādītā frāze netika atrasta.',
+		matchCase			: 'Reģistrjūtīgs',
+		matchWord			: 'Jāsakrīt pilnībā',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Aizvietot visu',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tabula',
+		title		: 'Tabulas īpašības',
+		menu		: 'Tabulas īpašības',
+		deleteTable	: 'Dzēst tabulu',
+		rows		: 'Rindas',
+		columns		: 'Kolonnas',
+		border		: 'Rāmja izmērs',
+		align		: 'Novietojums',
+		alignNotSet	: '<nav norādīts>',
+		alignLeft	: 'Pa kreisi',
+		alignCenter	: 'Centrēti',
+		alignRight	: 'Pa labi',
+		width		: 'Platums',
+		widthPx		: 'pikseļos',
+		widthPc		: 'procentuāli',
+		height		: 'Augstums',
+		cellSpace	: 'Rūtiņu atstatums',
+		cellPad		: 'Rūtiņu nobīde',
+		caption		: 'Leģenda',
+		summary		: 'Anotācija',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Šūna',
+			insertBefore	: 'Insert Cell Before', // MISSING
+			insertAfter		: 'Insert Cell After', // MISSING
+			deleteCell		: 'Dzēst rūtiņas',
+			merge			: 'Apvienot rūtiņas',
+			mergeRight		: 'Merge Right', // MISSING
+			mergeDown		: 'Merge Down', // MISSING
+			splitHorizontal	: 'Split Cell Horizontally', // MISSING
+			splitVertical	: 'Split Cell Vertically', // MISSING
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Rinda',
+			insertBefore	: 'Insert Row Before', // MISSING
+			insertAfter		: 'Insert Row After', // MISSING
+			deleteRow		: 'Dzēst rindas'
+		},
+
+		column :
+		{
+			menu			: 'Kolonna',
+			insertBefore	: 'Insert Column Before', // MISSING
+			insertAfter		: 'Insert Column After', // MISSING
+			deleteColumn	: 'Dzēst kolonnas'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Pogas īpašības',
+		text		: 'Teksts (vērtība)',
+		type		: 'Tips',
+		typeBtn		: 'Button', // MISSING
+		typeSbm		: 'Submit', // MISSING
+		typeRst		: 'Reset' // MISSING
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Atzīmēšanas kastītes īpašības',
+		radioTitle	: 'Izvēles poga īpašības',
+		value		: 'Vērtība',
+		selected	: 'Iezīmēts'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Formas īpašības',
+		menu		: 'Formas īpašības',
+		action		: 'Darbība',
+		method		: 'Metode',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Mērķis',
+		targetNotSet	: '<nav iestatīts>',
+		targetNew	: 'Jaunā logā (_blank)',
+		targetTop	: 'Visredzamākajā logā (_top)',
+		targetSelf	: 'Tajā pašā logā (_self)',
+		targetParent	: 'Esošajā logā (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Iezīmēšanas lauka īpašības',
+		selectInfo	: 'Informācija',
+		opAvail		: 'Pieejamās iespējas',
+		value		: 'Vērtība',
+		size		: 'Izmērs',
+		lines		: 'rindas',
+		chkMulti	: 'Atļaut vairākus iezīmējumus',
+		opText		: 'Teksts',
+		opValue		: 'Vērtība',
+		btnAdd		: 'Pievienot',
+		btnModify	: 'Veikt izmaiņas',
+		btnUp		: 'Augšup',
+		btnDown		: 'Lejup',
+		btnSetValue : 'Noteikt kā iezīmēto vērtību',
+		btnDelete	: 'Dzēst'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Teksta laukuma īpašības',
+		cols		: 'Kolonnas',
+		rows		: 'Rindas'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Teksta rindas  īpašības',
+		name		: 'Nosaukums',
+		value		: 'Vērtība',
+		charWidth	: 'Simbolu platums',
+		maxChars	: 'Simbolu maksimālais daudzums',
+		type		: 'Tips',
+		typeText	: 'Teksts',
+		typePass	: 'Parole'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Paslēptās teksta rindas īpašības',
+		name	: 'Nosaukums',
+		value	: 'Vērtība'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Attēla īpašības',
+		titleButton	: 'Attēlpogas īpašības',
+		menu		: 'Attēla īpašības',
+		infoTab	: 'Informācija par attēlu',
+		btnUpload	: 'Nosūtīt serverim',
+		url		: 'URL',
+		upload	: 'Augšupielādēt',
+		alt		: 'Alternatīvais teksts',
+		width		: 'Platums',
+		height	: 'Augstums',
+		lockRatio	: 'Nemainīga Augstuma/Platuma attiecība',
+		resetSize	: 'Atjaunot sākotnējo izmēru',
+		border	: 'Rāmis',
+		hSpace	: 'Horizontālā telpa',
+		vSpace	: 'Vertikālā telpa',
+		align		: 'Nolīdzināt',
+		alignLeft	: 'Pa kreisi',
+		alignAbsBottom: 'Absolūti apakšā',
+		alignAbsMiddle: 'Absolūti vertikāli centrēts',
+		alignBaseline	: 'Pamatrindā',
+		alignBottom	: 'Apakšā',
+		alignMiddle	: 'Vertikāli centrēts',
+		alignRight	: 'Pa labi',
+		alignTextTop	: 'Teksta augšā',
+		alignTop	: 'Augšā',
+		preview	: 'Pārskats',
+		alertUrl	: 'Lūdzu norādīt attēla hipersaiti',
+		linkTab	: 'Hipersaite',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Flash īpašības',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Flash īpašības',
+		chkPlay		: 'Automātiska atskaņošana',
+		chkLoop		: 'Nepārtraukti',
+		chkMenu		: 'Atļaut Flash izvēlni',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Mainīt izmēru',
+		scaleAll		: 'Rādīt visu',
+		scaleNoBorder	: 'Bez rāmja',
+		scaleFit		: 'Precīzs izmērs',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Nolīdzināt',
+		alignLeft	: 'Pa kreisi',
+		alignAbsBottom: 'Absolūti apakšā',
+		alignAbsMiddle: 'Absolūti vertikāli centrēts',
+		alignBaseline	: 'Pamatrindā',
+		alignBottom	: 'Apakšā',
+		alignMiddle	: 'Vertikāli centrēts',
+		alignRight	: 'Pa labi',
+		alignTextTop	: 'Teksta augšā',
+		alignTop	: 'Augšā',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Fona krāsa',
+		width	: 'Platums',
+		height	: 'Augstums',
+		hSpace	: 'Horizontālā telpa',
+		vSpace	: 'Vertikālā telpa',
+		validateSrc : 'Lūdzu norādi hipersaiti',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Pareizrakstības pārbaude',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Netika atrasts vārdnīcā',
+		changeTo		: 'Nomainīt uz',
+		btnIgnore		: 'Ignorēt',
+		btnIgnoreAll	: 'Ignorēt visu',
+		btnReplace		: 'Aizvietot',
+		btnReplaceAll	: 'Aizvietot visu',
+		btnUndo			: 'Atcelt',
+		noSuggestions	: '- Nav ieteikumu -',
+		progress		: 'Notiek pareizrakstības pārbaude...',
+		noMispell		: 'Pareizrakstības pārbaude pabeigta: kļūdas netika atrastas',
+		noChanges		: 'Pareizrakstības pārbaude pabeigta: nekas netika labots',
+		oneChange		: 'Pareizrakstības pārbaude pabeigta: 1 vārds izmainīts',
+		manyChanges		: 'Pareizrakstības pārbaude pabeigta: %1 vārdi tika mainīti',
+		ieSpellDownload	: 'Pareizrakstības pārbaudītājs nav pievienots. Vai vēlaties to lejupielādēt tagad?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Smaidiņi',
+		title	: 'Ievietot smaidiņu'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Numurēts saraksts',
+	bulletedlist : 'Izcelts saraksts',
+	indent : 'Palielināt atkāpi',
+	outdent : 'Samazināt atkāpi',
+
+	justify :
+	{
+		left : 'Izlīdzināt pa kreisi',
+		center : 'Izlīdzināt pret centru',
+		right : 'Izlīdzināt pa labi',
+		block : 'Izlīdzināt malas'
+	},
+
+	blockquote : 'Blockquote', // MISSING
+
+	clipboard :
+	{
+		title		: 'Ievietot',
+		cutError	: 'Jūsu pārlūkprogrammas drošības iestatījumi nepieļauj editoram automātiski veikt izgriešanas darbību.  Lūdzu, izmantojiet (Ctrl+X, lai veiktu šo darbību.',
+		copyError	: 'Jūsu pārlūkprogrammas drošības iestatījumi nepieļauj editoram automātiski veikt kopēšanas darbību.  Lūdzu, izmantojiet (Ctrl+C), lai veiktu šo darbību.',
+		pasteMsg	: 'Lūdzu, ievietojiet tekstu šajā laukumā, izmantojot klaviatūru (<STRONG>Ctrl+V</STRONG>) un apstipriniet ar <STRONG>Darīts!</STRONG>.',
+		securityMsg	: 'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.' // MISSING
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Ievietot no Worda',
+		title : 'Ievietot no Worda',
+		advice : 'Lūdzu, ievietojiet tekstu šajā laukumā, izmantojot klaviatūru (<STRONG>Ctrl+V</STRONG>) un apstipriniet ar <STRONG>Darīts!</STRONG>.',
+		ignoreFontFace : 'Ignorēt iepriekš norādītos fontus',
+		removeStyle : 'Noņemt norādītos stilus'
+	},
+
+	pasteText :
+	{
+		button : 'Ievietot kā vienkāršu tekstu',
+		title : 'Ievietot kā vienkāršu tekstu'
+	},
+
+	templates :
+	{
+		button : 'Sagataves',
+		title : 'Satura sagataves',
+		insertOption: 'Replace actual contents', // MISSING
+		selectPromptMsg: 'Lūdzu, norādiet sagatavi, ko atvērt editorā<br>(patreizējie dati tiks zaudēti):',
+		emptyListMsg : '(Nav norādītas sagataves)'
+	},
+
+	showBlocks : 'Show Blocks', // MISSING
+
+	stylesCombo :
+	{
+		label : 'Stils',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Formāts',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Formāts',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normāls teksts',
+		tag_pre : 'Formatēts teksts',
+		tag_address : 'Adrese',
+		tag_h1 : 'Virsraksts 1',
+		tag_h2 : 'Virsraksts 2',
+		tag_h3 : 'Virsraksts 3',
+		tag_h4 : 'Virsraksts 4',
+		tag_h5 : 'Virsraksts 5',
+		tag_h6 : 'Virsraksts 6',
+		tag_div : 'Rindkopa (DIV)'
+	},
+
+	font :
+	{
+		label : 'Šrifts',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Šrifts',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Izmērs',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Izmērs',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Teksta krāsa',
+		bgColorTitle : 'Fona krāsa',
+		auto : 'Automātiska',
+		more : 'Plašāka palete...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/mn.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/mn.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/mn.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Mongolian language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['mn'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Код',
+	newPage			: 'Шинэ хуудас',
+	save			: 'Хадгалах',
+	preview			: 'Уридчлан харах',
+	cut				: 'Хайчлах',
+	copy			: 'Хуулах',
+	paste			: 'Буулгах',
+	print			: 'Хэвлэх',
+	underline		: 'Доогуур нь зураастай болгох',
+	bold			: 'Тод бүдүүн',
+	italic			: 'Налуу',
+	selectAll		: 'Бүгдийг нь сонгох',
+	removeFormat	: 'Формат авч хаях',
+	strike			: 'Дундуур нь зураастай болгох',
+	subscript		: 'Суурь болгох',
+	superscript		: 'Зэрэг болгох',
+	horizontalrule	: 'Хөндлөн зураас оруулах',
+	pagebreak		: 'Хуудас тусгаарлагч оруулах',
+	unlink			: 'Линк авч хаях',
+	undo			: 'Хүчингүй болгох',
+	redo			: 'Өмнөх үйлдлээ сэргээх',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Сервер харуулах',
+		url				: 'URL',
+		protocol		: 'Протокол',
+		upload			: 'Хуулах',
+		uploadSubmit	: 'Үүнийг сервэррүү илгээ',
+		image			: 'Зураг',
+		flash			: 'Флаш',
+		form			: 'Форм',
+		checkbox		: 'Чекбокс',
+		radio		: 'Радио товч',
+		textField		: 'Техт талбар',
+		textarea		: 'Техт орчин',
+		hiddenField		: 'Нууц талбар',
+		button			: 'Товч',
+		select	: 'Сонгогч талбар',
+		imageButton		: 'Зурагтай товч',
+		notSet			: '<Оноохгүй>',
+		id				: 'Id',
+		name			: 'Нэр',
+		langDir			: 'Хэлний чиглэл',
+		langDirLtr		: 'Зүүнээс баруун (LTR)',
+		langDirRtl		: 'Баруунаас зүүн (RTL)',
+		langCode		: 'Хэлний код',
+		longDescr		: 'URL-ын тайлбар',
+		cssClass		: 'Stylesheet классууд',
+		advisoryTitle	: 'Зөвлөлдөх гарчиг',
+		cssStyle		: 'Загвар',
+		ok				: 'OK',
+		cancel			: 'Болих',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'Нэмэлт',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Онцгой тэмдэгт оруулах',
+		title		: 'Онцгой тэмдэгт сонгох'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Линк Оруулах/Засварлах',
+		menu		: 'Холбоос засварлах',
+		title		: 'Линк',
+		info		: 'Линкийн мэдээлэл',
+		target		: 'Байрлал',
+		upload		: 'Хуулах',
+		advanced	: 'Нэмэлт',
+		type		: 'Линкийн төрөл',
+		toAnchor	: 'Энэ хуудасандах холбоос',
+		toEmail		: 'E-Mail',
+		target		: 'Байрлал',
+		targetNotSet	: '<Оноохгүй>',
+		targetFrame	: '<Агуулах хүрээ>',
+		targetPopup	: '<popup цонх>',
+		targetNew	: 'Шинэ цонх (_blank)',
+		targetTop	: 'Хамгийн түрүүн байх цонх (_top)',
+		targetSelf	: 'Төстэй цонх (_self)',
+		targetParent	: 'Эцэг цонх (_parent)',
+		targetFrameName	: 'Очих фремын нэр',
+		targetPopupName	: 'Popup цонхны нэр',
+		popupFeatures	: 'Popup цонхны онцлог',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Статус хэсэг',
+		popupLocationBar	: 'Location хэсэг',
+		popupToolbar	: 'Багажны хэсэг',
+		popupMenuBar	: 'Meню хэсэг',
+		popupFullScreen	: 'Цонх дүүргэх (IE)',
+		popupScrollBars	: 'Скрол хэсэгүүд',
+		popupDependent	: 'Хамаатай (Netscape)',
+		popupWidth		: 'Өргөн',
+		popupLeft		: 'Зүүн байрлал',
+		popupHeight		: 'Өндөр',
+		popupTop		: 'Дээд байрлал',
+		id				: 'Id', // MISSING
+		langDir			: 'Хэлний чиглэл',
+		langDirNotSet	: '<Оноохгүй>',
+		langDirLTR		: 'Зүүнээс баруун (LTR)',
+		langDirRTL		: 'Баруунаас зүүн (RTL)',
+		acccessKey		: 'Холбох түлхүүр',
+		name			: 'Нэр',
+		langCode		: 'Хэлний чиглэл',
+		tabIndex		: 'Tab индекс',
+		advisoryTitle	: 'Зөвлөлдөх гарчиг',
+		advisoryContentType	: 'Зөвлөлдөх төрлийн агуулга',
+		cssClasses		: 'Stylesheet классууд',
+		charset			: 'Тэмдэгт оноох нөөцөд холбогдсон',
+		styles			: 'Загвар',
+		selectAnchor	: 'Холбоос сонгох',
+		anchorName		: 'Холбоосын нэрээр',
+		anchorId		: 'Элемэнт Id-гаар',
+		emailAddress	: 'E-Mail Хаяг',
+		emailSubject	: 'Message гарчиг',
+		emailBody		: 'Message-ийн агуулга',
+		noAnchors		: '(Баримт бичиг холбоосгүй байна)',
+		noUrl			: 'Линк URL-ээ төрөлжүүлнэ үү',
+		noEmail			: 'Е-mail хаягаа төрөлжүүлнэ үү'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Холбоос Оруулах/Засварлах',
+		menu		: 'Холбоос шинж чанар',
+		title		: 'Холбоос шинж чанар',
+		name		: 'Холбоос нэр',
+		errorName	: 'Холбоос төрөл оруулна уу'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Хай мөн Дарж бич',
+		find				: 'Хайх',
+		replace				: 'Солих',
+		findWhat			: 'Хайх үг/үсэг:',
+		replaceWith			: 'Солих үг:',
+		notFoundMsg			: 'Хайсан текст олсонгүй.',
+		matchCase			: 'Тэнцэх төлөв',
+		matchWord			: 'Тэнцэх бүтэн үг',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Бүгдийг нь Солих',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Хүснэгт',
+		title		: 'Хүснэгт',
+		menu		: 'Хүснэгт',
+		deleteTable	: 'Хүснэгт устгах',
+		rows		: 'Мөр',
+		columns		: 'Багана',
+		border		: 'Хүрээний хэмжээ',
+		align		: 'Эгнээ',
+		alignNotSet	: '<Оноохгүй>',
+		alignLeft	: 'Зүүн талд',
+		alignCenter	: 'Төвд',
+		alignRight	: 'Баруун талд',
+		width		: 'Өргөн',
+		widthPx		: 'цэг',
+		widthPc		: 'хувь',
+		height		: 'Өндөр',
+		cellSpace	: 'Нүх хоорондын зай (spacing)',
+		cellPad		: 'Нүх доторлох(padding)',
+		caption		: 'Тайлбар',
+		summary		: 'Тайлбар',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Нүх/зай',
+			insertBefore	: 'Нүх/зай өмнө нь оруулах',
+			insertAfter		: 'Нүх/зай дараа нь оруулах',
+			deleteCell		: 'Нүх устгах',
+			merge			: 'Нүх нэгтэх',
+			mergeRight		: 'Баруун тийш нэгтгэх',
+			mergeDown		: 'Доош нэгтгэх',
+			splitHorizontal	: 'Нүх/зайг босоогоор нь тусгаарлах',
+			splitVertical	: 'Нүх/зайг хөндлөнгөөр нь тусгаарлах',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Мөр',
+			insertBefore	: 'Мөр өмнө нь оруулах',
+			insertAfter		: 'Мөр дараа нь оруулах',
+			deleteRow		: 'Мөр устгах'
+		},
+
+		column :
+		{
+			menu			: 'Багана',
+			insertBefore	: 'Багана өмнө нь оруулах',
+			insertAfter		: 'Багана дараа нь оруулах',
+			deleteColumn	: 'Багана устгах'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Товчны шинж чанар',
+		text		: 'Тэкст (Утга)',
+		type		: 'Төрөл',
+		typeBtn		: 'Товч',
+		typeSbm		: 'Submit',
+		typeRst		: 'Болих'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Чекбоксны шинж чанар',
+		radioTitle	: 'Радио товчны шинж чанар',
+		value		: 'Утга',
+		selected	: 'Сонгогдсон'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Форм шинж чанар',
+		menu		: 'Форм шинж чанар',
+		action		: 'Үйлдэл',
+		method		: 'Арга',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Байрлал',
+		targetNotSet	: '<Оноохгүй>',
+		targetNew	: 'Шинэ цонх (_blank)',
+		targetTop	: 'Хамгийн түрүүн байх цонх (_top)',
+		targetSelf	: 'Төстэй цонх (_self)',
+		targetParent	: 'Эцэг цонх (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Согогч талбарын шинж чанар',
+		selectInfo	: 'Мэдээлэл',
+		opAvail		: 'Идвэхтэй сонголт',
+		value		: 'Утга',
+		size		: 'Хэмжээ',
+		lines		: 'Мөр',
+		chkMulti	: 'Олон сонголт зөвшөөрөх',
+		opText		: 'Тэкст',
+		opValue		: 'Утга',
+		btnAdd		: 'Нэмэх',
+		btnModify	: 'Өөрчлөх',
+		btnUp		: 'Дээш',
+		btnDown		: 'Доош',
+		btnSetValue : 'Сонгогдсан утга оноох',
+		btnDelete	: 'Устгах'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Текст орчны шинж чанар',
+		cols		: 'Багана',
+		rows		: 'Мөр'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Текст талбарын шинж чанар',
+		name		: 'Нэр',
+		value		: 'Утга',
+		charWidth	: 'Тэмдэгтын өргөн',
+		maxChars	: 'Хамгийн их тэмдэгт',
+		type		: 'Төрөл',
+		typeText	: 'Текст',
+		typePass	: 'Нууц үг'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Нууц талбарын шинж чанар',
+		name	: 'Нэр',
+		value	: 'Утга'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Зураг',
+		titleButton	: 'Зурган товчны шинж чанар',
+		menu		: 'Зураг',
+		infoTab	: 'Зурагны мэдээлэл',
+		btnUpload	: 'Үүнийг сервэррүү илгээ',
+		url		: 'URL',
+		upload	: 'Хуулах',
+		alt		: 'Тайлбар текст',
+		width		: 'Өргөн',
+		height	: 'Өндөр',
+		lockRatio	: 'Радио түгжих',
+		resetSize	: 'хэмжээ дахин оноох',
+		border	: 'Хүрээ',
+		hSpace	: 'Хөндлөн зай',
+		vSpace	: 'Босоо зай',
+		align		: 'Эгнээ',
+		alignLeft	: 'Зүүн',
+		alignAbsBottom: 'Abs доод талд',
+		alignAbsMiddle: 'Abs Дунд талд',
+		alignBaseline	: 'Baseline',
+		alignBottom	: 'Доод талд',
+		alignMiddle	: 'Дунд талд',
+		alignRight	: 'Баруун',
+		alignTextTop	: 'Текст дээр',
+		alignTop	: 'Дээд талд',
+		preview	: 'Уридчлан харах',
+		alertUrl	: 'Зурагны URL-ын төрлийн сонгоно уу',
+		linkTab	: 'Линк',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Флаш шинж чанар',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Флаш  шинж чанар',
+		chkPlay		: 'Автоматаар тоглох',
+		chkLoop		: 'Давтах',
+		chkMenu		: 'Флаш цэс идвэхжүүлэх',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Өргөгтгөх',
+		scaleAll		: 'Бүгдийг харуулах',
+		scaleNoBorder	: 'Хүрээгүй',
+		scaleFit		: 'Яг тааруулах',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Эгнээ',
+		alignLeft	: 'Зүүн',
+		alignAbsBottom: 'Abs доод талд',
+		alignAbsMiddle: 'Abs Дунд талд',
+		alignBaseline	: 'Baseline',
+		alignBottom	: 'Доод талд',
+		alignMiddle	: 'Дунд талд',
+		alignRight	: 'Баруун',
+		alignTextTop	: 'Текст дээр',
+		alignTop	: 'Дээд талд',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Фонны өнгө',
+		width	: 'Өргөн',
+		height	: 'Өндөр',
+		hSpace	: 'Хөндлөн зай',
+		vSpace	: 'Босоо зай',
+		validateSrc : 'Линк URL-ээ төрөлжүүлнэ үү',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Үгийн дүрэх шалгах',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Толь бичиггүй',
+		changeTo		: 'Өөрчлөх',
+		btnIgnore		: 'Зөвшөөрөх',
+		btnIgnoreAll	: 'Бүгдийг зөвшөөрөх',
+		btnReplace		: 'Дарж бичих',
+		btnReplaceAll	: 'Бүгдийг Дарж бичих',
+		btnUndo			: 'Буцаах',
+		noSuggestions	: '- Тайлбаргүй -',
+		progress		: 'Дүрэм шалгаж байгаа үйл явц...',
+		noMispell		: 'Дүрэм шалгаад дууссан: Алдаа олдсонгүй',
+		noChanges		: 'Дүрэм шалгаад дууссан: үг өөрчлөгдөөгүй',
+		oneChange		: 'Дүрэм шалгаад дууссан: 1 үг өөрчлөгдсөн',
+		manyChanges		: 'Дүрэм шалгаад дууссан: %1 үг өөрчлөгдсөн',
+		ieSpellDownload	: 'Дүрэм шалгагч суугаагүй байна. Татаж авахыг хүсч байна уу?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Тодорхойлолт',
+		title	: 'Тодорхойлолт оруулах'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Дугаарлагдсан жагсаалт',
+	bulletedlist : 'Цэгтэй жагсаалт',
+	indent : 'Догол мөр хасах',
+	outdent : 'Догол мөр нэмэх',
+
+	justify :
+	{
+		left : 'Зүүн талд байрлуулах',
+		center : 'Төвд байрлуулах',
+		right : 'Баруун талд байрлуулах',
+		block : 'Блок хэлбэрээр байрлуулах'
+	},
+
+	blockquote : 'Хайрцаглах',
+
+	clipboard :
+	{
+		title		: 'Буулгах',
+		cutError	: 'Таны browser-ын хамгаалалтын тохиргоо editor-д автоматаар хайчлах үйлдэлийг зөвшөөрөхгүй байна. (Ctrl+X) товчны хослолыг ашиглана уу.',
+		copyError	: 'Таны browser-ын хамгаалалтын тохиргоо editor-д автоматаар хуулах үйлдэлийг зөвшөөрөхгүй байна. (Ctrl+C) товчны хослолыг ашиглана уу.',
+		pasteMsg	: '(<strong>Ctrl+V</strong>) товчийг ашиглан paste хийнэ үү. Мөн <strong>OK</strong> дар.',
+		securityMsg	: 'Таны үзүүлэгч/browser/-н хамгаалалтын тохиргооноос болоод editor clipboard өгөгдөлрүү шууд хандах боломжгүй. Энэ цонход дахин paste хийхийг оролд.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Word-оос буулгах',
+		title : 'Word-оос буулгах',
+		advice : '(<strong>Ctrl+V</strong>) товчийг ашиглан paste хийнэ үү. Мөн <strong>OK</strong> дар.',
+		ignoreFontFace : 'Тодорхойлогдсон Font Face зөвшөөрнө',
+		removeStyle : 'Тодорхойлогдсон загварыг авах'
+	},
+
+	pasteText :
+	{
+		button : 'Plain Text-ээс буулгах',
+		title : 'Plain Text-ээс буулгах'
+	},
+
+	templates :
+	{
+		button : 'Загварууд',
+		title : 'Загварын агуулга',
+		insertOption: 'Одоогийн агууллагыг дарж бичих',
+		selectPromptMsg: 'Загварыг нээж editor-рүү сонгож оруулна уу<br />(Одоогийн агууллагыг устаж магадгүй):',
+		emptyListMsg : '(Загвар тодорхойлогдоогүй байна)'
+	},
+
+	showBlocks : 'Block-уудыг үзүүлэх',
+
+	stylesCombo :
+	{
+		label : 'Загвар',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Формат',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Формат',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Хэвийн',
+		tag_pre : 'Formatted',
+		tag_address : 'Хаяг',
+		tag_h1 : 'Heading 1',
+		tag_h2 : 'Heading 2',
+		tag_h3 : 'Heading 3',
+		tag_h4 : 'Heading 4',
+		tag_h5 : 'Heading 5',
+		tag_h6 : 'Heading 6',
+		tag_div : 'Paragraph (DIV)'
+	},
+
+	font :
+	{
+		label : 'Фонт',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Фонт',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Хэмжээ',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Хэмжээ',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Фонтны өнгө',
+		bgColorTitle : 'Фонны өнгө',
+		auto : 'Автоматаар',
+		more : 'Нэмэлт өнгөнүүд...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/ms.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/ms.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/ms.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Malay language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['ms'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Sumber',
+	newPage			: 'Helaian Baru',
+	save			: 'Simpan',
+	preview			: 'Prebiu',
+	cut				: 'Potong',
+	copy			: 'Salin',
+	paste			: 'Tampal',
+	print			: 'Cetak',
+	underline		: 'Underline',
+	bold			: 'Bold',
+	italic			: 'Italic',
+	selectAll		: 'Pilih Semua',
+	removeFormat	: 'Buang Format',
+	strike			: 'Strike Through',
+	subscript		: 'Subscript',
+	superscript		: 'Superscript',
+	horizontalrule	: 'Masukkan Garisan Membujur',
+	pagebreak		: 'Insert Page Break for Printing', // MISSING
+	unlink			: 'Buang Sambungan',
+	undo			: 'Batalkan',
+	redo			: 'Ulangkan',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Browse Server',
+		url				: 'URL',
+		protocol		: 'Protokol',
+		upload			: 'Muat Naik',
+		uploadSubmit	: 'Hantar ke Server',
+		image			: 'Gambar',
+		flash			: 'Flash', // MISSING
+		form			: 'Borang',
+		checkbox		: 'Checkbox',
+		radio		: 'Butang Radio',
+		textField		: 'Text Field',
+		textarea		: 'Textarea',
+		hiddenField		: 'Field Tersembunyi',
+		button			: 'Butang',
+		select	: 'Field Pilihan',
+		imageButton		: 'Butang Bergambar',
+		notSet			: '<tidak di set>',
+		id				: 'Id',
+		name			: 'Nama',
+		langDir			: 'Arah Tulisan',
+		langDirLtr		: 'Kiri ke Kanan (LTR)',
+		langDirRtl		: 'Kanan ke Kiri (RTL)',
+		langCode		: 'Kod Bahasa',
+		longDescr		: 'Butiran Panjang URL',
+		cssClass		: 'Kelas-kelas Stylesheet',
+		advisoryTitle	: 'Tajuk Makluman',
+		cssStyle		: 'Stail',
+		ok				: 'OK',
+		cancel			: 'Batal',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'Advanced',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Masukkan Huruf Istimewa',
+		title		: 'Sila pilih huruf istimewa'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Masukkan/Sunting Sambungan',
+		menu		: 'Sunting Sambungan',
+		title		: 'Sambungan',
+		info		: 'Butiran Sambungan',
+		target		: 'Sasaran',
+		upload		: 'Muat Naik',
+		advanced	: 'Advanced',
+		type		: 'Jenis Sambungan',
+		toAnchor	: 'Pautan dalam muka surat ini',
+		toEmail		: 'E-Mail',
+		target		: 'Sasaran',
+		targetNotSet	: '<tidak di set>',
+		targetFrame	: '<bingkai>',
+		targetPopup	: '<tetingkap popup>',
+		targetNew	: 'Tetingkap Baru (_blank)',
+		targetTop	: 'Tetingkap yang paling atas (_top)',
+		targetSelf	: 'Tetingkap yang Sama (_self)',
+		targetParent	: 'Tetingkap Parent (_parent)',
+		targetFrameName	: 'Nama Bingkai Sasaran',
+		targetPopupName	: 'Nama Tetingkap Popup',
+		popupFeatures	: 'Ciri Tetingkap Popup',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Bar Status',
+		popupLocationBar	: 'Bar Lokasi',
+		popupToolbar	: 'Toolbar',
+		popupMenuBar	: 'Bar Menu',
+		popupFullScreen	: 'Skrin Penuh (IE)',
+		popupScrollBars	: 'Bar-bar skrol',
+		popupDependent	: 'Bergantungan (Netscape)',
+		popupWidth		: 'Lebar',
+		popupLeft		: 'Posisi Kiri',
+		popupHeight		: 'Tinggi',
+		popupTop		: 'Posisi Atas',
+		id				: 'Id', // MISSING
+		langDir			: 'Arah Tulisan',
+		langDirNotSet	: '<tidak di set>',
+		langDirLTR		: 'Kiri ke Kanan (LTR)',
+		langDirRTL		: 'Kanan ke Kiri (RTL)',
+		acccessKey		: 'Kunci Akses',
+		name			: 'Nama',
+		langCode		: 'Arah Tulisan',
+		tabIndex		: 'Indeks Tab ',
+		advisoryTitle	: 'Tajuk Makluman',
+		advisoryContentType	: 'Jenis Kandungan Makluman',
+		cssClasses		: 'Kelas-kelas Stylesheet',
+		charset			: 'Linked Resource Charset',
+		styles			: 'Stail',
+		selectAnchor	: 'Sila pilih pautan',
+		anchorName		: 'dengan menggunakan nama pautan',
+		anchorId		: 'dengan menggunakan ID elemen',
+		emailAddress	: 'Alamat E-Mail',
+		emailSubject	: 'Subjek Mesej',
+		emailBody		: 'Isi Kandungan Mesej',
+		noAnchors		: '(Tiada pautan terdapat dalam dokumen ini)',
+		noUrl			: 'Sila taip sambungan URL',
+		noEmail			: 'Sila taip alamat e-mail'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Masukkan/Sunting Pautan',
+		menu		: 'Ciri-ciri Pautan',
+		title		: 'Ciri-ciri Pautan',
+		name		: 'Nama Pautan',
+		errorName	: 'Sila taip nama pautan'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Find and Replace', // MISSING
+		find				: 'Cari',
+		replace				: 'Ganti',
+		findWhat			: 'Perkataan yang dicari:',
+		replaceWith			: 'Diganti dengan:',
+		notFoundMsg			: 'Text yang dicari tidak dijumpai.',
+		matchCase			: 'Padanan case huruf',
+		matchWord			: 'Padana Keseluruhan perkataan',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Ganti semua',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Jadual',
+		title		: 'Ciri-ciri Jadual',
+		menu		: 'Ciri-ciri Jadual',
+		deleteTable	: 'Delete Table', // MISSING
+		rows		: 'Barisan',
+		columns		: 'Jaluran',
+		border		: 'Saiz Border',
+		align		: 'Penjajaran',
+		alignNotSet	: '<Tidak diset>',
+		alignLeft	: 'Kiri',
+		alignCenter	: 'Tengah',
+		alignRight	: 'Kanan',
+		width		: 'Lebar',
+		widthPx		: 'piksel-piksel',
+		widthPc		: 'peratus',
+		height		: 'Tinggi',
+		cellSpace	: 'Ruangan Antara Sel',
+		cellPad		: 'Tambahan Ruang Sel',
+		caption		: 'Keterangan',
+		summary		: 'Summary', // MISSING
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Cell', // MISSING
+			insertBefore	: 'Insert Cell Before', // MISSING
+			insertAfter		: 'Insert Cell After', // MISSING
+			deleteCell		: 'Buangkan Sel-sel',
+			merge			: 'Cantumkan Sel-sel',
+			mergeRight		: 'Merge Right', // MISSING
+			mergeDown		: 'Merge Down', // MISSING
+			splitHorizontal	: 'Split Cell Horizontally', // MISSING
+			splitVertical	: 'Split Cell Vertically', // MISSING
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Row', // MISSING
+			insertBefore	: 'Insert Row Before', // MISSING
+			insertAfter		: 'Insert Row After', // MISSING
+			deleteRow		: 'Buangkan Baris'
+		},
+
+		column :
+		{
+			menu			: 'Column', // MISSING
+			insertBefore	: 'Insert Column Before', // MISSING
+			insertAfter		: 'Insert Column After', // MISSING
+			deleteColumn	: 'Buangkan Lajur'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Ciri-ciri Butang',
+		text		: 'Teks (Nilai)',
+		type		: 'Jenis',
+		typeBtn		: 'Button', // MISSING
+		typeSbm		: 'Submit', // MISSING
+		typeRst		: 'Reset' // MISSING
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Ciri-ciri Checkbox',
+		radioTitle	: 'Ciri-ciri Butang Radio',
+		value		: 'Nilai',
+		selected	: 'Dipilih'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Ciri-ciri Borang',
+		menu		: 'Ciri-ciri Borang',
+		action		: 'Tindakan borang',
+		method		: 'Cara borang dihantar',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Sasaran',
+		targetNotSet	: '<tidak di set>',
+		targetNew	: 'Tetingkap Baru (_blank)',
+		targetTop	: 'Tetingkap yang paling atas (_top)',
+		targetSelf	: 'Tetingkap yang Sama (_self)',
+		targetParent	: 'Tetingkap Parent (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Ciri-ciri Selection Field',
+		selectInfo	: 'Select Info', // MISSING
+		opAvail		: 'Pilihan sediada',
+		value		: 'Nilai',
+		size		: 'Saiz',
+		lines		: 'garisan',
+		chkMulti	: 'Benarkan pilihan pelbagai',
+		opText		: 'Teks',
+		opValue		: 'Nilai',
+		btnAdd		: 'Tambah Pilihan',
+		btnModify	: 'Ubah Pilihan',
+		btnUp		: 'Naik ke atas',
+		btnDown		: 'Turun ke bawah',
+		btnSetValue : 'Set sebagai nilai terpilih',
+		btnDelete	: 'Padam'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Ciri-ciri Textarea',
+		cols		: 'Lajur',
+		rows		: 'Baris'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Ciri-ciri Text Field',
+		name		: 'Nama',
+		value		: 'Nilai',
+		charWidth	: 'Lebar isian',
+		maxChars	: 'Isian Maksimum',
+		type		: 'Jenis',
+		typeText	: 'Teks',
+		typePass	: 'Kata Laluan'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Ciri-ciri Field Tersembunyi',
+		name	: 'Nama',
+		value	: 'Nilai'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Ciri-ciri Imej',
+		titleButton	: 'Ciri-ciri Butang Bergambar',
+		menu		: 'Ciri-ciri Imej',
+		infoTab	: 'Info Imej',
+		btnUpload	: 'Hantar ke Server',
+		url		: 'URL',
+		upload	: 'Muat Naik',
+		alt		: 'Text Alternatif',
+		width		: 'Lebar',
+		height	: 'Tinggi',
+		lockRatio	: 'Tetapkan Nisbah',
+		resetSize	: 'Saiz Set Semula',
+		border	: 'Border',
+		hSpace	: 'Ruang Melintang',
+		vSpace	: 'Ruang Menegak',
+		align		: 'Jajaran',
+		alignLeft	: 'Kiri',
+		alignAbsBottom: 'Bawah Mutlak',
+		alignAbsMiddle: 'Pertengahan Mutlak',
+		alignBaseline	: 'Garis Dasar',
+		alignBottom	: 'Bawah',
+		alignMiddle	: 'Pertengahan',
+		alignRight	: 'Kanan',
+		alignTextTop	: 'Atas Text',
+		alignTop	: 'Atas',
+		preview	: 'Prebiu',
+		alertUrl	: 'Sila taip URL untuk fail gambar',
+		linkTab	: 'Sambungan',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Flash Properties', // MISSING
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Flash Properties', // MISSING
+		chkPlay		: 'Auto Play', // MISSING
+		chkLoop		: 'Loop', // MISSING
+		chkMenu		: 'Enable Flash Menu', // MISSING
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Scale', // MISSING
+		scaleAll		: 'Show all', // MISSING
+		scaleNoBorder	: 'No Border', // MISSING
+		scaleFit		: 'Exact Fit', // MISSING
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Jajaran',
+		alignLeft	: 'Kiri',
+		alignAbsBottom: 'Bawah Mutlak',
+		alignAbsMiddle: 'Pertengahan Mutlak',
+		alignBaseline	: 'Garis Dasar',
+		alignBottom	: 'Bawah',
+		alignMiddle	: 'Pertengahan',
+		alignRight	: 'Kanan',
+		alignTextTop	: 'Atas Text',
+		alignTop	: 'Atas',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Warna Latarbelakang',
+		width	: 'Lebar',
+		height	: 'Tinggi',
+		hSpace	: 'Ruang Melintang',
+		vSpace	: 'Ruang Menegak',
+		validateSrc : 'Sila taip sambungan URL',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Semak Ejaan',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Tidak terdapat didalam kamus',
+		changeTo		: 'Tukarkan kepada',
+		btnIgnore		: 'Biar',
+		btnIgnoreAll	: 'Biarkan semua',
+		btnReplace		: 'Ganti',
+		btnReplaceAll	: 'Gantikan Semua',
+		btnUndo			: 'Batalkan',
+		noSuggestions	: '- Tiada cadangan -',
+		progress		: 'Pemeriksaan ejaan sedang diproses...',
+		noMispell		: 'Pemeriksaan ejaan siap: Tiada salah ejaan',
+		noChanges		: 'Pemeriksaan ejaan siap: Tiada perkataan diubah',
+		oneChange		: 'Pemeriksaan ejaan siap: Satu perkataan telah diubah',
+		manyChanges		: 'Pemeriksaan ejaan siap: %1 perkataan diubah',
+		ieSpellDownload	: 'Pemeriksa ejaan tidak dipasang. Adakah anda mahu muat turun sekarang?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Smiley',
+		title	: 'Masukkan Smiley'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Senarai bernombor',
+	bulletedlist : 'Senarai tidak bernombor',
+	indent : 'Tambahkan Inden',
+	outdent : 'Kurangkan Inden',
+
+	justify :
+	{
+		left : 'Jajaran Kiri',
+		center : 'Jajaran Tengah',
+		right : 'Jajaran Kanan',
+		block : 'Jajaran Blok'
+	},
+
+	blockquote : 'Blockquote', // MISSING
+
+	clipboard :
+	{
+		title		: 'Tampal',
+		cutError	: 'Keselamatan perisian browser anda tidak membenarkan operasi suntingan text/imej. Sila gunakan papan kekunci (Ctrl+X).',
+		copyError	: 'Keselamatan perisian browser anda tidak membenarkan operasi salinan text/imej. Sila gunakan papan kekunci (Ctrl+C).',
+		pasteMsg	: 'Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit OK', // MISSING
+		securityMsg	: 'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.' // MISSING
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Tampal dari Word',
+		title : 'Tampal dari Word',
+		advice : 'Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.', // MISSING
+		ignoreFontFace : 'Ignore Font Face definitions', // MISSING
+		removeStyle : 'Remove Styles definitions' // MISSING
+	},
+
+	pasteText :
+	{
+		button : 'Tampal sebagai text biasa',
+		title : 'Tampal sebagai text biasa'
+	},
+
+	templates :
+	{
+		button : 'Templat',
+		title : 'Templat Kandungan',
+		insertOption: 'Replace actual contents', // MISSING
+		selectPromptMsg: 'Sila pilih templat untuk dibuka oleh editor<br>(kandungan sebenar akan hilang):',
+		emptyListMsg : '(Tiada Templat Disimpan)'
+	},
+
+	showBlocks : 'Show Blocks', // MISSING
+
+	stylesCombo :
+	{
+		label : 'Stail',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Format',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Format',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normal',
+		tag_pre : 'Telah Diformat',
+		tag_address : 'Alamat',
+		tag_h1 : 'Heading 1',
+		tag_h2 : 'Heading 2',
+		tag_h3 : 'Heading 3',
+		tag_h4 : 'Heading 4',
+		tag_h5 : 'Heading 5',
+		tag_h6 : 'Heading 6',
+		tag_div : 'Perenggan (DIV)'
+	},
+
+	font :
+	{
+		label : 'Font',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Font',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Saiz',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Saiz',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Warna Text',
+		bgColorTitle : 'Warna Latarbelakang',
+		auto : 'Otomatik',
+		more : 'Warna lain-lain...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/nb.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/nb.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/nb.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Norwegian Bokmål language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['nb'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Kilde',
+	newPage			: 'Ny Side',
+	save			: 'Lagre',
+	preview			: 'Forhåndsvis',
+	cut				: 'Klipp ut',
+	copy			: 'Kopier',
+	paste			: 'Lim inn',
+	print			: 'Skriv ut',
+	underline		: 'Understrek',
+	bold			: 'Fet',
+	italic			: 'Kursiv',
+	selectAll		: 'Merk alt',
+	removeFormat	: 'Fjern format',
+	strike			: 'Gjennomstrek',
+	subscript		: 'Senket skrift',
+	superscript		: 'Hevet skrift',
+	horizontalrule	: 'Sett inn horisontal linje',
+	pagebreak		: 'Sett inn sideskift',
+	unlink			: 'Fjern lenke',
+	undo			: 'Angre',
+	redo			: 'Gjør om',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Bla igjennom server',
+		url				: 'URL',
+		protocol		: 'Protokoll',
+		upload			: 'Last opp',
+		uploadSubmit	: 'Send det til serveren',
+		image			: 'Bilde',
+		flash			: 'Flash',
+		form			: 'Skjema',
+		checkbox		: 'Avmerkingsboks',
+		radio		: 'Alternativknapp',
+		textField		: 'Tekstboks',
+		textarea		: 'Tekstområde',
+		hiddenField		: 'Skjult felt',
+		button			: 'Knapp',
+		select	: 'Rullegardinliste',
+		imageButton		: 'Bildeknapp',
+		notSet			: '<ikke satt>',
+		id				: 'Id',
+		name			: 'Navn',
+		langDir			: 'Språkretning',
+		langDirLtr		: 'Venstre til høyre (VTH)',
+		langDirRtl		: 'Høyre til venstre (HTV)',
+		langCode		: 'Språkkode',
+		longDescr		: 'Utvidet beskrivelse',
+		cssClass		: 'Stilarkklasser',
+		advisoryTitle	: 'Tittel',
+		cssStyle		: 'Stil',
+		ok				: 'OK',
+		cancel			: 'Avbryt',
+		generalTab		: 'Generelt',
+		advancedTab		: 'Avansert',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Sett inn spesielt tegn',
+		title		: 'Velg spesielt tegn'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Sett inn/Rediger lenke',
+		menu		: 'Rediger lenke',
+		title		: 'Lenke',
+		info		: 'Lenkeinfo',
+		target		: 'Mål',
+		upload		: 'Last opp',
+		advanced	: 'Avansert',
+		type		: 'Lenketype',
+		toAnchor	: 'Lenke til anker i teksten',
+		toEmail		: 'E-post',
+		target		: 'Mål',
+		targetNotSet	: '<ikke satt>',
+		targetFrame	: '<ramme>',
+		targetPopup	: '<popup vindu>',
+		targetNew	: 'Nytt vindu (_blank)',
+		targetTop	: 'Hele vindu (_top)',
+		targetSelf	: 'Samme vindu (_self)',
+		targetParent	: 'Foreldrevindu (_parent)',
+		targetFrameName	: 'Målramme',
+		targetPopupName	: 'Navn på popup-vindus',
+		popupFeatures	: 'Egenskaper for popup-vindu',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Statuslinje',
+		popupLocationBar	: 'Adresselinje',
+		popupToolbar	: 'Verktøylinje',
+		popupMenuBar	: 'Menylinje',
+		popupFullScreen	: 'Full skjerm (IE)',
+		popupScrollBars	: 'Scrollbar',
+		popupDependent	: 'Avhenging (Netscape)',
+		popupWidth		: 'Bredde',
+		popupLeft		: 'Venstre posisjon',
+		popupHeight		: 'Høyde',
+		popupTop		: 'Topp-posisjon',
+		id				: 'Id', // MISSING
+		langDir			: 'Språkretning',
+		langDirNotSet	: '<ikke satt>',
+		langDirLTR		: 'Venstre til høyre (VTH)',
+		langDirRTL		: 'Høyre til venstre (HTV)',
+		acccessKey		: 'Aksessknapp',
+		name			: 'Navn',
+		langCode		: 'Språkretning',
+		tabIndex		: 'Tab Indeks',
+		advisoryTitle	: 'Tittel',
+		advisoryContentType	: 'Type',
+		cssClasses		: 'Stilarkklasser',
+		charset			: 'Lenket språkkart',
+		styles			: 'Stil',
+		selectAnchor	: 'Velg et anker',
+		anchorName		: 'Anker etter navn',
+		anchorId		: 'Element etter ID',
+		emailAddress	: 'E-postadresse',
+		emailSubject	: 'Meldingsemne',
+		emailBody		: 'Melding',
+		noAnchors		: '(Ingen anker i dokumentet)',
+		noUrl			: 'Vennligst skriv inn lenkens url',
+		noEmail			: 'Vennligst skriv inn e-postadressen'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Sett inn/Rediger anker',
+		menu		: 'Egenskaper for anker',
+		title		: 'Egenskaper for anker',
+		name		: 'Ankernavn',
+		errorName	: 'Vennligst skriv inn ankernavnet'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Søk og erstatt',
+		find				: 'Søk',
+		replace				: 'Erstatt',
+		findWhat			: 'Søk etter:',
+		replaceWith			: 'Erstatt med:',
+		notFoundMsg			: 'Fant ikke søketeksten.',
+		matchCase			: 'Skill mellom store og små bokstaver',
+		matchWord			: 'Bare hele ord',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Erstatt alle',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tabell',
+		title		: 'Egenskaper for tabell',
+		menu		: 'Egenskaper for tabell',
+		deleteTable	: 'Slett tabell',
+		rows		: 'Rader',
+		columns		: 'Kolonner',
+		border		: 'Rammestørrelse',
+		align		: 'Justering',
+		alignNotSet	: '<Ikke satt>',
+		alignLeft	: 'Venstre',
+		alignCenter	: 'Midtjuster',
+		alignRight	: 'Høyre',
+		width		: 'Bredde',
+		widthPx		: 'piksler',
+		widthPc		: 'prosent',
+		height		: 'Høyde',
+		cellSpace	: 'Cellemarg',
+		cellPad		: 'Cellepolstring',
+		caption		: 'Tittel',
+		summary		: 'Sammendrag',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Celle',
+			insertBefore	: 'Sett inn celle før',
+			insertAfter		: 'Sett inn celle etter',
+			deleteCell		: 'Slett celler',
+			merge			: 'Slå sammen celler',
+			mergeRight		: 'Slå sammen høyre',
+			mergeDown		: 'Slå sammen ned',
+			splitHorizontal	: 'Del celle horisontalt',
+			splitVertical	: 'Del celle vertikalt',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Rader',
+			insertBefore	: 'Sett inn rad før',
+			insertAfter		: 'Sett inn rad etter',
+			deleteRow		: 'Slett rader'
+		},
+
+		column :
+		{
+			menu			: 'Kolonne',
+			insertBefore	: 'Sett inn kolonne før',
+			insertAfter		: 'Sett inn kolonne etter',
+			deleteColumn	: 'Slett kolonner'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Egenskaper for knapp',
+		text		: 'Tekst (verdi)',
+		type		: 'Type',
+		typeBtn		: 'Knapp',
+		typeSbm		: 'Send',
+		typeRst		: 'Nullstill'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Egenskaper for avmerkingsboks',
+		radioTitle	: 'Egenskaper for alternativknapp',
+		value		: 'Verdi',
+		selected	: 'Valgt'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Egenskaper for skjema',
+		menu		: 'Egenskaper for skjema',
+		action		: 'Handling',
+		method		: 'Metode',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Mål',
+		targetNotSet	: '<ikke satt>',
+		targetNew	: 'Nytt vindu (_blank)',
+		targetTop	: 'Hele vindu (_top)',
+		targetSelf	: 'Samme vindu (_self)',
+		targetParent	: 'Foreldrevindu (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Egenskaper for rullegardinliste',
+		selectInfo	: 'Info',
+		opAvail		: 'Tilgjenglige alternativer',
+		value		: 'Verdi',
+		size		: 'Størrelse',
+		lines		: 'Linjer',
+		chkMulti	: 'Tillat flervalg',
+		opText		: 'Tekst',
+		opValue		: 'Verdi',
+		btnAdd		: 'Legg til',
+		btnModify	: 'Endre',
+		btnUp		: 'Opp',
+		btnDown		: 'Ned',
+		btnSetValue : 'Sett som valgt',
+		btnDelete	: 'Slett'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Egenskaper for tekstområde',
+		cols		: 'Kolonner',
+		rows		: 'Rader'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Egenskaper for tekstfelt',
+		name		: 'Navn',
+		value		: 'Verdi',
+		charWidth	: 'Tegnbredde',
+		maxChars	: 'Maks antall tegn',
+		type		: 'Type',
+		typeText	: 'Tekst',
+		typePass	: 'Passord'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Egenskaper for skjult felt',
+		name	: 'Navn',
+		value	: 'Verdi'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Bildeegenskaper',
+		titleButton	: 'Egenskaper for bildeknapp',
+		menu		: 'Bildeegenskaper',
+		infoTab	: 'Bildeinformasjon',
+		btnUpload	: 'Send det til serveren',
+		url		: 'URL',
+		upload	: 'Last opp',
+		alt		: 'Alternativ tekst',
+		width		: 'Bredde',
+		height	: 'Høyde',
+		lockRatio	: 'Lås forhold',
+		resetSize	: 'Tilbakestill størrelse',
+		border	: 'Ramme',
+		hSpace	: 'HMarg',
+		vSpace	: 'VMarg',
+		align		: 'Juster',
+		alignLeft	: 'Venstre',
+		alignAbsBottom: 'Abs bunn',
+		alignAbsMiddle: 'Abs midten',
+		alignBaseline	: 'Bunnlinje',
+		alignBottom	: 'Bunn',
+		alignMiddle	: 'Midten',
+		alignRight	: 'Høyre',
+		alignTextTop	: 'Tekst topp',
+		alignTop	: 'Topp',
+		preview	: 'Forhåndsvis',
+		alertUrl	: 'Vennligst skriv bilde-urlen',
+		linkTab	: 'Lenke',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Egenskaper for Flash-objekt',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Flash-egenskaper',
+		chkPlay		: 'Autospill',
+		chkLoop		: 'Loop',
+		chkMenu		: 'Slå på Flash-meny',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Skaler',
+		scaleAll		: 'Vis alt',
+		scaleNoBorder	: 'Ingen ramme',
+		scaleFit		: 'Skaler til å passe',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Juster',
+		alignLeft	: 'Venstre',
+		alignAbsBottom: 'Abs bunn',
+		alignAbsMiddle: 'Abs midten',
+		alignBaseline	: 'Bunnlinje',
+		alignBottom	: 'Bunn',
+		alignMiddle	: 'Midten',
+		alignRight	: 'Høyre',
+		alignTextTop	: 'Tekst topp',
+		alignTop	: 'Topp',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Bakgrunnsfarge',
+		width	: 'Bredde',
+		height	: 'Høyde',
+		hSpace	: 'HMarg',
+		vSpace	: 'VMarg',
+		validateSrc : 'Vennligst skriv inn lenkens url',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Stavekontroll',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Ikke i ordboken',
+		changeTo		: 'Endre til',
+		btnIgnore		: 'Ignorer',
+		btnIgnoreAll	: 'Ignorer alle',
+		btnReplace		: 'Erstatt',
+		btnReplaceAll	: 'Erstatt alle',
+		btnUndo			: 'Angre',
+		noSuggestions	: '- Ingen forslag -',
+		progress		: 'Stavekontroll pågår...',
+		noMispell		: 'Stavekontroll fullført: ingen feilstavinger funnet',
+		noChanges		: 'Stavekontroll fullført: ingen ord endret',
+		oneChange		: 'Stavekontroll fullført: Ett ord endret',
+		manyChanges		: 'Stavekontroll fullført: %1 ord endret',
+		ieSpellDownload	: 'Stavekontroll er ikke installert. Vil du laste den ned nå?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Smil',
+		title	: 'Sett inn smil'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Nummerert liste',
+	bulletedlist : 'Uordnet liste',
+	indent : 'Øk nivå',
+	outdent : 'Senk nivå',
+
+	justify :
+	{
+		left : 'Venstrejuster',
+		center : 'Midtjuster',
+		right : 'Høyrejuster',
+		block : 'Blokkjuster'
+	},
+
+	blockquote : 'Blockquote', // MISSING
+
+	clipboard :
+	{
+		title		: 'Lim inn',
+		cutError	: 'Din nettlesers sikkerhetsinstillinger tillater ikke automatisk klipping av tekst. Vennligst bruk snareveien (Ctrl+X).',
+		copyError	: 'Din nettlesers sikkerhetsinstillinger tillater ikke automatisk kopiering av tekst. Vennligst bruk snareveien (Ctrl+C).',
+		pasteMsg	: 'Vennligst lim inn i den følgende boksen med tastaturet (<STRONG>Ctrl+V</STRONG>) og trykk <STRONG>OK</STRONG>.',
+		securityMsg	: 'Din nettlesers sikkerhetsinstillinger gir ikke redigeringsverktøyet direkte tilgang til utklippstavlen. Du må lime det igjen i dette vinduet.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Lim inn fra Word',
+		title : 'Lim inn fra Word',
+		advice : 'Vennligst lim inn i den følgende boksen med tastaturet (<STRONG>Ctrl+V</STRONG>) og trykk <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Fjern skrifttyper',
+		removeStyle : 'Fjern stildefinisjoner'
+	},
+
+	pasteText :
+	{
+		button : 'Lim inn som ren tekst',
+		title : 'Lim inn som ren tekst'
+	},
+
+	templates :
+	{
+		button : 'Maler',
+		title : 'Innholdsmaler',
+		insertOption: 'Erstatt faktisk innold',
+		selectPromptMsg: 'Velg malen du vil åpne<br>(innholdet du har skrevet blir tapt!):',
+		emptyListMsg : '(Ingen maler definert)'
+	},
+
+	showBlocks : 'Show Blocks', // MISSING
+
+	stylesCombo :
+	{
+		label : 'Stil',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Format',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Format',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normal',
+		tag_pre : 'Formatert',
+		tag_address : 'Adresse',
+		tag_h1 : 'Tittel 1',
+		tag_h2 : 'Tittel 2',
+		tag_h3 : 'Tittel 3',
+		tag_h4 : 'Tittel 4',
+		tag_h5 : 'Tittel 5',
+		tag_h6 : 'Tittel 6',
+		tag_div : 'Normal (DIV)'
+	},
+
+	font :
+	{
+		label : 'Skrift',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Skrift',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Størrelse',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Størrelse',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Tekstfarge',
+		bgColorTitle : 'Bakgrunnsfarge',
+		auto : 'Automatisk',
+		more : 'Flere farger...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/nl.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/nl.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/nl.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Dutch language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['nl'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Code',
+	newPage			: 'Nieuwe pagina',
+	save			: 'Opslaan',
+	preview			: 'Voorbeeld',
+	cut				: 'Knippen',
+	copy			: 'Kopiëren',
+	paste			: 'Plakken',
+	print			: 'Printen',
+	underline		: 'Onderstreept',
+	bold			: 'Vet',
+	italic			: 'Schuingedrukt',
+	selectAll		: 'Alles selecteren',
+	removeFormat	: 'Opmaak verwijderen',
+	strike			: 'Doorhalen',
+	subscript		: 'Subscript',
+	superscript		: 'Superscript',
+	horizontalrule	: 'Horizontale lijn invoegen',
+	pagebreak		: 'Pagina-einde invoegen',
+	unlink			: 'Link verwijderen',
+	undo			: 'Ongedaan maken',
+	redo			: 'Opnieuw uitvoeren',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Bladeren op server',
+		url				: 'URL',
+		protocol		: 'Protocol',
+		upload			: 'Upload',
+		uploadSubmit	: 'Naar server verzenden',
+		image			: 'Afbeelding',
+		flash			: 'Flash',
+		form			: 'Formulier',
+		checkbox		: 'Aanvinkvakje',
+		radio		: 'Selectievakje',
+		textField		: 'Tekstveld',
+		textarea		: 'Tekstvak',
+		hiddenField		: 'Verborgen veld',
+		button			: 'Knop',
+		select	: 'Selectieveld',
+		imageButton		: 'Afbeeldingsknop',
+		notSet			: '<niet ingevuld>',
+		id				: 'Kenmerk',
+		name			: 'Naam',
+		langDir			: 'Schrijfrichting',
+		langDirLtr		: 'Links naar rechts (LTR)',
+		langDirRtl		: 'Rechts naar links (RTL)',
+		langCode		: 'Taalcode',
+		longDescr		: 'Lange URL-omschrijving',
+		cssClass		: 'Stylesheet-klassen',
+		advisoryTitle	: 'Aanbevolen titel',
+		cssStyle		: 'Stijl',
+		ok				: 'OK',
+		cancel			: 'Annuleren',
+		generalTab		: 'Algemeen',
+		advancedTab		: 'Geavanceerd',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Speciaal teken invoegen',
+		title		: 'Selecteer speciaal teken'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Link invoegen/wijzigen',
+		menu		: 'Link wijzigen',
+		title		: 'Link',
+		info		: 'Linkomschrijving',
+		target		: 'Doel',
+		upload		: 'Upload',
+		advanced	: 'Geavanceerd',
+		type		: 'Linktype',
+		toAnchor	: 'Interne link in pagina',
+		toEmail		: 'E-mail',
+		target		: 'Doel',
+		targetNotSet	: '<niet ingevuld>',
+		targetFrame	: '<frame>',
+		targetPopup	: '<popup window>',
+		targetNew	: 'Nieuw venster (_blank)',
+		targetTop	: 'Hele venster (_top)',
+		targetSelf	: 'Zelfde venster (_self)',
+		targetParent	: 'Origineel venster (_parent)',
+		targetFrameName	: 'Naam doelframe',
+		targetPopupName	: 'Naam popupvenster',
+		popupFeatures	: 'Instellingen popupvenster',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Statusbalk',
+		popupLocationBar	: 'Locatiemenu',
+		popupToolbar	: 'Menubalk',
+		popupMenuBar	: 'Menubalk',
+		popupFullScreen	: 'Volledig scherm (IE)',
+		popupScrollBars	: 'Schuifbalken',
+		popupDependent	: 'Afhankelijk (Netscape)',
+		popupWidth		: 'Breedte',
+		popupLeft		: 'Positie links',
+		popupHeight		: 'Hoogte',
+		popupTop		: 'Positie boven',
+		id				: 'Id', // MISSING
+		langDir			: 'Schrijfrichting',
+		langDirNotSet	: '<niet ingevuld>',
+		langDirLTR		: 'Links naar rechts (LTR)',
+		langDirRTL		: 'Rechts naar links (RTL)',
+		acccessKey		: 'Toegangstoets',
+		name			: 'Naam',
+		langCode		: 'Schrijfrichting',
+		tabIndex		: 'Tabvolgorde',
+		advisoryTitle	: 'Aanbevolen titel',
+		advisoryContentType	: 'Aanbevolen content-type',
+		cssClasses		: 'Stylesheet-klassen',
+		charset			: 'Karakterset van gelinkte bron',
+		styles			: 'Stijl',
+		selectAnchor	: 'Kies een interne link',
+		anchorName		: 'Op naam interne link',
+		anchorId		: 'Op kenmerk interne link',
+		emailAddress	: 'E-mailadres',
+		emailSubject	: 'Onderwerp bericht',
+		emailBody		: 'Inhoud bericht',
+		noAnchors		: '(Geen interne links in document gevonden)',
+		noUrl			: 'Geef de link van de URL',
+		noEmail			: 'Geef een e-mailadres'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Interne link',
+		menu		: 'Eigenschappen interne link',
+		title		: 'Eigenschappen interne link',
+		name		: 'Naam interne link',
+		errorName	: 'Geef de naam van de interne link op'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Zoeken en vervangen',
+		find				: 'Zoeken',
+		replace				: 'Vervangen',
+		findWhat			: 'Zoeken naar:',
+		replaceWith			: 'Vervangen met:',
+		notFoundMsg			: 'De opgegeven tekst is niet gevonden.',
+		matchCase			: 'Hoofdlettergevoelig',
+		matchWord			: 'Hele woord moet voorkomen',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Alles vervangen',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tabel',
+		title		: 'Eigenschappen tabel',
+		menu		: 'Eigenschappen tabel',
+		deleteTable	: 'Tabel verwijderen',
+		rows		: 'Rijen',
+		columns		: 'Kolommen',
+		border		: 'Breedte rand',
+		align		: 'Uitlijning',
+		alignNotSet	: '<Niet ingevoerd>',
+		alignLeft	: 'Links',
+		alignCenter	: 'Centreren',
+		alignRight	: 'Rechts',
+		width		: 'Breedte',
+		widthPx		: 'pixels',
+		widthPc		: 'procent',
+		height		: 'Hoogte',
+		cellSpace	: 'Afstand tussen cellen',
+		cellPad		: 'Afstand vanaf rand cel',
+		caption		: 'Naam',
+		summary		: 'Samenvatting',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Cel',
+			insertBefore	: 'Voeg cel in voor',
+			insertAfter		: 'Voeg cel in achter',
+			deleteCell		: 'Cellen verwijderen',
+			merge			: 'Cellen samenvoegen',
+			mergeRight		: 'Voeg samen naar rechts',
+			mergeDown		: 'Voeg samen naar beneden',
+			splitHorizontal	: 'Splits cellen horizontaal',
+			splitVertical	: 'Splits cellen verticaal',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Rij',
+			insertBefore	: 'Voeg rij in voor',
+			insertAfter		: 'Voeg rij in achter',
+			deleteRow		: 'Rijen verwijderen'
+		},
+
+		column :
+		{
+			menu			: 'Kolom',
+			insertBefore	: 'Voeg kolom in voor',
+			insertAfter		: 'Voeg kolom in achter',
+			deleteColumn	: 'Kolommen verwijderen'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Eigenschappen knop',
+		text		: 'Tekst (waarde)',
+		type		: 'Soort',
+		typeBtn		: 'Knop',
+		typeSbm		: 'Versturen',
+		typeRst		: 'Leegmaken'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Eigenschappen aanvinkvakje',
+		radioTitle	: 'Eigenschappen selectievakje',
+		value		: 'Waarde',
+		selected	: 'Geselecteerd'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Eigenschappen formulier',
+		menu		: 'Eigenschappen formulier',
+		action		: 'Actie',
+		method		: 'Methode',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Doel',
+		targetNotSet	: '<niet ingevuld>',
+		targetNew	: 'Nieuw venster (_blank)',
+		targetTop	: 'Hele venster (_top)',
+		targetSelf	: 'Zelfde venster (_self)',
+		targetParent	: 'Origineel venster (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Eigenschappen selectieveld',
+		selectInfo	: 'Informatie',
+		opAvail		: 'Beschikbare opties',
+		value		: 'Waarde',
+		size		: 'Grootte',
+		lines		: 'Regels',
+		chkMulti	: 'Gecombineerde selecties toestaan',
+		opText		: 'Tekst',
+		opValue		: 'Waarde',
+		btnAdd		: 'Toevoegen',
+		btnModify	: 'Wijzigen',
+		btnUp		: 'Omhoog',
+		btnDown		: 'Omlaag',
+		btnSetValue : 'Als geselecteerde waarde instellen',
+		btnDelete	: 'Verwijderen'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Eigenschappen tekstvak',
+		cols		: 'Kolommen',
+		rows		: 'Rijen'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Eigenschappen tekstveld',
+		name		: 'Naam',
+		value		: 'Waarde',
+		charWidth	: 'Breedte (tekens)',
+		maxChars	: 'Maximum aantal tekens',
+		type		: 'Soort',
+		typeText	: 'Tekst',
+		typePass	: 'Wachtwoord'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Eigenschappen verborgen veld',
+		name	: 'Naam',
+		value	: 'Waarde'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Eigenschappen afbeelding',
+		titleButton	: 'Eigenschappen afbeeldingsknop',
+		menu		: 'Eigenschappen afbeelding',
+		infoTab	: 'Informatie afbeelding',
+		btnUpload	: 'Naar server verzenden',
+		url		: 'URL',
+		upload	: 'Upload',
+		alt		: 'Alternatieve tekst',
+		width		: 'Breedte',
+		height	: 'Hoogte',
+		lockRatio	: 'Afmetingen vergrendelen',
+		resetSize	: 'Afmetingen resetten',
+		border	: 'Rand',
+		hSpace	: 'HSpace',
+		vSpace	: 'VSpace',
+		align		: 'Uitlijning',
+		alignLeft	: 'Links',
+		alignAbsBottom: 'Absoluut-onder',
+		alignAbsMiddle: 'Absoluut-midden',
+		alignBaseline	: 'Basislijn',
+		alignBottom	: 'Beneden',
+		alignMiddle	: 'Midden',
+		alignRight	: 'Rechts',
+		alignTextTop	: 'Boven tekst',
+		alignTop	: 'Boven',
+		preview	: 'Voorbeeld',
+		alertUrl	: 'Geef de URL van de afbeelding',
+		linkTab	: 'Link',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Eigenschappen Flash',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Eigenschappen Flash',
+		chkPlay		: 'Automatisch afspelen',
+		chkLoop		: 'Herhalen',
+		chkMenu		: 'Flashmenu\'s inschakelen',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Schaal',
+		scaleAll		: 'Alles tonen',
+		scaleNoBorder	: 'Geen rand',
+		scaleFit		: 'Precies passend',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Uitlijning',
+		alignLeft	: 'Links',
+		alignAbsBottom: 'Absoluut-onder',
+		alignAbsMiddle: 'Absoluut-midden',
+		alignBaseline	: 'Basislijn',
+		alignBottom	: 'Beneden',
+		alignMiddle	: 'Midden',
+		alignRight	: 'Rechts',
+		alignTextTop	: 'Boven tekst',
+		alignTop	: 'Boven',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Achtergrondkleur',
+		width	: 'Breedte',
+		height	: 'Hoogte',
+		hSpace	: 'HSpace',
+		vSpace	: 'VSpace',
+		validateSrc : 'Geef de link van de URL',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Spellingscontrole',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Niet in het woordenboek',
+		changeTo		: 'Wijzig in',
+		btnIgnore		: 'Negeren',
+		btnIgnoreAll	: 'Alles negeren',
+		btnReplace		: 'Vervangen',
+		btnReplaceAll	: 'Alles vervangen',
+		btnUndo			: 'Ongedaan maken',
+		noSuggestions	: '-Geen suggesties-',
+		progress		: 'Bezig met spellingscontrole...',
+		noMispell		: 'Klaar met spellingscontrole: geen fouten gevonden',
+		noChanges		: 'Klaar met spellingscontrole: geen woorden aangepast',
+		oneChange		: 'Klaar met spellingscontrole: één woord aangepast',
+		manyChanges		: 'Klaar met spellingscontrole: %1 woorden aangepast',
+		ieSpellDownload	: 'De spellingscontrole niet geïnstalleerd. Wilt u deze nu downloaden?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Smiley',
+		title	: 'Smiley invoegen'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Genummerde lijst',
+	bulletedlist : 'Opsomming',
+	indent : 'Inspringen vergroten',
+	outdent : 'Inspringen verkleinen',
+
+	justify :
+	{
+		left : 'Links uitlijnen',
+		center : 'Centreren',
+		right : 'Rechts uitlijnen',
+		block : 'Uitvullen'
+	},
+
+	blockquote : 'Citaatblok',
+
+	clipboard :
+	{
+		title		: 'Plakken',
+		cutError	: 'De beveiligingsinstelling van de browser verhinderen het automatisch knippen. Gebruik de sneltoets Ctrl+X van het toetsenbord.',
+		copyError	: 'De beveiligingsinstelling van de browser verhinderen het automatisch kopiëren. Gebruik de sneltoets Ctrl+C van het toetsenbord.',
+		pasteMsg	: 'Plak de tekst in het volgende vak gebruik makend van uw toetsenbord (<strong>Ctrl+V</strong>) en klik op <strong>OK</strong>.',
+		securityMsg	: 'Door de beveiligingsinstellingen van uw browser is het niet mogelijk om direct vanuit het klembord in de editor te plakken. Middels opnieuw plakken in dit venster kunt u de tekst alsnog plakken in de editor.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Plakken als Word-gegevens',
+		title : 'Plakken als Word-gegevens',
+		advice : 'Plak de tekst in het volgende vak gebruik makend van uw toetsenbord (<strong>Ctrl+V</strong>) en klik op <strong>OK</strong>.',
+		ignoreFontFace : 'Negeer "Font Face"-definities',
+		removeStyle : 'Verwijder "Style"-definities'
+	},
+
+	pasteText :
+	{
+		button : 'Plakken als platte tekst',
+		title : 'Plakken als platte tekst'
+	},
+
+	templates :
+	{
+		button : 'Sjablonen',
+		title : 'Inhoud sjabonen',
+		insertOption: 'Vervang de huidige inhoud',
+		selectPromptMsg: 'Selecteer het sjabloon dat in de editor geopend moet worden (de actuele inhoud gaat verloren):',
+		emptyListMsg : '(Geen sjablonen gedefinieerd)'
+	},
+
+	showBlocks : 'Toon blokken',
+
+	stylesCombo :
+	{
+		label : 'Stijl',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Opmaak',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Opmaak',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normaal',
+		tag_pre : 'Met opmaak',
+		tag_address : 'Adres',
+		tag_h1 : 'Kop 1',
+		tag_h2 : 'Kop 2',
+		tag_h3 : 'Kop 3',
+		tag_h4 : 'Kop 4',
+		tag_h5 : 'Kop 5',
+		tag_h6 : 'Kop 6',
+		tag_div : 'Normaal (DIV)'
+	},
+
+	font :
+	{
+		label : 'Lettertype',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Lettertype',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Grootte',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Grootte',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Tekstkleur',
+		bgColorTitle : 'Achtergrondkleur',
+		auto : 'Automatisch',
+		more : 'Meer kleuren...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/no.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/no.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/no.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Norwegian language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['no'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Kilde',
+	newPage			: 'Ny Side',
+	save			: 'Lagre',
+	preview			: 'Forhåndsvis',
+	cut				: 'Klipp ut',
+	copy			: 'Kopier',
+	paste			: 'Lim inn',
+	print			: 'Skriv ut',
+	underline		: 'Understrek',
+	bold			: 'Fet',
+	italic			: 'Kursiv',
+	selectAll		: 'Merk alt',
+	removeFormat	: 'Fjern format',
+	strike			: 'Gjennomstrek',
+	subscript		: 'Senket skrift',
+	superscript		: 'Hevet skrift',
+	horizontalrule	: 'Sett inn horisontal linje',
+	pagebreak		: 'Sett inn sideskift',
+	unlink			: 'Fjern lenke',
+	undo			: 'Angre',
+	redo			: 'Gjør om',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Bla igjennom server',
+		url				: 'URL',
+		protocol		: 'Protokoll',
+		upload			: 'Last opp',
+		uploadSubmit	: 'Send det til serveren',
+		image			: 'Bilde',
+		flash			: 'Flash',
+		form			: 'Skjema',
+		checkbox		: 'Avmerkingsboks',
+		radio		: 'Alternativknapp',
+		textField		: 'Tekstboks',
+		textarea		: 'Tekstområde',
+		hiddenField		: 'Skjult felt',
+		button			: 'Knapp',
+		select	: 'Rullegardinliste',
+		imageButton		: 'Bildeknapp',
+		notSet			: '<ikke satt>',
+		id				: 'Id',
+		name			: 'Navn',
+		langDir			: 'Språkretning',
+		langDirLtr		: 'Venstre til høyre (VTH)',
+		langDirRtl		: 'Høyre til venstre (HTV)',
+		langCode		: 'Språkkode',
+		longDescr		: 'Utvidet beskrivelse',
+		cssClass		: 'Stilarkklasser',
+		advisoryTitle	: 'Tittel',
+		cssStyle		: 'Stil',
+		ok				: 'OK',
+		cancel			: 'Avbryt',
+		generalTab		: 'Generelt',
+		advancedTab		: 'Avansert',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Sett inn spesielt tegn',
+		title		: 'Velg spesielt tegn'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Sett inn/Rediger lenke',
+		menu		: 'Rediger lenke',
+		title		: 'Lenke',
+		info		: 'Lenkeinfo',
+		target		: 'Mål',
+		upload		: 'Last opp',
+		advanced	: 'Avansert',
+		type		: 'Lenketype',
+		toAnchor	: 'Lenke til anker i teksten',
+		toEmail		: 'E-post',
+		target		: 'Mål',
+		targetNotSet	: '<ikke satt>',
+		targetFrame	: '<ramme>',
+		targetPopup	: '<popup vindu>',
+		targetNew	: 'Nytt vindu (_blank)',
+		targetTop	: 'Hele vindu (_top)',
+		targetSelf	: 'Samme vindu (_self)',
+		targetParent	: 'Foreldrevindu (_parent)',
+		targetFrameName	: 'Målramme',
+		targetPopupName	: 'Navn på popup-vindus',
+		popupFeatures	: 'Egenskaper for popup-vindu',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Statuslinje',
+		popupLocationBar	: 'Adresselinje',
+		popupToolbar	: 'Verktøylinje',
+		popupMenuBar	: 'Menylinje',
+		popupFullScreen	: 'Full skjerm (IE)',
+		popupScrollBars	: 'Scrollbar',
+		popupDependent	: 'Avhenging (Netscape)',
+		popupWidth		: 'Bredde',
+		popupLeft		: 'Venstre posisjon',
+		popupHeight		: 'Høyde',
+		popupTop		: 'Topp-posisjon',
+		id				: 'Id', // MISSING
+		langDir			: 'Språkretning',
+		langDirNotSet	: '<ikke satt>',
+		langDirLTR		: 'Venstre til høyre (VTH)',
+		langDirRTL		: 'Høyre til venstre (HTV)',
+		acccessKey		: 'Aksessknapp',
+		name			: 'Navn',
+		langCode		: 'Språkretning',
+		tabIndex		: 'Tab Indeks',
+		advisoryTitle	: 'Tittel',
+		advisoryContentType	: 'Type',
+		cssClasses		: 'Stilarkklasser',
+		charset			: 'Lenket språkkart',
+		styles			: 'Stil',
+		selectAnchor	: 'Velg et anker',
+		anchorName		: 'Anker etter navn',
+		anchorId		: 'Element etter ID',
+		emailAddress	: 'E-postadresse',
+		emailSubject	: 'Meldingsemne',
+		emailBody		: 'Melding',
+		noAnchors		: '(Ingen anker i dokumentet)',
+		noUrl			: 'Vennligst skriv inn lenkens url',
+		noEmail			: 'Vennligst skriv inn e-postadressen'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Sett inn/Rediger anker',
+		menu		: 'Egenskaper for anker',
+		title		: 'Egenskaper for anker',
+		name		: 'Ankernavn',
+		errorName	: 'Vennligst skriv inn ankernavnet'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Søk og erstatt',
+		find				: 'Søk',
+		replace				: 'Erstatt',
+		findWhat			: 'Søk etter:',
+		replaceWith			: 'Erstatt med:',
+		notFoundMsg			: 'Fant ikke søketeksten.',
+		matchCase			: 'Skill mellom store og små bokstaver',
+		matchWord			: 'Bare hele ord',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Erstatt alle',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tabell',
+		title		: 'Egenskaper for tabell',
+		menu		: 'Egenskaper for tabell',
+		deleteTable	: 'Slett tabell',
+		rows		: 'Rader',
+		columns		: 'Kolonner',
+		border		: 'Rammestørrelse',
+		align		: 'Justering',
+		alignNotSet	: '<Ikke satt>',
+		alignLeft	: 'Venstre',
+		alignCenter	: 'Midtjuster',
+		alignRight	: 'Høyre',
+		width		: 'Bredde',
+		widthPx		: 'piksler',
+		widthPc		: 'prosent',
+		height		: 'Høyde',
+		cellSpace	: 'Cellemarg',
+		cellPad		: 'Cellepolstring',
+		caption		: 'Tittel',
+		summary		: 'Sammendrag',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Celle',
+			insertBefore	: 'Sett inn celle før',
+			insertAfter		: 'Sett inn celle etter',
+			deleteCell		: 'Slett celler',
+			merge			: 'Slå sammen celler',
+			mergeRight		: 'Slå sammen høyre',
+			mergeDown		: 'Slå sammen ned',
+			splitHorizontal	: 'Del celle horisontalt',
+			splitVertical	: 'Del celle vertikalt',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Rader',
+			insertBefore	: 'Sett inn rad før',
+			insertAfter		: 'Sett inn rad etter',
+			deleteRow		: 'Slett rader'
+		},
+
+		column :
+		{
+			menu			: 'Kolonne',
+			insertBefore	: 'Sett inn kolonne før',
+			insertAfter		: 'Sett inn kolonne etter',
+			deleteColumn	: 'Slett kolonner'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Egenskaper for knapp',
+		text		: 'Tekst (verdi)',
+		type		: 'Type',
+		typeBtn		: 'Knapp',
+		typeSbm		: 'Send',
+		typeRst		: 'Nullstill'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Egenskaper for avmerkingsboks',
+		radioTitle	: 'Egenskaper for alternativknapp',
+		value		: 'Verdi',
+		selected	: 'Valgt'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Egenskaper for skjema',
+		menu		: 'Egenskaper for skjema',
+		action		: 'Handling',
+		method		: 'Metode',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Mål',
+		targetNotSet	: '<ikke satt>',
+		targetNew	: 'Nytt vindu (_blank)',
+		targetTop	: 'Hele vindu (_top)',
+		targetSelf	: 'Samme vindu (_self)',
+		targetParent	: 'Foreldrevindu (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Egenskaper for rullegardinliste',
+		selectInfo	: 'Info',
+		opAvail		: 'Tilgjenglige alternativer',
+		value		: 'Verdi',
+		size		: 'Størrelse',
+		lines		: 'Linjer',
+		chkMulti	: 'Tillat flervalg',
+		opText		: 'Tekst',
+		opValue		: 'Verdi',
+		btnAdd		: 'Legg til',
+		btnModify	: 'Endre',
+		btnUp		: 'Opp',
+		btnDown		: 'Ned',
+		btnSetValue : 'Sett som valgt',
+		btnDelete	: 'Slett'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Egenskaper for tekstområde',
+		cols		: 'Kolonner',
+		rows		: 'Rader'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Egenskaper for tekstfelt',
+		name		: 'Navn',
+		value		: 'Verdi',
+		charWidth	: 'Tegnbredde',
+		maxChars	: 'Maks antall tegn',
+		type		: 'Type',
+		typeText	: 'Tekst',
+		typePass	: 'Passord'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Egenskaper for skjult felt',
+		name	: 'Navn',
+		value	: 'Verdi'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Bildeegenskaper',
+		titleButton	: 'Egenskaper for bildeknapp',
+		menu		: 'Bildeegenskaper',
+		infoTab	: 'Bildeinformasjon',
+		btnUpload	: 'Send det til serveren',
+		url		: 'URL',
+		upload	: 'Last opp',
+		alt		: 'Alternativ tekst',
+		width		: 'Bredde',
+		height	: 'Høyde',
+		lockRatio	: 'Lås forhold',
+		resetSize	: 'Tilbakestill størrelse',
+		border	: 'Ramme',
+		hSpace	: 'HMarg',
+		vSpace	: 'VMarg',
+		align		: 'Juster',
+		alignLeft	: 'Venstre',
+		alignAbsBottom: 'Abs bunn',
+		alignAbsMiddle: 'Abs midten',
+		alignBaseline	: 'Bunnlinje',
+		alignBottom	: 'Bunn',
+		alignMiddle	: 'Midten',
+		alignRight	: 'Høyre',
+		alignTextTop	: 'Tekst topp',
+		alignTop	: 'Topp',
+		preview	: 'Forhåndsvis',
+		alertUrl	: 'Vennligst skriv bilde-urlen',
+		linkTab	: 'Lenke',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Egenskaper for Flash-objekt',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Flash-egenskaper',
+		chkPlay		: 'Autospill',
+		chkLoop		: 'Loop',
+		chkMenu		: 'Slå på Flash-meny',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Skaler',
+		scaleAll		: 'Vis alt',
+		scaleNoBorder	: 'Ingen ramme',
+		scaleFit		: 'Skaler til å passe',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Juster',
+		alignLeft	: 'Venstre',
+		alignAbsBottom: 'Abs bunn',
+		alignAbsMiddle: 'Abs midten',
+		alignBaseline	: 'Bunnlinje',
+		alignBottom	: 'Bunn',
+		alignMiddle	: 'Midten',
+		alignRight	: 'Høyre',
+		alignTextTop	: 'Tekst topp',
+		alignTop	: 'Topp',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Bakgrunnsfarge',
+		width	: 'Bredde',
+		height	: 'Høyde',
+		hSpace	: 'HMarg',
+		vSpace	: 'VMarg',
+		validateSrc : 'Vennligst skriv inn lenkens url',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Stavekontroll',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Ikke i ordboken',
+		changeTo		: 'Endre til',
+		btnIgnore		: 'Ignorer',
+		btnIgnoreAll	: 'Ignorer alle',
+		btnReplace		: 'Erstatt',
+		btnReplaceAll	: 'Erstatt alle',
+		btnUndo			: 'Angre',
+		noSuggestions	: '- Ingen forslag -',
+		progress		: 'Stavekontroll pågår...',
+		noMispell		: 'Stavekontroll fullført: ingen feilstavinger funnet',
+		noChanges		: 'Stavekontroll fullført: ingen ord endret',
+		oneChange		: 'Stavekontroll fullført: Ett ord endret',
+		manyChanges		: 'Stavekontroll fullført: %1 ord endret',
+		ieSpellDownload	: 'Stavekontroll er ikke installert. Vil du laste den ned nå?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Smil',
+		title	: 'Sett inn smil'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Nummerert liste',
+	bulletedlist : 'Uordnet liste',
+	indent : 'Øk nivå',
+	outdent : 'Senk nivå',
+
+	justify :
+	{
+		left : 'Venstrejuster',
+		center : 'Midtjuster',
+		right : 'Høyrejuster',
+		block : 'Blokkjuster'
+	},
+
+	blockquote : 'Blockquote', // MISSING
+
+	clipboard :
+	{
+		title		: 'Lim inn',
+		cutError	: 'Din nettlesers sikkerhetsinstillinger tillater ikke automatisk klipping av tekst. Vennligst bruk snareveien (Ctrl+X).',
+		copyError	: 'Din nettlesers sikkerhetsinstillinger tillater ikke automatisk kopiering av tekst. Vennligst bruk snareveien (Ctrl+C).',
+		pasteMsg	: 'Vennligst lim inn i den følgende boksen med tastaturet (<STRONG>Ctrl+V</STRONG>) og trykk <STRONG>OK</STRONG>.',
+		securityMsg	: 'Din nettlesers sikkerhetsinstillinger gir ikke redigeringsverktøyet direkte tilgang til utklippstavlen. Du må lime det igjen i dette vinduet.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Lim inn fra Word',
+		title : 'Lim inn fra Word',
+		advice : 'Vennligst lim inn i den følgende boksen med tastaturet (<STRONG>Ctrl+V</STRONG>) og trykk <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Fjern skrifttyper',
+		removeStyle : 'Fjern stildefinisjoner'
+	},
+
+	pasteText :
+	{
+		button : 'Lim inn som ren tekst',
+		title : 'Lim inn som ren tekst'
+	},
+
+	templates :
+	{
+		button : 'Maler',
+		title : 'Innholdsmaler',
+		insertOption: 'Erstatt faktisk innold',
+		selectPromptMsg: 'Velg malen du vil åpne<br>(innholdet du har skrevet blir tapt!):',
+		emptyListMsg : '(Ingen maler definert)'
+	},
+
+	showBlocks : 'Show Blocks', // MISSING
+
+	stylesCombo :
+	{
+		label : 'Stil',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Format',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Format',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normal',
+		tag_pre : 'Formatert',
+		tag_address : 'Adresse',
+		tag_h1 : 'Tittel 1',
+		tag_h2 : 'Tittel 2',
+		tag_h3 : 'Tittel 3',
+		tag_h4 : 'Tittel 4',
+		tag_h5 : 'Tittel 5',
+		tag_h6 : 'Tittel 6',
+		tag_div : 'Normal (DIV)'
+	},
+
+	font :
+	{
+		label : 'Skrift',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Skrift',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Størrelse',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Størrelse',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Tekstfarge',
+		bgColorTitle : 'Bakgrunnsfarge',
+		auto : 'Automatisk',
+		more : 'Flere farger...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/pl.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/pl.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/pl.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Polish language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['pl'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Źródło dokumentu',
+	newPage			: 'Nowa strona',
+	save			: 'Zapisz',
+	preview			: 'Podgląd',
+	cut				: 'Wytnij',
+	copy			: 'Kopiuj',
+	paste			: 'Wklej',
+	print			: 'Drukuj',
+	underline		: 'Podkreślenie',
+	bold			: 'Pogrubienie',
+	italic			: 'Kursywa',
+	selectAll		: 'Zaznacz wszystko',
+	removeFormat	: 'Usuń formatowanie',
+	strike			: 'Przekreślenie',
+	subscript		: 'Indeks dolny',
+	superscript		: 'Indeks górny',
+	horizontalrule	: 'Wstaw poziomą linię',
+	pagebreak		: 'Wstaw odstęp',
+	unlink			: 'Usuń hiperłącze',
+	undo			: 'Cofnij',
+	redo			: 'Ponów',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Przeglądaj',
+		url				: 'Adres URL',
+		protocol		: 'Protokół',
+		upload			: 'Wyślij',
+		uploadSubmit	: 'Wyślij',
+		image			: 'Obrazek',
+		flash			: 'Flash',
+		form			: 'Formularz',
+		checkbox		: 'Pole wyboru (checkbox)',
+		radio		: 'Pole wyboru (radio)',
+		textField		: 'Pole tekstowe',
+		textarea		: 'Obszar tekstowy',
+		hiddenField		: 'Pole ukryte',
+		button			: 'Przycisk',
+		select	: 'Lista wyboru',
+		imageButton		: 'Przycisk-obrazek',
+		notSet			: '<nie ustawione>',
+		id				: 'Id',
+		name			: 'Nazwa',
+		langDir			: 'Kierunek tekstu',
+		langDirLtr		: 'Od lewej do prawej (LTR)',
+		langDirRtl		: 'Od prawej do lewej (RTL)',
+		langCode		: 'Kod języka',
+		longDescr		: 'Długi opis hiperłącza',
+		cssClass		: 'Nazwa klasy CSS',
+		advisoryTitle	: 'Opis obiektu docelowego',
+		cssStyle		: 'Styl',
+		ok				: 'OK',
+		cancel			: 'Anuluj',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'Zaawansowane',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Wstaw znak specjalny',
+		title		: 'Wybierz znak specjalny'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Wstaw/edytuj hiperłącze',
+		menu		: 'Edytuj hiperłącze',
+		title		: 'Hiperłącze',
+		info		: 'Informacje ',
+		target		: 'Cel',
+		upload		: 'Wyślij',
+		advanced	: 'Zaawansowane',
+		type		: 'Typ hiperłącza',
+		toAnchor	: 'Odnośnik wewnątrz strony',
+		toEmail		: 'Adres e-mail',
+		target		: 'Cel',
+		targetNotSet	: '<nie ustawione>',
+		targetFrame	: '<ramka>',
+		targetPopup	: '<wyskakujące okno>',
+		targetNew	: 'Nowe okno (_blank)',
+		targetTop	: 'Okno najwyższe w hierarchii (_top)',
+		targetSelf	: 'To samo okno (_self)',
+		targetParent	: 'Okno nadrzędne (_parent)',
+		targetFrameName	: 'Nazwa Ramki Docelowej',
+		targetPopupName	: 'Nazwa wyskakującego okna',
+		popupFeatures	: 'Właściwości wyskakującego okna',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Pasek statusu',
+		popupLocationBar	: 'Pasek adresu',
+		popupToolbar	: 'Pasek narzędzi',
+		popupMenuBar	: 'Pasek menu',
+		popupFullScreen	: 'Pełny ekran (IE)',
+		popupScrollBars	: 'Paski przewijania',
+		popupDependent	: 'Okno zależne (Netscape)',
+		popupWidth		: 'Szerokość',
+		popupLeft		: 'Pozycja w poziomie',
+		popupHeight		: 'Wysokość',
+		popupTop		: 'Pozycja w pionie',
+		id				: 'Id', // MISSING
+		langDir			: 'Kierunek tekstu',
+		langDirNotSet	: '<nie ustawione>',
+		langDirLTR		: 'Od lewej do prawej (LTR)',
+		langDirRTL		: 'Od prawej do lewej (RTL)',
+		acccessKey		: 'Klawisz dostępu',
+		name			: 'Nazwa',
+		langCode		: 'Kierunek tekstu',
+		tabIndex		: 'Indeks tabeli',
+		advisoryTitle	: 'Opis obiektu docelowego',
+		advisoryContentType	: 'Typ MIME obiektu docelowego',
+		cssClasses		: 'Nazwa klasy CSS',
+		charset			: 'Kodowanie znaków obiektu docelowego',
+		styles			: 'Styl',
+		selectAnchor	: 'Wybierz etykietę',
+		anchorName		: 'Wg etykiety',
+		anchorId		: 'Wg identyfikatora elementu',
+		emailAddress	: 'Adres e-mail',
+		emailSubject	: 'Temat',
+		emailBody		: 'Treść',
+		noAnchors		: '(W dokumencie nie zdefiniowano żadnych etykiet)',
+		noUrl			: 'Podaj adres URL',
+		noEmail			: 'Podaj adres e-mail'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Wstaw/edytuj kotwicę',
+		menu		: 'Właściwości kotwicy',
+		title		: 'Właściwości kotwicy',
+		name		: 'Nazwa kotwicy',
+		errorName	: 'Wpisz nazwę kotwicy'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Znajdź i zamień',
+		find				: 'Znajdź',
+		replace				: 'Zamień',
+		findWhat			: 'Znajdź:',
+		replaceWith			: 'Zastąp przez:',
+		notFoundMsg			: 'Nie znaleziono szukanego hasła.',
+		matchCase			: 'Uwzględnij wielkość liter',
+		matchWord			: 'Całe słowa',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Zastąp wszystko',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tabela',
+		title		: 'Właściwości tabeli',
+		menu		: 'Właściwości tabeli',
+		deleteTable	: 'Usuń tabelę',
+		rows		: 'Liczba wierszy',
+		columns		: 'Liczba kolumn',
+		border		: 'Grubość ramki',
+		align		: 'Wyrównanie',
+		alignNotSet	: '<brak ustawień>',
+		alignLeft	: 'Do lewej',
+		alignCenter	: 'Do środka',
+		alignRight	: 'Do prawej',
+		width		: 'Szerokość',
+		widthPx		: 'piksele',
+		widthPc		: '%',
+		height		: 'Wysokość',
+		cellSpace	: 'Odstęp pomiędzy komórkami',
+		cellPad		: 'Margines wewnętrzny komórek',
+		caption		: 'Tytuł',
+		summary		: 'Podsumowanie',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Komórka',
+			insertBefore	: 'Wstaw komórkę z lewej',
+			insertAfter		: 'Wstaw komórkę z prawej',
+			deleteCell		: 'Usuń komórki',
+			merge			: 'Połącz komórki',
+			mergeRight		: 'Połącz z komórką z prawej',
+			mergeDown		: 'Połącz z komórką poniżej',
+			splitHorizontal	: 'Podziel komórkę poziomo',
+			splitVertical	: 'Podziel komórkę pionowo',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Wiersz',
+			insertBefore	: 'Wstaw wiersz powyżej',
+			insertAfter		: 'Wstaw wiersz poniżej',
+			deleteRow		: 'Usuń wiersze'
+		},
+
+		column :
+		{
+			menu			: 'Kolumna',
+			insertBefore	: 'Wstaw kolumnę z lewej',
+			insertAfter		: 'Wstaw kolumnę z prawej',
+			deleteColumn	: 'Usuń kolumny'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Właściwości przycisku',
+		text		: 'Tekst (Wartość)',
+		type		: 'Typ',
+		typeBtn		: 'Przycisk',
+		typeSbm		: 'Wyślij',
+		typeRst		: 'Wyzeruj'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Właściwości pola wyboru (checkbox)',
+		radioTitle	: 'Właściwości pola wyboru (radio)',
+		value		: 'Wartość',
+		selected	: 'Zaznaczone'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Właściwości formularza',
+		menu		: 'Właściwości formularza',
+		action		: 'Akcja',
+		method		: 'Metoda',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Cel',
+		targetNotSet	: '<nie ustawione>',
+		targetNew	: 'Nowe okno (_blank)',
+		targetTop	: 'Okno najwyższe w hierarchii (_top)',
+		targetSelf	: 'To samo okno (_self)',
+		targetParent	: 'Okno nadrzędne (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Właściwości listy wyboru',
+		selectInfo	: 'Informacje',
+		opAvail		: 'Dostępne opcje',
+		value		: 'Wartość',
+		size		: 'Rozmiar',
+		lines		: 'linii',
+		chkMulti	: 'Wielokrotny wybór',
+		opText		: 'Tekst',
+		opValue		: 'Wartość',
+		btnAdd		: 'Dodaj',
+		btnModify	: 'Zmień',
+		btnUp		: 'Do góry',
+		btnDown		: 'Do dołu',
+		btnSetValue : 'Ustaw wartość zaznaczoną',
+		btnDelete	: 'Usuń'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Właściwości obszaru tekstowego',
+		cols		: 'Kolumnu',
+		rows		: 'Wiersze'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Właściwości pola tekstowego',
+		name		: 'Nazwa',
+		value		: 'Wartość',
+		charWidth	: 'Szerokość w znakach',
+		maxChars	: 'Max. szerokość',
+		type		: 'Typ',
+		typeText	: 'Tekst',
+		typePass	: 'Hasło'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Właściwości pola ukrytego',
+		name	: 'Nazwa',
+		value	: 'Wartość'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Właściwości obrazka',
+		titleButton	: 'Właściwości przycisku obrazka',
+		menu		: 'Właściwości obrazka',
+		infoTab	: 'Informacje o obrazku',
+		btnUpload	: 'Wyślij',
+		url		: 'Adres URL',
+		upload	: 'Wyślij',
+		alt		: 'Tekst zastępczy',
+		width		: 'Szerokość',
+		height	: 'Wysokość',
+		lockRatio	: 'Zablokuj proporcje',
+		resetSize	: 'Przywróć rozmiar',
+		border	: 'Ramka',
+		hSpace	: 'Odstęp poziomy',
+		vSpace	: 'Odstęp pionowy',
+		align		: 'Wyrównaj',
+		alignLeft	: 'Do lewej',
+		alignAbsBottom: 'Do dołu',
+		alignAbsMiddle: 'Do środka w pionie',
+		alignBaseline	: 'Do linii bazowej',
+		alignBottom	: 'Do dołu',
+		alignMiddle	: 'Do środka',
+		alignRight	: 'Do prawej',
+		alignTextTop	: 'Do góry tekstu',
+		alignTop	: 'Do góry',
+		preview	: 'Podgląd',
+		alertUrl	: 'Podaj adres obrazka.',
+		linkTab	: 'Hiperłącze',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Właściwości elementu Flash',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Właściwości elementu Flash',
+		chkPlay		: 'Auto Odtwarzanie',
+		chkLoop		: 'Pętla',
+		chkMenu		: 'Włącz menu',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Skaluj',
+		scaleAll		: 'Pokaż wszystko',
+		scaleNoBorder	: 'Bez Ramki',
+		scaleFit		: 'Dokładne dopasowanie',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Wyrównaj',
+		alignLeft	: 'Do lewej',
+		alignAbsBottom: 'Do dołu',
+		alignAbsMiddle: 'Do środka w pionie',
+		alignBaseline	: 'Do linii bazowej',
+		alignBottom	: 'Do dołu',
+		alignMiddle	: 'Do środka',
+		alignRight	: 'Do prawej',
+		alignTextTop	: 'Do góry tekstu',
+		alignTop	: 'Do góry',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Kolor tła',
+		width	: 'Szerokość',
+		height	: 'Wysokość',
+		hSpace	: 'Odstęp poziomy',
+		vSpace	: 'Odstęp pionowy',
+		validateSrc : 'Podaj adres URL',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Sprawdź pisownię',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Słowa nie ma w słowniku',
+		changeTo		: 'Zmień na',
+		btnIgnore		: 'Ignoruj',
+		btnIgnoreAll	: 'Ignoruj wszystkie',
+		btnReplace		: 'Zmień',
+		btnReplaceAll	: 'Zmień wszystkie',
+		btnUndo			: 'Cofnij',
+		noSuggestions	: '- Brak sugestii -',
+		progress		: 'Trwa sprawdzanie ...',
+		noMispell		: 'Sprawdzanie zakończone: nie znaleziono błędów',
+		noChanges		: 'Sprawdzanie zakończone: nie zmieniono żadnego słowa',
+		oneChange		: 'Sprawdzanie zakończone: zmieniono jedno słowo',
+		manyChanges		: 'Sprawdzanie zakończone: zmieniono %l słów',
+		ieSpellDownload	: 'Słownik nie jest zainstalowany. Chcesz go ściągnąć?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Emotikona',
+		title	: 'Wstaw emotikonę'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Lista numerowana',
+	bulletedlist : 'Lista wypunktowana',
+	indent : 'Zwiększ wcięcie',
+	outdent : 'Zmniejsz wcięcie',
+
+	justify :
+	{
+		left : 'Wyrównaj do lewej',
+		center : 'Wyrównaj do środka',
+		right : 'Wyrównaj do prawej',
+		block : 'Wyrównaj do lewej i prawej'
+	},
+
+	blockquote : 'Cytat',
+
+	clipboard :
+	{
+		title		: 'Wklej',
+		cutError	: 'Ustawienia bezpieczeństwa Twojej przeglądarki nie pozwalają na automatyczne wycinanie tekstu. Użyj skrótu klawiszowego Ctrl+X.',
+		copyError	: 'Ustawienia bezpieczeństwa Twojej przeglądarki nie pozwalają na automatyczne kopiowanie tekstu. Użyj skrótu klawiszowego Ctrl+C.',
+		pasteMsg	: 'Proszę wkleić w poniższym polu używając klawiaturowego skrótu (<STRONG>Ctrl+V</STRONG>) i kliknąć <STRONG>OK</STRONG>.',
+		securityMsg	: 'Zabezpieczenia przeglądarki uniemożliwiają wklejenie danych bezpośrednio do edytora. Proszę dane wkleić ponownie w tym okienku.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Wklej z Worda',
+		title : 'Wklej z Worda',
+		advice : 'Proszę wkleić w poniższym polu używając klawiaturowego skrótu (<STRONG>Ctrl+V</STRONG>) i kliknąć <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Ignoruj definicje \'Font Face\'',
+		removeStyle : 'Usuń definicje Stylów'
+	},
+
+	pasteText :
+	{
+		button : 'Wklej jako czysty tekst',
+		title : 'Wklej jako czysty tekst'
+	},
+
+	templates :
+	{
+		button : 'Sablony',
+		title : 'Szablony zawartości',
+		insertOption: 'Zastąp aktualną zawartość',
+		selectPromptMsg: 'Wybierz szablon do otwarcia w edytorze<br>(obecna zawartość okna edytora zostanie utracona):',
+		emptyListMsg : '(Brak zdefiniowanych szablonów)'
+	},
+
+	showBlocks : 'Pokaż bloki',
+
+	stylesCombo :
+	{
+		label : 'Styl',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Format',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Format',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normalny',
+		tag_pre : 'Tekst sformatowany',
+		tag_address : 'Adres',
+		tag_h1 : 'Nagłówek 1',
+		tag_h2 : 'Nagłówek 2',
+		tag_h3 : 'Nagłówek 3',
+		tag_h4 : 'Nagłówek 4',
+		tag_h5 : 'Nagłówek 5',
+		tag_h6 : 'Nagłówek 6',
+		tag_div : 'Normal (DIV)' // MISSING
+	},
+
+	font :
+	{
+		label : 'Czcionka',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Czcionka',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Rozmiar',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Rozmiar',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Kolor tekstu',
+		bgColorTitle : 'Kolor tła',
+		auto : 'Automatycznie',
+		more : 'Więcej kolorów...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/pt-br.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/pt-br.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/pt-br.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Brazilian Portuguese language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['pt-br'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Código-Fonte',
+	newPage			: 'Novo',
+	save			: 'Salvar',
+	preview			: 'Visualizar',
+	cut				: 'Recortar',
+	copy			: 'Copiar',
+	paste			: 'Colar',
+	print			: 'Imprimir',
+	underline		: 'Sublinhado',
+	bold			: 'Negrito',
+	italic			: 'Itálico',
+	selectAll		: 'Selecionar Tudo',
+	removeFormat	: 'Remover Formatação',
+	strike			: 'Tachado',
+	subscript		: 'Subscrito',
+	superscript		: 'Sobrescrito',
+	horizontalrule	: 'Inserir Linha Horizontal',
+	pagebreak		: 'Inserir Quebra de Página',
+	unlink			: 'Remover Hiperlink',
+	undo			: 'Desfazer',
+	redo			: 'Refazer',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Localizar no Servidor',
+		url				: 'URL',
+		protocol		: 'Protocolo',
+		upload			: 'Enviar ao Servidor',
+		uploadSubmit	: 'Enviar para o Servidor',
+		image			: 'Figura',
+		flash			: 'Flash',
+		form			: 'Formulário',
+		checkbox		: 'Caixa de Seleção',
+		radio		: 'Botão de Opção',
+		textField		: 'Caixa de Texto',
+		textarea		: 'Área de Texto',
+		hiddenField		: 'Campo Oculto',
+		button			: 'Botão',
+		select	: 'Caixa de Listagem',
+		imageButton		: 'Botão de Imagem',
+		notSet			: '<não ajustado>',
+		id				: 'Id',
+		name			: 'Nome',
+		langDir			: 'Direção do idioma',
+		langDirLtr		: 'Esquerda para Direita (LTR)',
+		langDirRtl		: 'Direita para Esquerda (RTL)',
+		langCode		: 'Idioma',
+		longDescr		: 'Descrição da URL',
+		cssClass		: 'Classe de Folhas de Estilo',
+		advisoryTitle	: 'Título',
+		cssStyle		: 'Estilos',
+		ok				: 'OK',
+		cancel			: 'Cancelar',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'Avançado',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Inserir Caractere Especial',
+		title		: 'Selecione um Caractere Especial'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Inserir/Editar Hiperlink',
+		menu		: 'Editar Hiperlink',
+		title		: 'Hiperlink',
+		info		: 'Informações',
+		target		: 'Destino',
+		upload		: 'Enviar ao Servidor',
+		advanced	: 'Avançado',
+		type		: 'Tipo de hiperlink',
+		toAnchor	: 'Âncora nesta página',
+		toEmail		: 'E-Mail',
+		target		: 'Destino',
+		targetNotSet	: '<não ajustado>',
+		targetFrame	: '<frame>',
+		targetPopup	: '<janela popup>',
+		targetNew	: 'Nova Janela (_blank)',
+		targetTop	: 'Janela Superior (_top)',
+		targetSelf	: 'Mesma Janela (_self)',
+		targetParent	: 'Janela Pai (_parent)',
+		targetFrameName	: 'Nome do Frame de Destino',
+		targetPopupName	: 'Nome da Janela Pop-up',
+		popupFeatures	: 'Atributos da Janela Pop-up',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Barra de Status',
+		popupLocationBar	: 'Barra de Endereços',
+		popupToolbar	: 'Barra de Ferramentas',
+		popupMenuBar	: 'Barra de Menus',
+		popupFullScreen	: 'Modo Tela Cheia (IE)',
+		popupScrollBars	: 'Barras de Rolagem',
+		popupDependent	: 'Dependente (Netscape)',
+		popupWidth		: 'Largura',
+		popupLeft		: 'Esquerda',
+		popupHeight		: 'Altura',
+		popupTop		: 'Superior',
+		id				: 'Id', // MISSING
+		langDir			: 'Direção do idioma',
+		langDirNotSet	: '<não ajustado>',
+		langDirLTR		: 'Esquerda para Direita (LTR)',
+		langDirRTL		: 'Direita para Esquerda (RTL)',
+		acccessKey		: 'Chave de Acesso',
+		name			: 'Nome',
+		langCode		: 'Direção do idioma',
+		tabIndex		: 'Índice de Tabulação',
+		advisoryTitle	: 'Título',
+		advisoryContentType	: 'Tipo de Conteúdo',
+		cssClasses		: 'Classe de Folhas de Estilo',
+		charset			: 'Conjunto de Caracteres do Hiperlink',
+		styles			: 'Estilos',
+		selectAnchor	: 'Selecione uma âncora',
+		anchorName		: 'Pelo Nome da âncora',
+		anchorId		: 'Pelo Id do Elemento',
+		emailAddress	: 'Endereço E-Mail',
+		emailSubject	: 'Assunto da Mensagem',
+		emailBody		: 'Corpo da Mensagem',
+		noAnchors		: '(Não há âncoras disponíveis neste documento)',
+		noUrl			: 'Por favor, digite o endereço do Hiperlink',
+		noEmail			: 'Por favor, digite o endereço de e-mail'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Inserir/Editar Âncora',
+		menu		: 'Formatar Âncora',
+		title		: 'Formatar Âncora',
+		name		: 'Nome da Âncora',
+		errorName	: 'Por favor, digite o nome da âncora'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Localizar e Substituir',
+		find				: 'Localizar',
+		replace				: 'Substituir',
+		findWhat			: 'Procurar por:',
+		replaceWith			: 'Substituir por:',
+		notFoundMsg			: 'O texto especificado não foi encontrado.',
+		matchCase			: 'Coincidir Maiúsculas/Minúsculas',
+		matchWord			: 'Coincidir a palavra inteira',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Substituir Tudo',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tabela',
+		title		: 'Formatar Tabela',
+		menu		: 'Formatar Tabela',
+		deleteTable	: 'Apagar Tabela',
+		rows		: 'Linhas',
+		columns		: 'Colunas',
+		border		: 'Borda',
+		align		: 'Alinhamento',
+		alignNotSet	: '<Não ajustado>',
+		alignLeft	: 'Esquerda',
+		alignCenter	: 'Centralizado',
+		alignRight	: 'Direita',
+		width		: 'Largura',
+		widthPx		: 'pixels',
+		widthPc		: '%',
+		height		: 'Altura',
+		cellSpace	: 'Espaçamento',
+		cellPad		: 'Enchimento',
+		caption		: 'Legenda',
+		summary		: 'Resumo',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Célula',
+			insertBefore	: 'Inserir célula à esquerda',
+			insertAfter		: 'Inserir célula à direita',
+			deleteCell		: 'Remover Células',
+			merge			: 'Mesclar Células',
+			mergeRight		: 'Mesclar com célula à direita',
+			mergeDown		: 'Mesclar com célula abaixo',
+			splitHorizontal	: 'Dividir célula horizontalmente',
+			splitVertical	: 'Dividir célula verticalmente',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Linha',
+			insertBefore	: 'Inserir linha acima',
+			insertAfter		: 'Inserir linha abaixo',
+			deleteRow		: 'Remover Linhas'
+		},
+
+		column :
+		{
+			menu			: 'Coluna',
+			insertBefore	: 'Inserir coluna à esquerda',
+			insertAfter		: 'Inserir coluna à direita',
+			deleteColumn	: 'Remover Colunas'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Formatar Botão',
+		text		: 'Texto (Valor)',
+		type		: 'Tipo',
+		typeBtn		: 'Botão',
+		typeSbm		: 'Enviar',
+		typeRst		: 'Limpar'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Formatar Caixa de Seleção',
+		radioTitle	: 'Formatar Botão de Opção',
+		value		: 'Valor',
+		selected	: 'Selecionado'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Formatar Formulário',
+		menu		: 'Formatar Formulário',
+		action		: 'Action',
+		method		: 'Método',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Destino',
+		targetNotSet	: '<não ajustado>',
+		targetNew	: 'Nova Janela (_blank)',
+		targetTop	: 'Janela Superior (_top)',
+		targetSelf	: 'Mesma Janela (_self)',
+		targetParent	: 'Janela Pai (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Formatar Caixa de Listagem',
+		selectInfo	: 'Info',
+		opAvail		: 'Opções disponíveis',
+		value		: 'Valor',
+		size		: 'Tamanho',
+		lines		: 'linhas',
+		chkMulti	: 'Permitir múltiplas seleções',
+		opText		: 'Texto',
+		opValue		: 'Valor',
+		btnAdd		: 'Adicionar',
+		btnModify	: 'Modificar',
+		btnUp		: 'Para cima',
+		btnDown		: 'Para baixo',
+		btnSetValue : 'Definir como selecionado',
+		btnDelete	: 'Remover'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Formatar Área de Texto',
+		cols		: 'Colunas',
+		rows		: 'Linhas'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Formatar Caixa de Texto',
+		name		: 'Nome',
+		value		: 'Valor',
+		charWidth	: 'Comprimento (em caracteres)',
+		maxChars	: 'Número Máximo de Caracteres',
+		type		: 'Tipo',
+		typeText	: 'Texto',
+		typePass	: 'Senha'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Formatar Campo Oculto',
+		name	: 'Nome',
+		value	: 'Valor'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Formatar Figura',
+		titleButton	: 'Formatar Botão de Imagem',
+		menu		: 'Formatar Figura',
+		infoTab	: 'Informações da Figura',
+		btnUpload	: 'Enviar para o Servidor',
+		url		: 'URL',
+		upload	: 'Submeter',
+		alt		: 'Texto Alternativo',
+		width		: 'Largura',
+		height	: 'Altura',
+		lockRatio	: 'Manter proporções',
+		resetSize	: 'Redefinir para o Tamanho Original',
+		border	: 'Borda',
+		hSpace	: 'Horizontal',
+		vSpace	: 'Vertical',
+		align		: 'Alinhamento',
+		alignLeft	: 'Esquerda',
+		alignAbsBottom: 'Inferior Absoluto',
+		alignAbsMiddle: 'Centralizado Absoluto',
+		alignBaseline	: 'Baseline',
+		alignBottom	: 'Inferior',
+		alignMiddle	: 'Centralizado',
+		alignRight	: 'Direita',
+		alignTextTop	: 'Superior Absoluto',
+		alignTop	: 'Superior',
+		preview	: 'Visualização',
+		alertUrl	: 'Por favor, digite o URL da figura.',
+		linkTab	: 'Hiperlink',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Propriedades Flash',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Propriedades Flash',
+		chkPlay		: 'Tocar Automaticamente',
+		chkLoop		: 'Loop',
+		chkMenu		: 'Habilita Menu Flash',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Escala',
+		scaleAll		: 'Mostrar tudo',
+		scaleNoBorder	: 'Sem Borda',
+		scaleFit		: 'Escala Exata',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Alinhamento',
+		alignLeft	: 'Esquerda',
+		alignAbsBottom: 'Inferior Absoluto',
+		alignAbsMiddle: 'Centralizado Absoluto',
+		alignBaseline	: 'Baseline',
+		alignBottom	: 'Inferior',
+		alignMiddle	: 'Centralizado',
+		alignRight	: 'Direita',
+		alignTextTop	: 'Superior Absoluto',
+		alignTop	: 'Superior',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Cor do Plano de Fundo',
+		width	: 'Largura',
+		height	: 'Altura',
+		hSpace	: 'Horizontal',
+		vSpace	: 'Vertical',
+		validateSrc : 'Por favor, digite o endereço do Hiperlink',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Verificar Ortografia',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Não encontrada',
+		changeTo		: 'Alterar para',
+		btnIgnore		: 'Ignorar uma vez',
+		btnIgnoreAll	: 'Ignorar Todas',
+		btnReplace		: 'Alterar',
+		btnReplaceAll	: 'Alterar Todas',
+		btnUndo			: 'Desfazer',
+		noSuggestions	: '-sem sugestões de ortografia-',
+		progress		: 'Verificação ortográfica em andamento...',
+		noMispell		: 'Verificação encerrada: Não foram encontrados erros de ortografia',
+		noChanges		: 'Verificação ortográfica encerrada: Não houve alterações',
+		oneChange		: 'Verificação ortográfica encerrada: Uma palavra foi alterada',
+		manyChanges		: 'Verificação ortográfica encerrada: %1 foram alteradas',
+		ieSpellDownload	: 'A verificação ortográfica não foi instalada. Você gostaria de realizar o download agora?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Emoticon',
+		title	: 'Inserir Emoticon'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Numeração',
+	bulletedlist : 'Marcadores',
+	indent : 'Aumentar Recuo',
+	outdent : 'Diminuir Recuo',
+
+	justify :
+	{
+		left : 'Alinhar Esquerda',
+		center : 'Centralizar',
+		right : 'Alinhar Direita',
+		block : 'Justificado'
+	},
+
+	blockquote : 'Recuo',
+
+	clipboard :
+	{
+		title		: 'Colar',
+		cutError	: 'As configurações de segurança do seu navegador não permitem que o editor execute operações de recortar automaticamente. Por favor, utilize o teclado para recortar (Ctrl+X).',
+		copyError	: 'As configurações de segurança do seu navegador não permitem que o editor execute operações de copiar automaticamente. Por favor, utilize o teclado para copiar (Ctrl+C).',
+		pasteMsg	: 'Transfira o link usado no box usando o teclado com (<STRONG>Ctrl+V</STRONG>) e <STRONG>OK</STRONG>.',
+		securityMsg	: 'As configurações de segurança do seu navegador não permitem que o editor acesse os dados da área de transferência diretamente. Por favor cole o conteúdo novamente nesta janela.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Colar do Word',
+		title : 'Colar do Word',
+		advice : 'Transfira o link usado no box usando o teclado com (<STRONG>Ctrl+V</STRONG>) e <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Ignorar definições de fonte',
+		removeStyle : 'Remove definições de estilo'
+	},
+
+	pasteText :
+	{
+		button : 'Colar como Texto sem Formatação',
+		title : 'Colar como Texto sem Formatação'
+	},
+
+	templates :
+	{
+		button : 'Modelos de layout',
+		title : 'Modelo de layout do conteúdo',
+		insertOption: 'Substituir o conteúdo atual',
+		selectPromptMsg: 'Selecione um modelo de layout para ser aberto no editor<br>(o conteúdo atual será perdido):',
+		emptyListMsg : '(Não foram definidos modelos de layout)'
+	},
+
+	showBlocks : 'Mostrar blocos',
+
+	stylesCombo :
+	{
+		label : 'Estilo',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Formatação',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Formatação',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normal',
+		tag_pre : 'Formatado',
+		tag_address : 'Endereço',
+		tag_h1 : 'Título 1',
+		tag_h2 : 'Título 2',
+		tag_h3 : 'Título 3',
+		tag_h4 : 'Título 4',
+		tag_h5 : 'Título 5',
+		tag_h6 : 'Título 6',
+		tag_div : 'Normal (DIV)' // MISSING
+	},
+
+	font :
+	{
+		label : 'Fonte',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Fonte',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Tamanho',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Tamanho',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Cor do Texto',
+		bgColorTitle : 'Cor do Plano de Fundo',
+		auto : 'Automático',
+		more : 'Mais Cores...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/pt.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/pt.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/pt.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Portuguese language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['pt'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Fonte',
+	newPage			: 'Nova Página',
+	save			: 'Guardar',
+	preview			: 'Pré-visualizar',
+	cut				: 'Cortar',
+	copy			: 'Copiar',
+	paste			: 'Colar',
+	print			: 'Imprimir',
+	underline		: 'Sublinhado',
+	bold			: 'Negrito',
+	italic			: 'Itálico',
+	selectAll		: 'Seleccionar Tudo',
+	removeFormat	: 'Eliminar Formato',
+	strike			: 'Rasurado',
+	subscript		: 'Superior à Linha',
+	superscript		: 'Inferior à Linha',
+	horizontalrule	: 'Inserir Linha Horizontal',
+	pagebreak		: 'Inserir Quebra de Página',
+	unlink			: 'Eliminar Hiperligação',
+	undo			: 'Anular',
+	redo			: 'Repetir',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Navegar no Servidor',
+		url				: 'URL',
+		protocol		: 'Protocolo',
+		upload			: 'Carregar',
+		uploadSubmit	: 'Enviar para o Servidor',
+		image			: 'Imagem',
+		flash			: 'Flash',
+		form			: 'Formulário',
+		checkbox		: 'Caixa de Verificação',
+		radio		: 'Botão de Opção',
+		textField		: 'Campo de Texto',
+		textarea		: 'Área de Texto',
+		hiddenField		: 'Campo Escondido',
+		button			: 'Botão',
+		select	: 'Caixa de Combinação',
+		imageButton		: 'Botão de Imagem',
+		notSet			: '<Não definido>',
+		id				: 'Id',
+		name			: 'Nome',
+		langDir			: 'Orientação de idioma',
+		langDirLtr		: 'Esquerda à Direita (LTR)',
+		langDirRtl		: 'Direita a Esquerda (RTL)',
+		langCode		: 'Código de Idioma',
+		longDescr		: 'Descrição Completa do URL',
+		cssClass		: 'Classes de Estilo de Folhas Classes',
+		advisoryTitle	: 'Título',
+		cssStyle		: 'Estilo',
+		ok				: 'OK',
+		cancel			: 'Cancelar',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'Avançado',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Inserir Caracter Especial',
+		title		: 'Seleccione um caracter especial'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Inserir/Editar Hiperligação',
+		menu		: 'Editar Hiperligação',
+		title		: 'Hiperligação',
+		info		: 'Informação de Hiperligação',
+		target		: 'Destino',
+		upload		: 'Carregar',
+		advanced	: 'Avançado',
+		type		: 'Tipo de Hiperligação',
+		toAnchor	: 'Referência a esta página',
+		toEmail		: 'E-Mail',
+		target		: 'Destino',
+		targetNotSet	: '<Não definido>',
+		targetFrame	: '<Frame>',
+		targetPopup	: '<Janela de popup>',
+		targetNew	: 'Nova Janela(_blank)',
+		targetTop	: 'Janela primaria (_top)',
+		targetSelf	: 'Mesma janela (_self)',
+		targetParent	: 'Janela Pai (_parent)',
+		targetFrameName	: 'Nome do Frame Destino',
+		targetPopupName	: 'Nome da Janela de Popup',
+		popupFeatures	: 'Características de Janela de Popup',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Barra de Estado',
+		popupLocationBar	: 'Barra de localização',
+		popupToolbar	: 'Barra de Ferramentas',
+		popupMenuBar	: 'Barra de Menu',
+		popupFullScreen	: 'Janela Completa (IE)',
+		popupScrollBars	: 'Barras de deslocamento',
+		popupDependent	: 'Dependente (Netscape)',
+		popupWidth		: 'Largura',
+		popupLeft		: 'Posição Esquerda',
+		popupHeight		: 'Altura',
+		popupTop		: 'Posição Direita',
+		id				: 'Id', // MISSING
+		langDir			: 'Orientação de idioma',
+		langDirNotSet	: '<Não definido>',
+		langDirLTR		: 'Esquerda à Direita (LTR)',
+		langDirRTL		: 'Direita a Esquerda (RTL)',
+		acccessKey		: 'Chave de Acesso',
+		name			: 'Nome',
+		langCode		: 'Orientação de idioma',
+		tabIndex		: 'Índice de Tubulação',
+		advisoryTitle	: 'Título',
+		advisoryContentType	: 'Tipo de Conteúdo',
+		cssClasses		: 'Classes de Estilo de Folhas Classes',
+		charset			: 'Fonte de caracteres vinculado',
+		styles			: 'Estilo',
+		selectAnchor	: 'Seleccionar una referência',
+		anchorName		: 'Por Nome de Referência',
+		anchorId		: 'Por ID de elemento',
+		emailAddress	: 'Endereço de E-Mail',
+		emailSubject	: 'Título de Mensagem',
+		emailBody		: 'Corpo da Mensagem',
+		noAnchors		: '(Não há referências disponíveis no documento)',
+		noUrl			: 'Por favor introduza a hiperligação URL',
+		noEmail			: 'Por favor introduza o endereço de e-mail'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: ' Inserir/Editar Âncora',
+		menu		: 'Propriedades da Âncora',
+		title		: 'Propriedades da Âncora',
+		name		: 'Nome da Âncora',
+		errorName	: 'Por favor, introduza o nome da âncora'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Find and Replace', // MISSING
+		find				: 'Procurar',
+		replace				: 'Substituir',
+		findWhat			: 'Texto a Procurar:',
+		replaceWith			: 'Substituir por:',
+		notFoundMsg			: 'O texto especificado não foi encontrado.',
+		matchCase			: 'Maiúsculas/Minúsculas',
+		matchWord			: 'Coincidir com toda a palavra',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Substituir Tudo',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tabela',
+		title		: 'Propriedades da Tabela',
+		menu		: 'Propriedades da Tabela',
+		deleteTable	: 'Eliminar Tabela',
+		rows		: 'Linhas',
+		columns		: 'Colunas',
+		border		: 'Tamanho do Limite',
+		align		: 'Alinhamento',
+		alignNotSet	: '<Não definido>',
+		alignLeft	: 'Esquerda',
+		alignCenter	: 'Centrado',
+		alignRight	: 'Direita',
+		width		: 'Largura',
+		widthPx		: 'pixeis',
+		widthPc		: 'percentagem',
+		height		: 'Altura',
+		cellSpace	: 'Esp. e/células',
+		cellPad		: 'Esp. interior',
+		caption		: 'Título',
+		summary		: 'Sumário',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Célula',
+			insertBefore	: 'Insert Cell Before', // MISSING
+			insertAfter		: 'Insert Cell After', // MISSING
+			deleteCell		: 'Eliminar Célula',
+			merge			: 'Unir Células',
+			mergeRight		: 'Merge Right', // MISSING
+			mergeDown		: 'Merge Down', // MISSING
+			splitHorizontal	: 'Split Cell Horizontally', // MISSING
+			splitVertical	: 'Split Cell Vertically', // MISSING
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Linha',
+			insertBefore	: 'Insert Row Before', // MISSING
+			insertAfter		: 'Insert Row After', // MISSING
+			deleteRow		: 'Eliminar Linhas'
+		},
+
+		column :
+		{
+			menu			: 'Coluna',
+			insertBefore	: 'Insert Column Before', // MISSING
+			insertAfter		: 'Insert Column After', // MISSING
+			deleteColumn	: 'Eliminar Coluna'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Propriedades do Botão',
+		text		: 'Texto (Valor)',
+		type		: 'Tipo',
+		typeBtn		: 'Button', // MISSING
+		typeSbm		: 'Submit', // MISSING
+		typeRst		: 'Reset' // MISSING
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Propriedades da Caixa de Verificação',
+		radioTitle	: 'Propriedades do Botão de Opção',
+		value		: 'Valor',
+		selected	: 'Seleccionado'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Propriedades do Formulário',
+		menu		: 'Propriedades do Formulário',
+		action		: 'Acção',
+		method		: 'Método',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Destino',
+		targetNotSet	: '<Não definido>',
+		targetNew	: 'Nova Janela(_blank)',
+		targetTop	: 'Janela primaria (_top)',
+		targetSelf	: 'Mesma janela (_self)',
+		targetParent	: 'Janela Pai (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Propriedades da Caixa de Combinação',
+		selectInfo	: 'Informação',
+		opAvail		: 'Opções Possíveis',
+		value		: 'Valor',
+		size		: 'Tamanho',
+		lines		: 'linhas',
+		chkMulti	: 'Permitir selecções múltiplas',
+		opText		: 'Texto',
+		opValue		: 'Valor',
+		btnAdd		: 'Adicionar',
+		btnModify	: 'Modificar',
+		btnUp		: 'Para cima',
+		btnDown		: 'Para baixo',
+		btnSetValue : 'Definir um valor por defeito',
+		btnDelete	: 'Apagar'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Propriedades da Área de Texto',
+		cols		: 'Colunas',
+		rows		: 'Linhas'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Propriedades do Campo de Texto',
+		name		: 'Nome',
+		value		: 'Valor',
+		charWidth	: 'Tamanho do caracter',
+		maxChars	: 'Nr. Máximo de Caracteres',
+		type		: 'Tipo',
+		typeText	: 'Texto',
+		typePass	: 'Palavra-chave'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Propriedades do Campo Escondido',
+		name	: 'Nome',
+		value	: 'Valor'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Propriedades da Imagem',
+		titleButton	: 'Propriedades do Botão de imagens',
+		menu		: 'Propriedades da Imagem',
+		infoTab	: 'Informação da Imagem',
+		btnUpload	: 'Enviar para o Servidor',
+		url		: 'URL',
+		upload	: 'Carregar',
+		alt		: 'Texto Alternativo',
+		width		: 'Largura',
+		height	: 'Altura',
+		lockRatio	: 'Proporcional',
+		resetSize	: 'Tamanho Original',
+		border	: 'Limite',
+		hSpace	: 'Esp.Horiz',
+		vSpace	: 'Esp.Vert',
+		align		: 'Alinhamento',
+		alignLeft	: 'Esquerda',
+		alignAbsBottom: 'Abs inferior',
+		alignAbsMiddle: 'Abs centro',
+		alignBaseline	: 'Linha de base',
+		alignBottom	: 'Fundo',
+		alignMiddle	: 'Centro',
+		alignRight	: 'Direita',
+		alignTextTop	: 'Topo do texto',
+		alignTop	: 'Topo',
+		preview	: 'Pré-visualizar',
+		alertUrl	: 'Por favor introduza o URL da imagem',
+		linkTab	: 'Hiperligação',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Propriedades do Flash',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Propriedades do Flash',
+		chkPlay		: 'Reproduzir automaticamente',
+		chkLoop		: 'Loop',
+		chkMenu		: 'Permitir Menu do Flash',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Escala',
+		scaleAll		: 'Mostrar tudo',
+		scaleNoBorder	: 'Sem Limites',
+		scaleFit		: 'Tamanho Exacto',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Alinhamento',
+		alignLeft	: 'Esquerda',
+		alignAbsBottom: 'Abs inferior',
+		alignAbsMiddle: 'Abs centro',
+		alignBaseline	: 'Linha de base',
+		alignBottom	: 'Fundo',
+		alignMiddle	: 'Centro',
+		alignRight	: 'Direita',
+		alignTextTop	: 'Topo do texto',
+		alignTop	: 'Topo',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Cor de Fundo',
+		width	: 'Largura',
+		height	: 'Altura',
+		hSpace	: 'Esp.Horiz',
+		vSpace	: 'Esp.Vert',
+		validateSrc : 'Por favor introduza a hiperligação URL',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Verificação Ortográfica',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Não está num directório',
+		changeTo		: 'Mudar para',
+		btnIgnore		: 'Ignorar',
+		btnIgnoreAll	: 'Ignorar Tudo',
+		btnReplace		: 'Substituir',
+		btnReplaceAll	: 'Substituir Tudo',
+		btnUndo			: 'Anular',
+		noSuggestions	: '- Sem sugestões -',
+		progress		: 'Verificação ortográfica em progresso…',
+		noMispell		: 'Verificação ortográfica completa: não foram encontrados erros',
+		noChanges		: 'Verificação ortográfica completa: não houve alteração de palavras',
+		oneChange		: 'Verificação ortográfica completa: uma palavra alterada',
+		manyChanges		: 'Verificação ortográfica completa: %1 palavras alteradas',
+		ieSpellDownload	: ' Verificação ortográfica não instalada. Quer descarregar agora?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Emoticons',
+		title	: 'Inserir um Emoticon'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Numeração',
+	bulletedlist : 'Marcas',
+	indent : 'Aumentar Avanço',
+	outdent : 'Diminuir Avanço',
+
+	justify :
+	{
+		left : 'Alinhar à Esquerda',
+		center : 'Alinhar ao Centro',
+		right : 'Alinhar à Direita',
+		block : 'Justificado'
+	},
+
+	blockquote : 'Blockquote', // MISSING
+
+	clipboard :
+	{
+		title		: 'Colar',
+		cutError	: 'A configuração de segurança do navegador não permite a execução automática de operações de cortar. Por favor use o teclado (Ctrl+X).',
+		copyError	: 'A configuração de segurança do navegador não permite a execução automática de operações de copiar. Por favor use o teclado (Ctrl+C).',
+		pasteMsg	: 'Por favor, cole dentro da seguinte caixa usando o teclado (<STRONG>Ctrl+V</STRONG>) e prima <STRONG>OK</STRONG>.',
+		securityMsg	: 'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.' // MISSING
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Colar do Word',
+		title : 'Colar do Word',
+		advice : 'Por favor, cole dentro da seguinte caixa usando o teclado (<STRONG>Ctrl+V</STRONG>) e prima <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Ignorar da definições do Tipo de Letra ',
+		removeStyle : 'Remover as definições de Estilos'
+	},
+
+	pasteText :
+	{
+		button : 'Colar como Texto Simples',
+		title : 'Colar como Texto Simples'
+	},
+
+	templates :
+	{
+		button : 'Modelos',
+		title : 'Modelo de Conteúdo',
+		insertOption: 'Replace actual contents', // MISSING
+		selectPromptMsg: 'Por favor, seleccione o modelo a abrir no editor<br>(o conteúdo actual será perdido):',
+		emptyListMsg : '(Sem modelos definidos)'
+	},
+
+	showBlocks : 'Show Blocks', // MISSING
+
+	stylesCombo :
+	{
+		label : 'Estilo',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Formato',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Formato',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normal',
+		tag_pre : 'Formatado',
+		tag_address : 'Endereço',
+		tag_h1 : 'Título 1',
+		tag_h2 : 'Título 2',
+		tag_h3 : 'Título 3',
+		tag_h4 : 'Título 4',
+		tag_h5 : 'Título 5',
+		tag_h6 : 'Título 6',
+		tag_div : 'Normal (DIV)' // MISSING
+	},
+
+	font :
+	{
+		label : 'Tipo de Letra',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Tipo de Letra',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Tamanho',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Tamanho',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Cor do Texto',
+		bgColorTitle : 'Cor de Fundo',
+		auto : 'Automático',
+		more : 'Mais Cores...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/ro.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/ro.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/ro.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Romanian language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['ro'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Sursa',
+	newPage			: 'Pagină nouă',
+	save			: 'Salvează',
+	preview			: 'Previzualizare',
+	cut				: 'Taie',
+	copy			: 'Copiază',
+	paste			: 'Adaugă',
+	print			: 'Printează',
+	underline		: 'Subliniat (underline)',
+	bold			: 'Îngroşat (bold)',
+	italic			: 'Înclinat (italic)',
+	selectAll		: 'Selectează tot',
+	removeFormat	: 'Înlătură formatarea',
+	strike			: 'Tăiat (strike through)',
+	subscript		: 'Indice (subscript)',
+	superscript		: 'Putere (superscript)',
+	horizontalrule	: 'Inserează linie orizontă',
+	pagebreak		: 'Inserează separator de pagină (Page Break)',
+	unlink			: 'Înlătură link (legătură web)',
+	undo			: 'Starea anterioară (undo)',
+	redo			: 'Starea ulterioară (redo)',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Răsfoieşte server',
+		url				: 'URL',
+		protocol		: 'Protocol',
+		upload			: 'Încarcă',
+		uploadSubmit	: 'Trimite la server',
+		image			: 'Imagine',
+		flash			: 'Flash',
+		form			: 'Formular (Form)',
+		checkbox		: 'Bifă (Checkbox)',
+		radio		: 'Buton radio (RadioButton)',
+		textField		: 'Câmp text (TextField)',
+		textarea		: 'Suprafaţă text (Textarea)',
+		hiddenField		: 'Câmp ascuns (HiddenField)',
+		button			: 'Buton',
+		select	: 'Câmp selecţie (SelectionField)',
+		imageButton		: 'Buton imagine (ImageButton)',
+		notSet			: '<nesetat>',
+		id				: 'Id',
+		name			: 'Nume',
+		langDir			: 'Direcţia cuvintelor',
+		langDirLtr		: 'stânga-dreapta (LTR)',
+		langDirRtl		: 'dreapta-stânga (RTL)',
+		langCode		: 'Codul limbii',
+		longDescr		: 'Descrierea lungă URL',
+		cssClass		: 'Clasele cu stilul paginii (CSS)',
+		advisoryTitle	: 'Titlul consultativ',
+		cssStyle		: 'Stil',
+		ok				: 'Bine',
+		cancel			: 'Anulare',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'Avansat',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Inserează caracter special',
+		title		: 'Selectează caracter special'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Inserează/Editează link (legătură web)',
+		menu		: 'Editează Link',
+		title		: 'Link (Legătură web)',
+		info		: 'Informaţii despre link (Legătură web)',
+		target		: 'Ţintă (Target)',
+		upload		: 'Încarcă',
+		advanced	: 'Avansat',
+		type		: 'Tipul link-ului (al legăturii web)',
+		toAnchor	: 'Ancoră în această pagină',
+		toEmail		: 'E-Mail',
+		target		: 'Ţintă (Target)',
+		targetNotSet	: '<nesetat>',
+		targetFrame	: '<frame>',
+		targetPopup	: '<fereastra popup>',
+		targetNew	: 'Fereastră nouă (_blank)',
+		targetTop	: 'Fereastra din topul ierarhiei (_top)',
+		targetSelf	: 'Aceeaşi fereastră (_self)',
+		targetParent	: 'Fereastra părinte (_parent)',
+		targetFrameName	: 'Numele frame-ului ţintă',
+		targetPopupName	: 'Numele ferestrei popup',
+		popupFeatures	: 'Proprietăţile ferestrei popup',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Bara de status',
+		popupLocationBar	: 'Bara de locaţie',
+		popupToolbar	: 'Bara de opţiuni',
+		popupMenuBar	: 'Bara de meniu',
+		popupFullScreen	: 'Tot ecranul (Full Screen)(IE)',
+		popupScrollBars	: 'Scroll Bars',
+		popupDependent	: 'Dependent (Netscape)',
+		popupWidth		: 'Lăţime',
+		popupLeft		: 'Poziţia la stânga',
+		popupHeight		: 'Înălţime',
+		popupTop		: 'Poziţia la dreapta',
+		id				: 'Id', // MISSING
+		langDir			: 'Direcţia cuvintelor',
+		langDirNotSet	: '<nesetat>',
+		langDirLTR		: 'stânga-dreapta (LTR)',
+		langDirRTL		: 'dreapta-stânga (RTL)',
+		acccessKey		: 'Tasta de acces',
+		name			: 'Nume',
+		langCode		: 'Direcţia cuvintelor',
+		tabIndex		: 'Indexul tabului',
+		advisoryTitle	: 'Titlul consultativ',
+		advisoryContentType	: 'Tipul consultativ al titlului',
+		cssClasses		: 'Clasele cu stilul paginii (CSS)',
+		charset			: 'Setul de caractere al resursei legate',
+		styles			: 'Stil',
+		selectAnchor	: 'Selectaţi o ancoră',
+		anchorName		: 'după numele ancorei',
+		anchorId		: 'după Id-ul elementului',
+		emailAddress	: 'Adresă de e-mail',
+		emailSubject	: 'Subiectul mesajului',
+		emailBody		: 'Conţinutul mesajului',
+		noAnchors		: '(Nicio ancoră disponibilă în document)',
+		noUrl			: 'Vă rugăm să scrieţi URL-ul',
+		noEmail			: 'Vă rugăm să scrieţi adresa de e-mail'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Inserează/Editează ancoră',
+		menu		: 'Proprietăţi ancoră',
+		title		: 'Proprietăţi ancoră',
+		name		: 'Numele ancorei',
+		errorName	: 'Vă rugăm scrieţi numele ancorei'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Găseşte şi înlocuieşte',
+		find				: 'Găseşte',
+		replace				: 'Înlocuieşte',
+		findWhat			: 'Găseşte:',
+		replaceWith			: 'Înlocuieşte cu:',
+		notFoundMsg			: 'Textul specificat nu a fost găsit.',
+		matchCase			: 'Deosebeşte majuscule de minuscule (Match case)',
+		matchWord			: 'Doar cuvintele întregi',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Înlocuieşte tot',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tabel',
+		title		: 'Proprietăţile tabelului',
+		menu		: 'Proprietăţile tabelului',
+		deleteTable	: 'Şterge tabel',
+		rows		: 'Linii',
+		columns		: 'Coloane',
+		border		: 'Mărimea marginii',
+		align		: 'Aliniament',
+		alignNotSet	: '<Nesetat>',
+		alignLeft	: 'Stânga',
+		alignCenter	: 'Centru',
+		alignRight	: 'Dreapta',
+		width		: 'Lăţime',
+		widthPx		: 'pixeli',
+		widthPc		: 'procente',
+		height		: 'Înălţime',
+		cellSpace	: 'Spaţiu între celule',
+		cellPad		: 'Spaţiu în cadrul celulei',
+		caption		: 'Titlu (Caption)',
+		summary		: 'Rezumat',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Celulă',
+			insertBefore	: 'Inserează celulă înainte',
+			insertAfter		: 'Inserează celulă după',
+			deleteCell		: 'Şterge celule',
+			merge			: 'Uneşte celule',
+			mergeRight		: 'Uneşte la dreapta',
+			mergeDown		: 'Uneşte jos',
+			splitHorizontal	: 'Împarte celula pe orizontală',
+			splitVertical	: 'Împarte celula pe verticală',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Linie',
+			insertBefore	: 'Inserează linie înainte',
+			insertAfter		: 'Inserează linie după',
+			deleteRow		: 'Şterge linii'
+		},
+
+		column :
+		{
+			menu			: 'Coloană',
+			insertBefore	: 'Inserează coloană înainte',
+			insertAfter		: 'Inserează coloană după',
+			deleteColumn	: 'Şterge celule'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Proprietăţi buton',
+		text		: 'Text (Valoare)',
+		type		: 'Tip',
+		typeBtn		: 'Button',
+		typeSbm		: 'Submit',
+		typeRst		: 'Reset'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Proprietăţi bifă (Checkbox)',
+		radioTitle	: 'Proprietăţi buton radio (Radio Button)',
+		value		: 'Valoare',
+		selected	: 'Selectat'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Proprietăţi formular (Form)',
+		menu		: 'Proprietăţi formular (Form)',
+		action		: 'Acţiune',
+		method		: 'Metodă',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Ţintă (Target)',
+		targetNotSet	: '<nesetat>',
+		targetNew	: 'Fereastră nouă (_blank)',
+		targetTop	: 'Fereastra din topul ierarhiei (_top)',
+		targetSelf	: 'Aceeaşi fereastră (_self)',
+		targetParent	: 'Fereastra părinte (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Proprietăţi câmp selecţie (Selection Field)',
+		selectInfo	: 'Informaţii',
+		opAvail		: 'Opţiuni disponibile',
+		value		: 'Valoare',
+		size		: 'Mărime',
+		lines		: 'linii',
+		chkMulti	: 'Permite selecţii multiple',
+		opText		: 'Text',
+		opValue		: 'Valoare',
+		btnAdd		: 'Adaugă',
+		btnModify	: 'Modifică',
+		btnUp		: 'Sus',
+		btnDown		: 'Jos',
+		btnSetValue : 'Setează ca valoare selectată',
+		btnDelete	: 'Şterge'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Proprietăţi suprafaţă text (Textarea)',
+		cols		: 'Coloane',
+		rows		: 'Linii'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Proprietăţi câmp text (Text Field)',
+		name		: 'Nume',
+		value		: 'Valoare',
+		charWidth	: 'Lărgimea caracterului',
+		maxChars	: 'Caractere maxime',
+		type		: 'Tip',
+		typeText	: 'Text',
+		typePass	: 'Parolă'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Proprietăţi câmp ascuns (Hidden Field)',
+		name	: 'Nume',
+		value	: 'Valoare'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Proprietăţile imaginii',
+		titleButton	: 'Proprietăţi buton imagine (Image Button)',
+		menu		: 'Proprietăţile imaginii',
+		infoTab	: 'Informaţii despre imagine',
+		btnUpload	: 'Trimite la server',
+		url		: 'URL',
+		upload	: 'Încarcă',
+		alt		: 'Text alternativ',
+		width		: 'Lăţime',
+		height	: 'Înălţime',
+		lockRatio	: 'Păstrează proporţiile',
+		resetSize	: 'Resetează mărimea',
+		border	: 'Margine',
+		hSpace	: 'HSpace',
+		vSpace	: 'VSpace',
+		align		: 'Aliniere',
+		alignLeft	: 'Stânga',
+		alignAbsBottom: 'Jos absolut (Abs Bottom)',
+		alignAbsMiddle: 'Mijloc absolut (Abs Middle)',
+		alignBaseline	: 'Linia de jos (Baseline)',
+		alignBottom	: 'Jos',
+		alignMiddle	: 'Mijloc',
+		alignRight	: 'Dreapta',
+		alignTextTop	: 'Text sus',
+		alignTop	: 'Sus',
+		preview	: 'Previzualizare',
+		alertUrl	: 'Vă rugăm să scrieţi URL-ul imaginii',
+		linkTab	: 'Link (Legătură web)',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Proprietăţile flash-ului',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Proprietăţile flash-ului',
+		chkPlay		: 'Rulează automat',
+		chkLoop		: 'Repetă (Loop)',
+		chkMenu		: 'Activează meniul flash',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Scală',
+		scaleAll		: 'Arată tot',
+		scaleNoBorder	: 'Fără margini (No border)',
+		scaleFit		: 'Potriveşte',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Aliniere',
+		alignLeft	: 'Stânga',
+		alignAbsBottom: 'Jos absolut (Abs Bottom)',
+		alignAbsMiddle: 'Mijloc absolut (Abs Middle)',
+		alignBaseline	: 'Linia de jos (Baseline)',
+		alignBottom	: 'Jos',
+		alignMiddle	: 'Mijloc',
+		alignRight	: 'Dreapta',
+		alignTextTop	: 'Text sus',
+		alignTop	: 'Sus',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Coloarea fundalului',
+		width	: 'Lăţime',
+		height	: 'Înălţime',
+		hSpace	: 'HSpace',
+		vSpace	: 'VSpace',
+		validateSrc : 'Vă rugăm să scrieţi URL-ul',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Verifică text',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Nu e în dicţionar',
+		changeTo		: 'Schimbă în',
+		btnIgnore		: 'Ignoră',
+		btnIgnoreAll	: 'Ignoră toate',
+		btnReplace		: 'Înlocuieşte',
+		btnReplaceAll	: 'Înlocuieşte tot',
+		btnUndo			: 'Starea anterioară (undo)',
+		noSuggestions	: '- Fără sugestii -',
+		progress		: 'Verificarea textului în desfăşurare...',
+		noMispell		: 'Verificarea textului terminată: Nicio greşeală găsită',
+		noChanges		: 'Verificarea textului terminată: Niciun cuvânt modificat',
+		oneChange		: 'Verificarea textului terminată: Un cuvânt modificat',
+		manyChanges		: 'Verificarea textului terminată: 1% cuvinte modificate',
+		ieSpellDownload	: 'Unealta pentru verificat textul (Spell checker) neinstalată. Doriţi să o descărcaţi acum?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Figură expresivă (Emoticon)',
+		title	: 'Inserează o figură expresivă (Emoticon)'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Listă numerotată',
+	bulletedlist : 'Listă cu puncte',
+	indent : 'Creşte indentarea',
+	outdent : 'Scade indentarea',
+
+	justify :
+	{
+		left : 'Aliniere la stânga',
+		center : 'Aliniere centrală',
+		right : 'Aliniere la dreapta',
+		block : 'Aliniere în bloc (Block Justify)'
+	},
+
+	blockquote : 'Citat',
+
+	clipboard :
+	{
+		title		: 'Adaugă',
+		cutError	: 'Setările de securitate ale navigatorului (browser) pe care îl folosiţi nu permit editorului să execute automat operaţiunea de tăiere. Vă rugăm folosiţi tastatura (Ctrl+X).',
+		copyError	: 'Setările de securitate ale navigatorului (browser) pe care îl folosiţi nu permit editorului să execute automat operaţiunea de copiere. Vă rugăm folosiţi tastatura (Ctrl+C).',
+		pasteMsg	: 'Vă rugăm adăugaţi în căsuţa următoare folosind tastatura (<STRONG>Ctrl+V</STRONG>) şi apăsaţi <STRONG>OK</STRONG>.',
+		securityMsg	: 'Din cauza setărilor de securitate ale programului dvs. cu care navigaţi pe internet (browser), editorul nu poate accesa direct datele din clipboard. Va trebui să adăugaţi din nou datele în această fereastră.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Adaugă din Word',
+		title : 'Adaugă din Word',
+		advice : 'Vă rugăm adăugaţi în căsuţa următoare folosind tastatura (<STRONG>Ctrl+V</STRONG>) şi apăsaţi <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Ignoră definiţiile Font Face',
+		removeStyle : 'Şterge definiţiile stilurilor'
+	},
+
+	pasteText :
+	{
+		button : 'Adaugă ca text simplu (Plain Text)',
+		title : 'Adaugă ca text simplu (Plain Text)'
+	},
+
+	templates :
+	{
+		button : 'Template-uri (şabloane)',
+		title : 'Template-uri (şabloane) de conţinut',
+		insertOption: 'Înlocuieşte cuprinsul actual',
+		selectPromptMsg: 'Vă rugăm selectaţi template-ul (şablonul) ce se va deschide în editor<br>(conţinutul actual va fi pierdut):',
+		emptyListMsg : '(Niciun template (şablon) definit)'
+	},
+
+	showBlocks : 'Arată blocurile',
+
+	stylesCombo :
+	{
+		label : 'Stil',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Formatare',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Formatare',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normal',
+		tag_pre : 'Formatted',
+		tag_address : 'Address',
+		tag_h1 : 'Heading 1',
+		tag_h2 : 'Heading 2',
+		tag_h3 : 'Heading 3',
+		tag_h4 : 'Heading 4',
+		tag_h5 : 'Heading 5',
+		tag_h6 : 'Heading 6',
+		tag_div : 'Normal (DIV)'
+	},
+
+	font :
+	{
+		label : 'Font',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Font',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Mărime',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Mărime',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Culoarea textului',
+		bgColorTitle : 'Coloarea fundalului',
+		auto : 'Automatic',
+		more : 'Mai multe culori...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/ru.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/ru.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/ru.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Russian language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['ru'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Источник',
+	newPage			: 'Новая страница',
+	save			: 'Сохранить',
+	preview			: 'Предварительный просмотр',
+	cut				: 'Вырезать',
+	copy			: 'Копировать',
+	paste			: 'Вставить',
+	print			: 'Печать',
+	underline		: 'Подчеркнутый',
+	bold			: 'Жирный',
+	italic			: 'Курсив',
+	selectAll		: 'Выделить все',
+	removeFormat	: 'Убрать форматирование',
+	strike			: 'Зачеркнутый',
+	subscript		: 'Подстрочный индекс',
+	superscript		: 'Надстрочный индекс',
+	horizontalrule	: 'Вставить горизонтальную линию',
+	pagebreak		: 'Вставить разрыв страницы',
+	unlink			: 'Убрать ссылку',
+	undo			: 'Отменить',
+	redo			: 'Повторить',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Просмотреть на сервере',
+		url				: 'URL',
+		protocol		: 'Протокол',
+		upload			: 'Закачать',
+		uploadSubmit	: 'Послать на сервер',
+		image			: 'Изображение',
+		flash			: 'Flash',
+		form			: 'Форма',
+		checkbox		: 'Флаговая кнопка',
+		radio		: 'Кнопка выбора',
+		textField		: 'Текстовое поле',
+		textarea		: 'Текстовая область',
+		hiddenField		: 'Скрытое поле',
+		button			: 'Кнопка',
+		select	: 'Список',
+		imageButton		: 'Кнопка с изображением',
+		notSet			: '<не определено>',
+		id				: 'Идентификатор',
+		name			: 'Имя',
+		langDir			: 'Направление языка',
+		langDirLtr		: 'Слева на право (LTR)',
+		langDirRtl		: 'Справа на лево (RTL)',
+		langCode		: 'Язык',
+		longDescr		: 'Длинное описание URL',
+		cssClass		: 'Класс CSS',
+		advisoryTitle	: 'Заголовок',
+		cssStyle		: 'Стиль CSS',
+		ok				: 'ОК',
+		cancel			: 'Отмена',
+		generalTab		: 'Информация',
+		advancedTab		: 'Расширенный',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Вставить специальный символ',
+		title		: 'Выберите специальный символ'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Вставить/Редактировать ссылку',
+		menu		: 'Вставить ссылку',
+		title		: 'Ссылка',
+		info		: 'Информация ссылки',
+		target		: 'Цель',
+		upload		: 'Закачать',
+		advanced	: 'Расширенный',
+		type		: 'Тип ссылки',
+		toAnchor	: 'Якорь на эту страницу',
+		toEmail		: 'Эл. почта',
+		target		: 'Цель',
+		targetNotSet	: '<не определено>',
+		targetFrame	: '<фрейм>',
+		targetPopup	: '<всплывающее окно>',
+		targetNew	: 'Новое окно (_blank)',
+		targetTop	: 'Самое верхнее окно (_top)',
+		targetSelf	: 'Тоже окно (_self)',
+		targetParent	: 'Родительское окно (_parent)',
+		targetFrameName	: 'Имя целевого фрейма',
+		targetPopupName	: 'Имя всплывающего окна',
+		popupFeatures	: 'Свойства всплывающего окна',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Строка состояния',
+		popupLocationBar	: 'Панель локации',
+		popupToolbar	: 'Панель инструментов',
+		popupMenuBar	: 'Панель меню',
+		popupFullScreen	: 'Полный экран (IE)',
+		popupScrollBars	: 'Полосы прокрутки',
+		popupDependent	: 'Зависимый (Netscape)',
+		popupWidth		: 'Ширина',
+		popupLeft		: 'Позиция слева',
+		popupHeight		: 'Высота',
+		popupTop		: 'Позиция сверху',
+		id				: 'Id', // MISSING
+		langDir			: 'Направление языка',
+		langDirNotSet	: '<не определено>',
+		langDirLTR		: 'Слева на право (LTR)',
+		langDirRTL		: 'Справа на лево (RTL)',
+		acccessKey		: 'Горячая клавиша',
+		name			: 'Имя',
+		langCode		: 'Направление языка',
+		tabIndex		: 'Последовательность перехода',
+		advisoryTitle	: 'Заголовок',
+		advisoryContentType	: 'Тип содержимого',
+		cssClasses		: 'Класс CSS',
+		charset			: 'Кодировка',
+		styles			: 'Стиль CSS',
+		selectAnchor	: 'Выберите якорь',
+		anchorName		: 'По имени якоря',
+		anchorId		: 'По идентификатору элемента',
+		emailAddress	: 'Адрес эл. почты',
+		emailSubject	: 'Заголовок сообщения',
+		emailBody		: 'Тело сообщения',
+		noAnchors		: '(Нет якорей доступных в этом документе)',
+		noUrl			: 'Пожалуйста, введите URL ссылки',
+		noEmail			: 'Пожалуйста, введите адрес эл. почты'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Вставить/Редактировать якорь',
+		menu		: 'Свойства якоря',
+		title		: 'Свойства якоря',
+		name		: 'Имя якоря',
+		errorName	: 'Пожалуйста, введите имя якоря'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Найти и заменить',
+		find				: 'Найти',
+		replace				: 'Заменить',
+		findWhat			: 'Найти:',
+		replaceWith			: 'Заменить на:',
+		notFoundMsg			: 'Указанный текст не найден.',
+		matchCase			: 'Учитывать регистр',
+		matchWord			: 'Совпадение целых слов',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Заменить все',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Таблица',
+		title		: 'Свойства таблицы',
+		menu		: 'Свойства таблицы',
+		deleteTable	: 'Удалить таблицу',
+		rows		: 'Строки',
+		columns		: 'Колонки',
+		border		: 'Размер бордюра',
+		align		: 'Выравнивание',
+		alignNotSet	: '<Не уст.>',
+		alignLeft	: 'Слева',
+		alignCenter	: 'По центру',
+		alignRight	: 'Справа',
+		width		: 'Ширина',
+		widthPx		: 'пикселей',
+		widthPc		: 'процентов',
+		height		: 'Высота',
+		cellSpace	: 'Промежуток (spacing)',
+		cellPad		: 'Отступ (padding)',
+		caption		: 'Заголовок',
+		summary		: 'Резюме',
+		headers		: 'Заголовки',
+		headersNone		: 'Нет',
+		headersColumn	: 'Первый столбец',
+		headersRow		: 'Первая строка',
+		headersBoth		: 'Оба варианта',
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Ячейка',
+			insertBefore	: 'Вставить ячейку до',
+			insertAfter		: 'Вставить ячейку после',
+			deleteCell		: 'Удалить ячейки',
+			merge			: 'Соединить ячейки',
+			mergeRight		: 'Соединить вправо',
+			mergeDown		: 'Соединить вниз',
+			splitHorizontal	: 'Разбить ячейку горизонтально',
+			splitVertical	: 'Разбить ячейку вертикально',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Строка',
+			insertBefore	: 'Вставить строку до',
+			insertAfter		: 'Вставить строку после',
+			deleteRow		: 'Удалить строки'
+		},
+
+		column :
+		{
+			menu			: 'Колонка',
+			insertBefore	: 'Вставить колонку до',
+			insertAfter		: 'Вставить колонку после',
+			deleteColumn	: 'Удалить колонки'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Свойства кнопки',
+		text		: 'Текст (Значение)',
+		type		: 'Тип',
+		typeBtn		: 'Кнопка',
+		typeSbm		: 'Отправить',
+		typeRst		: 'Сбросить'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Свойства флаговой кнопки',
+		radioTitle	: 'Свойства кнопки выбора',
+		value		: 'Значение',
+		selected	: 'Выбранная'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Свойства формы',
+		menu		: 'Свойства формы',
+		action		: 'Действие',
+		method		: 'Метод',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Цель',
+		targetNotSet	: '<не определено>',
+		targetNew	: 'Новое окно (_blank)',
+		targetTop	: 'Самое верхнее окно (_top)',
+		targetSelf	: 'Тоже окно (_self)',
+		targetParent	: 'Родительское окно (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Свойства списка',
+		selectInfo	: 'Информация',
+		opAvail		: 'Доступные варианты',
+		value		: 'Значение',
+		size		: 'Размер',
+		lines		: 'линии',
+		chkMulti	: 'Разрешить множественный выбор',
+		opText		: 'Текст',
+		opValue		: 'Значение',
+		btnAdd		: 'Добавить',
+		btnModify	: 'Модифицировать',
+		btnUp		: 'Вверх',
+		btnDown		: 'Вниз',
+		btnSetValue : 'Установить как выбранное значение',
+		btnDelete	: 'Удалить'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Свойства текстовой области',
+		cols		: 'Колонки',
+		rows		: 'Строки'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Свойства текстового поля',
+		name		: 'Имя',
+		value		: 'Значение',
+		charWidth	: 'Ширина',
+		maxChars	: 'Макс. кол-во символов',
+		type		: 'Тип',
+		typeText	: 'Текст',
+		typePass	: 'Пароль'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Свойства скрытого поля',
+		name	: 'Имя',
+		value	: 'Значение'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Свойства изображения',
+		titleButton	: 'Свойства кнопки с изображением',
+		menu		: 'Свойства изображения',
+		infoTab	: 'Информация о изображении',
+		btnUpload	: 'Послать на сервер',
+		url		: 'URL',
+		upload	: 'Закачать',
+		alt		: 'Альтернативный текст',
+		width		: 'Ширина',
+		height	: 'Высота',
+		lockRatio	: 'Сохранять пропорции',
+		resetSize	: 'Сбросить размер',
+		border	: 'Бордюр',
+		hSpace	: 'Горизонтальный отступ',
+		vSpace	: 'Вертикальный отступ',
+		align		: 'Выравнивание',
+		alignLeft	: 'По левому краю',
+		alignAbsBottom: 'Абс понизу',
+		alignAbsMiddle: 'Абс посередине',
+		alignBaseline	: 'По базовой линии',
+		alignBottom	: 'Понизу',
+		alignMiddle	: 'Посередине',
+		alignRight	: 'По правому краю',
+		alignTextTop	: 'Текст наверху',
+		alignTop	: 'По верху',
+		preview	: 'Предварительный просмотр',
+		alertUrl	: 'Пожалуйста, введите URL изображения',
+		linkTab	: 'Ссылка',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Свойства Flash',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Свойства Flash',
+		chkPlay		: 'Авто проигрывание',
+		chkLoop		: 'Повтор',
+		chkMenu		: 'Включить меню Flash',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Масштабировать',
+		scaleAll		: 'Показывать все',
+		scaleNoBorder	: 'Без бордюра',
+		scaleFit		: 'Точное совпадение',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Выравнивание',
+		alignLeft	: 'По левому краю',
+		alignAbsBottom: 'Абс понизу',
+		alignAbsMiddle: 'Абс посередине',
+		alignBaseline	: 'По базовой линии',
+		alignBottom	: 'Понизу',
+		alignMiddle	: 'Посередине',
+		alignRight	: 'По правому краю',
+		alignTextTop	: 'Текст наверху',
+		alignTop	: 'По верху',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Цвет фона',
+		width	: 'Ширина',
+		height	: 'Высота',
+		hSpace	: 'Горизонтальный отступ',
+		vSpace	: 'Вертикальный отступ',
+		validateSrc : 'Пожалуйста, введите URL ссылки',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Проверить орфографию',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Нет в словаре',
+		changeTo		: 'Заменить на',
+		btnIgnore		: 'Игнорировать',
+		btnIgnoreAll	: 'Игнорировать все',
+		btnReplace		: 'Заменить',
+		btnReplaceAll	: 'Заменить все',
+		btnUndo			: 'Отменить',
+		noSuggestions	: '- Нет предположений -',
+		progress		: 'Идет проверка орфографии...',
+		noMispell		: 'Проверка орфографии закончена: ошибок не найдено',
+		noChanges		: 'Проверка орфографии закончена: ни одного слова не изменено',
+		oneChange		: 'Проверка орфографии закончена: одно слово изменено',
+		manyChanges		: 'Проверка орфографии закончена: 1% слов изменен',
+		ieSpellDownload	: 'Модуль проверки орфографии не установлен. Хотите скачать его сейчас?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Смайлик',
+		title	: 'Вставить смайлик'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Нумерованный список',
+	bulletedlist : 'Маркированный список',
+	indent : 'Увеличить отступ',
+	outdent : 'Уменьшить отступ',
+
+	justify :
+	{
+		left : 'По левому краю',
+		center : 'По центру',
+		right : 'По правому краю',
+		block : 'По ширине'
+	},
+
+	blockquote : 'Цитата',
+
+	clipboard :
+	{
+		title		: 'Вставить',
+		cutError	: 'Настройки безопасности вашего браузера не позволяют редактору автоматически выполнять операции вырезания. Пожалуйста, используйте клавиатуру для этого (Ctrl+X).',
+		copyError	: 'Настройки безопасности вашего браузера не позволяют редактору автоматически выполнять операции копирования. Пожалуйста, используйте клавиатуру для этого (Ctrl+C).',
+		pasteMsg	: 'Пожалуйста, вставьте текст в прямоугольник, используя сочетание клавиш (<STRONG>Ctrl+V</STRONG>), и нажмите <STRONG>OK</STRONG>.',
+		securityMsg	: 'По причине настроек безопасности браузера, редактор не имеет доступа к данным буфера обмена напрямую. Вам необходимо вставить текст снова в это окно.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Вставить из Word',
+		title : 'Вставить из Word',
+		advice : 'Пожалуйста, вставьте текст в прямоугольник, используя сочетание клавиш (<STRONG>Ctrl+V</STRONG>), и нажмите <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Игнорировать определения гарнитуры',
+		removeStyle : 'Убрать определения стилей'
+	},
+
+	pasteText :
+	{
+		button : 'Вставить только текст',
+		title : 'Вставить только текст'
+	},
+
+	templates :
+	{
+		button : 'Шаблоны',
+		title : 'Шаблоны содержимого',
+		insertOption: 'Заменить текущее содержание',
+		selectPromptMsg: 'Пожалуйста, выберете шаблон для открытия в редакторе<br>(текущее содержимое будет потеряно):',
+		emptyListMsg : '(Ни одного шаблона не определено)'
+	},
+
+	showBlocks : 'Показать блоки',
+
+	stylesCombo :
+	{
+		label : 'Стиль',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Форматирование',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Форматирование',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Нормальный',
+		tag_pre : 'Форматированный',
+		tag_address : 'Адрес',
+		tag_h1 : 'Заголовок 1',
+		tag_h2 : 'Заголовок 2',
+		tag_h3 : 'Заголовок 3',
+		tag_h4 : 'Заголовок 4',
+		tag_h5 : 'Заголовок 5',
+		tag_h6 : 'Заголовок 6',
+		tag_div : 'Нормальный (DIV)'
+	},
+
+	font :
+	{
+		label : 'Шрифт',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Шрифт',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Размер',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Размер',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Цвет текста',
+		bgColorTitle : 'Цвет фона',
+		auto : 'Автоматический',
+		more : 'Цвета...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/sk.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/sk.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/sk.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Slovak language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['sk'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Zdroj',
+	newPage			: 'Nová stránka',
+	save			: 'Uložiť',
+	preview			: 'Náhľad',
+	cut				: 'Vystrihnúť',
+	copy			: 'Kopírovať',
+	paste			: 'Vložiť',
+	print			: 'Tlač',
+	underline		: 'Podčiarknuté',
+	bold			: 'Tučné',
+	italic			: 'Kurzíva',
+	selectAll		: 'Vybrať všetko',
+	removeFormat	: 'Odstrániť formátovanie',
+	strike			: 'Prečiarknuté',
+	subscript		: 'Dolný index',
+	superscript		: 'Horný index',
+	horizontalrule	: 'Vložiť vodorovnú čiaru',
+	pagebreak		: 'Vložiť oddeľovač stránky',
+	unlink			: 'Odstrániť odkaz',
+	undo			: 'Späť',
+	redo			: 'Znovu',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Prechádzať server',
+		url				: 'URL',
+		protocol		: 'Protokol',
+		upload			: 'Odoslať',
+		uploadSubmit	: 'Odoslať na server',
+		image			: 'Obrázok',
+		flash			: 'Flash',
+		form			: 'Formulár',
+		checkbox		: 'Zaškrtávacie políčko',
+		radio		: 'Prepínač',
+		textField		: 'Textové pole',
+		textarea		: 'Textová oblasť',
+		hiddenField		: 'Skryté pole',
+		button			: 'Tlačidlo',
+		select	: 'Rozbaľovací zoznam',
+		imageButton		: 'Obrázkové tlačidlo',
+		notSet			: '<nenastavené>',
+		id				: 'Id',
+		name			: 'Meno',
+		langDir			: 'Orientácia jazyka',
+		langDirLtr		: 'Zľava doprava (LTR)',
+		langDirRtl		: 'Sprava doľava (RTL)',
+		langCode		: 'Kód jazyka',
+		longDescr		: 'Dlhý popis URL',
+		cssClass		: 'Trieda štýlu',
+		advisoryTitle	: 'Pomocný titulok',
+		cssStyle		: 'Štýl',
+		ok				: 'OK',
+		cancel			: 'Zrušiť',
+		generalTab		: 'Hlavné',
+		advancedTab		: 'Rozšírené',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Vložiť špeciálne znaky',
+		title		: 'Výber špeciálneho znaku'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Vložiť/zmeniť odkaz',
+		menu		: 'Zmeniť odkaz',
+		title		: 'Odkaz',
+		info		: 'Informácie o odkaze',
+		target		: 'Cieľ',
+		upload		: 'Odoslať',
+		advanced	: 'Rozšírené',
+		type		: 'Typ odkazu',
+		toAnchor	: 'Kotva v tejto stránke',
+		toEmail		: 'E-Mail',
+		target		: 'Cieľ',
+		targetNotSet	: '<nenastavené>',
+		targetFrame	: '<rámec>',
+		targetPopup	: '<vyskakovacie okno>',
+		targetNew	: 'Nové okno (_blank)',
+		targetTop	: 'Hlavné okno (_top)',
+		targetSelf	: 'Rovnaké okno (_self)',
+		targetParent	: 'Rodičovské okno (_parent)',
+		targetFrameName	: 'Meno rámu cieľa',
+		targetPopupName	: 'Názov vyskakovacieho okna',
+		popupFeatures	: 'Vlastnosti vyskakovacieho okna',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Stavový riadok',
+		popupLocationBar	: 'Panel umiestnenia',
+		popupToolbar	: 'Panel nástrojov',
+		popupMenuBar	: 'Panel ponuky',
+		popupFullScreen	: 'Celá obrazovka (IE)',
+		popupScrollBars	: 'Posuvníky',
+		popupDependent	: 'Závislosť (Netscape)',
+		popupWidth		: 'Šírka',
+		popupLeft		: 'Ľavý okraj',
+		popupHeight		: 'Výška',
+		popupTop		: 'Horný okraj',
+		id				: 'Id', // MISSING
+		langDir			: 'Orientácia jazyka',
+		langDirNotSet	: '<nenastavené>',
+		langDirLTR		: 'Zľava doprava (LTR)',
+		langDirRTL		: 'Sprava doľava (RTL)',
+		acccessKey		: 'Prístupový kľúč',
+		name			: 'Meno',
+		langCode		: 'Orientácia jazyka',
+		tabIndex		: 'Poradie prvku',
+		advisoryTitle	: 'Pomocný titulok',
+		advisoryContentType	: 'Pomocný typ obsahu',
+		cssClasses		: 'Trieda štýlu',
+		charset			: 'Priradená znaková sada',
+		styles			: 'Štýl',
+		selectAnchor	: 'Vybrať kotvu',
+		anchorName		: 'Podľa mena kotvy',
+		anchorId		: 'Podľa Id objektu',
+		emailAddress	: 'E-Mailová adresa',
+		emailSubject	: 'Predmet správy',
+		emailBody		: 'Telo správy',
+		noAnchors		: '(V stránke nie je definovaná žiadna kotva)',
+		noUrl			: 'Zadajte prosím URL odkazu',
+		noEmail			: 'Zadajte prosím e-mailovú adresu'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Vložiť/zmeniť kotvu',
+		menu		: 'Vlastnosti kotvy',
+		title		: 'Vlastnosti kotvy',
+		name		: 'Meno kotvy',
+		errorName	: 'Zadajte prosím meno kotvy'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Nájsť a nahradiť',
+		find				: 'Hľadať',
+		replace				: 'Nahradiť',
+		findWhat			: 'Čo hľadať:',
+		replaceWith			: 'Čím nahradiť:',
+		notFoundMsg			: 'Hľadaný text nebol nájdený.',
+		matchCase			: 'Rozlišovať malé/veľké písmená',
+		matchWord			: 'Len celé slová',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Nahradiť všetko',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tabuľka',
+		title		: 'Vlastnosti tabuľky',
+		menu		: 'Vlastnosti tabuľky',
+		deleteTable	: 'Vymazať tabuľku',
+		rows		: 'Riadky',
+		columns		: 'Stĺpce',
+		border		: 'Ohraničenie',
+		align		: 'Zarovnanie',
+		alignNotSet	: '<nenastavené>',
+		alignLeft	: 'Vľavo',
+		alignCenter	: 'Na stred',
+		alignRight	: 'Vpravo',
+		width		: 'Šírka',
+		widthPx		: 'pixelov',
+		widthPc		: 'percent',
+		height		: 'Výška',
+		cellSpace	: 'Vzdialenosť buniek',
+		cellPad		: 'Odsadenie obsahu',
+		caption		: 'Popis',
+		summary		: 'Prehľad',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Bunka',
+			insertBefore	: 'Vložiť bunku pred',
+			insertAfter		: 'Vložiť bunku za',
+			deleteCell		: 'Vymazať bunky',
+			merge			: 'Zlúčiť bunky',
+			mergeRight		: 'Zlúčiť doprava',
+			mergeDown		: 'Zlúčiť dole',
+			splitHorizontal	: 'Rozdeliť bunky horizontálne',
+			splitVertical	: 'Rozdeliť bunky vertikálne',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Riadok',
+			insertBefore	: 'Vložiť riadok za',
+			insertAfter		: 'Vložiť riadok pred',
+			deleteRow		: 'Vymazať riadok'
+		},
+
+		column :
+		{
+			menu			: 'Stĺpec',
+			insertBefore	: 'Vložiť stĺpec za',
+			insertAfter		: 'Vložiť stĺpec pred',
+			deleteColumn	: 'Zmazať stĺpec'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Vlastnosti tlačidla',
+		text		: 'Text',
+		type		: 'Typ',
+		typeBtn		: 'Tlačidlo',
+		typeSbm		: 'Odoslať',
+		typeRst		: 'Vymazať'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Vlastnosti zaškrtávacieho políčka',
+		radioTitle	: 'Vlastnosti prepínača',
+		value		: 'Hodnota',
+		selected	: 'Vybrané'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Vlastnosti formulára',
+		menu		: 'Vlastnosti formulára',
+		action		: 'Akcie',
+		method		: 'Metóda',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Cieľ',
+		targetNotSet	: '<nenastavené>',
+		targetNew	: 'Nové okno (_blank)',
+		targetTop	: 'Hlavné okno (_top)',
+		targetSelf	: 'Rovnaké okno (_self)',
+		targetParent	: 'Rodičovské okno (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Vlastnosti rozbaľovacieho zoznamu',
+		selectInfo	: 'Info',
+		opAvail		: 'Dostupné možnosti',
+		value		: 'Hodnota',
+		size		: 'Veľkosť',
+		lines		: 'riadkov',
+		chkMulti	: 'Povoliť viacnásobný výber',
+		opText		: 'Text',
+		opValue		: 'Hodnota',
+		btnAdd		: 'Pridať',
+		btnModify	: 'Zmeniť',
+		btnUp		: 'Hore',
+		btnDown		: 'Dole',
+		btnSetValue : 'Nastaviť ako vybranú hodnotu',
+		btnDelete	: 'Zmazať'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Vlastnosti textovej oblasti',
+		cols		: 'Stĺpce',
+		rows		: 'Riadky'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Vlastnosti textového poľa',
+		name		: 'Názov',
+		value		: 'Hodnota',
+		charWidth	: 'Šírka pola (znakov)',
+		maxChars	: 'Maximálny počet znakov',
+		type		: 'Typ',
+		typeText	: 'Text',
+		typePass	: 'Heslo'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Vlastnosti skrytého poľa',
+		name	: 'Názov',
+		value	: 'Hodnota'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Vlastnosti obrázku',
+		titleButton	: 'Vlastnosti obrázkového tlačidla',
+		menu		: 'Vlastnosti obrázku',
+		infoTab	: 'Informácie o obrázku',
+		btnUpload	: 'Odoslať na server',
+		url		: 'URL',
+		upload	: 'Odoslať',
+		alt		: 'Alternatívny text',
+		width		: 'Šírka',
+		height	: 'Výška',
+		lockRatio	: 'Zámok',
+		resetSize	: 'Pôvodná veľkosť',
+		border	: 'Okraje',
+		hSpace	: 'H-medzera',
+		vSpace	: 'V-medzera',
+		align		: 'Zarovnanie',
+		alignLeft	: 'Vľavo',
+		alignAbsBottom: 'Úplne dole',
+		alignAbsMiddle: 'Do stredu',
+		alignBaseline	: 'Na základňu',
+		alignBottom	: 'Dole',
+		alignMiddle	: 'Na stred',
+		alignRight	: 'Vpravo',
+		alignTextTop	: 'Na horný okraj textu',
+		alignTop	: 'Nahor',
+		preview	: 'Náhľad',
+		alertUrl	: 'Zadajte prosím URL obrázku',
+		linkTab	: 'Odkaz',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Vlastnosti Flashu',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Vlastnosti Flashu',
+		chkPlay		: 'Automatické prehrávanie',
+		chkLoop		: 'Opakovanie',
+		chkMenu		: 'Povoliť Flash Menu',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Mierka',
+		scaleAll		: 'Zobraziť mierku',
+		scaleNoBorder	: 'Bez okrajov',
+		scaleFit		: 'Roztiahnuť na celé',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Zarovnanie',
+		alignLeft	: 'Vľavo',
+		alignAbsBottom: 'Úplne dole',
+		alignAbsMiddle: 'Do stredu',
+		alignBaseline	: 'Na základňu',
+		alignBottom	: 'Dole',
+		alignMiddle	: 'Na stred',
+		alignRight	: 'Vpravo',
+		alignTextTop	: 'Na horný okraj textu',
+		alignTop	: 'Nahor',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Farba pozadia',
+		width	: 'Šírka',
+		height	: 'Výška',
+		hSpace	: 'H-medzera',
+		vSpace	: 'V-medzera',
+		validateSrc : 'Zadajte prosím URL odkazu',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Kontrola pravopisu',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Nie je v slovníku',
+		changeTo		: 'Zmeniť na',
+		btnIgnore		: 'Ignorovať',
+		btnIgnoreAll	: 'Ignorovať všetko',
+		btnReplace		: 'Prepísat',
+		btnReplaceAll	: 'Prepísat všetko',
+		btnUndo			: 'Späť',
+		noSuggestions	: '- Žiadny návrh -',
+		progress		: 'Prebieha kontrola pravopisu...',
+		noMispell		: 'Kontrola pravopisu dokončená: bez chýb',
+		noChanges		: 'Kontrola pravopisu dokončená: žiadne slová nezmenené',
+		oneChange		: 'Kontrola pravopisu dokončená: zmenené jedno slovo',
+		manyChanges		: 'Kontrola pravopisu dokončená: zmenených %1 slov',
+		ieSpellDownload	: 'Kontrola pravopisu nie je naištalovaná. Chcete ju hneď stiahnuť?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Smajlíky',
+		title	: 'Vkladanie smajlíkov'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Číslovanie',
+	bulletedlist : 'Odrážky',
+	indent : 'Zväčšiť odsadenie',
+	outdent : 'Zmenšiť odsadenie',
+
+	justify :
+	{
+		left : 'Zarovnať vľavo',
+		center : 'Zarovnať na stred',
+		right : 'Zarovnať vpravo',
+		block : 'Zarovnať do bloku'
+	},
+
+	blockquote : 'Citácia',
+
+	clipboard :
+	{
+		title		: 'Vložiť',
+		cutError	: 'Bezpečnostné nastavenia Vášho prehliadača nedovoľujú editoru spustiť funkciu pre vystrihnutie zvoleného textu do schránky. Prosím vystrihnite zvolený text do schránky pomocou klávesnice (Ctrl+X).',
+		copyError	: 'Bezpečnostné nastavenia Vášho prehliadača nedovoľujú editoru spustiť funkciu pre kopírovanie zvoleného textu do schránky. Prosím skopírujte zvolený text do schránky pomocou klávesnice (Ctrl+C).',
+		pasteMsg	: 'Prosím vložte nasledovný rámček použitím klávesnice (<STRONG>Ctrl+V</STRONG>) a stlačte <STRONG>OK</STRONG>.',
+		securityMsg	: 'Bezpečnostné nastavenia Vášho prehliadača nedovoľujú editoru pristupovať priamo k datám v schránke. Musíte ich vložiť znovu do tohto okna.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Vložiť z Wordu',
+		title : 'Vložiť z Wordu',
+		advice : 'Prosím vložte nasledovný rámček použitím klávesnice (<STRONG>Ctrl+V</STRONG>) a stlačte <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Ignorovať nastavenia typu písma',
+		removeStyle : 'Odstrániť formátovanie'
+	},
+
+	pasteText :
+	{
+		button : 'Vložiť ako čistý text',
+		title : 'Vložiť ako čistý text'
+	},
+
+	templates :
+	{
+		button : 'Šablóny',
+		title : 'Šablóny obsahu',
+		insertOption: 'Nahradiť aktuálny obsah',
+		selectPromptMsg: 'Prosím vyberte šablóny na otvorenie v editore<br>(súšasný obsah bude stratený):',
+		emptyListMsg : '(žiadne šablóny nenájdené)'
+	},
+
+	showBlocks : 'Ukázať bloky',
+
+	stylesCombo :
+	{
+		label : 'Štýl',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Formát',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Formát',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normálny',
+		tag_pre : 'Formátovaný',
+		tag_address : 'Adresa',
+		tag_h1 : 'Nadpis 1',
+		tag_h2 : 'Nadpis 2',
+		tag_h3 : 'Nadpis 3',
+		tag_h4 : 'Nadpis 4',
+		tag_h5 : 'Nadpis 5',
+		tag_h6 : 'Nadpis 6',
+		tag_div : 'Odsek (DIV)'
+	},
+
+	font :
+	{
+		label : 'Písmo',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Písmo',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Veľkosť',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Veľkosť',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Farba textu',
+		bgColorTitle : 'Farba pozadia',
+		auto : 'Automaticky',
+		more : 'Viac farieb...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/sl.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/sl.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/sl.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Slovenian language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['sl'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Izvorna koda',
+	newPage			: 'Nova stran',
+	save			: 'Shrani',
+	preview			: 'Predogled',
+	cut				: 'Izreži',
+	copy			: 'Kopiraj',
+	paste			: 'Prilepi',
+	print			: 'Natisni',
+	underline		: 'Podčrtano',
+	bold			: 'Krepko',
+	italic			: 'Ležeče',
+	selectAll		: 'Izberi vse',
+	removeFormat	: 'Odstrani oblikovanje',
+	strike			: 'Prečrtano',
+	subscript		: 'Podpisano',
+	superscript		: 'Nadpisano',
+	horizontalrule	: 'Vstavi vodoravno črto',
+	pagebreak		: 'Vstavi prelom strani',
+	unlink			: 'Odstrani povezavo',
+	undo			: 'Razveljavi',
+	redo			: 'Ponovi',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Prebrskaj na strežniku',
+		url				: 'URL',
+		protocol		: 'Protokol',
+		upload			: 'Prenesi',
+		uploadSubmit	: 'Pošlji na strežnik',
+		image			: 'Slika',
+		flash			: 'Flash',
+		form			: 'Obrazec',
+		checkbox		: 'Potrditveno polje',
+		radio		: 'Izbirno polje',
+		textField		: 'Vnosno polje',
+		textarea		: 'Vnosno območje',
+		hiddenField		: 'Skrito polje',
+		button			: 'Gumb',
+		select	: 'Spustni seznam',
+		imageButton		: 'Gumb s sliko',
+		notSet			: '<ni postavljen>',
+		id				: 'Id',
+		name			: 'Ime',
+		langDir			: 'Smer jezika',
+		langDirLtr		: 'Od leve proti desni (LTR)',
+		langDirRtl		: 'Od desne proti levi (RTL)',
+		langCode		: 'Oznaka jezika',
+		longDescr		: 'Dolg opis URL-ja',
+		cssClass		: 'Razred stilne predloge',
+		advisoryTitle	: 'Predlagani naslov',
+		cssStyle		: 'Slog',
+		ok				: 'V redu',
+		cancel			: 'Prekliči',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'Napredno',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Vstavi posebni znak',
+		title		: 'Izberi posebni znak'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Vstavi/uredi povezavo',
+		menu		: 'Uredi povezavo',
+		title		: 'Povezava',
+		info		: 'Podatki o povezavi',
+		target		: 'Cilj',
+		upload		: 'Prenesi',
+		advanced	: 'Napredno',
+		type		: 'Vrsta povezave',
+		toAnchor	: 'Zaznamek na tej strani',
+		toEmail		: 'Elektronski naslov',
+		target		: 'Cilj',
+		targetNotSet	: '<ni postavljen>',
+		targetFrame	: '<okvir>',
+		targetPopup	: '<pojavno okno>',
+		targetNew	: 'Novo okno (_blank)',
+		targetTop	: 'Najvišje okno (_top)',
+		targetSelf	: 'Isto okno (_self)',
+		targetParent	: 'Starševsko okno (_parent)',
+		targetFrameName	: 'Ime ciljnega okvirja',
+		targetPopupName	: 'Ime pojavnega okna',
+		popupFeatures	: 'Značilnosti pojavnega okna',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Vrstica stanja',
+		popupLocationBar	: 'Naslovna vrstica',
+		popupToolbar	: 'Orodna vrstica',
+		popupMenuBar	: 'Menijska vrstica',
+		popupFullScreen	: 'Celozaslonska slika (IE)',
+		popupScrollBars	: 'Drsniki',
+		popupDependent	: 'Podokno (Netscape)',
+		popupWidth		: 'Širina',
+		popupLeft		: 'Lega levo',
+		popupHeight		: 'Višina',
+		popupTop		: 'Lega na vrhu',
+		id				: 'Id', // MISSING
+		langDir			: 'Smer jezika',
+		langDirNotSet	: '<ni postavljen>',
+		langDirLTR		: 'Od leve proti desni (LTR)',
+		langDirRTL		: 'Od desne proti levi (RTL)',
+		acccessKey		: 'Vstopno geslo',
+		name			: 'Ime',
+		langCode		: 'Smer jezika',
+		tabIndex		: 'Številka tabulatorja',
+		advisoryTitle	: 'Predlagani naslov',
+		advisoryContentType	: 'Predlagani tip vsebine (content-type)',
+		cssClasses		: 'Razred stilne predloge',
+		charset			: 'Kodna tabela povezanega vira',
+		styles			: 'Slog',
+		selectAnchor	: 'Izberi zaznamek',
+		anchorName		: 'Po imenu zaznamka',
+		anchorId		: 'Po ID-ju elementa',
+		emailAddress	: 'Elektronski naslov',
+		emailSubject	: 'Predmet sporočila',
+		emailBody		: 'Vsebina sporočila',
+		noAnchors		: '(V tem dokumentu ni zaznamkov)',
+		noUrl			: 'Vnesite URL povezave',
+		noEmail			: 'Vnesite elektronski naslov'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Vstavi/uredi zaznamek',
+		menu		: 'Lastnosti zaznamka',
+		title		: 'Lastnosti zaznamka',
+		name		: 'Ime zaznamka',
+		errorName	: 'Prosim vnesite ime zaznamka'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Najdi in zamenjaj',
+		find				: 'Najdi',
+		replace				: 'Zamenjaj',
+		findWhat			: 'Najdi:',
+		replaceWith			: 'Zamenjaj z:',
+		notFoundMsg			: 'Navedeno besedilo ni bilo najdeno.',
+		matchCase			: 'Razlikuj velike in male črke',
+		matchWord			: 'Samo cele besede',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Zamenjaj vse',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tabela',
+		title		: 'Lastnosti tabele',
+		menu		: 'Lastnosti tabele',
+		deleteTable	: 'Izbriši tabelo',
+		rows		: 'Vrstice',
+		columns		: 'Stolpci',
+		border		: 'Velikost obrobe',
+		align		: 'Poravnava',
+		alignNotSet	: '<Ni nastavljeno>',
+		alignLeft	: 'Levo',
+		alignCenter	: 'Sredinsko',
+		alignRight	: 'Desno',
+		width		: 'Širina',
+		widthPx		: 'pik',
+		widthPc		: 'procentov',
+		height		: 'Višina',
+		cellSpace	: 'Razmik med celicami',
+		cellPad		: 'Polnilo med celicami',
+		caption		: 'Naslov',
+		summary		: 'Povzetek',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Celica',
+			insertBefore	: 'Vstavi celico pred',
+			insertAfter		: 'Vstavi celico za',
+			deleteCell		: 'Izbriši celice',
+			merge			: 'Združi celice',
+			mergeRight		: 'Združi desno',
+			mergeDown		: 'Druži navzdol',
+			splitHorizontal	: 'Razdeli celico vodoravno',
+			splitVertical	: 'Razdeli celico navpično',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Vrstica',
+			insertBefore	: 'Vstavi vrstico pred',
+			insertAfter		: 'Vstavi vrstico za',
+			deleteRow		: 'Izbriši vrstice'
+		},
+
+		column :
+		{
+			menu			: 'Stolpec',
+			insertBefore	: 'Vstavi stolpec pred',
+			insertAfter		: 'Vstavi stolpec za',
+			deleteColumn	: 'Izbriši stolpce'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Lastnosti gumba',
+		text		: 'Besedilo (Vrednost)',
+		type		: 'Tip',
+		typeBtn		: 'Gumb',
+		typeSbm		: 'Potrdi',
+		typeRst		: 'Ponastavi'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Lastnosti potrditvenega polja',
+		radioTitle	: 'Lastnosti izbirnega polja',
+		value		: 'Vrednost',
+		selected	: 'Izbrano'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Lastnosti obrazca',
+		menu		: 'Lastnosti obrazca',
+		action		: 'Akcija',
+		method		: 'Metoda',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Cilj',
+		targetNotSet	: '<ni postavljen>',
+		targetNew	: 'Novo okno (_blank)',
+		targetTop	: 'Najvišje okno (_top)',
+		targetSelf	: 'Isto okno (_self)',
+		targetParent	: 'Starševsko okno (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Lastnosti spustnega seznama',
+		selectInfo	: 'Podatki',
+		opAvail		: 'Razpoložljive izbire',
+		value		: 'Vrednost',
+		size		: 'Velikost',
+		lines		: 'vrstic',
+		chkMulti	: 'Dovoli izbor večih vrstic',
+		opText		: 'Besedilo',
+		opValue		: 'Vrednost',
+		btnAdd		: 'Dodaj',
+		btnModify	: 'Spremeni',
+		btnUp		: 'Gor',
+		btnDown		: 'Dol',
+		btnSetValue : 'Postavi kot privzeto izbiro',
+		btnDelete	: 'Izbriši'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Lastnosti vnosnega območja',
+		cols		: 'Stolpcev',
+		rows		: 'Vrstic'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Lastnosti vnosnega polja',
+		name		: 'Ime',
+		value		: 'Vrednost',
+		charWidth	: 'Dolžina',
+		maxChars	: 'Največje število znakov',
+		type		: 'Tip',
+		typeText	: 'Besedilo',
+		typePass	: 'Geslo'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Lastnosti skritega polja',
+		name	: 'Ime',
+		value	: 'Vrednost'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Lastnosti slike',
+		titleButton	: 'Lastnosti gumba s sliko',
+		menu		: 'Lastnosti slike',
+		infoTab	: 'Podatki o sliki',
+		btnUpload	: 'Pošlji na strežnik',
+		url		: 'URL',
+		upload	: 'Pošlji',
+		alt		: 'Nadomestno besedilo',
+		width		: 'Širina',
+		height	: 'Višina',
+		lockRatio	: 'Zakleni razmerje',
+		resetSize	: 'Ponastavi velikost',
+		border	: 'Obroba',
+		hSpace	: 'Vodoravni razmik',
+		vSpace	: 'Navpični razmik',
+		align		: 'Poravnava',
+		alignLeft	: 'Levo',
+		alignAbsBottom: 'Popolnoma na dno',
+		alignAbsMiddle: 'Popolnoma v sredino',
+		alignBaseline	: 'Na osnovno črto',
+		alignBottom	: 'Na dno',
+		alignMiddle	: 'V sredino',
+		alignRight	: 'Desno',
+		alignTextTop	: 'Besedilo na vrh',
+		alignTop	: 'Na vrh',
+		preview	: 'Predogled',
+		alertUrl	: 'Vnesite URL slike',
+		linkTab	: 'Povezava',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Lastnosti Flash',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Lastnosti Flash',
+		chkPlay		: 'Samodejno predvajaj',
+		chkLoop		: 'Ponavljanje',
+		chkMenu		: 'Omogoči Flash Meni',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Povečava',
+		scaleAll		: 'Pokaži vse',
+		scaleNoBorder	: 'Brez obrobe',
+		scaleFit		: 'Natančno prileganje',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Poravnava',
+		alignLeft	: 'Levo',
+		alignAbsBottom: 'Popolnoma na dno',
+		alignAbsMiddle: 'Popolnoma v sredino',
+		alignBaseline	: 'Na osnovno črto',
+		alignBottom	: 'Na dno',
+		alignMiddle	: 'V sredino',
+		alignRight	: 'Desno',
+		alignTextTop	: 'Besedilo na vrh',
+		alignTop	: 'Na vrh',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Barva ozadja',
+		width	: 'Širina',
+		height	: 'Višina',
+		hSpace	: 'Vodoravni razmik',
+		vSpace	: 'Navpični razmik',
+		validateSrc : 'Vnesite URL povezave',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Preveri črkovanje',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Ni v slovarju',
+		changeTo		: 'Spremeni v',
+		btnIgnore		: 'Prezri',
+		btnIgnoreAll	: 'Prezri vse',
+		btnReplace		: 'Zamenjaj',
+		btnReplaceAll	: 'Zamenjaj vse',
+		btnUndo			: 'Razveljavi',
+		noSuggestions	: '- Ni predlogov -',
+		progress		: 'Preverjanje črkovanja se izvaja...',
+		noMispell		: 'Črkovanje je končano: Brez napak',
+		noChanges		: 'Črkovanje je končano: Nobena beseda ni bila spremenjena',
+		oneChange		: 'Črkovanje je končano: Spremenjena je bila ena beseda',
+		manyChanges		: 'Črkovanje je končano: Spremenjenih je bilo %1 besed',
+		ieSpellDownload	: 'Črkovalnik ni nameščen. Ali ga želite prenesti sedaj?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Smeško',
+		title	: 'Vstavi smeška'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Oštevilčen seznam',
+	bulletedlist : 'Označen seznam',
+	indent : 'Povečaj zamik',
+	outdent : 'Zmanjšaj zamik',
+
+	justify :
+	{
+		left : 'Leva poravnava',
+		center : 'Sredinska poravnava',
+		right : 'Desna poravnava',
+		block : 'Obojestranska poravnava'
+	},
+
+	blockquote : 'Citat',
+
+	clipboard :
+	{
+		title		: 'Prilepi',
+		cutError	: 'Varnostne nastavitve brskalnika ne dopuščajo samodejnega izrezovanja. Uporabite kombinacijo tipk na tipkovnici (Ctrl+X).',
+		copyError	: 'Varnostne nastavitve brskalnika ne dopuščajo samodejnega kopiranja. Uporabite kombinacijo tipk na tipkovnici (Ctrl+C).',
+		pasteMsg	: 'Prosim prilepite v sleči okvir s pomočjo tipkovnice (<STRONG>Ctrl+V</STRONG>) in pritisnite <STRONG>V redu</STRONG>.',
+		securityMsg	: 'Zaradi varnostnih nastavitev vašega brskalnika urejevalnik ne more neposredno dostopati do odložišča. Vsebino odložišča ponovno prilepite v to okno.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Prilepi iz Worda',
+		title : 'Prilepi iz Worda',
+		advice : 'Prosim prilepite v sleči okvir s pomočjo tipkovnice (<STRONG>Ctrl+V</STRONG>) in pritisnite <STRONG>V redu</STRONG>.',
+		ignoreFontFace : 'Prezri obliko pisave',
+		removeStyle : 'Odstrani nastavitve stila'
+	},
+
+	pasteText :
+	{
+		button : 'Prilepi kot golo besedilo',
+		title : 'Prilepi kot golo besedilo'
+	},
+
+	templates :
+	{
+		button : 'Predloge',
+		title : 'Vsebinske predloge',
+		insertOption: 'Zamenjaj trenutno vsebino',
+		selectPromptMsg: 'Izberite predlogo, ki jo želite odpreti v urejevalniku<br>(trenutna vsebina bo izgubljena):',
+		emptyListMsg : '(Ni pripravljenih predlog)'
+	},
+
+	showBlocks : 'Prikaži ograde',
+
+	stylesCombo :
+	{
+		label : 'Slog',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Oblika',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Oblika',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Navaden',
+		tag_pre : 'Oblikovan',
+		tag_address : 'Napis',
+		tag_h1 : 'Naslov 1',
+		tag_h2 : 'Naslov 2',
+		tag_h3 : 'Naslov 3',
+		tag_h4 : 'Naslov 4',
+		tag_h5 : 'Naslov 5',
+		tag_h6 : 'Naslov 6',
+		tag_div : 'Normal (DIV)' // MISSING
+	},
+
+	font :
+	{
+		label : 'Pisava',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Pisava',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Velikost',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Velikost',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Barva besedila',
+		bgColorTitle : 'Barva ozadja',
+		auto : 'Samodejno',
+		more : 'Več barv...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/sr-latn.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/sr-latn.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/sr-latn.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Serbian (Latin) language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['sr-latn'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Kôd',
+	newPage			: 'Nova stranica',
+	save			: 'Sačuvaj',
+	preview			: 'Izgled stranice',
+	cut				: 'Iseci',
+	copy			: 'Kopiraj',
+	paste			: 'Zalepi',
+	print			: 'Štampa',
+	underline		: 'Podvučeno',
+	bold			: 'Podebljano',
+	italic			: 'Kurziv',
+	selectAll		: 'Označi sve',
+	removeFormat	: 'Ukloni formatiranje',
+	strike			: 'Precrtano',
+	subscript		: 'Indeks',
+	superscript		: 'Stepen',
+	horizontalrule	: 'Unesi horizontalnu liniju',
+	pagebreak		: 'Insert Page Break for Printing', // MISSING
+	unlink			: 'Ukloni link',
+	undo			: 'Poni�ti akciju',
+	redo			: 'Ponovi akciju',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Pretraži server',
+		url				: 'URL',
+		protocol		: 'Protokol',
+		upload			: 'Pošalji',
+		uploadSubmit	: 'Pošalji na server',
+		image			: 'Slika',
+		flash			: 'Fleš',
+		form			: 'Forma',
+		checkbox		: 'Polje za potvrdu',
+		radio		: 'Radio-dugme',
+		textField		: 'Tekstualno polje',
+		textarea		: 'Zona teksta',
+		hiddenField		: 'Skriveno polje',
+		button			: 'Dugme',
+		select	: 'Izborno polje',
+		imageButton		: 'Dugme sa slikom',
+		notSet			: '<nije postavljeno>',
+		id				: 'Id',
+		name			: 'Naziv',
+		langDir			: 'Smer jezika',
+		langDirLtr		: 'S leva na desno (LTR)',
+		langDirRtl		: 'S desna na levo (RTL)',
+		langCode		: 'Kôd jezika',
+		longDescr		: 'Pun opis URL',
+		cssClass		: 'Stylesheet klase',
+		advisoryTitle	: 'Advisory naslov',
+		cssStyle		: 'Stil',
+		ok				: 'OK',
+		cancel			: 'Otkaži',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'Napredni tagovi',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Unesi specijalni karakter',
+		title		: 'Odaberite specijalni karakter'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Unesi/izmeni link',
+		menu		: 'Izmeni link',
+		title		: 'Link',
+		info		: 'Link Info',
+		target		: 'Meta',
+		upload		: 'Pošalji',
+		advanced	: 'Napredni tagovi',
+		type		: 'Vrsta linka',
+		toAnchor	: 'Sidro na ovoj stranici',
+		toEmail		: 'E-Mail',
+		target		: 'Meta',
+		targetNotSet	: '<nije postavljeno>',
+		targetFrame	: '<okvir>',
+		targetPopup	: '<popup prozor>',
+		targetNew	: 'Novi prozor (_blank)',
+		targetTop	: 'Prozor na vrhu (_top)',
+		targetSelf	: 'Isti prozor (_self)',
+		targetParent	: 'Roditeljski prozor (_parent)',
+		targetFrameName	: 'Naziv odredišnog frejma',
+		targetPopupName	: 'Naziv popup prozora',
+		popupFeatures	: 'Mogućnosti popup prozora',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Statusna linija',
+		popupLocationBar	: 'Lokacija',
+		popupToolbar	: 'Toolbar',
+		popupMenuBar	: 'Kontekstni meni',
+		popupFullScreen	: 'Prikaz preko celog ekrana (IE)',
+		popupScrollBars	: 'Scroll bar',
+		popupDependent	: 'Zavisno (Netscape)',
+		popupWidth		: 'Širina',
+		popupLeft		: 'Od leve ivice ekrana (px)',
+		popupHeight		: 'Visina',
+		popupTop		: 'Od vrha ekrana (px)',
+		id				: 'Id', // MISSING
+		langDir			: 'Smer jezika',
+		langDirNotSet	: '<nije postavljeno>',
+		langDirLTR		: 'S leva na desno (LTR)',
+		langDirRTL		: 'S desna na levo (RTL)',
+		acccessKey		: 'Pristupni taster',
+		name			: 'Naziv',
+		langCode		: 'Smer jezika',
+		tabIndex		: 'Tab indeks',
+		advisoryTitle	: 'Advisory naslov',
+		advisoryContentType	: 'Advisory vrsta sadržaja',
+		cssClasses		: 'Stylesheet klase',
+		charset			: 'Linked Resource Charset',
+		styles			: 'Stil',
+		selectAnchor	: 'Odaberi sidro',
+		anchorName		: 'Po nazivu sidra',
+		anchorId		: 'Po Id-ju elementa',
+		emailAddress	: 'E-Mail adresa',
+		emailSubject	: 'Naslov',
+		emailBody		: 'Sadržaj poruke',
+		noAnchors		: '(Nema dostupnih sidra)',
+		noUrl			: 'Unesite URL linka',
+		noEmail			: 'Otkucajte adresu elektronske pote'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Unesi/izmeni sidro',
+		menu		: 'Osobine sidra',
+		title		: 'Osobine sidra',
+		name		: 'Ime sidra',
+		errorName	: 'Unesite ime sidra'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Find and Replace', // MISSING
+		find				: 'Pretraga',
+		replace				: 'Zamena',
+		findWhat			: 'Pronadi:',
+		replaceWith			: 'Zameni sa:',
+		notFoundMsg			: 'Traženi tekst nije pronađen.',
+		matchCase			: 'Razlikuj mala i velika slova',
+		matchWord			: 'Uporedi cele reci',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Zameni sve',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tabela',
+		title		: 'Osobine tabele',
+		menu		: 'Osobine tabele',
+		deleteTable	: 'Delete Table', // MISSING
+		rows		: 'Redova',
+		columns		: 'Kolona',
+		border		: 'Veličina okvira',
+		align		: 'Ravnanje',
+		alignNotSet	: '<nije postavljeno>',
+		alignLeft	: 'Levo',
+		alignCenter	: 'Sredina',
+		alignRight	: 'Desno',
+		width		: 'Širina',
+		widthPx		: 'piksela',
+		widthPc		: 'procenata',
+		height		: 'Visina',
+		cellSpace	: 'Ćelijski prostor',
+		cellPad		: 'Razmak ćelija',
+		caption		: 'Naslov tabele',
+		summary		: 'Summary', // MISSING
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Cell', // MISSING
+			insertBefore	: 'Insert Cell Before', // MISSING
+			insertAfter		: 'Insert Cell After', // MISSING
+			deleteCell		: 'Obriši ćelije',
+			merge			: 'Spoj celije',
+			mergeRight		: 'Merge Right', // MISSING
+			mergeDown		: 'Merge Down', // MISSING
+			splitHorizontal	: 'Split Cell Horizontally', // MISSING
+			splitVertical	: 'Split Cell Vertically', // MISSING
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Row', // MISSING
+			insertBefore	: 'Insert Row Before', // MISSING
+			insertAfter		: 'Insert Row After', // MISSING
+			deleteRow		: 'Obriši redove'
+		},
+
+		column :
+		{
+			menu			: 'Column', // MISSING
+			insertBefore	: 'Insert Column Before', // MISSING
+			insertAfter		: 'Insert Column After', // MISSING
+			deleteColumn	: 'Obriši kolone'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Osobine dugmeta',
+		text		: 'Tekst (vrednost)',
+		type		: 'Tip',
+		typeBtn		: 'Button', // MISSING
+		typeSbm		: 'Submit', // MISSING
+		typeRst		: 'Reset' // MISSING
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Osobine polja za potvrdu',
+		radioTitle	: 'Osobine radio-dugmeta',
+		value		: 'Vrednost',
+		selected	: 'Označeno'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Osobine forme',
+		menu		: 'Osobine forme',
+		action		: 'Akcija',
+		method		: 'Metoda',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Meta',
+		targetNotSet	: '<nije postavljeno>',
+		targetNew	: 'Novi prozor (_blank)',
+		targetTop	: 'Prozor na vrhu (_top)',
+		targetSelf	: 'Isti prozor (_self)',
+		targetParent	: 'Roditeljski prozor (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Osobine izbornog polja',
+		selectInfo	: 'Info',
+		opAvail		: 'Dostupne opcije',
+		value		: 'Vrednost',
+		size		: 'Veličina',
+		lines		: 'linija',
+		chkMulti	: 'Dozvoli višestruku selekciju',
+		opText		: 'Tekst',
+		opValue		: 'Vrednost',
+		btnAdd		: 'Dodaj',
+		btnModify	: 'Izmeni',
+		btnUp		: 'Gore',
+		btnDown		: 'Dole',
+		btnSetValue : 'Podesi kao označenu vrednost',
+		btnDelete	: 'Obriši'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Osobine zone teksta',
+		cols		: 'Broj kolona',
+		rows		: 'Broj redova'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Osobine tekstualnog polja',
+		name		: 'Naziv',
+		value		: 'Vrednost',
+		charWidth	: 'Širina (karaktera)',
+		maxChars	: 'Maksimalno karaktera',
+		type		: 'Tip',
+		typeText	: 'Tekst',
+		typePass	: 'Lozinka'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Osobine skrivenog polja',
+		name	: 'Naziv',
+		value	: 'Vrednost'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Osobine slika',
+		titleButton	: 'Osobine dugmeta sa slikom',
+		menu		: 'Osobine slika',
+		infoTab	: 'Info slike',
+		btnUpload	: 'Pošalji na server',
+		url		: 'URL',
+		upload	: 'Pošalji',
+		alt		: 'Alternativni tekst',
+		width		: 'Širina',
+		height	: 'Visina',
+		lockRatio	: 'Zaključaj odnos',
+		resetSize	: 'Resetuj veličinu',
+		border	: 'Okvir',
+		hSpace	: 'HSpace',
+		vSpace	: 'VSpace',
+		align		: 'Ravnanje',
+		alignLeft	: 'Levo',
+		alignAbsBottom: 'Abs dole',
+		alignAbsMiddle: 'Abs sredina',
+		alignBaseline	: 'Bazno',
+		alignBottom	: 'Dole',
+		alignMiddle	: 'Sredina',
+		alignRight	: 'Desno',
+		alignTextTop	: 'Vrh teksta',
+		alignTop	: 'Vrh',
+		preview	: 'Izgled',
+		alertUrl	: 'Unesite URL slike',
+		linkTab	: 'Link',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Osobine fleša',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Osobine fleša',
+		chkPlay		: 'Automatski start',
+		chkLoop		: 'Ponavljaj',
+		chkMenu		: 'Uključi fleš meni',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Skaliraj',
+		scaleAll		: 'Prikaži sve',
+		scaleNoBorder	: 'Bez ivice',
+		scaleFit		: 'Popuni površinu',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Ravnanje',
+		alignLeft	: 'Levo',
+		alignAbsBottom: 'Abs dole',
+		alignAbsMiddle: 'Abs sredina',
+		alignBaseline	: 'Bazno',
+		alignBottom	: 'Dole',
+		alignMiddle	: 'Sredina',
+		alignRight	: 'Desno',
+		alignTextTop	: 'Vrh teksta',
+		alignTop	: 'Vrh',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Boja pozadine',
+		width	: 'Širina',
+		height	: 'Visina',
+		hSpace	: 'HSpace',
+		vSpace	: 'VSpace',
+		validateSrc : 'Unesite URL linka',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Proveri spelovanje',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Nije u rečniku',
+		changeTo		: 'Izmeni',
+		btnIgnore		: 'Ignoriši',
+		btnIgnoreAll	: 'Ignoriši sve',
+		btnReplace		: 'Zameni',
+		btnReplaceAll	: 'Zameni sve',
+		btnUndo			: 'Vrati akciju',
+		noSuggestions	: '- Bez sugestija -',
+		progress		: 'Provera spelovanja u toku...',
+		noMispell		: 'Provera spelovanja završena: greške nisu pronadene',
+		noChanges		: 'Provera spelovanja završena: Nije izmenjena nijedna rec',
+		oneChange		: 'Provera spelovanja završena: Izmenjena je jedna reč',
+		manyChanges		: 'Provera spelovanja završena: %1 reč(i) je izmenjeno',
+		ieSpellDownload	: 'Provera spelovanja nije instalirana. Da li želite da je skinete sa Interneta?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Smajli',
+		title	: 'Unesi smajlija'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Nabrojiva lista',
+	bulletedlist : 'Nenabrojiva lista',
+	indent : 'Uvećaj levu marginu',
+	outdent : 'Smanji levu marginu',
+
+	justify :
+	{
+		left : 'Levo ravnanje',
+		center : 'Centriran tekst',
+		right : 'Desno ravnanje',
+		block : 'Obostrano ravnanje'
+	},
+
+	blockquote : 'Blockquote', // MISSING
+
+	clipboard :
+	{
+		title		: 'Zalepi',
+		cutError	: 'Sigurnosna podešavanja Vašeg pretraživača ne dozvoljavaju operacije automatskog isecanja teksta. Molimo Vas da koristite prečicu sa tastature (Ctrl+X).',
+		copyError	: 'Sigurnosna podešavanja Vašeg pretraživača ne dozvoljavaju operacije automatskog kopiranja teksta. Molimo Vas da koristite prečicu sa tastature (Ctrl+C).',
+		pasteMsg	: 'Molimo Vas da zalepite unutar donje povrine koristeći tastaturnu prečicu (<STRONG>Ctrl+V</STRONG>) i da pritisnete <STRONG>OK</STRONG>.',
+		securityMsg	: 'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.' // MISSING
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Zalepi iz Worda',
+		title : 'Zalepi iz Worda',
+		advice : 'Molimo Vas da zalepite unutar donje povrine koristeći tastaturnu prečicu (<STRONG>Ctrl+V</STRONG>) i da pritisnete <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Ignoriši definicije fontova',
+		removeStyle : 'Ukloni definicije stilova'
+	},
+
+	pasteText :
+	{
+		button : 'Zalepi kao čist tekst',
+		title : 'Zalepi kao čist tekst'
+	},
+
+	templates :
+	{
+		button : 'Obrasci',
+		title : 'Obrasci za sadržaj',
+		insertOption: 'Replace actual contents', // MISSING
+		selectPromptMsg: 'Molimo Vas da odaberete obrazac koji ce biti primenjen na stranicu (trenutni sadržaj ce biti obrisan):',
+		emptyListMsg : '(Nema definisanih obrazaca)'
+	},
+
+	showBlocks : 'Show Blocks', // MISSING
+
+	stylesCombo :
+	{
+		label : 'Stil',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Format',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Format',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normal',
+		tag_pre : 'Formatirano',
+		tag_address : 'Adresa',
+		tag_h1 : 'Naslov 1',
+		tag_h2 : 'Naslov 2',
+		tag_h3 : 'Naslov 3',
+		tag_h4 : 'Naslov 4',
+		tag_h5 : 'Naslov 5',
+		tag_h6 : 'Naslov 6',
+		tag_div : 'Normal (DIV)' // MISSING
+	},
+
+	font :
+	{
+		label : 'Font',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Font',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Veličina fonta',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Veličina fonta',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Boja teksta',
+		bgColorTitle : 'Boja pozadine',
+		auto : 'Automatski',
+		more : 'Više boja...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/sr.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/sr.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/sr.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Serbian (Cyrillic) language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['sr'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Kôд',
+	newPage			: 'Нова страница',
+	save			: 'Сачувај',
+	preview			: 'Изглед странице',
+	cut				: 'Исеци',
+	copy			: 'Копирај',
+	paste			: 'Залепи',
+	print			: 'Штампа',
+	underline		: 'Подвучено',
+	bold			: 'Подебљано',
+	italic			: 'Курзив',
+	selectAll		: 'Означи све',
+	removeFormat	: 'Уклони форматирање',
+	strike			: 'Прецртано',
+	subscript		: 'Индекс',
+	superscript		: 'Степен',
+	horizontalrule	: 'Унеси хоризонталну линију',
+	pagebreak		: 'Insert Page Break for Printing', // MISSING
+	unlink			: 'Уклони линк',
+	undo			: 'Поништи акцију',
+	redo			: 'Понови акцију',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Претражи сервер',
+		url				: 'УРЛ',
+		protocol		: 'Протокол',
+		upload			: 'Пошаљи',
+		uploadSubmit	: 'Пошаљи на сервер',
+		image			: 'Слика',
+		flash			: 'Флеш елемент',
+		form			: 'Форма',
+		checkbox		: 'Поље за потврду',
+		radio		: 'Радио-дугме',
+		textField		: 'Текстуално поље',
+		textarea		: 'Зона текста',
+		hiddenField		: 'Скривено поље',
+		button			: 'Дугме',
+		select	: 'Изборно поље',
+		imageButton		: 'Дугме са сликом',
+		notSet			: '<није постављено>',
+		id				: 'Ид',
+		name			: 'Назив',
+		langDir			: 'Смер језика',
+		langDirLtr		: 'С лева на десно (LTR)',
+		langDirRtl		: 'С десна на лево (RTL)',
+		langCode		: 'Kôд језика',
+		longDescr		: 'Пун опис УРЛ',
+		cssClass		: 'Stylesheet класе',
+		advisoryTitle	: 'Advisory наслов',
+		cssStyle		: 'Стил',
+		ok				: 'OK',
+		cancel			: 'Oткажи',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'Напредни тагови',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Унеси специјални карактер',
+		title		: 'Одаберите специјални карактер'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Унеси/измени линк',
+		menu		: 'Промени линк',
+		title		: 'Линк',
+		info		: 'Линк инфо',
+		target		: 'Meтa',
+		upload		: 'Пошаљи',
+		advanced	: 'Напредни тагови',
+		type		: 'Врста линка',
+		toAnchor	: 'Сидро на овој страници',
+		toEmail		: 'Eлектронска пошта',
+		target		: 'Meтa',
+		targetNotSet	: '<није постављено>',
+		targetFrame	: '<оквир>',
+		targetPopup	: '<искачући прозор>',
+		targetNew	: 'Нови прозор (_blank)',
+		targetTop	: 'Прозор на врху (_top)',
+		targetSelf	: 'Исти прозор (_self)',
+		targetParent	: 'Родитељски прозор (_parent)',
+		targetFrameName	: 'Назив одредишног фрејма',
+		targetPopupName	: 'Назив искачућег прозора',
+		popupFeatures	: 'Могућности искачућег прозора',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Статусна линија',
+		popupLocationBar	: 'Локација',
+		popupToolbar	: 'Toolbar',
+		popupMenuBar	: 'Контекстни мени',
+		popupFullScreen	: 'Приказ преко целог екрана (ИE)',
+		popupScrollBars	: 'Скрол бар',
+		popupDependent	: 'Зависно (Netscape)',
+		popupWidth		: 'Ширина',
+		popupLeft		: 'Од леве ивице екрана (пиксела)',
+		popupHeight		: 'Висина',
+		popupTop		: 'Од врха екрана (пиксела)',
+		id				: 'Id', // MISSING
+		langDir			: 'Смер језика',
+		langDirNotSet	: '<није постављено>',
+		langDirLTR		: 'С лева на десно (LTR)',
+		langDirRTL		: 'С десна на лево (RTL)',
+		acccessKey		: 'Приступни тастер',
+		name			: 'Назив',
+		langCode		: 'Смер језика',
+		tabIndex		: 'Таб индекс',
+		advisoryTitle	: 'Advisory наслов',
+		advisoryContentType	: 'Advisory врста садржаја',
+		cssClasses		: 'Stylesheet класе',
+		charset			: 'Linked Resource Charset',
+		styles			: 'Стил',
+		selectAnchor	: 'Одабери сидро',
+		anchorName		: 'По називу сидра',
+		anchorId		: 'Пo Ид-jу елемента',
+		emailAddress	: 'Адреса електронске поште',
+		emailSubject	: 'Наслов',
+		emailBody		: 'Садржај поруке',
+		noAnchors		: '(Нема доступних сидра)',
+		noUrl			: 'Унесите УРЛ линка',
+		noEmail			: 'Откуцајте адресу електронске поште'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Унеси/измени сидро',
+		menu		: 'Особине сидра',
+		title		: 'Особине сидра',
+		name		: 'Име сидра',
+		errorName	: 'Молимо Вас да унесете име сидра'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Find and Replace', // MISSING
+		find				: 'Претрага',
+		replace				: 'Замена',
+		findWhat			: 'Пронађи:',
+		replaceWith			: 'Замени са:',
+		notFoundMsg			: 'Тражени текст није пронађен.',
+		matchCase			: 'Разликуј велика и мала слова',
+		matchWord			: 'Упореди целе речи',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Замени све',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Табела',
+		title		: 'Особине табеле',
+		menu		: 'Особине табеле',
+		deleteTable	: 'Delete Table', // MISSING
+		rows		: 'Редова',
+		columns		: 'Kолона',
+		border		: 'Величина оквира',
+		align		: 'Равнање',
+		alignNotSet	: '<није постављено>',
+		alignLeft	: 'Лево',
+		alignCenter	: 'Средина',
+		alignRight	: 'Десно',
+		width		: 'Ширина',
+		widthPx		: 'пиксела',
+		widthPc		: 'процената',
+		height		: 'Висина',
+		cellSpace	: 'Ћелијски простор',
+		cellPad		: 'Размак ћелија',
+		caption		: 'Наслов табеле',
+		summary		: 'Summary', // MISSING
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Cell', // MISSING
+			insertBefore	: 'Insert Cell Before', // MISSING
+			insertAfter		: 'Insert Cell After', // MISSING
+			deleteCell		: 'Обриши ћелије',
+			merge			: 'Спој ћелије',
+			mergeRight		: 'Merge Right', // MISSING
+			mergeDown		: 'Merge Down', // MISSING
+			splitHorizontal	: 'Split Cell Horizontally', // MISSING
+			splitVertical	: 'Split Cell Vertically', // MISSING
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Row', // MISSING
+			insertBefore	: 'Insert Row Before', // MISSING
+			insertAfter		: 'Insert Row After', // MISSING
+			deleteRow		: 'Обриши редове'
+		},
+
+		column :
+		{
+			menu			: 'Column', // MISSING
+			insertBefore	: 'Insert Column Before', // MISSING
+			insertAfter		: 'Insert Column After', // MISSING
+			deleteColumn	: 'Обриши колоне'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Особине дугмета',
+		text		: 'Текст (вредност)',
+		type		: 'Tип',
+		typeBtn		: 'Button', // MISSING
+		typeSbm		: 'Submit', // MISSING
+		typeRst		: 'Reset' // MISSING
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Особине поља за потврду',
+		radioTitle	: 'Особине радио-дугмета',
+		value		: 'Вредност',
+		selected	: 'Означено'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Особине форме',
+		menu		: 'Особине форме',
+		action		: 'Aкција',
+		method		: 'Mетода',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Meтa',
+		targetNotSet	: '<није постављено>',
+		targetNew	: 'Нови прозор (_blank)',
+		targetTop	: 'Прозор на врху (_top)',
+		targetSelf	: 'Исти прозор (_self)',
+		targetParent	: 'Родитељски прозор (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Особине изборног поља',
+		selectInfo	: 'Инфо',
+		opAvail		: 'Доступне опције',
+		value		: 'Вредност',
+		size		: 'Величина',
+		lines		: 'линија',
+		chkMulti	: 'Дозволи вишеструку селекцију',
+		opText		: 'Текст',
+		opValue		: 'Вредност',
+		btnAdd		: 'Додај',
+		btnModify	: 'Измени',
+		btnUp		: 'Горе',
+		btnDown		: 'Доле',
+		btnSetValue : 'Подеси као означену вредност',
+		btnDelete	: 'Обриши'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Особине зоне текста',
+		cols		: 'Број колона',
+		rows		: 'Број редова'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Особине текстуалног поља',
+		name		: 'Назив',
+		value		: 'Вредност',
+		charWidth	: 'Ширина (карактера)',
+		maxChars	: 'Максимално карактера',
+		type		: 'Тип',
+		typeText	: 'Текст',
+		typePass	: 'Лозинка'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Особине скривеног поља',
+		name	: 'Назив',
+		value	: 'Вредност'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Особине слика',
+		titleButton	: 'Особине дугмета са сликом',
+		menu		: 'Особине слика',
+		infoTab	: 'Инфо слике',
+		btnUpload	: 'Пошаљи на сервер',
+		url		: 'УРЛ',
+		upload	: 'Пошаљи',
+		alt		: 'Алтернативни текст',
+		width		: 'Ширина',
+		height	: 'Висина',
+		lockRatio	: 'Закључај однос',
+		resetSize	: 'Ресетуј величину',
+		border	: 'Оквир',
+		hSpace	: 'HSpace',
+		vSpace	: 'VSpace',
+		align		: 'Равнање',
+		alignLeft	: 'Лево',
+		alignAbsBottom: 'Abs доле',
+		alignAbsMiddle: 'Abs средина',
+		alignBaseline	: 'Базно',
+		alignBottom	: 'Доле',
+		alignMiddle	: 'Средина',
+		alignRight	: 'Десно',
+		alignTextTop	: 'Врх текста',
+		alignTop	: 'Врх',
+		preview	: 'Изглед',
+		alertUrl	: 'Унесите УРЛ слике',
+		linkTab	: 'Линк',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Особине Флеша',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Особине флеша',
+		chkPlay		: 'Аутоматски старт',
+		chkLoop		: 'Понављај',
+		chkMenu		: 'Укључи флеш мени',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Скалирај',
+		scaleAll		: 'Прикажи све',
+		scaleNoBorder	: 'Без ивице',
+		scaleFit		: 'Попуни површину',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Равнање',
+		alignLeft	: 'Лево',
+		alignAbsBottom: 'Abs доле',
+		alignAbsMiddle: 'Abs средина',
+		alignBaseline	: 'Базно',
+		alignBottom	: 'Доле',
+		alignMiddle	: 'Средина',
+		alignRight	: 'Десно',
+		alignTextTop	: 'Врх текста',
+		alignTop	: 'Врх',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Боја позадине',
+		width	: 'Ширина',
+		height	: 'Висина',
+		hSpace	: 'HSpace',
+		vSpace	: 'VSpace',
+		validateSrc : 'Унесите УРЛ линка',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Провери спеловање',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Није у речнику',
+		changeTo		: 'Измени',
+		btnIgnore		: 'Игнориши',
+		btnIgnoreAll	: 'Игнориши све',
+		btnReplace		: 'Замени',
+		btnReplaceAll	: 'Замени све',
+		btnUndo			: 'Врати акцију',
+		noSuggestions	: '- Без сугестија -',
+		progress		: 'Провера спеловања у току...',
+		noMispell		: 'Провера спеловања завршена: грешке нису пронађене',
+		noChanges		: 'Провера спеловања завршена: Није измењена ниједна реч',
+		oneChange		: 'Провера спеловања завршена: Измењена је једна реч',
+		manyChanges		: 'Провера спеловања завршена:  %1 реч(и) је измењено',
+		ieSpellDownload	: 'Провера спеловања није инсталирана. Да ли желите да је скинете са Интернета?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Смајли',
+		title	: 'Унеси смајлија'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Набројиву листу',
+	bulletedlist : 'Ненабројива листа',
+	indent : 'Увећај леву маргину',
+	outdent : 'Смањи леву маргину',
+
+	justify :
+	{
+		left : 'Лево равнање',
+		center : 'Центриран текст',
+		right : 'Десно равнање',
+		block : 'Обострано равнање'
+	},
+
+	blockquote : 'Blockquote', // MISSING
+
+	clipboard :
+	{
+		title		: 'Залепи',
+		cutError	: 'Сигурносна подешавања Вашег претраживача не дозвољавају операције аутоматског исецања текста. Молимо Вас да користите пречицу са тастатуре (Ctrl+X).',
+		copyError	: 'Сигурносна подешавања Вашег претраживача не дозвољавају операције аутоматског копирања текста. Молимо Вас да користите пречицу са тастатуре (Ctrl+C).',
+		pasteMsg	: 'Молимо Вас да залепите унутар доње површине користећи тастатурну пречицу (<STRONG>Ctrl+V</STRONG>) и да притиснете <STRONG>OK</STRONG>.',
+		securityMsg	: 'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.' // MISSING
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Залепи из Worda',
+		title : 'Залепи из Worda',
+		advice : 'Молимо Вас да залепите унутар доње површине користећи тастатурну пречицу (<STRONG>Ctrl+V</STRONG>) и да притиснете <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Игнориши Font Face дефиниције',
+		removeStyle : 'Уклони дефиниције стилова'
+	},
+
+	pasteText :
+	{
+		button : 'Залепи као чист текст',
+		title : 'Залепи као чист текст'
+	},
+
+	templates :
+	{
+		button : 'Обрасци',
+		title : 'Обрасци за садржај',
+		insertOption: 'Replace actual contents', // MISSING
+		selectPromptMsg: 'Молимо Вас да одаберете образац који ће бити примењен на страницу (тренутни садржај ће бити обрисан):',
+		emptyListMsg : '(Нема дефинисаних образаца)'
+	},
+
+	showBlocks : 'Show Blocks', // MISSING
+
+	stylesCombo :
+	{
+		label : 'Стил',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Формат',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Формат',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normal',
+		tag_pre : 'Formatirano',
+		tag_address : 'Adresa',
+		tag_h1 : 'Heading 1',
+		tag_h2 : 'Heading 2',
+		tag_h3 : 'Heading 3',
+		tag_h4 : 'Heading 4',
+		tag_h5 : 'Heading 5',
+		tag_h6 : 'Heading 6',
+		tag_div : 'Normal (DIV)' // MISSING
+	},
+
+	font :
+	{
+		label : 'Фонт',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Фонт',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Величина фонта',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Величина фонта',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Боја текста',
+		bgColorTitle : 'Боја позадине',
+		auto : 'Аутоматски',
+		more : 'Више боја...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/sv.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/sv.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/sv.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Swedish language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['sv'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Källa',
+	newPage			: 'Ny sida',
+	save			: 'Spara',
+	preview			: 'Förhandsgranska',
+	cut				: 'Klipp ut',
+	copy			: 'Kopiera',
+	paste			: 'Klistra in',
+	print			: 'Skriv ut',
+	underline		: 'Understruken',
+	bold			: 'Fet',
+	italic			: 'Kursiv',
+	selectAll		: 'Markera allt',
+	removeFormat	: 'Radera formatering',
+	strike			: 'Genomstruken',
+	subscript		: 'Nedsänkta tecken',
+	superscript		: 'Upphöjda tecken',
+	horizontalrule	: 'Infoga horisontal linje',
+	pagebreak		: 'Infoga sidbrytning',
+	unlink			: 'Radera länk',
+	undo			: 'Ångra',
+	redo			: 'Gör om',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Bläddra på server',
+		url				: 'URL',
+		protocol		: 'Protokoll',
+		upload			: 'Ladda upp',
+		uploadSubmit	: 'Skicka till server',
+		image			: 'Bild',
+		flash			: 'Flash',
+		form			: 'Formulär',
+		checkbox		: 'Kryssruta',
+		radio		: 'Alternativknapp',
+		textField		: 'Textfält',
+		textarea		: 'Textruta',
+		hiddenField		: 'Dolt fält',
+		button			: 'Knapp',
+		select	: 'Flervalslista',
+		imageButton		: 'Bildknapp',
+		notSet			: '<ej angivet>',
+		id				: 'Id',
+		name			: 'Namn',
+		langDir			: 'Språkriktning',
+		langDirLtr		: 'Vänster till Höger (VTH)',
+		langDirRtl		: 'Höger till Vänster (HTV)',
+		langCode		: 'Språkkod',
+		longDescr		: 'URL-beskrivning',
+		cssClass		: 'Stylesheet class',
+		advisoryTitle	: 'Titel',
+		cssStyle		: 'Style',
+		ok				: 'OK',
+		cancel			: 'Avbryt',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'Avancerad',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Klistra in utökat tecken',
+		title		: 'Välj utökat tecken'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Infoga/Redigera länk',
+		menu		: 'Redigera länk',
+		title		: 'Länk',
+		info		: 'Länkinformation',
+		target		: 'Mål',
+		upload		: 'Ladda upp',
+		advanced	: 'Avancerad',
+		type		: 'Länktyp',
+		toAnchor	: 'Ankare i sidan',
+		toEmail		: 'E-post',
+		target		: 'Mål',
+		targetNotSet	: '<ej angivet>',
+		targetFrame	: '<ram>',
+		targetPopup	: '<popup-fönster>',
+		targetNew	: 'Nytt fönster (_blank)',
+		targetTop	: 'Översta fönstret (_top)',
+		targetSelf	: 'Detta fönstret (_self)',
+		targetParent	: 'Föregående Window (_parent)',
+		targetFrameName	: 'Målets ramnamn',
+		targetPopupName	: 'Popup-fönstrets namn',
+		popupFeatures	: 'Popup-fönstrets egenskaper',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Statusfält',
+		popupLocationBar	: 'Adressfält',
+		popupToolbar	: 'Verktygsfält',
+		popupMenuBar	: 'Menyfält',
+		popupFullScreen	: 'Helskärm (endast IE)',
+		popupScrollBars	: 'Scrolllista',
+		popupDependent	: 'Beroende (endest Netscape)',
+		popupWidth		: 'Bredd',
+		popupLeft		: 'Position från vänster',
+		popupHeight		: 'Höjd',
+		popupTop		: 'Position från sidans topp',
+		id				: 'Id', // MISSING
+		langDir			: 'Språkriktning',
+		langDirNotSet	: '<ej angivet>',
+		langDirLTR		: 'Vänster till Höger (VTH)',
+		langDirRTL		: 'Höger till Vänster (HTV)',
+		acccessKey		: 'Behörighetsnyckel',
+		name			: 'Namn',
+		langCode		: 'Språkriktning',
+		tabIndex		: 'Tabindex',
+		advisoryTitle	: 'Titel',
+		advisoryContentType	: 'Innehållstyp',
+		cssClasses		: 'Stylesheet class',
+		charset			: 'Teckenuppställning',
+		styles			: 'Style',
+		selectAnchor	: 'Välj ett ankare',
+		anchorName		: 'efter ankarnamn',
+		anchorId		: 'efter objektid',
+		emailAddress	: 'E-postadress',
+		emailSubject	: 'Ämne',
+		emailBody		: 'Innehåll',
+		noAnchors		: '(Inga ankare kunde hittas)',
+		noUrl			: 'Var god ange länkens URL',
+		noEmail			: 'Var god ange E-postadress'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Infoga/Redigera ankarlänk',
+		menu		: 'Egenskaper för ankarlänk',
+		title		: 'Egenskaper för ankarlänk',
+		name		: 'Ankarnamn',
+		errorName	: 'Var god ange ett ankarnamn'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Sök och ersätt',
+		find				: 'Sök',
+		replace				: 'Ersätt',
+		findWhat			: 'Sök efter:',
+		replaceWith			: 'Ersätt med:',
+		notFoundMsg			: 'Angiven text kunde ej hittas.',
+		matchCase			: 'Skiftläge',
+		matchWord			: 'Inkludera hela ord',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Ersätt alla',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tabell',
+		title		: 'Tabellegenskaper',
+		menu		: 'Tabellegenskaper',
+		deleteTable	: 'Radera tabell',
+		rows		: 'Rader',
+		columns		: 'Kolumner',
+		border		: 'Kantstorlek',
+		align		: 'Justering',
+		alignNotSet	: '<ej angivet>',
+		alignLeft	: 'Vänster',
+		alignCenter	: 'Centrerad',
+		alignRight	: 'Höger',
+		width		: 'Bredd',
+		widthPx		: 'pixlar',
+		widthPc		: 'procent',
+		height		: 'Höjd',
+		cellSpace	: 'Cellavstånd',
+		cellPad		: 'Cellutfyllnad',
+		caption		: 'Rubrik',
+		summary		: 'Sammanfattning',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Cell',
+			insertBefore	: 'Lägg till Cell Före',
+			insertAfter		: 'Lägg till Cell Efter',
+			deleteCell		: 'Radera celler',
+			merge			: 'Sammanfoga celler',
+			mergeRight		: 'Sammanfoga Höger',
+			mergeDown		: 'Sammanfoga Ner',
+			splitHorizontal	: 'Dela Cell Horisontellt',
+			splitVertical	: 'Dela Cell Vertikalt',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Rad',
+			insertBefore	: 'Lägg till Rad Före',
+			insertAfter		: 'Lägg till Rad Efter',
+			deleteRow		: 'Radera rad'
+		},
+
+		column :
+		{
+			menu			: 'Kolumn',
+			insertBefore	: 'Lägg till Kolumn Före',
+			insertAfter		: 'Lägg till Kolumn Efter',
+			deleteColumn	: 'Radera kolumn'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Egenskaper för knapp',
+		text		: 'Text (Värde)',
+		type		: 'Typ',
+		typeBtn		: 'Knapp',
+		typeSbm		: 'Skicka',
+		typeRst		: 'Återställ'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Egenskaper för kryssruta',
+		radioTitle	: 'Egenskaper för alternativknapp',
+		value		: 'Värde',
+		selected	: 'Vald'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Egenskaper för formulär',
+		menu		: 'Egenskaper för formulär',
+		action		: 'Funktion',
+		method		: 'Metod',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Mål',
+		targetNotSet	: '<ej angivet>',
+		targetNew	: 'Nytt fönster (_blank)',
+		targetTop	: 'Översta fönstret (_top)',
+		targetSelf	: 'Detta fönstret (_self)',
+		targetParent	: 'Föregående Window (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Egenskaper för flervalslista',
+		selectInfo	: 'Information',
+		opAvail		: 'Befintliga val',
+		value		: 'Värde',
+		size		: 'Storlek',
+		lines		: 'Linjer',
+		chkMulti	: 'Tillåt flerval',
+		opText		: 'Text',
+		opValue		: 'Värde',
+		btnAdd		: 'Lägg till',
+		btnModify	: 'Redigera',
+		btnUp		: 'Upp',
+		btnDown		: 'Ner',
+		btnSetValue : 'Markera som valt värde',
+		btnDelete	: 'Radera'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Egenskaper för textruta',
+		cols		: 'Kolumner',
+		rows		: 'Rader'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Egenskaper för textfält',
+		name		: 'Namn',
+		value		: 'Värde',
+		charWidth	: 'Teckenbredd',
+		maxChars	: 'Max antal tecken',
+		type		: 'Typ',
+		typeText	: 'Text',
+		typePass	: 'Lösenord'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Egenskaper för dolt fält',
+		name	: 'Namn',
+		value	: 'Värde'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Bildegenskaper',
+		titleButton	: 'Egenskaper för bildknapp',
+		menu		: 'Bildegenskaper',
+		infoTab	: 'Bildinformation',
+		btnUpload	: 'Skicka till server',
+		url		: 'URL',
+		upload	: 'Ladda upp',
+		alt		: 'Alternativ text',
+		width		: 'Bredd',
+		height	: 'Höjd',
+		lockRatio	: 'Lås höjd/bredd förhållanden',
+		resetSize	: 'Återställ storlek',
+		border	: 'Kant',
+		hSpace	: 'Horis. marginal',
+		vSpace	: 'Vert. marginal',
+		align		: 'Justering',
+		alignLeft	: 'Vänster',
+		alignAbsBottom: 'Absolut nederkant',
+		alignAbsMiddle: 'Absolut centrering',
+		alignBaseline	: 'Baslinje',
+		alignBottom	: 'Nederkant',
+		alignMiddle	: 'Mitten',
+		alignRight	: 'Höger',
+		alignTextTop	: 'Text överkant',
+		alignTop	: 'Överkant',
+		preview	: 'Förhandsgranska',
+		alertUrl	: 'Var god och ange bildens URL',
+		linkTab	: 'Länk',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Flashegenskaper',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Flashegenskaper',
+		chkPlay		: 'Automatisk uppspelning',
+		chkLoop		: 'Upprepa/Loopa',
+		chkMenu		: 'Aktivera Flashmeny',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Skala',
+		scaleAll		: 'Visa allt',
+		scaleNoBorder	: 'Ingen ram',
+		scaleFit		: 'Exakt passning',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Justering',
+		alignLeft	: 'Vänster',
+		alignAbsBottom: 'Absolut nederkant',
+		alignAbsMiddle: 'Absolut centrering',
+		alignBaseline	: 'Baslinje',
+		alignBottom	: 'Nederkant',
+		alignMiddle	: 'Mitten',
+		alignRight	: 'Höger',
+		alignTextTop	: 'Text överkant',
+		alignTop	: 'Överkant',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Bakgrundsfärg',
+		width	: 'Bredd',
+		height	: 'Höjd',
+		hSpace	: 'Horis. marginal',
+		vSpace	: 'Vert. marginal',
+		validateSrc : 'Var god ange länkens URL',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Stavningskontroll',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Saknas i ordlistan',
+		changeTo		: 'Ändra till',
+		btnIgnore		: 'Ignorera',
+		btnIgnoreAll	: 'Ignorera alla',
+		btnReplace		: 'Ersätt',
+		btnReplaceAll	: 'Ersätt alla',
+		btnUndo			: 'Ångra',
+		noSuggestions	: '- Förslag saknas -',
+		progress		: 'Stavningskontroll pågår...',
+		noMispell		: 'Stavningskontroll slutförd: Inga stavfel påträffades.',
+		noChanges		: 'Stavningskontroll slutförd: Inga ord rättades.',
+		oneChange		: 'Stavningskontroll slutförd: Ett ord rättades.',
+		manyChanges		: 'Stavningskontroll slutförd: %1 ord rättades.',
+		ieSpellDownload	: 'Stavningskontrollen är ej installerad. Vill du göra det nu?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Smiley',
+		title	: 'Infoga smiley'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Numrerad lista',
+	bulletedlist : 'Punktlista',
+	indent : 'Öka indrag',
+	outdent : 'Minska indrag',
+
+	justify :
+	{
+		left : 'Vänsterjustera',
+		center : 'Centrera',
+		right : 'Högerjustera',
+		block : 'Justera till marginaler'
+	},
+
+	blockquote : 'Blockquote', // MISSING
+
+	clipboard :
+	{
+		title		: 'Klistra in',
+		cutError	: 'Säkerhetsinställningar i Er webläsare tillåter inte åtgården Klipp ut. Använd (Ctrl+X) istället.',
+		copyError	: 'Säkerhetsinställningar i Er webläsare tillåter inte åtgården Kopiera. Använd (Ctrl+C) istället',
+		pasteMsg	: 'Var god och klistra in Er text i rutan nedan genom att använda (<STRONG>Ctrl+V</STRONG>) klicka sen på <STRONG>OK</STRONG>.',
+		securityMsg	: 'På grund av din webläsares säkerhetsinställningar kan verktyget inte få åtkomst till urklippsdatan. Var god och använd detta fönster istället.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Klistra in från Word',
+		title : 'Klistra in från Word',
+		advice : 'Var god och klistra in Er text i rutan nedan genom att använda (<STRONG>Ctrl+V</STRONG>) klicka sen på <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Ignorera typsnittsdefinitioner',
+		removeStyle : 'Radera Stildefinitioner'
+	},
+
+	pasteText :
+	{
+		button : 'Klistra in som vanlig text',
+		title : 'Klistra in som vanlig text'
+	},
+
+	templates :
+	{
+		button : 'Sidmallar',
+		title : 'Sidmallar',
+		insertOption: 'Ersätt aktuellt innehåll',
+		selectPromptMsg: 'Var god välj en mall att använda med editorn<br>(allt nuvarande innehåll raderas):',
+		emptyListMsg : '(Ingen mall är vald)'
+	},
+
+	showBlocks : 'Show Blocks', // MISSING
+
+	stylesCombo :
+	{
+		label : 'Anpassad stil',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Teckenformat',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Teckenformat',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normal',
+		tag_pre : 'Formaterad',
+		tag_address : 'Adress',
+		tag_h1 : 'Rubrik 1',
+		tag_h2 : 'Rubrik 2',
+		tag_h3 : 'Rubrik 3',
+		tag_h4 : 'Rubrik 4',
+		tag_h5 : 'Rubrik 5',
+		tag_h6 : 'Rubrik 6',
+		tag_div : 'Normal (DIV)'
+	},
+
+	font :
+	{
+		label : 'Typsnitt',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Typsnitt',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Storlek',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Storlek',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Textfärg',
+		bgColorTitle : 'Bakgrundsfärg',
+		auto : 'Automatisk',
+		more : 'Fler färger...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/th.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/th.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/th.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Thai language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['th'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'ดูรหัส HTML',
+	newPage			: 'สร้างหน้าเอกสารใหม่',
+	save			: 'บันทึก',
+	preview			: 'ดูหน้าเอกสารตัวอย่าง',
+	cut				: 'ตัด',
+	copy			: 'สำเนา',
+	paste			: 'วาง',
+	print			: 'สั่งพิมพ์',
+	underline		: 'ตัวขีดเส้นใต้',
+	bold			: 'ตัวหนา',
+	italic			: 'ตัวเอียง',
+	selectAll		: 'เลือกทั้งหมด',
+	removeFormat	: 'ล้างรูปแบบ',
+	strike			: 'ตัวขีดเส้นทับ',
+	subscript		: 'ตัวห้อย',
+	superscript		: 'ตัวยก',
+	horizontalrule	: 'แทรกเส้นคั่นบรรทัด',
+	pagebreak		: 'แทรกตัวแบ่งหน้า Page Break',
+	unlink			: 'ลบ ลิงค์',
+	undo			: 'ยกเลิกคำสั่ง',
+	redo			: 'ทำซ้ำคำสั่ง',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'เปิดหน้าต่างจัดการไฟล์อัพโหลด',
+		url				: 'ที่อยู่อ้างอิง URL',
+		protocol		: 'โปรโตคอล',
+		upload			: 'อัพโหลดไฟล์',
+		uploadSubmit	: 'อัพโหลดไฟล์ไปเก็บไว้ที่เครื่องแม่ข่าย (เซิร์ฟเวอร์)',
+		image			: 'รูปภาพ',
+		flash			: 'ไฟล์ Flash',
+		form			: 'แบบฟอร์ม',
+		checkbox		: 'เช็คบ๊อก',
+		radio		: 'เรดิโอบัตตอน',
+		textField		: 'เท็กซ์ฟิลด์',
+		textarea		: 'เท็กซ์แอเรีย',
+		hiddenField		: 'ฮิดเดนฟิลด์',
+		button			: 'ปุ่ม',
+		select	: 'แถบตัวเลือก',
+		imageButton		: 'ปุ่มแบบรูปภาพ',
+		notSet			: '<ไม่ระบุ>',
+		id				: 'ไอดี',
+		name			: 'ชื่อ',
+		langDir			: 'การเขียน-อ่านภาษา',
+		langDirLtr		: 'จากซ้ายไปขวา (LTR)',
+		langDirRtl		: 'จากขวามาซ้าย (RTL)',
+		langCode		: 'รหัสภาษา',
+		longDescr		: 'คำอธิบายประกอบ URL',
+		cssClass		: 'คลาสของไฟล์กำหนดลักษณะการแสดงผล',
+		advisoryTitle	: 'คำเกริ่นนำ',
+		cssStyle		: 'ลักษณะการแสดงผล',
+		ok				: 'ตกลง',
+		cancel			: 'ยกเลิก',
+		generalTab		: 'General', // MISSING
+		advancedTab		: 'ขั้นสูง',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'แทรกตัวอักษรพิเศษ',
+		title		: 'แทรกตัวอักษรพิเศษ'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'แทรก/แก้ไข ลิงค์',
+		menu		: 'แก้ไข ลิงค์',
+		title		: 'ลิงค์เชื่อมโยงเว็บ อีเมล์ รูปภาพ หรือไฟล์อื่นๆ',
+		info		: 'รายละเอียด',
+		target		: 'การเปิดหน้าลิงค์',
+		upload		: 'อัพโหลดไฟล์',
+		advanced	: 'ขั้นสูง',
+		type		: 'ประเภทของลิงค์',
+		toAnchor	: 'จุดเชื่อมโยง (Anchor)',
+		toEmail		: 'ส่งอีเมล์ (E-Mail)',
+		target		: 'การเปิดหน้าลิงค์',
+		targetNotSet	: '<ไม่ระบุ>',
+		targetFrame	: '<เปิดในเฟรม>',
+		targetPopup	: '<เปิดหน้าจอเล็ก (Pop-up)>',
+		targetNew	: 'เปิดหน้าจอใหม่ (_blank)',
+		targetTop	: 'เปิดในหน้าบนสุด (_top)',
+		targetSelf	: 'เปิดในหน้าปัจจุบัน (_self)',
+		targetParent	: 'เปิดในหน้าหลัก (_parent)',
+		targetFrameName	: 'ชื่อทาร์เก็ตเฟรม',
+		targetPopupName	: 'ระบุชื่อหน้าจอเล็ก (Pop-up)',
+		popupFeatures	: 'คุณสมบัติของหน้าจอเล็ก (Pop-up)',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'แสดงแถบสถานะ',
+		popupLocationBar	: 'แสดงที่อยู่ของไฟล์',
+		popupToolbar	: 'แสดงแถบเครื่องมือ',
+		popupMenuBar	: 'แสดงแถบเมนู',
+		popupFullScreen	: 'แสดงเต็มหน้าจอ (IE5.5++ เท่านั้น)',
+		popupScrollBars	: 'แสดงแถบเลื่อน',
+		popupDependent	: 'แสดงเต็มหน้าจอ (Netscape)',
+		popupWidth		: 'กว้าง',
+		popupLeft		: 'พิกัดซ้าย (Left Position)',
+		popupHeight		: 'สูง',
+		popupTop		: 'พิกัดบน (Top Position)',
+		id				: 'Id', // MISSING
+		langDir			: 'การเขียน-อ่านภาษา',
+		langDirNotSet	: '<ไม่ระบุ>',
+		langDirLTR		: 'จากซ้ายไปขวา (LTR)',
+		langDirRTL		: 'จากขวามาซ้าย (RTL)',
+		acccessKey		: 'แอคเซส คีย์',
+		name			: 'ชื่อ',
+		langCode		: 'การเขียน-อ่านภาษา',
+		tabIndex		: 'ลำดับของ แท็บ',
+		advisoryTitle	: 'คำเกริ่นนำ',
+		advisoryContentType	: 'ชนิดของคำเกริ่นนำ',
+		cssClasses		: 'คลาสของไฟล์กำหนดลักษณะการแสดงผล',
+		charset			: 'ลิงค์เชื่อมโยงไปยังชุดตัวอักษร',
+		styles			: 'ลักษณะการแสดงผล',
+		selectAnchor	: 'ระบุข้อมูลของจุดเชื่อมโยง (Anchor)',
+		anchorName		: 'ชื่อ',
+		anchorId		: 'ไอดี',
+		emailAddress	: 'อีเมล์ (E-Mail)',
+		emailSubject	: 'หัวเรื่อง',
+		emailBody		: 'ข้อความ',
+		noAnchors		: '(ยังไม่มีจุดเชื่อมโยงภายในหน้าเอกสารนี้)',
+		noUrl			: 'กรุณาระบุที่อยู่อ้างอิงออนไลน์ (URL)',
+		noEmail			: 'กรุณาระบุอีเมล์ (E-mail)'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'แทรก/แก้ไข Anchor',
+		menu		: 'รายละเอียด Anchor',
+		title		: 'รายละเอียด Anchor',
+		name		: 'ชื่อ Anchor',
+		errorName	: 'กรุณาระบุชื่อของ Anchor'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Find and Replace', // MISSING
+		find				: 'ค้นหา',
+		replace				: 'ค้นหาและแทนที่',
+		findWhat			: 'ค้นหาคำว่า:',
+		replaceWith			: 'แทนที่ด้วย:',
+		notFoundMsg			: 'ไม่พบคำที่ค้นหา.',
+		matchCase			: 'ตัวโหญ่-เล็ก ต้องตรงกัน',
+		matchWord			: 'ต้องตรงกันทุกคำ',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'แทนที่ทั้งหมดที่พบ',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'ตาราง',
+		title		: 'คุณสมบัติของ ตาราง',
+		menu		: 'คุณสมบัติของ ตาราง',
+		deleteTable	: 'ลบตาราง',
+		rows		: 'แถว',
+		columns		: 'สดมน์',
+		border		: 'ขนาดเส้นขอบ',
+		align		: 'การจัดตำแหน่ง',
+		alignNotSet	: '<ไม่ระบุ>',
+		alignLeft	: 'ชิดซ้าย',
+		alignCenter	: 'กึ่งกลาง',
+		alignRight	: 'ชิดขวา',
+		width		: 'กว้าง',
+		widthPx		: 'จุดสี',
+		widthPc		: 'เปอร์เซ็น',
+		height		: 'สูง',
+		cellSpace	: 'ระยะแนวนอนน',
+		cellPad		: 'ระยะแนวตั้ง',
+		caption		: 'หัวเรื่องของตาราง',
+		summary		: 'สรุปความ',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'ช่องตาราง',
+			insertBefore	: 'Insert Cell Before', // MISSING
+			insertAfter		: 'Insert Cell After', // MISSING
+			deleteCell		: 'ลบช่อง',
+			merge			: 'ผสานช่อง',
+			mergeRight		: 'Merge Right', // MISSING
+			mergeDown		: 'Merge Down', // MISSING
+			splitHorizontal	: 'Split Cell Horizontally', // MISSING
+			splitVertical	: 'Split Cell Vertically', // MISSING
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'แถว',
+			insertBefore	: 'Insert Row Before', // MISSING
+			insertAfter		: 'Insert Row After', // MISSING
+			deleteRow		: 'ลบแถว'
+		},
+
+		column :
+		{
+			menu			: 'คอลัมน์',
+			insertBefore	: 'Insert Column Before', // MISSING
+			insertAfter		: 'Insert Column After', // MISSING
+			deleteColumn	: 'ลบสดมน์'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'รายละเอียดของ ปุ่ม',
+		text		: 'ข้อความ (ค่าตัวแปร)',
+		type		: 'ข้อความ',
+		typeBtn		: 'Button',
+		typeSbm		: 'Submit',
+		typeRst		: 'Reset'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'คุณสมบัติของ เช็คบ๊อก',
+		radioTitle	: 'คุณสมบัติของ เรดิโอบัตตอน',
+		value		: 'ค่าตัวแปร',
+		selected	: 'เลือกเป็นค่าเริ่มต้น'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'คุณสมบัติของ แบบฟอร์ม',
+		menu		: 'คุณสมบัติของ แบบฟอร์ม',
+		action		: 'แอคชั่น',
+		method		: 'เมธอด',
+		encoding	: 'Encoding', // MISSING
+		target		: 'การเปิดหน้าลิงค์',
+		targetNotSet	: '<ไม่ระบุ>',
+		targetNew	: 'เปิดหน้าจอใหม่ (_blank)',
+		targetTop	: 'เปิดในหน้าบนสุด (_top)',
+		targetSelf	: 'เปิดในหน้าปัจจุบัน (_self)',
+		targetParent	: 'เปิดในหน้าหลัก (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'คุณสมบัติของ แถบตัวเลือก',
+		selectInfo	: 'อินโฟ',
+		opAvail		: 'รายการตัวเลือก',
+		value		: 'ค่าตัวแปร',
+		size		: 'ขนาด',
+		lines		: 'บรรทัด',
+		chkMulti	: 'เลือกหลายค่าได้',
+		opText		: 'ข้อความ',
+		opValue		: 'ค่าตัวแปร',
+		btnAdd		: 'เพิ่ม',
+		btnModify	: 'แก้ไข',
+		btnUp		: 'บน',
+		btnDown		: 'ล่าง',
+		btnSetValue : 'เลือกเป็นค่าเริ่มต้น',
+		btnDelete	: 'ลบ'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'คุณสมบัติของ เท็กแอเรีย',
+		cols		: 'สดมภ์',
+		rows		: 'แถว'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'คุณสมบัติของ เท็กซ์ฟิลด์',
+		name		: 'ชื่อ',
+		value		: 'ค่าตัวแปร',
+		charWidth	: 'ความกว้าง',
+		maxChars	: 'จำนวนตัวอักษรสูงสุด',
+		type		: 'ชนิด',
+		typeText	: 'ข้อความ',
+		typePass	: 'รหัสผ่าน'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'คุณสมบัติของ ฮิดเดนฟิลด์',
+		name	: 'ชื่อ',
+		value	: 'ค่าตัวแปร'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'คุณสมบัติของ รูปภาพ',
+		titleButton	: 'คุณสมบัติของ ปุ่มแบบรูปภาพ',
+		menu		: 'คุณสมบัติของ รูปภาพ',
+		infoTab	: 'ข้อมูลของรูปภาพ',
+		btnUpload	: 'อัพโหลดไฟล์ไปเก็บไว้ที่เครื่องแม่ข่าย (เซิร์ฟเวอร์)',
+		url		: 'ที่อยู่อ้างอิง URL',
+		upload	: 'อัพโหลดไฟล์',
+		alt		: 'คำประกอบรูปภาพ',
+		width		: 'ความกว้าง',
+		height	: 'ความสูง',
+		lockRatio	: 'กำหนดอัตราส่วน กว้าง-สูง แบบคงที่',
+		resetSize	: 'กำหนดรูปเท่าขนาดจริง',
+		border	: 'ขนาดขอบรูป',
+		hSpace	: 'ระยะแนวนอน',
+		vSpace	: 'ระยะแนวตั้ง',
+		align		: 'การจัดวาง',
+		alignLeft	: 'ชิดซ้าย',
+		alignAbsBottom: 'ชิดด้านล่างสุด',
+		alignAbsMiddle: 'กึ่งกลาง',
+		alignBaseline	: 'ชิดบรรทัด',
+		alignBottom	: 'ชิดด้านล่าง',
+		alignMiddle	: 'กึ่งกลางแนวตั้ง',
+		alignRight	: 'ชิดขวา',
+		alignTextTop	: 'ใต้ตัวอักษร',
+		alignTop	: 'บนสุด',
+		preview	: 'หน้าเอกสารตัวอย่าง',
+		alertUrl	: 'กรุณาระบุที่อยู่อ้างอิงออนไลน์ของไฟล์รูปภาพ (URL)',
+		linkTab	: 'ลิ้งค์',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'คุณสมบัติของไฟล์ Flash',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'คุณสมบัติของไฟล์ Flash',
+		chkPlay		: 'เล่นอัตโนมัติ Auto Play',
+		chkLoop		: 'เล่นวนรอบ Loop',
+		chkMenu		: 'ให้ใช้งานเมนูของ Flash',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'อัตราส่วน Scale',
+		scaleAll		: 'แสดงให้เห็นทั้งหมด Show all',
+		scaleNoBorder	: 'ไม่แสดงเส้นขอบ No Border',
+		scaleFit		: 'แสดงให้พอดีกับพื้นที่ Exact Fit',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'การจัดวาง',
+		alignLeft	: 'ชิดซ้าย',
+		alignAbsBottom: 'ชิดด้านล่างสุด',
+		alignAbsMiddle: 'กึ่งกลาง',
+		alignBaseline	: 'ชิดบรรทัด',
+		alignBottom	: 'ชิดด้านล่าง',
+		alignMiddle	: 'กึ่งกลางแนวตั้ง',
+		alignRight	: 'ชิดขวา',
+		alignTextTop	: 'ใต้ตัวอักษร',
+		alignTop	: 'บนสุด',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'สีพื้นหลัง',
+		width	: 'ความกว้าง',
+		height	: 'ความสูง',
+		hSpace	: 'ระยะแนวนอน',
+		vSpace	: 'ระยะแนวตั้ง',
+		validateSrc : 'กรุณาระบุที่อยู่อ้างอิงออนไลน์ (URL)',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'ตรวจการสะกดคำ',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'ไม่พบในดิกชันนารี',
+		changeTo		: 'แก้ไขเป็น',
+		btnIgnore		: 'ยกเว้น',
+		btnIgnoreAll	: 'ยกเว้นทั้งหมด',
+		btnReplace		: 'แทนที่',
+		btnReplaceAll	: 'แทนที่ทั้งหมด',
+		btnUndo			: 'ยกเลิก',
+		noSuggestions	: '- ไม่มีคำแนะนำใดๆ -',
+		progress		: 'กำลังตรวจสอบคำสะกด...',
+		noMispell		: 'ตรวจสอบคำสะกดเสร็จสิ้น: ไม่พบคำสะกดผิด',
+		noChanges		: 'ตรวจสอบคำสะกดเสร็จสิ้น: ไม่มีการแก้คำใดๆ',
+		oneChange		: 'ตรวจสอบคำสะกดเสร็จสิ้น: แก้ไข1คำ',
+		manyChanges		: 'ตรวจสอบคำสะกดเสร็จสิ้น:: แก้ไข %1 คำ',
+		ieSpellDownload	: 'ไม่ได้ติดตั้งระบบตรวจสอบคำสะกด. ต้องการติดตั้งไหมครับ?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'รูปสื่ออารมณ์',
+		title	: 'แทรกสัญลักษณ์สื่ออารมณ์'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'ลำดับรายการแบบตัวเลข',
+	bulletedlist : 'ลำดับรายการแบบสัญลักษณ์',
+	indent : 'เพิ่มระยะย่อหน้า',
+	outdent : 'ลดระยะย่อหน้า',
+
+	justify :
+	{
+		left : 'จัดชิดซ้าย',
+		center : 'จัดกึ่งกลาง',
+		right : 'จัดชิดขวา',
+		block : 'จัดพอดีหน้ากระดาษ'
+	},
+
+	blockquote : 'Blockquote', // MISSING
+
+	clipboard :
+	{
+		title		: 'วาง',
+		cutError	: 'ไม่สามารถตัดข้อความที่เลือกไว้ได้เนื่องจากการกำหนดค่าระดับความปลอดภัย. กรุณาใช้ปุ่มลัดเพื่อวางข้อความแทน (กดปุ่ม Ctrl และตัว X พร้อมกัน).',
+		copyError	: 'ไม่สามารถสำเนาข้อความที่เลือกไว้ได้เนื่องจากการกำหนดค่าระดับความปลอดภัย. กรุณาใช้ปุ่มลัดเพื่อวางข้อความแทน (กดปุ่ม Ctrl และตัว C พร้อมกัน).',
+		pasteMsg	: 'กรุณาใช้คีย์บอร์ดเท่านั้น โดยกดปุ๋ม (<strong>Ctrl และ V</strong>)พร้อมๆกัน และกด <strong>OK</strong>.',
+		securityMsg	: 'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.' // MISSING
+	},
+
+	pastefromword :
+	{
+		toolbar : 'วางสำเนาจากตัวอักษรเวิร์ด',
+		title : 'วางสำเนาจากตัวอักษรเวิร์ด',
+		advice : 'กรุณาใช้คีย์บอร์ดเท่านั้น โดยกดปุ๋ม (<strong>Ctrl และ V</strong>)พร้อมๆกัน และกด <strong>OK</strong>.',
+		ignoreFontFace : 'ไม่สนใจ Font Face definitions',
+		removeStyle : 'ลบ Styles definitions'
+	},
+
+	pasteText :
+	{
+		button : 'วางแบบตัวอักษรธรรมดา',
+		title : 'วางแบบตัวอักษรธรรมดา'
+	},
+
+	templates :
+	{
+		button : 'เทมเพลต',
+		title : 'เทมเพลตของส่วนเนื้อหาเว็บไซต์',
+		insertOption: 'แทนที่เนื้อหาเว็บไซต์ที่เลือก',
+		selectPromptMsg: 'กรุณาเลือก เทมเพลต เพื่อนำไปแก้ไขในอีดิตเตอร์<br />(เนื้อหาส่วนนี้จะหายไป):',
+		emptyListMsg : '(ยังไม่มีการกำหนดเทมเพลต)'
+	},
+
+	showBlocks : 'Show Blocks', // MISSING
+
+	stylesCombo :
+	{
+		label : 'ลักษณะ',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'รูปแบบ',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'รูปแบบ',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normal',
+		tag_pre : 'Formatted',
+		tag_address : 'Address',
+		tag_h1 : 'Heading 1',
+		tag_h2 : 'Heading 2',
+		tag_h3 : 'Heading 3',
+		tag_h4 : 'Heading 4',
+		tag_h5 : 'Heading 5',
+		tag_h6 : 'Heading 6',
+		tag_div : 'Paragraph (DIV)'
+	},
+
+	font :
+	{
+		label : 'แบบอักษร',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'แบบอักษร',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'ขนาด',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'ขนาด',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'สีตัวอักษร',
+		bgColorTitle : 'สีพื้นหลัง',
+		auto : 'สีอัตโนมัติ',
+		more : 'เลือกสีอื่นๆ...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/tr.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/tr.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/tr.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Turkish language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['tr'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Kaynak',
+	newPage			: 'Yeni Sayfa',
+	save			: 'Kaydet',
+	preview			: 'Ön İzleme',
+	cut				: 'Kes',
+	copy			: 'Kopyala',
+	paste			: 'Yapıştır',
+	print			: 'Yazdır',
+	underline		: 'Altı Çizgili',
+	bold			: 'Kalın',
+	italic			: 'İtalik',
+	selectAll		: 'Tümünü Seç',
+	removeFormat	: 'Biçimi Kaldır',
+	strike			: 'Üstü Çizgili',
+	subscript		: 'Alt Simge',
+	superscript		: 'Üst Simge',
+	horizontalrule	: 'Yatay Satır Ekle',
+	pagebreak		: 'Sayfa Sonu Ekle',
+	unlink			: 'Köprü Kaldır',
+	undo			: 'Geri Al',
+	redo			: 'Tekrarla',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Sunucuyu Gez',
+		url				: 'URL',
+		protocol		: 'Protokol',
+		upload			: 'Karşıya Yükle',
+		uploadSubmit	: 'Sunucuya Yolla',
+		image			: 'Resim',
+		flash			: 'Flash',
+		form			: 'Form',
+		checkbox		: 'Onay Kutusu',
+		radio		: 'Seçenek Düğmesi',
+		textField		: 'Metin Girişi',
+		textarea		: 'Çok Satırlı Metin',
+		hiddenField		: 'Gizli Veri',
+		button			: 'Düğme',
+		select	: 'Seçim Menüsü',
+		imageButton		: 'Resimli Düğme',
+		notSet			: '<tanımlanmamış>',
+		id				: 'Kimlik',
+		name			: 'Ad',
+		langDir			: 'Dil Yönü',
+		langDirLtr		: 'Soldan Sağa (LTR)',
+		langDirRtl		: 'Sağdan Sola (RTL)',
+		langCode		: 'Dil Kodlaması',
+		longDescr		: 'Uzun Tanımlı URL',
+		cssClass		: 'Biçem Sayfası Sınıfları',
+		advisoryTitle	: 'Danışma Başlığı',
+		cssStyle		: 'Biçem',
+		ok				: 'Tamam',
+		cancel			: 'İptal',
+		generalTab		: 'Genel',
+		advancedTab		: 'Gelişmiş',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Özel Karakter Ekle',
+		title		: 'Özel Karakter Seç'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Köprü Ekle/Düzenle',
+		menu		: 'Köprü Düzenle',
+		title		: 'Köprü',
+		info		: 'Köprü Bilgisi',
+		target		: 'Hedef',
+		upload		: 'Karşıya Yükle',
+		advanced	: 'Gelişmiş',
+		type		: 'Köprü Türü',
+		toAnchor	: 'Bu sayfada çapa',
+		toEmail		: 'E-Posta',
+		target		: 'Hedef',
+		targetNotSet	: '<tanımlanmamış>',
+		targetFrame	: '<çerçeve>',
+		targetPopup	: '<yeni açılan pencere>',
+		targetNew	: 'Yeni Pencere(_blank)',
+		targetTop	: 'En Üst Pencere (_top)',
+		targetSelf	: 'Kendi Penceresi (_self)',
+		targetParent	: 'Anne Pencere (_parent)',
+		targetFrameName	: 'Hedef Çerçeve Adı',
+		targetPopupName	: 'Yeni Açılan Pencere Adı',
+		popupFeatures	: 'Yeni Açılan Pencere Özellikleri',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Durum Çubuğu',
+		popupLocationBar	: 'Yer Çubuğu',
+		popupToolbar	: 'Araç Çubuğu',
+		popupMenuBar	: 'Menü Çubuğu',
+		popupFullScreen	: 'Tam Ekran (IE)',
+		popupScrollBars	: 'Kaydırma Çubukları',
+		popupDependent	: 'Bağımlı (Netscape)',
+		popupWidth		: 'Genişlik',
+		popupLeft		: 'Sola Göre Konum',
+		popupHeight		: 'Yükseklik',
+		popupTop		: 'Yukarıya Göre Konum',
+		id				: 'Id', // MISSING
+		langDir			: 'Dil Yönü',
+		langDirNotSet	: '<tanımlanmamış>',
+		langDirLTR		: 'Soldan Sağa (LTR)',
+		langDirRTL		: 'Sağdan Sola (RTL)',
+		acccessKey		: 'Erişim Tuşu',
+		name			: 'Ad',
+		langCode		: 'Dil Yönü',
+		tabIndex		: 'Sekme İndeksi',
+		advisoryTitle	: 'Danışma Başlığı',
+		advisoryContentType	: 'Danışma İçerik Türü',
+		cssClasses		: 'Biçem Sayfası Sınıfları',
+		charset			: 'Bağlı Kaynak Karakter Gurubu',
+		styles			: 'Biçem',
+		selectAnchor	: 'Çapa Seç',
+		anchorName		: 'Çapa Adı ile',
+		anchorId		: 'Eleman Kimlik Numarası ile',
+		emailAddress	: 'E-Posta Adresi',
+		emailSubject	: 'İleti Konusu',
+		emailBody		: 'İleti Gövdesi',
+		noAnchors		: '(Bu belgede hiç çapa yok)',
+		noUrl			: 'Lütfen köprü URL\'sini yazın',
+		noEmail			: 'Lütfen E-posta adresini yazın'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Çapa Ekle/Düzenle',
+		menu		: 'Çapa Özellikleri',
+		title		: 'Çapa Özellikleri',
+		name		: 'Çapa Adı',
+		errorName	: 'Lütfen çapa için ad giriniz'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Bul ve Değiştir',
+		find				: 'Bul',
+		replace				: 'Değiştir',
+		findWhat			: 'Aranan:',
+		replaceWith			: 'Bununla değiştir:',
+		notFoundMsg			: 'Belirtilen yazı bulunamadı.',
+		matchCase			: 'Büyük/küçük harf duyarlı',
+		matchWord			: 'Kelimenin tamamı uysun',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Tümünü Değiştir',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Tablo',
+		title		: 'Tablo Özellikleri',
+		menu		: 'Tablo Özellikleri',
+		deleteTable	: 'Tabloyu Sil',
+		rows		: 'Satırlar',
+		columns		: 'Sütunlar',
+		border		: 'Kenar Kalınlığı',
+		align		: 'Hizalama',
+		alignNotSet	: '<Tanımlanmamış>',
+		alignLeft	: 'Sol',
+		alignCenter	: 'Merkez',
+		alignRight	: 'Sağ',
+		width		: 'Genişlik',
+		widthPx		: 'piksel',
+		widthPc		: 'yüzde',
+		height		: 'Yükseklik',
+		cellSpace	: 'Izgara kalınlığı',
+		cellPad		: 'Izgara yazı arası',
+		caption		: 'Başlık',
+		summary		: 'Özet',
+		headers		: 'Başlıklar',
+		headersNone		: 'Yok',
+		headersColumn	: 'İlk Sütun',
+		headersRow		: 'İlk Satır',
+		headersBoth		: 'Her İkisi',
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Hücre',
+			insertBefore	: 'Hücre Ekle - Önce',
+			insertAfter		: 'Hücre Ekle - Sonra',
+			deleteCell		: 'Hücre Sil',
+			merge			: 'Hücreleri Birleştir',
+			mergeRight		: 'Birleştir - Sağdaki İle ',
+			mergeDown		: 'Birleştir - Aşağıdaki İle ',
+			splitHorizontal	: 'Hücreyi Yatay Böl',
+			splitVertical	: 'Hücreyi Dikey Böl',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Satır',
+			insertBefore	: 'Satır Ekle - Önce',
+			insertAfter		: 'Satır Ekle - Sonra',
+			deleteRow		: 'Satır Sil'
+		},
+
+		column :
+		{
+			menu			: 'Sütun',
+			insertBefore	: 'Kolon Ekle - Önce',
+			insertAfter		: 'Kolon Ekle - Sonra',
+			deleteColumn	: 'Sütun Sil'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Düğme Özellikleri',
+		text		: 'Metin (Değer)',
+		type		: 'Tip',
+		typeBtn		: 'Düğme',
+		typeSbm		: 'Gönder',
+		typeRst		: 'Sıfırla'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Onay Kutusu Özellikleri',
+		radioTitle	: 'Seçenek Düğmesi Özellikleri',
+		value		: 'Değer',
+		selected	: 'Seçili'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Form Özellikleri',
+		menu		: 'Form Özellikleri',
+		action		: 'İşlem',
+		method		: 'Yöntem',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Hedef',
+		targetNotSet	: '<tanımlanmamış>',
+		targetNew	: 'Yeni Pencere(_blank)',
+		targetTop	: 'En Üst Pencere (_top)',
+		targetSelf	: 'Kendi Penceresi (_self)',
+		targetParent	: 'Anne Pencere (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Seçim Menüsü Özellikleri',
+		selectInfo	: 'Bilgi',
+		opAvail		: 'Mevcut Seçenekler',
+		value		: 'Değer',
+		size		: 'Boyut',
+		lines		: 'satır',
+		chkMulti	: 'Çoklu seçime izin ver',
+		opText		: 'Metin',
+		opValue		: 'Değer',
+		btnAdd		: 'Ekle',
+		btnModify	: 'Düzenle',
+		btnUp		: 'Yukarı',
+		btnDown		: 'Aşağı',
+		btnSetValue : 'Seçili değer olarak ata',
+		btnDelete	: 'Sil'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Çok Satırlı Metin Özellikleri',
+		cols		: 'Sütunlar',
+		rows		: 'Satırlar'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Metin Girişi Özellikleri',
+		name		: 'Ad',
+		value		: 'Değer',
+		charWidth	: 'Karakter Genişliği',
+		maxChars	: 'En Fazla Karakter',
+		type		: 'Tür',
+		typeText	: 'Metin',
+		typePass	: 'Parola'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Gizli Veri Özellikleri',
+		name	: 'Ad',
+		value	: 'Değer'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Resim Özellikleri',
+		titleButton	: 'Resimli Düğme Özellikleri',
+		menu		: 'Resim Özellikleri',
+		infoTab	: 'Resim Bilgisi',
+		btnUpload	: 'Sunucuya Yolla',
+		url		: 'URL',
+		upload	: 'Karşıya Yükle',
+		alt		: 'Alternatif Yazı',
+		width		: 'Genişlik',
+		height	: 'Yükseklik',
+		lockRatio	: 'Oranı Kilitle',
+		resetSize	: 'Boyutu Başa Döndür',
+		border	: 'Kenar',
+		hSpace	: 'Yatay Boşluk',
+		vSpace	: 'Dikey Boşluk',
+		align		: 'Hizalama',
+		alignLeft	: 'Sol',
+		alignAbsBottom: 'Tam Altı',
+		alignAbsMiddle: 'Tam Ortası',
+		alignBaseline	: 'Taban Çizgisi',
+		alignBottom	: 'Alt',
+		alignMiddle	: 'Orta',
+		alignRight	: 'Sağ',
+		alignTextTop	: 'Yazı Tepeye',
+		alignTop	: 'Tepe',
+		preview	: 'Ön İzleme',
+		alertUrl	: 'Lütfen resmin URL\'sini yazınız',
+		linkTab	: 'Köprü',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Flash Özellikleri',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Flash Özellikleri',
+		chkPlay		: 'Otomatik Oynat',
+		chkLoop		: 'Döngü',
+		chkMenu		: 'Flash Menüsünü Kullan',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Boyutlandır',
+		scaleAll		: 'Hepsini Göster',
+		scaleNoBorder	: 'Kenar Yok',
+		scaleFit		: 'Tam Sığdır',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Hizalama',
+		alignLeft	: 'Sol',
+		alignAbsBottom: 'Tam Altı',
+		alignAbsMiddle: 'Tam Ortası',
+		alignBaseline	: 'Taban Çizgisi',
+		alignBottom	: 'Alt',
+		alignMiddle	: 'Orta',
+		alignRight	: 'Sağ',
+		alignTextTop	: 'Yazı Tepeye',
+		alignTop	: 'Tepe',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Arka Renk',
+		width	: 'Genişlik',
+		height	: 'Yükseklik',
+		hSpace	: 'Yatay Boşluk',
+		vSpace	: 'Dikey Boşluk',
+		validateSrc : 'Lütfen köprü URL\'sini yazın',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Yazım Denetimi',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Sözlükte Yok',
+		changeTo		: 'Şuna değiştir:',
+		btnIgnore		: 'Yoksay',
+		btnIgnoreAll	: 'Tümünü Yoksay',
+		btnReplace		: 'Değiştir',
+		btnReplaceAll	: 'Tümünü Değiştir',
+		btnUndo			: 'Geri Al',
+		noSuggestions	: '- Öneri Yok -',
+		progress		: 'Yazım denetimi işlemde...',
+		noMispell		: 'Yazım denetimi tamamlandı: Yanlış yazıma rastlanmadı',
+		noChanges		: 'Yazım denetimi tamamlandı: Hiçbir kelime değiştirilmedi',
+		oneChange		: 'Yazım denetimi tamamlandı: Bir kelime değiştirildi',
+		manyChanges		: 'Yazım denetimi tamamlandı: %1 kelime değiştirildi',
+		ieSpellDownload	: 'Yazım denetimi yüklenmemiş. Şimdi yüklemek ister misiniz?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'İfade',
+		title	: 'İfade Ekle'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Numaralı Liste',
+	bulletedlist : 'Simgeli Liste',
+	indent : 'Sekme Arttır',
+	outdent : 'Sekme Azalt',
+
+	justify :
+	{
+		left : 'Sola Dayalı',
+		center : 'Ortalanmış',
+		right : 'Sağa Dayalı',
+		block : 'İki Kenara Yaslanmış'
+	},
+
+	blockquote : 'Blok Oluştur',
+
+	clipboard :
+	{
+		title		: 'Yapıştır',
+		cutError	: 'Gezgin yazılımınızın güvenlik ayarları düzenleyicinin otomatik kesme işlemine izin vermiyor. İşlem için (Ctrl+X) tuşlarını kullanın.',
+		copyError	: 'Gezgin yazılımınızın güvenlik ayarları düzenleyicinin otomatik kopyalama işlemine izin vermiyor. İşlem için (Ctrl+C) tuşlarını kullanın.',
+		pasteMsg	: 'Lütfen aşağıdaki kutunun içine yapıştırın. (<STRONG>Ctrl+V</STRONG>) ve <STRONG>Tamam</STRONG> butonunu tıklayın.',
+		securityMsg	: 'Gezgin yazılımınızın güvenlik ayarları düzenleyicinin direkt olarak panoya erişimine izin vermiyor. Bu pencere içine tekrar yapıştırmalısınız..'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Word\'den Yapıştır',
+		title : 'Word\'den Yapıştır',
+		advice : 'Lütfen aşağıdaki kutunun içine yapıştırın. (<STRONG>Ctrl+V</STRONG>) ve <STRONG>Tamam</STRONG> butonunu tıklayın.',
+		ignoreFontFace : 'Yazı Tipi tanımlarını yoksay',
+		removeStyle : 'Biçem Tanımlarını çıkar'
+	},
+
+	pasteText :
+	{
+		button : 'Düz Metin Olarak Yapıştır',
+		title : 'Düz Metin Olarak Yapıştır'
+	},
+
+	templates :
+	{
+		button : 'Şablonlar',
+		title : 'İçerik Şablonları',
+		insertOption: 'Mevcut içerik ile değiştir',
+		selectPromptMsg: 'Düzenleyicide açmak için lütfen bir şablon seçin.<br>(hali hazırdaki içerik kaybolacaktır.):',
+		emptyListMsg : '(Belirli bir şablon seçilmedi)'
+	},
+
+	showBlocks : 'Blokları Göster',
+
+	stylesCombo :
+	{
+		label : 'Biçem',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Biçim',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Biçim',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normal',
+		tag_pre : 'Biçimli',
+		tag_address : 'Adres',
+		tag_h1 : 'Başlık 1',
+		tag_h2 : 'Başlık 2',
+		tag_h3 : 'Başlık 3',
+		tag_h4 : 'Başlık 4',
+		tag_h5 : 'Başlık 5',
+		tag_h6 : 'Başlık 6',
+		tag_div : 'Paragraf (DIV)'
+	},
+
+	font :
+	{
+		label : 'Yazı Türü',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Yazı Türü',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Boyut',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Boyut',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Yazı Rengi',
+		bgColorTitle : 'Arka Renk',
+		auto : 'Otomatik',
+		more : 'Diğer renkler...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/uk.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/uk.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/uk.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Ukrainian language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['uk'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Джерело',
+	newPage			: 'Нова сторінка',
+	save			: 'Зберегти',
+	preview			: 'Попередній перегляд',
+	cut				: 'Вирізати',
+	copy			: 'Копіювати',
+	paste			: 'Вставити',
+	print			: 'Друк',
+	underline		: 'Підкреслений',
+	bold			: 'Жирний',
+	italic			: 'Курсив',
+	selectAll		: 'Виділити все',
+	removeFormat	: 'Прибрати форматування',
+	strike			: 'Закреслений',
+	subscript		: 'Підрядковий індекс',
+	superscript		: 'Надрядковий индекс',
+	horizontalrule	: 'Вставити горизонтальну лінію',
+	pagebreak		: 'Вставити розривши сторінки',
+	unlink			: 'Знищити посилання',
+	undo			: 'Повернути',
+	redo			: 'Повторити',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Передивитися на сервері',
+		url				: 'URL',
+		protocol		: 'Протокол',
+		upload			: 'Закачати',
+		uploadSubmit	: 'Надіслати на сервер',
+		image			: 'Зображення',
+		flash			: 'Flash',
+		form			: 'Форма',
+		checkbox		: 'Флагова кнопка',
+		radio		: 'Кнопка вибору',
+		textField		: 'Текстове поле',
+		textarea		: 'Текстова область',
+		hiddenField		: 'Приховане поле',
+		button			: 'Кнопка',
+		select	: 'Список',
+		imageButton		: 'Кнопка із зображенням',
+		notSet			: '<не визначено>',
+		id				: 'Ідентифікатор',
+		name			: 'Им\'я',
+		langDir			: 'Напрямок мови',
+		langDirLtr		: 'Зліва на право (LTR)',
+		langDirRtl		: 'Зправа на ліво (RTL)',
+		langCode		: 'Мова',
+		longDescr		: 'Довгий опис URL',
+		cssClass		: 'Клас CSS',
+		advisoryTitle	: 'Заголовок',
+		cssStyle		: 'Стиль CSS',
+		ok				: 'ОК',
+		cancel			: 'Скасувати',
+		generalTab		: 'Загальна',
+		advancedTab		: 'Розширений',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Вставити спеціальний символ',
+		title		: 'Оберіть спеціальний символ'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Вставити/Редагувати посилання',
+		menu		: 'Вставити посилання',
+		title		: 'Посилання',
+		info		: 'Інформація посилання',
+		target		: 'Ціль',
+		upload		: 'Закачати',
+		advanced	: 'Розширений',
+		type		: 'Тип посилання',
+		toAnchor	: 'Якір на цю сторінку',
+		toEmail		: 'Эл. пошта',
+		target		: 'Ціль',
+		targetNotSet	: '<не визначено>',
+		targetFrame	: '<фрейм>',
+		targetPopup	: '<спливаюче вікно>',
+		targetNew	: 'Нове вікно (_blank)',
+		targetTop	: 'Найвище вікно (_top)',
+		targetSelf	: 'Теж вікно (_self)',
+		targetParent	: 'Батьківське вікно (_parent)',
+		targetFrameName	: 'Ім\'я целевого фрейма',
+		targetPopupName	: 'Ім\'я спливаючого вікна',
+		popupFeatures	: 'Властивості спливаючого вікна',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Строка статусу',
+		popupLocationBar	: 'Панель локації',
+		popupToolbar	: 'Панель інструментів',
+		popupMenuBar	: 'Панель меню',
+		popupFullScreen	: 'Повний екран (IE)',
+		popupScrollBars	: 'Полоси прокрутки',
+		popupDependent	: 'Залежний (Netscape)',
+		popupWidth		: 'Ширина',
+		popupLeft		: 'Позиція зліва',
+		popupHeight		: 'Висота',
+		popupTop		: 'Позиція зверху',
+		id				: 'Id', // MISSING
+		langDir			: 'Напрямок мови',
+		langDirNotSet	: '<не визначено>',
+		langDirLTR		: 'Зліва на право (LTR)',
+		langDirRTL		: 'Зправа на ліво (RTL)',
+		acccessKey		: 'Гаряча клавіша',
+		name			: 'Им\'я',
+		langCode		: 'Напрямок мови',
+		tabIndex		: 'Послідовність переходу',
+		advisoryTitle	: 'Заголовок',
+		advisoryContentType	: 'Тип вмісту',
+		cssClasses		: 'Клас CSS',
+		charset			: 'Кодировка',
+		styles			: 'Стиль CSS',
+		selectAnchor	: 'Оберіть якір',
+		anchorName		: 'За ім\'ям якоря',
+		anchorId		: 'За ідентифікатором елемента',
+		emailAddress	: 'Адреса ел. пошти',
+		emailSubject	: 'Тема листа',
+		emailBody		: 'Тіло повідомлення',
+		noAnchors		: '(Немає якорів доступних в цьому документі)',
+		noUrl			: 'Будь ласка, занесіть URL посилання',
+		noEmail			: 'Будь ласка, занесіть адрес эл. почты'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Вставити/Редагувати якір',
+		menu		: 'Властивості якоря',
+		title		: 'Властивості якоря',
+		name		: 'Ім\'я якоря',
+		errorName	: 'Будь ласка, занесіть ім\'я якоря'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Знайти і замінити',
+		find				: 'Пошук',
+		replace				: 'Заміна',
+		findWhat			: 'Шукати:',
+		replaceWith			: 'Замінити на:',
+		notFoundMsg			: 'Вказаний текст не знайдений.',
+		matchCase			: 'Учитывать регистр',
+		matchWord			: 'Збіг цілих слів',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Замінити все',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Таблиця',
+		title		: 'Властивості таблиці',
+		menu		: 'Властивості таблиці',
+		deleteTable	: 'Видалити таблицю',
+		rows		: 'Строки',
+		columns		: 'Колонки',
+		border		: 'Розмір бордюра',
+		align		: 'Вирівнювання',
+		alignNotSet	: '<Не вст.>',
+		alignLeft	: 'Зліва',
+		alignCenter	: 'По центру',
+		alignRight	: 'Зправа',
+		width		: 'Ширина',
+		widthPx		: 'пікселів',
+		widthPc		: 'відсотків',
+		height		: 'Висота',
+		cellSpace	: 'Проміжок (spacing)',
+		cellPad		: 'Відступ (padding)',
+		caption		: 'Заголовок',
+		summary		: 'Резюме',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Осередок',
+			insertBefore	: 'Вставити комірку до',
+			insertAfter		: 'Вставити комірку після',
+			deleteCell		: 'Видалити комірки',
+			merge			: 'Об\'єднати комірки',
+			mergeRight		: 'Об\'єднати зправа',
+			mergeDown		: 'Об\'єднати до низу',
+			splitHorizontal	: 'Розділити комірку по горизонталі',
+			splitVertical	: 'Розділити комірку по вертикалі',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Рядок',
+			insertBefore	: 'Вставити рядок до',
+			insertAfter		: 'Вставити рядок після',
+			deleteRow		: 'Видалити строки'
+		},
+
+		column :
+		{
+			menu			: 'Колонка',
+			insertBefore	: 'Вставити колонку до',
+			insertAfter		: 'Вставити колонку після',
+			deleteColumn	: 'Видалити колонки'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Властивості кнопки',
+		text		: 'Текст (Значення)',
+		type		: 'Тип',
+		typeBtn		: 'Кнопка',
+		typeSbm		: 'Відправити',
+		typeRst		: 'Скинути'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Властивості флагової кнопки',
+		radioTitle	: 'Властивості кнопки вибору',
+		value		: 'Значення',
+		selected	: 'Обрана'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Властивості форми',
+		menu		: 'Властивості форми',
+		action		: 'Дія',
+		method		: 'Метод',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Ціль',
+		targetNotSet	: '<не визначено>',
+		targetNew	: 'Нове вікно (_blank)',
+		targetTop	: 'Найвище вікно (_top)',
+		targetSelf	: 'Теж вікно (_self)',
+		targetParent	: 'Батьківське вікно (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Властивості списку',
+		selectInfo	: 'Інфо',
+		opAvail		: 'Доступні варіанти',
+		value		: 'Значення',
+		size		: 'Розмір',
+		lines		: 'лінії',
+		chkMulti	: 'Дозволити обрання декількох позицій',
+		opText		: 'Текст',
+		opValue		: 'Значення',
+		btnAdd		: 'Добавити',
+		btnModify	: 'Змінити',
+		btnUp		: 'Вгору',
+		btnDown		: 'Вниз',
+		btnSetValue : 'Встановити як вибране значення',
+		btnDelete	: 'Видалити'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Властивості текстової області',
+		cols		: 'Колонки',
+		rows		: 'Строки'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Властивості текстового поля',
+		name		: 'Ім\'я',
+		value		: 'Значення',
+		charWidth	: 'Ширина',
+		maxChars	: 'Макс. кіл-ть символів',
+		type		: 'Тип',
+		typeText	: 'Текст',
+		typePass	: 'Пароль'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Властивості прихованого поля',
+		name	: 'Ім\'я',
+		value	: 'Значення'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Властивості зображення',
+		titleButton	: 'Властивості кнопки із зображенням',
+		menu		: 'Властивості зображення',
+		infoTab	: 'Інформація про изображении',
+		btnUpload	: 'Надіслати на сервер',
+		url		: 'URL',
+		upload	: 'Закачати',
+		alt		: 'Альтернативний текст',
+		width		: 'Ширина',
+		height	: 'Висота',
+		lockRatio	: 'Зберегти пропорції',
+		resetSize	: 'Скинути розмір',
+		border	: 'Бордюр',
+		hSpace	: 'Горизонтальний відступ',
+		vSpace	: 'Вертикальний відступ',
+		align		: 'Вирівнювання',
+		alignLeft	: 'По лівому краю',
+		alignAbsBottom: 'Абс по низу',
+		alignAbsMiddle: 'Абс по середині',
+		alignBaseline	: 'По базовій лінії',
+		alignBottom	: 'По низу',
+		alignMiddle	: 'По середині',
+		alignRight	: 'По правому краю',
+		alignTextTop	: 'Текст на верху',
+		alignTop	: 'По верху',
+		preview	: 'Попередній перегляд',
+		alertUrl	: 'Будь ласка, введіть URL зображення',
+		linkTab	: 'Посилання',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Властивості Flash',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Властивості Flash',
+		chkPlay		: 'Авто програвання',
+		chkLoop		: 'Зациклити',
+		chkMenu		: 'Дозволити меню Flash',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Масштаб',
+		scaleAll		: 'Показати всі',
+		scaleNoBorder	: 'Без рамки',
+		scaleFit		: 'Дійсний розмір',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Вирівнювання',
+		alignLeft	: 'По лівому краю',
+		alignAbsBottom: 'Абс по низу',
+		alignAbsMiddle: 'Абс по середині',
+		alignBaseline	: 'По базовій лінії',
+		alignBottom	: 'По низу',
+		alignMiddle	: 'По середині',
+		alignRight	: 'По правому краю',
+		alignTextTop	: 'Текст на верху',
+		alignTop	: 'По верху',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Колір фону',
+		width	: 'Ширина',
+		height	: 'Висота',
+		hSpace	: 'Горизонтальний відступ',
+		vSpace	: 'Вертикальний відступ',
+		validateSrc : 'Будь ласка, занесіть URL посилання',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Перевірити орфографію',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Не має в словнику',
+		changeTo		: 'Замінити на',
+		btnIgnore		: 'Ігнорувати',
+		btnIgnoreAll	: 'Ігнорувати все',
+		btnReplace		: 'Замінити',
+		btnReplaceAll	: 'Замінити все',
+		btnUndo			: 'Назад',
+		noSuggestions	: '- Немає припущень -',
+		progress		: 'Виконується перевірка орфографії...',
+		noMispell		: 'Перевірку орфографії завершено: помилок не знайдено',
+		noChanges		: 'Перевірку орфографії завершено: жодне слово не змінено',
+		oneChange		: 'Перевірку орфографії завершено: змінено одно слово',
+		manyChanges		: 'Перевірку орфографії завершено: 1% слів змінено',
+		ieSpellDownload	: 'Модуль перевірки орфографії не встановлено. Бажаєтн завантажити його зараз?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Смайлик',
+		title	: 'Вставити смайлик'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Нумерований список',
+	bulletedlist : 'Маркований список',
+	indent : 'Збільшити відступ',
+	outdent : 'Зменшити відступ',
+
+	justify :
+	{
+		left : 'По лівому краю',
+		center : 'По центру',
+		right : 'По правому краю',
+		block : 'По ширині'
+	},
+
+	blockquote : 'Цитата',
+
+	clipboard :
+	{
+		title		: 'Вставити',
+		cutError	: 'Настройки безпеки вашого браузера не дозволяють редактору автоматично виконувати операції вирізування. Будь ласка, використовуйте клавіатуру для цього (Ctrl+X).',
+		copyError	: 'Настройки безпеки вашого браузера не дозволяють редактору автоматично виконувати операції копіювання. Будь ласка, використовуйте клавіатуру для цього (Ctrl+C).',
+		pasteMsg	: 'Будь-ласка, вставте з буфера обміну в цю область, користуючись комбінацією клавіш (<STRONG>Ctrl+V</STRONG>) та натисніть <STRONG>OK</STRONG>.',
+		securityMsg	: 'Редактор не може отримати прямий доступ до буферу обміну у зв\'язку з налаштуваннями вашого браузера. Вам потрібно вставити інформацію повторно в це вікно.'
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Вставити з Word',
+		title : 'Вставити з Word',
+		advice : 'Будь-ласка, вставте з буфера обміну в цю область, користуючись комбінацією клавіш (<STRONG>Ctrl+V</STRONG>) та натисніть <STRONG>OK</STRONG>.',
+		ignoreFontFace : 'Ігнорувати налаштування шрифтів',
+		removeStyle : 'Видалити налаштування стилів'
+	},
+
+	pasteText :
+	{
+		button : 'Вставити тільки текст',
+		title : 'Вставити тільки текст'
+	},
+
+	templates :
+	{
+		button : 'Шаблони',
+		title : 'Шаблони змісту',
+		insertOption: 'Замінити поточний вміст',
+		selectPromptMsg: 'Оберіть, будь ласка, шаблон для відкриття в редакторі<br>(поточний зміст буде втрачено):',
+		emptyListMsg : '(Не визначено жодного шаблону)'
+	},
+
+	showBlocks : 'Показувати блоки',
+
+	stylesCombo :
+	{
+		label : 'Стиль',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Форматування',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Форматування',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Нормальний',
+		tag_pre : 'Форматований',
+		tag_address : 'Адреса',
+		tag_h1 : 'Заголовок 1',
+		tag_h2 : 'Заголовок 2',
+		tag_h3 : 'Заголовок 3',
+		tag_h4 : 'Заголовок 4',
+		tag_h5 : 'Заголовок 5',
+		tag_h6 : 'Заголовок 6',
+		tag_div : 'Нормальний (DIV)'
+	},
+
+	font :
+	{
+		label : 'Шрифт',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Шрифт',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Розмір',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Розмір',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Колір тексту',
+		bgColorTitle : 'Колір фону',
+		auto : 'Автоматичний',
+		more : 'Кольори...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/vi.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/vi.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/vi.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Vietnamese language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['vi'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: 'Mã HTML',
+	newPage			: 'Trang mới',
+	save			: 'Lưu',
+	preview			: 'Xem trước',
+	cut				: 'Cắt',
+	copy			: 'Sao chép',
+	paste			: 'Dán',
+	print			: 'In',
+	underline		: 'Gạch chân',
+	bold			: 'Đậm',
+	italic			: 'Nghiêng',
+	selectAll		: 'Chọn Tất cả',
+	removeFormat	: 'Xoá Định dạng',
+	strike			: 'Gạch xuyên ngang',
+	subscript		: 'Chỉ số dưới',
+	superscript		: 'Chỉ số trên',
+	horizontalrule	: 'Chèn Đường phân cách ngang',
+	pagebreak		: 'Chèn Ngắt trang',
+	unlink			: 'Xoá Liên kết',
+	undo			: 'Khôi phục thao tác',
+	redo			: 'Làm lại thao tác',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: 'Duyệt trên máy chủ',
+		url				: 'URL',
+		protocol		: 'Giao thức',
+		upload			: 'Tải lên',
+		uploadSubmit	: 'Tải lên Máy chủ',
+		image			: 'Hình ảnh',
+		flash			: 'Flash',
+		form			: 'Biểu mẫu',
+		checkbox		: 'Nút kiểm',
+		radio		: 'Nút chọn',
+		textField		: 'Trường văn bản',
+		textarea		: 'Vùng văn bản',
+		hiddenField		: 'Trường ẩn',
+		button			: 'Nút',
+		select	: 'Ô chọn',
+		imageButton		: 'Nút hình ảnh',
+		notSet			: '<không thiết lập>',
+		id				: 'Định danh',
+		name			: 'Tên',
+		langDir			: 'Đường dẫn Ngôn ngữ',
+		langDirLtr		: 'Trái sang Phải (LTR)',
+		langDirRtl		: 'Phải sang Trái (RTL)',
+		langCode		: 'Mã Ngôn ngữ',
+		longDescr		: 'Mô tả URL',
+		cssClass		: 'Lớp Stylesheet',
+		advisoryTitle	: 'Advisory Title',
+		cssStyle		: 'Mẫu',
+		ok				: 'Đồng ý',
+		cancel			: 'Bỏ qua',
+		generalTab		: 'Chung',
+		advancedTab		: 'Mở rộng',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: 'Chèn Ký tự đặc biệt',
+		title		: 'Hãy chọn Ký tự đặc biệt'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: 'Chèn/Sửa Liên kết',
+		menu		: 'Sửa Liên kết',
+		title		: 'Liên kết',
+		info		: 'Thông tin Liên kết',
+		target		: 'Đích',
+		upload		: 'Tải lên',
+		advanced	: 'Mở rộng',
+		type		: 'Kiểu Liên kết',
+		toAnchor	: 'Neo trong trang này',
+		toEmail		: 'Thư điện tử',
+		target		: 'Đích',
+		targetNotSet	: '<không thiết lập>',
+		targetFrame	: '<khung>',
+		targetPopup	: '<cửa sổ popup>',
+		targetNew	: 'Cửa sổ mới (_blank)',
+		targetTop	: 'Cửa sổ trên cùng(_top)',
+		targetSelf	: 'Cùng cửa sổ (_self)',
+		targetParent	: 'Cửa sổ cha (_parent)',
+		targetFrameName	: 'Tên Khung đích',
+		targetPopupName	: 'Tên Cửa sổ Popup',
+		popupFeatures	: 'Đặc điểm của Cửa sổ Popup',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: 'Thanh trạng thái',
+		popupLocationBar	: 'Thanh vị trí',
+		popupToolbar	: 'Thanh công cụ',
+		popupMenuBar	: 'Thanh Menu',
+		popupFullScreen	: 'Toàn màn hình (IE)',
+		popupScrollBars	: 'Thanh cuộn',
+		popupDependent	: 'Phụ thuộc (Netscape)',
+		popupWidth		: 'Rộng',
+		popupLeft		: 'Vị trí Trái',
+		popupHeight		: 'Cao',
+		popupTop		: 'Vị trí Trên',
+		id				: 'Id', // MISSING
+		langDir			: 'Đường dẫn Ngôn ngữ',
+		langDirNotSet	: '<không thiết lập>',
+		langDirLTR		: 'Trái sang Phải (LTR)',
+		langDirRTL		: 'Phải sang Trái (RTL)',
+		acccessKey		: 'Phím Hỗ trợ truy cập',
+		name			: 'Tên',
+		langCode		: 'Đường dẫn Ngôn ngữ',
+		tabIndex		: 'Chỉ số của Tab',
+		advisoryTitle	: 'Advisory Title',
+		advisoryContentType	: 'Advisory Content Type',
+		cssClasses		: 'Lớp Stylesheet',
+		charset			: 'Bảng mã của tài nguyên được liên kết đến',
+		styles			: 'Mẫu',
+		selectAnchor	: 'Chọn một Neo',
+		anchorName		: 'Theo Tên Neo',
+		anchorId		: 'Theo Định danh Element',
+		emailAddress	: 'Thư điện tử',
+		emailSubject	: 'Tiêu đề Thông điệp',
+		emailBody		: 'Nội dung Thông điệp',
+		noAnchors		: '(Không có Neo nào trong tài liệu)',
+		noUrl			: 'Hãy đưa vào Liên kết URL',
+		noEmail			: 'Hãy đưa vào địa chỉ thư điện tử'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: 'Chèn/Sửa Neo',
+		menu		: 'Thuộc tính Neo',
+		title		: 'Thuộc tính Neo',
+		name		: 'Tên của Neo',
+		errorName	: 'Hãy nhập vào tên của Neo'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: 'Tìm kiếm và Thay Thế',
+		find				: 'Tìm kiếm',
+		replace				: 'Thay thế',
+		findWhat			: 'Tìm chuỗi:',
+		replaceWith			: 'Thay bằng:',
+		notFoundMsg			: 'Không tìm thấy chuỗi cần tìm.',
+		matchCase			: 'Phân biệt chữ hoa/thường',
+		matchWord			: 'Đúng toàn bộ từ',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: 'Thay thế Tất cả',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: 'Bảng',
+		title		: 'Thuộc tính bảng',
+		menu		: 'Thuộc tính bảng',
+		deleteTable	: 'Xóa Bảng',
+		rows		: 'Hàng',
+		columns		: 'Cột',
+		border		: 'Cỡ Đường viền',
+		align		: 'Canh lề',
+		alignNotSet	: '<Chưa thiết lập>',
+		alignLeft	: 'Trái',
+		alignCenter	: 'Giữa',
+		alignRight	: 'Phải',
+		width		: 'Rộng',
+		widthPx		: 'điểm (px)',
+		widthPc		: '%',
+		height		: 'Cao',
+		cellSpace	: 'Khoảng cách Ô',
+		cellPad		: 'Đệm Ô',
+		caption		: 'Đầu đề',
+		summary		: 'Tóm lược',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: 'Ô',
+			insertBefore	: 'Chèn Ô Phía trước',
+			insertAfter		: 'Chèn Ô Phía sau',
+			deleteCell		: 'Xoá Ô',
+			merge			: 'Kết hợp Ô',
+			mergeRight		: 'Kết hợp Sang phải',
+			mergeDown		: 'Kết hợp Xuống dưới',
+			splitHorizontal	: 'Tách ngang Ô',
+			splitVertical	: 'Tách dọc Ô',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: 'Hàng',
+			insertBefore	: 'Chèn Hàng Phía trước',
+			insertAfter		: 'Chèn Hàng Phía sau',
+			deleteRow		: 'Xoá Hàng'
+		},
+
+		column :
+		{
+			menu			: 'Cột',
+			insertBefore	: 'Chèn Cột Phía trước',
+			insertAfter		: 'Chèn Cột Phía sau',
+			deleteColumn	: 'Xoá Cột'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: 'Thuộc tính Nút',
+		text		: 'Chuỗi hiển thị (Giá trị)',
+		type		: 'Kiểu',
+		typeBtn		: 'Nút Bấm',
+		typeSbm		: 'Nút Gửi',
+		typeRst		: 'Nút Nhập lại'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : 'Thuộc tính Nút kiểm',
+		radioTitle	: 'Thuộc tính Nút chọn',
+		value		: 'Giá trị',
+		selected	: 'Được chọn'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: 'Thuộc tính Biểu mẫu',
+		menu		: 'Thuộc tính Biểu mẫu',
+		action		: 'Hành động',
+		method		: 'Phương thức',
+		encoding	: 'Encoding', // MISSING
+		target		: 'Đích',
+		targetNotSet	: '<không thiết lập>',
+		targetNew	: 'Cửa sổ mới (_blank)',
+		targetTop	: 'Cửa sổ trên cùng(_top)',
+		targetSelf	: 'Cùng cửa sổ (_self)',
+		targetParent	: 'Cửa sổ cha (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: 'Thuộc tính Ô chọn',
+		selectInfo	: 'Thông tin',
+		opAvail		: 'Các tùy chọn có thể sử dụng',
+		value		: 'Giá trị',
+		size		: 'Kích cỡ',
+		lines		: 'dòng',
+		chkMulti	: 'Cho phép chọn nhiều',
+		opText		: 'Văn bản',
+		opValue		: 'Giá trị',
+		btnAdd		: 'Thêm',
+		btnModify	: 'Thay đổi',
+		btnUp		: 'Lên',
+		btnDown		: 'Xuống',
+		btnSetValue : 'Giá trị được chọn',
+		btnDelete	: 'Xoá'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: 'Thuộc tính Vùng văn bản',
+		cols		: 'Cột',
+		rows		: 'Hàng'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: 'Thuộc tính Trường văn bản',
+		name		: 'Tên',
+		value		: 'Giá trị',
+		charWidth	: 'Rộng',
+		maxChars	: 'Số Ký tự tối đa',
+		type		: 'Kiểu',
+		typeText	: 'Ký tự',
+		typePass	: 'Mật khẩu'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: 'Thuộc tính Trường ẩn',
+		name	: 'Tên',
+		value	: 'Giá trị'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: 'Thuộc tính Hình ảnh',
+		titleButton	: 'Thuộc tính Nút hình ảnh',
+		menu		: 'Thuộc tính Hình ảnh',
+		infoTab	: 'Thông tin Hình ảnh',
+		btnUpload	: 'Tải lên Máy chủ',
+		url		: 'URL',
+		upload	: 'Tải lên',
+		alt		: 'Chú thích Hình ảnh',
+		width		: 'Rộng',
+		height	: 'Cao',
+		lockRatio	: 'Giữ nguyên tỷ lệ',
+		resetSize	: 'Kích thước gốc',
+		border	: 'Đường viền',
+		hSpace	: 'HSpace',
+		vSpace	: 'VSpace',
+		align		: 'Vị trí',
+		alignLeft	: 'Trái',
+		alignAbsBottom: 'Dưới tuyệt đối',
+		alignAbsMiddle: 'Giữa tuyệt đối',
+		alignBaseline	: 'Đường cơ sở',
+		alignBottom	: 'Dưới',
+		alignMiddle	: 'Giữa',
+		alignRight	: 'Phải',
+		alignTextTop	: 'Phía trên chữ',
+		alignTop	: 'Trên',
+		preview	: 'Xem trước',
+		alertUrl	: 'Hãy đưa vào URL của hình ảnh',
+		linkTab	: 'Liên kết',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Thuộc tính Flash',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Thuộc tính Flash',
+		chkPlay		: 'Tự động chạy',
+		chkLoop		: 'Lặp',
+		chkMenu		: 'Cho phép bật Menu của Flash',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: 'Tỷ lệ',
+		scaleAll		: 'Hiển thị tất cả',
+		scaleNoBorder	: 'Không đường viền',
+		scaleFit		: 'Vừa vặn',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: 'Vị trí',
+		alignLeft	: 'Trái',
+		alignAbsBottom: 'Dưới tuyệt đối',
+		alignAbsMiddle: 'Giữa tuyệt đối',
+		alignBaseline	: 'Đường cơ sở',
+		alignBottom	: 'Dưới',
+		alignMiddle	: 'Giữa',
+		alignRight	: 'Phải',
+		alignTextTop	: 'Phía trên chữ',
+		alignTop	: 'Trên',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: 'Màu nền',
+		width	: 'Rộng',
+		height	: 'Cao',
+		hSpace	: 'HSpace',
+		vSpace	: 'VSpace',
+		validateSrc : 'Hãy đưa vào Liên kết URL',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: 'Kiểm tra Chính tả',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: 'Không có trong từ điển',
+		changeTo		: 'Chuyển thành',
+		btnIgnore		: 'Bỏ qua',
+		btnIgnoreAll	: 'Bỏ qua Tất cả',
+		btnReplace		: 'Thay thế',
+		btnReplaceAll	: 'Thay thế Tất cả',
+		btnUndo			: 'Phục hồi lại',
+		noSuggestions	: '- Không đưa ra gợi ý về từ -',
+		progress		: 'Đang tiến hành kiểm tra chính tả...',
+		noMispell		: 'Hoàn tất kiểm tra chính tả: Không có lỗi chính tả',
+		noChanges		: 'Hoàn tất kiểm tra chính tả: Không có từ nào được thay đổi',
+		oneChange		: 'Hoàn tất kiểm tra chính tả: Một từ đã được thay đổi',
+		manyChanges		: 'Hoàn tất kiểm tra chính tả: %1 từ đã được thay đổi',
+		ieSpellDownload	: 'Chức năng kiểm tra chính tả chưa được cài đặt. Bạn có muốn tải về ngay bây giờ?'
+	},
+
+	smiley :
+	{
+		toolbar	: 'Hình biểu lộ cảm xúc (mặt cười)',
+		title	: 'Chèn Hình biểu lộ cảm xúc (mặt cười)'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : 'Danh sách có thứ tự',
+	bulletedlist : 'Danh sách không thứ tự',
+	indent : 'Dịch vào trong',
+	outdent : 'Dịch ra ngoài',
+
+	justify :
+	{
+		left : 'Canh trái',
+		center : 'Canh giữa',
+		right : 'Canh phải',
+		block : 'Canh đều'
+	},
+
+	blockquote : 'Khối Trích dẫn',
+
+	clipboard :
+	{
+		title		: 'Dán',
+		cutError	: 'Các thiết lập bảo mật của trình duyệt không cho phép trình biên tập tự động thực thi lệnh cắt. Hãy sử dụng bàn phím cho lệnh này (Ctrl+X).',
+		copyError	: 'Các thiết lập bảo mật của trình duyệt không cho phép trình biên tập tự động thực thi lệnh sao chép. Hãy sử dụng bàn phím cho lệnh này (Ctrl+C).',
+		pasteMsg	: 'Hãy dán nội dung vào trong khung bên dưới, sử dụng tổ hợp phím (<STRONG>Ctrl+V</STRONG>) và nhấn vào nút <STRONG>Đồng ý</STRONG>.',
+		securityMsg	: 'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.' // MISSING
+	},
+
+	pastefromword :
+	{
+		toolbar : 'Dán với định dạng Word',
+		title : 'Dán với định dạng Word',
+		advice : 'Hãy dán nội dung vào trong khung bên dưới, sử dụng tổ hợp phím (<STRONG>Ctrl+V</STRONG>) và nhấn vào nút <STRONG>Đồng ý</STRONG>.',
+		ignoreFontFace : 'Chấp nhận các định dạng phông',
+		removeStyle : 'Gỡ bỏ các định dạng Styles'
+	},
+
+	pasteText :
+	{
+		button : 'Dán theo định dạng văn bản thuần',
+		title : 'Dán theo định dạng văn bản thuần'
+	},
+
+	templates :
+	{
+		button : 'Mẫu dựng sẵn',
+		title : 'Nội dung Mẫu dựng sẵn',
+		insertOption: 'Thay thế nội dung hiện tại',
+		selectPromptMsg: 'Hãy chọn Mẫu dựng sẵn để mở trong trình biên tập<br>(nội dung hiện tại sẽ bị mất):',
+		emptyListMsg : '(Không có Mẫu dựng sẵn nào được định nghĩa)'
+	},
+
+	showBlocks : 'Hiển thị các Khối',
+
+	stylesCombo :
+	{
+		label : 'Mẫu',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : 'Định dạng',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : 'Định dạng',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : 'Normal',
+		tag_pre : 'Formatted',
+		tag_address : 'Address',
+		tag_h1 : 'Heading 1',
+		tag_h2 : 'Heading 2',
+		tag_h3 : 'Heading 3',
+		tag_h4 : 'Heading 4',
+		tag_h5 : 'Heading 5',
+		tag_h6 : 'Heading 6',
+		tag_div : 'Normal (DIV)'
+	},
+
+	font :
+	{
+		label : 'Phông',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : 'Phông',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : 'Cỡ chữ',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : 'Cỡ chữ',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : 'Màu chữ',
+		bgColorTitle : 'Màu nền',
+		auto : 'Tự động',
+		more : 'Màu khác...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/zh-cn.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/zh-cn.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/zh-cn.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Chinese Simplified language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['zh-cn'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: '源代码',
+	newPage			: '新建',
+	save			: '保存',
+	preview			: '预览',
+	cut				: '剪切',
+	copy			: '复制',
+	paste			: '粘贴',
+	print			: '打印',
+	underline		: '下划线',
+	bold			: '加粗',
+	italic			: '倾斜',
+	selectAll		: '全选',
+	removeFormat	: '清除格式',
+	strike			: '删除线',
+	subscript		: '下标',
+	superscript		: '上标',
+	horizontalrule	: '插入水平线',
+	pagebreak		: '插入分页符',
+	unlink			: '取消超链接',
+	undo			: '撤消',
+	redo			: '重做',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: '浏览服务器',
+		url				: '源文件',
+		protocol		: '协议',
+		upload			: '上传',
+		uploadSubmit	: '发送到服务器上',
+		image			: '图象',
+		flash			: 'Flash',
+		form			: '表单',
+		checkbox		: '复选框',
+		radio		: '单选按钮',
+		textField		: '单行文本',
+		textarea		: '多行文本',
+		hiddenField		: '隐藏域',
+		button			: '按钮',
+		select	: '列表/菜单',
+		imageButton		: '图像域',
+		notSet			: '<没有设置>',
+		id				: 'ID',
+		name			: '名称',
+		langDir			: '语言方向',
+		langDirLtr		: '从左到右 (LTR)',
+		langDirRtl		: '从右到左 (RTL)',
+		langCode		: '语言代码',
+		longDescr		: '详细说明地址',
+		cssClass		: '样式类名称',
+		advisoryTitle	: '标题',
+		cssStyle		: '行内样式',
+		ok				: '确定',
+		cancel			: '取消',
+		generalTab		: '常规',
+		advancedTab		: '高级',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: '插入特殊符号',
+		title		: '选择特殊符号'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: '插入/编辑超链接',
+		menu		: '编辑超链接',
+		title		: '超链接',
+		info		: '超链接信息',
+		target		: '目标',
+		upload		: '上传',
+		advanced	: '高级',
+		type		: '超链接类型',
+		toAnchor	: '页内锚点链接',
+		toEmail		: '电子邮件',
+		target		: '目标',
+		targetNotSet	: '<没有设置>',
+		targetFrame	: '<框架>',
+		targetPopup	: '<弹出窗口>',
+		targetNew	: '新窗口 (_blank)',
+		targetTop	: '整页 (_top)',
+		targetSelf	: '本窗口 (_self)',
+		targetParent	: '父窗口 (_parent)',
+		targetFrameName	: '目标框架名称',
+		targetPopupName	: '弹出窗口名称',
+		popupFeatures	: '弹出窗口属性',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: '状态栏',
+		popupLocationBar	: '地址栏',
+		popupToolbar	: '工具栏',
+		popupMenuBar	: '菜单栏',
+		popupFullScreen	: '全屏 (IE)',
+		popupScrollBars	: '滚动条',
+		popupDependent	: '依附 (NS)',
+		popupWidth		: '宽',
+		popupLeft		: '左',
+		popupHeight		: '高',
+		popupTop		: '右',
+		id				: 'Id', // MISSING
+		langDir			: '语言方向',
+		langDirNotSet	: '<没有设置>',
+		langDirLTR		: '从左到右 (LTR)',
+		langDirRTL		: '从右到左 (RTL)',
+		acccessKey		: '访问键',
+		name			: '名称',
+		langCode		: '语言方向',
+		tabIndex		: 'Tab 键次序',
+		advisoryTitle	: '标题',
+		advisoryContentType	: '内容类型',
+		cssClasses		: '样式类名称',
+		charset			: '字符编码',
+		styles			: '行内样式',
+		selectAnchor	: '选择一个锚点',
+		anchorName		: '按锚点名称',
+		anchorId		: '按锚点 ID',
+		emailAddress	: '地址',
+		emailSubject	: '主题',
+		emailBody		: '内容',
+		noAnchors		: '(此文档没有可用的锚点)',
+		noUrl			: '请输入超链接地址',
+		noEmail			: '请输入电子邮件地址'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: '插入/编辑锚点链接',
+		menu		: '锚点链接属性',
+		title		: '锚点链接属性',
+		name		: '锚点名称',
+		errorName	: '请输入锚点名称'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: '查找和替换',
+		find				: '查找',
+		replace				: '替换',
+		findWhat			: '查找:',
+		replaceWith			: '替换:',
+		notFoundMsg			: '指定文本没有找到。',
+		matchCase			: '区分大小写',
+		matchWord			: '全字匹配',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: '全部替换',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: '表格',
+		title		: '表格属性',
+		menu		: '表格属性',
+		deleteTable	: '删除表格',
+		rows		: '行数',
+		columns		: '列数',
+		border		: '边框',
+		align		: '对齐',
+		alignNotSet	: '<没有设置>',
+		alignLeft	: '左对齐',
+		alignCenter	: '居中',
+		alignRight	: '右对齐',
+		width		: '宽度',
+		widthPx		: '像素',
+		widthPc		: '百分比',
+		height		: '高度',
+		cellSpace	: '间距',
+		cellPad		: '边距',
+		caption		: '标题',
+		summary		: '摘要',
+		headers		: '标题单元格',
+		headersNone		: '无',
+		headersColumn	: '第一列',
+		headersRow		: '第一行',
+		headersBoth		: '第一列和第一行',
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: '单元格',
+			insertBefore	: '在左侧插入单元格',
+			insertAfter		: '在右侧插入单元格',
+			deleteCell		: '删除单元格',
+			merge			: '合并单元格',
+			mergeRight		: '向右合并单元格',
+			mergeDown		: '向下合并单元格',
+			splitHorizontal	: '水平拆分单元格',
+			splitVertical	: '垂直拆分单元格',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: '行',
+			insertBefore	: '在上方插入行',
+			insertAfter		: '在下方插入行',
+			deleteRow		: '删除行'
+		},
+
+		column :
+		{
+			menu			: '列',
+			insertBefore	: '在左侧插入列',
+			insertAfter		: '在右侧插入列',
+			deleteColumn	: '删除列'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: '按钮属性',
+		text		: '标签(值)',
+		type		: '类型',
+		typeBtn		: '按钮',
+		typeSbm		: '提交',
+		typeRst		: '重设'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : '复选框属性',
+		radioTitle	: '单选按钮属性',
+		value		: '选定值',
+		selected	: '已勾选'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: '表单属性',
+		menu		: '表单属性',
+		action		: '动作',
+		method		: '方法',
+		encoding	: 'Encoding', // MISSING
+		target		: '目标',
+		targetNotSet	: '<没有设置>',
+		targetNew	: '新窗口 (_blank)',
+		targetTop	: '整页 (_top)',
+		targetSelf	: '本窗口 (_self)',
+		targetParent	: '父窗口 (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: '菜单/列表属性',
+		selectInfo	: '信息',
+		opAvail		: '列表值',
+		value		: '值',
+		size		: '高度',
+		lines		: '行',
+		chkMulti	: '允许多选',
+		opText		: '标签',
+		opValue		: '选定',
+		btnAdd		: '新增',
+		btnModify	: '修改',
+		btnUp		: '上移',
+		btnDown		: '下移',
+		btnSetValue : '设为初始化时选定',
+		btnDelete	: '删除'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: '多行文本属性',
+		cols		: '字符宽度',
+		rows		: '行数'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: '单行文本属性',
+		name		: '名称',
+		value		: '初始值',
+		charWidth	: '字符宽度',
+		maxChars	: '最多字符数',
+		type		: '类型',
+		typeText	: '文本',
+		typePass	: '密码'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: '隐藏域属性',
+		name	: '名称',
+		value	: '初始值'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: '图象属性',
+		titleButton	: '图像域属性',
+		menu		: '图象属性',
+		infoTab	: '图象',
+		btnUpload	: '发送到服务器上',
+		url		: '源文件',
+		upload	: '上传',
+		alt		: '替换文本',
+		width		: '宽度',
+		height	: '高度',
+		lockRatio	: '锁定比例',
+		resetSize	: '恢复尺寸',
+		border	: '边框大小',
+		hSpace	: '水平间距',
+		vSpace	: '垂直间距',
+		align		: '对齐方式',
+		alignLeft	: '左对齐',
+		alignAbsBottom: '绝对底边',
+		alignAbsMiddle: '绝对居中',
+		alignBaseline	: '基线',
+		alignBottom	: '底边',
+		alignMiddle	: '居中',
+		alignRight	: '右对齐',
+		alignTextTop	: '文本上方',
+		alignTop	: '顶端',
+		preview	: '预览',
+		alertUrl	: '请输入图象地址',
+		linkTab	: '链接',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Flash 属性',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Flash 属性',
+		chkPlay		: '自动播放',
+		chkLoop		: '循环',
+		chkMenu		: '启用 Flash 菜单',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: '缩放',
+		scaleAll		: '全部显示',
+		scaleNoBorder	: '无边框',
+		scaleFit		: '严格匹配',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: '对齐方式',
+		alignLeft	: '左对齐',
+		alignAbsBottom: '绝对底边',
+		alignAbsMiddle: '绝对居中',
+		alignBaseline	: '基线',
+		alignBottom	: '底边',
+		alignMiddle	: '居中',
+		alignRight	: '右对齐',
+		alignTextTop	: '文本上方',
+		alignTop	: '顶端',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: '背景颜色',
+		width	: '宽度',
+		height	: '高度',
+		hSpace	: '水平间距',
+		vSpace	: '垂直间距',
+		validateSrc : '请输入超链接地址',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: '拼写检查',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: '没有在字典里',
+		changeTo		: '更改为',
+		btnIgnore		: '忽略',
+		btnIgnoreAll	: '全部忽略',
+		btnReplace		: '替换',
+		btnReplaceAll	: '全部替换',
+		btnUndo			: '撤消',
+		noSuggestions	: '- 没有建议 -',
+		progress		: '正在进行拼写检查...',
+		noMispell		: '拼写检查完成：没有发现拼写错误',
+		noChanges		: '拼写检查完成：没有更改任何单词',
+		oneChange		: '拼写检查完成：更改了一个单词',
+		manyChanges		: '拼写检查完成：更改了 %1 个单词',
+		ieSpellDownload	: '拼写检查插件还没安装，你是否想现在就下载？'
+	},
+
+	smiley :
+	{
+		toolbar	: '表情符',
+		title	: '插入表情图标'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : '编号列表',
+	bulletedlist : '项目列表',
+	indent : '增加缩进量',
+	outdent : '减少缩进量',
+
+	justify :
+	{
+		left : '左对齐',
+		center : '居中对齐',
+		right : '右对齐',
+		block : '两端对齐'
+	},
+
+	blockquote : '块引用',
+
+	clipboard :
+	{
+		title		: '粘贴',
+		cutError	: '您的浏览器安全设置不允许编辑器自动执行剪切操作，请使用键盘快捷键(Ctrl+X)来完成。',
+		copyError	: '您的浏览器安全设置不允许编辑器自动执行复制操作，请使用键盘快捷键(Ctrl+C)来完成。',
+		pasteMsg	: '请使用键盘快捷键(<STRONG>Ctrl+V</STRONG>)把内容粘贴到下面的方框里，再按 <STRONG>确定</STRONG>。',
+		securityMsg	: '因为你的浏览器的安全设置原因，本编辑器不能直接访问你的剪贴板内容，你需要在本窗口重新粘贴一次。'
+	},
+
+	pastefromword :
+	{
+		toolbar : '从 MS Word 粘贴',
+		title : '从 MS Word 粘贴',
+		advice : '请使用键盘快捷键(<STRONG>Ctrl+V</STRONG>)把内容粘贴到下面的方框里，再按 <STRONG>确定</STRONG>。',
+		ignoreFontFace : '忽略 Font 标签',
+		removeStyle : '清理 CSS 样式'
+	},
+
+	pasteText :
+	{
+		button : '粘贴为无格式文本',
+		title : '粘贴为无格式文本'
+	},
+
+	templates :
+	{
+		button : '模板',
+		title : '内容模板',
+		insertOption: '替换当前内容',
+		selectPromptMsg: '请选择编辑器内容模板:',
+		emptyListMsg : '(没有模板)'
+	},
+
+	showBlocks : '显示区块',
+
+	stylesCombo :
+	{
+		label : '样式',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : '格式',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : '格式',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : '普通',
+		tag_pre : '已编排格式',
+		tag_address : '地址',
+		tag_h1 : '标题 1',
+		tag_h2 : '标题 2',
+		tag_h3 : '标题 3',
+		tag_h4 : '标题 4',
+		tag_h5 : '标题 5',
+		tag_h6 : '标题 6',
+		tag_div : '段落(DIV)'
+	},
+
+	font :
+	{
+		label : '字体',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : '字体',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : '大小',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : '大小',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : '文本颜色',
+		bgColorTitle : '背景颜色',
+		auto : '自动',
+		more : '其它颜色...'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/lang/zh.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/lang/zh.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/lang/zh.js	(revision 3747)
@@ -0,0 +1,673 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
+ * Chinese Traditional language.
+ */
+
+/**#@+
+   @type String
+   @example
+*/
+
+/**
+ * Constains the dictionary of language entries.
+ * @namespace
+ */
+CKEDITOR.lang['zh'] =
+{
+	/**
+	 * The language reading direction. Possible values are "rtl" for
+	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
+	 * languages (like English).
+	 * @default 'ltr'
+	 */
+	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1', // MISSING
+
+	// Toolbar buttons without dialogs.
+	source			: '原始碼',
+	newPage			: '開新檔案',
+	save			: '儲存',
+	preview			: '預覽',
+	cut				: '剪下',
+	copy			: '複製',
+	paste			: '貼上',
+	print			: '列印',
+	underline		: '底線',
+	bold			: '粗體',
+	italic			: '斜體',
+	selectAll		: '全選',
+	removeFormat	: '清除格式',
+	strike			: '刪除線',
+	subscript		: '下標',
+	superscript		: '上標',
+	horizontalrule	: '插入水平線',
+	pagebreak		: '插入分頁符號',
+	unlink			: '移除超連結',
+	undo			: '復原',
+	redo			: '重複',
+
+	// Common messages and labels.
+	common :
+	{
+		browseServer	: '瀏覽伺服器端',
+		url				: 'URL',
+		protocol		: '通訊協定',
+		upload			: '上傳',
+		uploadSubmit	: '上傳至伺服器',
+		image			: '影像',
+		flash			: 'Flash',
+		form			: '表單',
+		checkbox		: '核取方塊',
+		radio		: '選項按鈕',
+		textField		: '文字方塊',
+		textarea		: '文字區域',
+		hiddenField		: '隱藏欄位',
+		button			: '按鈕',
+		select	: '清單/選單',
+		imageButton		: '影像按鈕',
+		notSet			: '<尚未設定>',
+		id				: 'ID',
+		name			: '名稱',
+		langDir			: '語言方向',
+		langDirLtr		: '由左而右 (LTR)',
+		langDirRtl		: '由右而左 (RTL)',
+		langCode		: '語言代碼',
+		longDescr		: '詳細 URL',
+		cssClass		: '樣式表類別',
+		advisoryTitle	: '標題',
+		cssStyle		: '樣式',
+		ok				: '確定',
+		cancel			: '取消',
+		generalTab		: '一般',
+		advancedTab		: '進階',
+		validateNumberFailed	: 'This value is not a number.', // MISSING
+		confirmNewPage	: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
+		confirmCancel	: 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
+
+		// Put the voice-only part of the label in the span.
+		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
+	},
+
+	// Special char dialog.
+	specialChar		:
+	{
+		toolbar		: '插入特殊符號',
+		title		: '請選擇特殊符號'
+	},
+
+	// Link dialog.
+	link :
+	{
+		toolbar		: '插入/編輯超連結',
+		menu		: '編輯超連結',
+		title		: '超連結',
+		info		: '超連結資訊',
+		target		: '目標',
+		upload		: '上傳',
+		advanced	: '進階',
+		type		: '超連接類型',
+		toAnchor	: '本頁錨點',
+		toEmail		: '電子郵件',
+		target		: '目標',
+		targetNotSet	: '<尚未設定>',
+		targetFrame	: '<框架>',
+		targetPopup	: '<快顯視窗>',
+		targetNew	: '新視窗 (_blank)',
+		targetTop	: '最上層視窗 (_top)',
+		targetSelf	: '本視窗 (_self)',
+		targetParent	: '父視窗 (_parent)',
+		targetFrameName	: '目標框架名稱',
+		targetPopupName	: '快顯視窗名稱',
+		popupFeatures	: '快顯視窗屬性',
+		popupResizable	: 'Resizable', // MISSING
+		popupStatusBar	: '狀態列',
+		popupLocationBar	: '網址列',
+		popupToolbar	: '工具列',
+		popupMenuBar	: '選單列',
+		popupFullScreen	: '全螢幕 (IE)',
+		popupScrollBars	: '捲軸',
+		popupDependent	: '從屬 (NS)',
+		popupWidth		: '寬',
+		popupLeft		: '左',
+		popupHeight		: '高',
+		popupTop		: '右',
+		id				: 'Id', // MISSING
+		langDir			: '語言方向',
+		langDirNotSet	: '<尚未設定>',
+		langDirLTR		: '由左而右 (LTR)',
+		langDirRTL		: '由右而左 (RTL)',
+		acccessKey		: '存取鍵',
+		name			: '名稱',
+		langCode		: '語言方向',
+		tabIndex		: '定位順序',
+		advisoryTitle	: '標題',
+		advisoryContentType	: '內容類型',
+		cssClasses		: '樣式表類別',
+		charset			: '連結資源之編碼',
+		styles			: '樣式',
+		selectAnchor	: '請選擇錨點',
+		anchorName		: '依錨點名稱',
+		anchorId		: '依元件 ID',
+		emailAddress	: '電子郵件',
+		emailSubject	: '郵件主旨',
+		emailBody		: '郵件內容',
+		noAnchors		: '(本文件尚無可用之錨點)',
+		noUrl			: '請輸入欲連結的 URL',
+		noEmail			: '請輸入電子郵件位址'
+	},
+
+	// Anchor dialog
+	anchor :
+	{
+		toolbar		: '插入/編輯錨點',
+		menu		: '錨點屬性',
+		title		: '錨點屬性',
+		name		: '錨點名稱',
+		errorName	: '請輸入錨點名稱'
+	},
+
+	// Find And Replace Dialog
+	findAndReplace :
+	{
+		title				: '尋找與取代',
+		find				: '尋找',
+		replace				: '取代',
+		findWhat			: '尋找:',
+		replaceWith			: '取代:',
+		notFoundMsg			: '未找到指定的文字。',
+		matchCase			: '大小寫須相符',
+		matchWord			: '全字相符',
+		matchCyclic			: 'Match cyclic', // MISSING
+		replaceAll			: '全部取代',
+		replaceSuccessMsg	: '%1 occurrence(s) replaced.' // MISSING
+	},
+
+	// Table Dialog
+	table :
+	{
+		toolbar		: '表格',
+		title		: '表格屬性',
+		menu		: '表格屬性',
+		deleteTable	: '刪除表格',
+		rows		: '列數',
+		columns		: '欄數',
+		border		: '邊框',
+		align		: '對齊',
+		alignNotSet	: '<未設定>',
+		alignLeft	: '靠左對齊',
+		alignCenter	: '置中',
+		alignRight	: '靠右對齊',
+		width		: '寬度',
+		widthPx		: '像素',
+		widthPc		: '百分比',
+		height		: '高度',
+		cellSpace	: '間距',
+		cellPad		: '內距',
+		caption		: '標題',
+		summary		: '摘要',
+		headers		: 'Headers', // MISSING
+		headersNone		: 'None', // MISSING
+		headersColumn	: 'First column', // MISSING
+		headersRow		: 'First Row', // MISSING
+		headersBoth		: 'Both', // MISSING
+		invalidRows		: 'Number of rows must be a number greater than 0.', // MISSING
+		invalidCols		: 'Number of columns must be a number greater than 0.', // MISSING
+		invalidBorder	: 'Border size must be a number.', // MISSING
+		invalidWidth	: 'Table width must be a number.', // MISSING
+		invalidHeight	: 'Table height must be a number.', // MISSING
+		invalidCellSpacing	: 'Cell spacing must be a number.', // MISSING
+		invalidCellPadding	: 'Cell padding must be a number.', // MISSING
+
+		cell :
+		{
+			menu			: '儲存格',
+			insertBefore	: '向左插入儲存格',
+			insertAfter		: '向右插入儲存格',
+			deleteCell		: '刪除儲存格',
+			merge			: '合併儲存格',
+			mergeRight		: '向右合併儲存格',
+			mergeDown		: '向下合併儲存格',
+			splitHorizontal	: '橫向分割儲存格',
+			splitVertical	: '縱向分割儲存格',
+			title			: 'Cell Properties', // MISSING
+			cellType		: 'Cell Type', // MISSING
+			rowSpan			: 'Rows Span', // MISSING
+			colSpan			: 'Columns Span', // MISSING
+			wordWrap		: 'Word Wrap', // MISSING
+			hAlign			: 'Horizontal Alignment', // MISSING
+			vAlign			: 'Vertical Alignment', // MISSING
+			alignTop		: 'Top', // MISSING
+			alignMiddle		: 'Middle', // MISSING
+			alignBottom		: 'Bottom', // MISSING
+			alignBaseline	: 'Baseline', // MISSING
+			bgColor			: 'Background Color', // MISSING
+			borderColor		: 'Border Color', // MISSING
+			data			: 'Data', // MISSING
+			header			: 'Header', // MISSING
+			yes				: 'Yes', // MISSING
+			no				: 'No', // MISSING
+			invalidWidth	: 'Cell width must be a number.', // MISSING
+			invalidHeight	: 'Cell height must be a number.', // MISSING
+			invalidRowSpan	: 'Rows span must be a whole number.', // MISSING
+			invalidColSpan	: 'Columns span must be a whole number.' // MISSING
+		},
+
+		row :
+		{
+			menu			: '列',
+			insertBefore	: '向上插入列',
+			insertAfter		: '向下插入列',
+			deleteRow		: '刪除列'
+		},
+
+		column :
+		{
+			menu			: '欄',
+			insertBefore	: '向左插入欄',
+			insertAfter		: '向右插入欄',
+			deleteColumn	: '刪除欄'
+		}
+	},
+
+	// Button Dialog.
+	button :
+	{
+		title		: '按鈕屬性',
+		text		: '顯示文字 (值)',
+		type		: '類型',
+		typeBtn		: '按鈕 (Button)',
+		typeSbm		: '送出 (Submit)',
+		typeRst		: '重設 (Reset)'
+	},
+
+	// Checkbox and Radio Button Dialogs.
+	checkboxAndRadio :
+	{
+		checkboxTitle : '核取方塊屬性',
+		radioTitle	: '選項按鈕屬性',
+		value		: '選取值',
+		selected	: '已選取'
+	},
+
+	// Form Dialog.
+	form :
+	{
+		title		: '表單屬性',
+		menu		: '表單屬性',
+		action		: '動作',
+		method		: '方法',
+		encoding	: 'Encoding', // MISSING
+		target		: '目標',
+		targetNotSet	: '<尚未設定>',
+		targetNew	: '新視窗 (_blank)',
+		targetTop	: '最上層視窗 (_top)',
+		targetSelf	: '本視窗 (_self)',
+		targetParent	: '父視窗 (_parent)'
+	},
+
+	// Select Field Dialog.
+	select :
+	{
+		title		: '清單/選單屬性',
+		selectInfo	: '資訊',
+		opAvail		: '可用選項',
+		value		: '值',
+		size		: '大小',
+		lines		: '行',
+		chkMulti	: '可多選',
+		opText		: '顯示文字',
+		opValue		: '選取值',
+		btnAdd		: '新增',
+		btnModify	: '修改',
+		btnUp		: '上移',
+		btnDown		: '下移',
+		btnSetValue : '設為預設值',
+		btnDelete	: '刪除'
+	},
+
+	// Textarea Dialog.
+	textarea :
+	{
+		title		: '文字區域屬性',
+		cols		: '字元寬度',
+		rows		: '列數'
+	},
+
+	// Text Field Dialog.
+	textfield :
+	{
+		title		: '文字方塊屬性',
+		name		: '名稱',
+		value		: '值',
+		charWidth	: '字元寬度',
+		maxChars	: '最多字元數',
+		type		: '類型',
+		typeText	: '文字',
+		typePass	: '密碼'
+	},
+
+	// Hidden Field Dialog.
+	hidden :
+	{
+		title	: '隱藏欄位屬性',
+		name	: '名稱',
+		value	: '值'
+	},
+
+	// Image Dialog.
+	image :
+	{
+		title		: '影像屬性',
+		titleButton	: '影像按鈕屬性',
+		menu		: '影像屬性',
+		infoTab	: '影像資訊',
+		btnUpload	: '上傳至伺服器',
+		url		: 'URL',
+		upload	: '上傳',
+		alt		: '替代文字',
+		width		: '寬度',
+		height	: '高度',
+		lockRatio	: '等比例',
+		resetSize	: '重設為原大小',
+		border	: '邊框',
+		hSpace	: '水平距離',
+		vSpace	: '垂直距離',
+		align		: '對齊',
+		alignLeft	: '靠左對齊',
+		alignAbsBottom: '絕對下方',
+		alignAbsMiddle: '絕對中間',
+		alignBaseline	: '基準線',
+		alignBottom	: '靠下對齊',
+		alignMiddle	: '置中對齊',
+		alignRight	: '靠右對齊',
+		alignTextTop	: '文字上方',
+		alignTop	: '靠上對齊',
+		preview	: '預覽',
+		alertUrl	: '請輸入影像 URL',
+		linkTab	: '超連結',
+		button2Img	: 'Do you want to transform the selected image button on a simple image?', // MISSING
+		img2Button	: 'Do you want to transform the selected image on a image button?' // MISSING
+	},
+
+	// Flash Dialog
+	flash :
+	{
+		properties		: 'Flash 屬性',
+		propertiesTab	: 'Properties', // MISSING
+		title		: 'Flash 屬性',
+		chkPlay		: '自動播放',
+		chkLoop		: '重複',
+		chkMenu		: '開啟選單',
+		chkFull		: 'Allow Fullscreen', // MISSING
+ 		scale		: '縮放',
+		scaleAll		: '全部顯示',
+		scaleNoBorder	: '無邊框',
+		scaleFit		: '精確符合',
+		access			: 'Script Access', // MISSING
+		accessAlways	: 'Always', // MISSING
+		accessSameDomain	: 'Same domain', // MISSING
+		accessNever	: 'Never', // MISSING
+		align		: '對齊',
+		alignLeft	: '靠左對齊',
+		alignAbsBottom: '絕對下方',
+		alignAbsMiddle: '絕對中間',
+		alignBaseline	: '基準線',
+		alignBottom	: '靠下對齊',
+		alignMiddle	: '置中對齊',
+		alignRight	: '靠右對齊',
+		alignTextTop	: '文字上方',
+		alignTop	: '靠上對齊',
+		quality		: 'Quality', // MISSING
+		qualityBest		 : 'Best', // MISSING
+		qualityHigh		 : 'High', // MISSING
+		qualityAutoHigh	 : 'Auto High', // MISSING
+		qualityMedium	 : 'Medium', // MISSING
+		qualityAutoLow	 : 'Auto Low', // MISSING
+		qualityLow		 : 'Low', // MISSING
+		windowModeWindow	 : 'Window', // MISSING
+		windowModeOpaque	 : 'Opaque', // MISSING
+		windowModeTransparent	 : 'Transparent', // MISSING
+		windowMode	: 'Window mode', // MISSING
+		flashvars	: 'Variables for Flash', // MISSING
+		bgcolor	: '背景顏色',
+		width	: '寬度',
+		height	: '高度',
+		hSpace	: '水平距離',
+		vSpace	: '垂直距離',
+		validateSrc : '請輸入欲連結的 URL',
+		validateWidth : 'Width must be a number.', // MISSING
+		validateHeight : 'Height must be a number.', // MISSING
+		validateHSpace : 'HSpace must be a number.', // MISSING
+		validateVSpace : 'VSpace must be a number.' // MISSING
+	},
+
+	// Speller Pages Dialog
+	spellCheck :
+	{
+		toolbar			: '拼字檢查',
+		title			: 'Spell Check', // MISSING
+		notAvailable	: 'Sorry, but service is unavailable now.', // MISSING
+		errorLoading	: 'Error loading application service host: %s.', // MISSING
+		notInDic		: '不在字典中',
+		changeTo		: '更改為',
+		btnIgnore		: '忽略',
+		btnIgnoreAll	: '全部忽略',
+		btnReplace		: '取代',
+		btnReplaceAll	: '全部取代',
+		btnUndo			: '復原',
+		noSuggestions	: '- 無建議值 -',
+		progress		: '進行拼字檢查中…',
+		noMispell		: '拼字檢查完成：未發現拼字錯誤',
+		noChanges		: '拼字檢查完成：未更改任何單字',
+		oneChange		: '拼字檢查完成：更改了 1 個單字',
+		manyChanges		: '拼字檢查完成：更改了 %1 個單字',
+		ieSpellDownload	: '尚未安裝拼字檢查元件。您是否想要現在下載？'
+	},
+
+	smiley :
+	{
+		toolbar	: '表情符號',
+		title	: '插入表情符號'
+	},
+
+	elementsPath :
+	{
+		eleTitle : '%1 element' // MISSING
+	},
+
+	numberedlist : '編號清單',
+	bulletedlist : '項目清單',
+	indent : '增加縮排',
+	outdent : '減少縮排',
+
+	justify :
+	{
+		left : '靠左對齊',
+		center : '置中',
+		right : '靠右對齊',
+		block : '左右對齊'
+	},
+
+	blockquote : '引用文字',
+
+	clipboard :
+	{
+		title		: '貼上',
+		cutError	: '瀏覽器的安全性設定不允許編輯器自動執行剪下動作。請使用快捷鍵 (Ctrl+X) 剪下。',
+		copyError	: '瀏覽器的安全性設定不允許編輯器自動執行複製動作。請使用快捷鍵 (Ctrl+C) 複製。',
+		pasteMsg	: '請使用快捷鍵 (<strong>Ctrl+V</strong>) 貼到下方區域中並按下 <strong>確定</strong>',
+		securityMsg	: '因為瀏覽器的安全性設定，本編輯器無法直接存取您的剪貼簿資料，請您自行在本視窗進行貼上動作。'
+	},
+
+	pastefromword :
+	{
+		toolbar : '自 Word 貼上',
+		title : '自 Word 貼上',
+		advice : '請使用快捷鍵 (<strong>Ctrl+V</strong>) 貼到下方區域中並按下 <strong>確定</strong>',
+		ignoreFontFace : '移除字型設定',
+		removeStyle : '移除樣式設定'
+	},
+
+	pasteText :
+	{
+		button : '貼為純文字格式',
+		title : '貼為純文字格式'
+	},
+
+	templates :
+	{
+		button : '樣版',
+		title : '內容樣版',
+		insertOption: '取代原有內容',
+		selectPromptMsg: '請選擇欲開啟的樣版<br> (原有的內容將會被清除):',
+		emptyListMsg : '(無樣版)'
+	},
+
+	showBlocks : '顯示區塊',
+
+	stylesCombo :
+	{
+		label : '樣式',
+		voiceLabel : 'Styles', // MISSING
+		panelVoiceLabel : 'Select a style', // MISSING
+		panelTitle1 : 'Block Styles', // MISSING
+		panelTitle2 : 'Inline Styles', // MISSING
+		panelTitle3 : 'Object Styles' // MISSING
+	},
+
+	format :
+	{
+		label : '格式',
+		voiceLabel : 'Format', // MISSING
+		panelTitle : '格式',
+		panelVoiceLabel : 'Select a paragraph format', // MISSING
+
+		tag_p : '一般',
+		tag_pre : '已格式化',
+		tag_address : '位址',
+		tag_h1 : '標題 1',
+		tag_h2 : '標題 2',
+		tag_h3 : '標題 3',
+		tag_h4 : '標題 4',
+		tag_h5 : '標題 5',
+		tag_h6 : '標題 6',
+		tag_div : '一般 (DIV)'
+	},
+
+	font :
+	{
+		label : '字體',
+		voiceLabel : 'Font', // MISSING
+		panelTitle : '字體',
+		panelVoiceLabel : 'Select a font' // MISSING
+	},
+
+	fontSize :
+	{
+		label : '大小',
+		voiceLabel : 'Font Size', // MISSING
+		panelTitle : '大小',
+		panelVoiceLabel : 'Select a font size' // MISSING
+	},
+
+	colorButton :
+	{
+		textColorTitle : '文字顏色',
+		bgColorTitle : '背景顏色',
+		auto : '自動',
+		more : '更多顏色…'
+	},
+
+	colors :
+	{
+		'000' : 'Black',
+		'800000' : 'Maroon',
+		'8B4513' : 'Saddle Brown',
+		'2F4F4F' : 'Dark Slate Gray',
+		'008080' : 'Teal',
+		'000080' : 'Navy',
+		'4B0082' : 'Indigo',
+		'696969' : 'Dim Gray',
+		'B22222' : 'Fire Brick',
+		'A52A2A' : 'Brown',
+		'DAA520' : 'Golden Rod',
+		'006400' : 'Dark Green',
+		'40E0D0' : 'Turquoise',
+		'0000CD' : 'Medium Blue',
+		'800080' : 'Purple',
+		'808080' : 'Gray',
+		'F00' : 'Red',
+		'FF8C00' : 'Dark Orange',
+		'FFD700' : 'Gold',
+		'008000' : 'Green',
+		'0FF' : 'Cyan',
+		'00F' : 'Blue',
+		'EE82EE' : 'Violet',
+		'A9A9A9' : 'Dark Gray',
+		'FFA07A' : 'Light Salmon',
+		'FFA500' : 'Orange',
+		'FFFF00' : 'Yellow',
+		'00FF00' : 'Lime',
+		'AFEEEE' : 'Pale Turquoise',
+		'ADD8E6' : 'Light Blue',
+		'DDA0DD' : 'Plum',
+		'D3D3D3' : 'Light Grey',
+		'FFF0F5' : 'Lavender Blush',
+		'FAEBD7' : 'Antique White',
+		'FFFFE0' : 'Light Yellow',
+		'F0FFF0' : 'Honeydew',
+		'F0FFFF' : 'Azure',
+		'F0F8FF' : 'Alice Blue',
+		'E6E6FA' : 'Lavender',
+		'FFF' : 'White'
+	},
+
+	scayt :
+	{
+		title : 'Spell Check As You Type', // MISSING
+		enable : 'Enable SCAYT', // MISSING
+		disable : 'Disable SCAYT', // MISSING
+		about : 'About SCAYT', // MISSING
+		toggle : 'Toggle SCAYT', // MISSING
+		options : 'Options', // MISSING
+		langs : 'Languages', // MISSING
+		moreSuggestions : 'More suggestions', // MISSING
+		ignore : 'Ignore', // MISSING
+		ignoreAll : 'Ignore All', // MISSING
+		addWord : 'Add Word', // MISSING
+		emptyDic : 'Dictionary name should not be empty.', // MISSING
+		optionsTab : 'Options', // MISSING
+		languagesTab : 'Languages', // MISSING
+		dictionariesTab : 'Dictionaries', // MISSING
+		aboutTab : 'About' // MISSING
+	},
+
+	about :
+	{
+		title : 'About CKEditor', // MISSING
+		moreInfo : 'For licensing information please visit our web site:', // MISSING
+		copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
+	},
+
+	maximize : 'Maximize', // MISSING
+
+	fakeobjects :
+	{
+		anchor : 'Anchor', // MISSING
+		flash : 'Flash Animation', // MISSING
+		div : 'Page Break', // MISSING
+		unknown : 'Unknown Object' // MISSING
+	},
+
+	resize : 'Drag to resize' // MISSING
+};
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/about/dialogs/about.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/about/dialogs/about.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/about/dialogs/about.js	(revision 3747)
@@ -0,0 +1,73 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.dialog.add( 'about', function( editor )
+{
+	var lang = editor.lang.about;
+
+	return {
+		title : lang.title,
+		minWidth : 390,
+		minHeight : 230,
+		contents : [
+			{
+				id : 'tab1',
+				label : '',
+				title : '',
+				expand : true,
+				padding : 0,
+				elements :
+				[
+					{
+						type : 'html',
+						html :
+							'<style type="text/css">' +
+								'.cke_about_container' +
+								'{' +
+									'color:#000 !important;' +
+									'padding:10px 10px 0;' +
+									'margin-top:5px' +
+								'}' +
+								'.cke_about_container p' +
+								'{' +
+									'margin: 0 0 10px;' +
+								'}' +
+								'.cke_about_container .cke_about_logo' +
+								'{' +
+									'height:81px;' +
+									'background-color:#fff;' +
+									'background-image:url(' + CKEDITOR.plugins.get( 'about' ).path + 'dialogs/logo_ckeditor.png);' +
+									'background-position:center; ' +
+									'background-repeat:no-repeat;' +
+									'margin-bottom:10px;' +
+								'}' +
+								'.cke_about_container a' +
+								'{' +
+									'cursor:pointer !important;' +
+									'color:blue !important;' +
+									'text-decoration:underline !important;' +
+								'}' +
+							'</style>' +
+							'<div class="cke_about_container">' +
+								'<div class="cke_about_logo"></div>' +
+								'<p>' +
+									'CKEditor ' + CKEDITOR.version + ' (revision ' + CKEDITOR.revision + ')<br>' +
+									'<a href="http://ckeditor.com/">http://ckeditor.com</a>' +
+								'</p>' +
+								'<p>' +
+									lang.moreInfo + '<br>' +
+									'<a href="http://ckeditor.com/license">http://ckeditor.com/license</a>' +
+								'</p>' +
+								'<p>' +
+									lang.copy.replace( '$1', '<a href="http://cksource.com/">CKSource</a> - Frederico Knabben' ) +
+								'</p>' +
+							'</div>'
+					}
+				]
+			}
+		],
+		buttons : [ CKEDITOR.dialog.cancelButton ]
+	};
+} );
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/about/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/about/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/about/plugin.js	(revision 3747)
@@ -0,0 +1,22 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.plugins.add( 'about',
+{
+	init : function( editor )
+	{
+		var command = editor.addCommand( 'about', new CKEDITOR.dialogCommand( 'about' ) );
+		command.modes = { wysiwyg:1, source:1 };
+		command.canUndo = false;
+
+		editor.ui.addButton( 'About',
+			{
+				label : editor.lang.about.title,
+				command : 'about'
+			});
+
+		CKEDITOR.dialog.add( 'about', this.path + 'dialogs/about.js' );
+	}
+});
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/basicstyles/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/basicstyles/plugin.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/basicstyles/plugin.js	(revision 3747)
@@ -8,5 +8,5 @@
 	requires : [ 'styles', 'button' ],
 
-	init : function( editor, pluginPath )
+	init : function( editor )
 	{
 		// All buttons use the same code to register. So, to avoid
@@ -18,7 +18,5 @@
 			editor.attachStyleStateChange( style, function( state )
 				{
-					var command = editor.getCommand( commandName );
-					command.state = state;
-					command.fire( 'state' );
+					editor.getCommand( commandName ).setState( state );
 				});
 
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/blockquote/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/blockquote/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/blockquote/plugin.js	(revision 3747)
@@ -0,0 +1,301 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @file Blockquote.
+ */
+
+(function()
+{
+	function getState( editor, path )
+	{
+		var firstBlock = path.block || path.blockLimit;
+
+		if ( !firstBlock || firstBlock.getName() == 'body' )
+			return CKEDITOR.TRISTATE_OFF;
+
+		// See if the first block has a blockquote parent.
+		if ( firstBlock.getAscendant( 'blockquote', true ) )
+			return CKEDITOR.TRISTATE_ON;
+
+		return CKEDITOR.TRISTATE_OFF;
+	}
+
+	function onSelectionChange( evt )
+	{
+		var editor = evt.editor,
+			command = editor.getCommand( 'blockquote' );
+		command.state = getState( editor, evt.data.path );
+		command.fire( 'state' );
+	}
+
+	function noBlockLeft( bqBlock )
+	{
+		for ( var i = 0, length = bqBlock.getChildCount(), child ; i < length && ( child = bqBlock.getChild( i ) ) ; i++ )
+		{
+			if ( child.type == CKEDITOR.NODE_ELEMENT && child.isBlockBoundary() )
+				return false;
+		}
+		return true;
+	}
+
+	var commandObject =
+	{
+		exec : function( editor )
+		{
+			var state = editor.getCommand( 'blockquote' ).state,
+				selection = editor.getSelection(),
+				range = selection && selection.getRanges()[0];
+
+			if ( !range )
+				return;
+
+			var bookmarks = selection.createBookmarks();
+
+			// Kludge for #1592: if the bookmark nodes are in the beginning of
+			// blockquote, then move them to the nearest block element in the
+			// blockquote.
+			if ( CKEDITOR.env.ie )
+			{
+				var bookmarkStart = bookmarks[0].startNode,
+					bookmarkEnd = bookmarks[0].endNode,
+					cursor;
+
+				if ( bookmarkStart && bookmarkStart.getParent().getName() == 'blockquote' )
+				{
+					cursor = bookmarkStart;
+					while ( ( cursor = cursor.getNext() ) )
+					{
+						if ( cursor.type == CKEDITOR.NODE_ELEMENT &&
+								cursor.isBlockBoundary() )
+						{
+							bookmarkStart.move( cursor, true );
+							break;
+						}
+					}
+				}
+
+				if ( bookmarkEnd
+						&& bookmarkEnd.getParent().getName() == 'blockquote' )
+				{
+					cursor = bookmarkEnd;
+					while ( ( cursor = cursor.getPrevious() ) )
+					{
+						if ( cursor.type == CKEDITOR.NODE_ELEMENT &&
+								cursor.isBlockBoundary() )
+						{
+							bookmarkEnd.move( cursor );
+							break;
+						}
+					}
+				}
+			}
+
+			var iterator = range.createIterator(),
+				block;
+
+			if ( state == CKEDITOR.TRISTATE_OFF )
+			{
+				var paragraphs = [];
+				while ( ( block = iterator.getNextParagraph() ) )
+					paragraphs.push( block );
+
+				// If no paragraphs, create one from the current selection position.
+				if ( paragraphs.length < 1 )
+				{
+					var para = editor.document.createElement( editor.config.enterMode == CKEDITOR.ENTER_P ? 'p' : 'div' ),
+						firstBookmark = bookmarks.shift();
+					range.insertNode( para );
+					para.append( new CKEDITOR.dom.text( '\ufeff', editor.document ) );
+					range.moveToBookmark( firstBookmark );
+					range.selectNodeContents( para );
+					range.collapse( true );
+					firstBookmark = range.createBookmark();
+					paragraphs.push( para );
+					bookmarks.unshift( firstBookmark );
+				}
+
+				// Make sure all paragraphs have the same parent.
+				var commonParent = paragraphs[0].getParent(),
+					tmp = [];
+				for ( var i = 0 ; i < paragraphs.length ; i++ )
+				{
+					block = paragraphs[i];
+					commonParent = commonParent.getCommonAncestor( block.getParent() );
+				}
+
+				// The common parent must not be the following tags: table, tbody, tr, ol, ul.
+				var denyTags = { table : 1, tbody : 1, tr : 1, ol : 1, ul : 1 };
+				while ( denyTags[ commonParent.getName() ] )
+					commonParent = commonParent.getParent();
+
+				// Reconstruct the block list to be processed such that all resulting blocks
+				// satisfy parentNode.equals( commonParent ).
+				var lastBlock = null;
+				while ( paragraphs.length > 0 )
+				{
+					block = paragraphs.shift();
+					while ( !block.getParent().equals( commonParent ) )
+						block = block.getParent();
+					if ( !block.equals( lastBlock ) )
+						tmp.push( block );
+					lastBlock = block;
+				}
+
+				// If any of the selected blocks is a blockquote, remove it to prevent
+				// nested blockquotes.
+				while ( tmp.length > 0 )
+				{
+					block = tmp.shift();
+					if ( block.getName() == 'blockquote' )
+					{
+						var docFrag = new CKEDITOR.dom.documentFragment( editor.document );
+						while ( block.getFirst() )
+						{
+							docFrag.append( block.getFirst().remove() );
+							paragraphs.push( docFrag.getLast() );
+						}
+
+						docFrag.replace( block );
+					}
+					else
+						paragraphs.push( block );
+				}
+
+				// Now we have all the blocks to be included in a new blockquote node.
+				var bqBlock = editor.document.createElement( 'blockquote' );
+				bqBlock.insertBefore( paragraphs[0] );
+				while ( paragraphs.length > 0 )
+				{
+					block = paragraphs.shift();
+					bqBlock.append( block );
+				}
+			}
+			else if ( state == CKEDITOR.TRISTATE_ON )
+			{
+				var moveOutNodes = [],
+					database = {};
+
+				while ( ( block = iterator.getNextParagraph() ) )
+				{
+					var bqParent = null,
+						bqChild = null;
+					while ( block.getParent() )
+					{
+						if ( block.getParent().getName() == 'blockquote' )
+						{
+							bqParent = block.getParent();
+							bqChild = block;
+							break;
+						}
+						block = block.getParent();
+					}
+
+					// Remember the blocks that were recorded down in the moveOutNodes array
+					// to prevent duplicates.
+					if ( bqParent && bqChild && !bqChild.getCustomData( 'blockquote_moveout' ) )
+					{
+						moveOutNodes.push( bqChild );
+						CKEDITOR.dom.element.setMarker( database, bqChild, 'blockquote_moveout', true );
+					}
+				}
+
+				CKEDITOR.dom.element.clearAllMarkers( database );
+
+				var movedNodes = [],
+					processedBlockquoteBlocks = [];
+
+				database = {};
+				while ( moveOutNodes.length > 0 )
+				{
+					var node = moveOutNodes.shift();
+					bqBlock = node.getParent();
+
+					// If the node is located at the beginning or the end, just take it out
+					// without splitting. Otherwise, split the blockquote node and move the
+					// paragraph in between the two blockquote nodes.
+					if ( !node.getPrevious() )
+						node.remove().insertBefore( bqBlock );
+					else if ( !node.getNext() )
+						node.remove().insertAfter( bqBlock );
+					else
+					{
+						node.breakParent( node.getParent() );
+						processedBlockquoteBlocks.push( node.getNext() );
+					}
+
+					// Remember the blockquote node so we can clear it later (if it becomes empty).
+					if ( !bqBlock.getCustomData( 'blockquote_processed' ) )
+					{
+						processedBlockquoteBlocks.push( bqBlock );
+						CKEDITOR.dom.element.setMarker( database, bqBlock, 'blockquote_processed', true );
+					}
+
+					movedNodes.push( node );
+				}
+
+				CKEDITOR.dom.element.clearAllMarkers( database );
+
+				// Clear blockquote nodes that have become empty.
+				for ( i = processedBlockquoteBlocks.length - 1 ; i >= 0 ; i-- )
+				{
+					bqBlock = processedBlockquoteBlocks[i];
+					if ( noBlockLeft( bqBlock ) )
+						bqBlock.remove();
+				}
+
+				if ( editor.config.enterMode == CKEDITOR.ENTER_BR )
+				{
+					var firstTime = true;
+					while ( movedNodes.length )
+					{
+						node = movedNodes.shift();
+
+						if ( node.getName() == 'div' )
+						{
+							docFrag = new CKEDITOR.dom.documentFragment( editor.document );
+							var needBeginBr = firstTime && node.getPrevious() &&
+									!( node.getPrevious().type == CKEDITOR.NODE_ELEMENT && node.getPrevious().isBlockBoundary() );
+							if ( needBeginBr )
+								docFrag.append( editor.document.createElement( 'br' ) );
+
+							var needEndBr = node.getNext() &&
+								!( node.getNext().type == CKEDITOR.NODE_ELEMENT && node.getNext().isBlockBoundary() );
+							while ( node.getFirst() )
+								node.getFirst().remove().appendTo( docFrag );
+
+							if ( needEndBr )
+								docFrag.append( editor.document.createElement( 'br' ) );
+
+							docFrag.replace( node );
+							firstTime = false;
+						}
+					}
+				}
+			}
+
+			selection.selectBookmarks( bookmarks );
+			editor.focus();
+		}
+	};
+
+	CKEDITOR.plugins.add( 'blockquote',
+	{
+		init : function( editor )
+		{
+			editor.addCommand( 'blockquote', commandObject );
+
+			editor.ui.addButton( 'Blockquote',
+				{
+					label : editor.lang.blockquote,
+					command : 'blockquote'
+				} );
+
+			editor.on( 'selectionChange', onSelectionChange );
+		},
+
+		requires : [ 'domiterator' ]
+	} );
+})();
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/button/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/button/plugin.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/button/plugin.js	(revision 3747)
@@ -28,44 +28,15 @@
 CKEDITOR.ui.button = function( definition )
 {
-	/**
-	 * The button label.
-	 * @name CKEDITOR.ui.button.prototype.label
-	 * @type String
-	 * @example
-	 */
-	this.label = definition.label;
-
-	/**
-	 * The button advisory title. It is usually displayed as the button tooltip.
-	 * If not defined, the label is used.
-	 * @name CKEDITOR.ui.button.prototype.title
-	 * @type String
-	 * @example
-	 */
-	this.title = definition.title || definition.label;
-
-	/**
-	 * The command name associated to the button. If no command is defined, the
-	 * "click" event is used.
-	 * @name CKEDITOR.ui.button.prototype.command
-	 * @type String
-	 * @example
-	 */
-	this.command = definition.command;
-
-	this.className = definition.className || ( definition.command && 'cke_button_' + definition.command ) || '';
-
-	/**
-	 * The function to be called when the user clicks the button. If not
-	 * defined, the "command" property is required, and the command gets
-	 * executed on click.
-	 * @function
-	 * @name CKEDITOR.ui.button.prototype.click
-	 * @example
-	 */
-	this.click = definition.click || function( editor )
-		{
-			editor.execCommand( definition.command );
-		};
+	// Copy all definition properties to this object.
+	CKEDITOR.tools.extend( this, definition,
+		// Set defaults.
+		{
+			title		: definition.label,
+			className	: definition.className || ( definition.command && 'cke_button_' + definition.command ) || '',
+			click		: definition.click || function( editor )
+				{
+					editor.execCommand( definition.command );
+				}
+		});
 
 	this._ = {};
@@ -87,4 +58,6 @@
 CKEDITOR.ui.button.prototype =
 {
+	canGroup : true,
+
 	/**
 	 * Renders the button.
@@ -100,4 +73,5 @@
 
 		var id = this._.id = 'cke_' + CKEDITOR.tools.getNextNumber();
+		this._.editor = editor;
 
 		var instance =
@@ -117,4 +91,10 @@
 		};
 
+		var clickFn = CKEDITOR.tools.addFunction( instance.execute, instance );
+
+		var index = CKEDITOR.ui.button._.instances.push( instance ) - 1;
+
+		var classes = '';
+
 		// Get the command name.
 		var command = this.command;
@@ -131,14 +111,25 @@
 						this.setState( command.state );
 					}, this);
+
+				classes += 'cke_' + (
+					command.state == CKEDITOR.TRISTATE_ON ? 'on' :
+					command.state == CKEDITOR.TRISTATE_DISABLED ? 'disabled' :
+					'off' );
 			}
 		}
 
-		var index = CKEDITOR.ui.button._.instances.push( instance ) - 1;
-
-		output.push(
+		if ( !command )
+			classes	+= 'cke_off';
+
+		if ( this.className )
+			classes += ' ' + this.className;
+
+		output.push(
+			'<span class="cke_button">',
 			'<a id="', id, '"' +
-				' class="cke_button ', this.className, '" href="javascript:void(\'', ( this.label || '' ).replace( "'", '' ), '\')"' +
+				' class="', classes, '" href="javascript:void(\'', ( this.title || '' ).replace( "'", '' ), '\')"' +
 				' title="', this.title, '"' +
 				' tabindex="-1"' +
+				' role="button"' +
 				' hidefocus="true"' );
 
@@ -162,8 +153,30 @@
 		output.push(
 				' onkeydown="return CKEDITOR.ui.button._.keydown(', index, ', event);"' +
-				' onclick="return CKEDITOR.ui.button._.click(', index, ', event);">' +
-					'<span class="cke_icon"></span>' +
-					'<span class="cke_label">', this.label, '</span>' +
-			'</a>' );
+				' onfocus="return CKEDITOR.ui.button._.focus(', index, ', event);"' +
+				' onclick="CKEDITOR.tools.callFunction(', clickFn, ', this); return false;">' +
+					'<span class="cke_icon"' );
+
+		if ( this.icon )
+		{
+			var offset = ( this.iconOffset || 0 ) * -16;
+			output.push( ' style="background-image:url(', CKEDITOR.getUrl( this.icon ), ');background-position:0 ' + offset + 'px;"' );
+		}
+
+		output.push(
+					'></span>' +
+					'<span class="cke_label">', this.label, '</span>' );
+
+		if ( this.hasArrow )
+		{
+			output.push(
+					'<span class="cke_buttonarrow"></span>' );
+		}
+
+		output.push(
+			'</a>',
+			'</span>' );
+
+		if ( this.onRender )
+			this.onRender();
 
 		return instance;
@@ -172,24 +185,24 @@
 	setState : function( state )
 	{
+		if ( this._.state == state )
+			return;
+
 		var element = CKEDITOR.document.getById( this._.id );
 
-		switch ( state )
-		{
-			case CKEDITOR.TRISTATE_ON :
-				element.addClass( 'cke_on' );
-				element.removeClass( 'cke_off' );
-				element.removeClass( 'cke_disabled' );
-				break;
-			case CKEDITOR.TRISTATE_DISABLED :
-				element.addClass( 'cke_disabled' );
-				element.removeClass( 'cke_off' );
-				element.removeClass( 'cke_on' );
-				break;
-			default :
-				element.addClass( 'cke_off' );
-				element.removeClass( 'cke_on' );
-				element.removeClass( 'cke_disabled' );
-				break;
-		}
+		if ( element )
+		{
+			element.setState( state );
+
+			var htmlTitle = this.title,
+				unavailable = this._.editor.lang.common.unavailable,
+				labelElement = element.getChild( 1 );
+
+			if ( state == CKEDITOR.TRISTATE_DISABLED )
+				htmlTitle = unavailable.replace( '%1', this.title );
+
+			labelElement.setHtml( htmlTitle );
+		}
+
+		this._.state = state;
 	}
 };
@@ -203,10 +216,4 @@
 	instances : [],
 
-	click : function( index )
-	{
-		CKEDITOR.ui.button._.instances[ index ].execute();
-		return false;
-	},
-
 	keydown : function( index, ev )
 	{
@@ -218,4 +225,18 @@
 			return ( instance.onkey( instance, ev.getKeystroke() ) !== false );
 		}
+	},
+
+	focus : function( index, ev )
+	{
+		var instance = CKEDITOR.ui.button._.instances[ index ],
+			retVal;
+
+		if ( instance.onfocus )
+			retVal = ( instance.onfocus( instance, new CKEDITOR.dom.event( ev ) ) !== false );
+
+		// FF2: prevent focus event been bubbled up to editor container, which caused unexpected editor focus.
+		if ( CKEDITOR.env.gecko && CKEDITOR.env.version < 10900 )
+			ev.preventBubble();
+		return retVal;
 	}
 };
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/clipboard/dialogs/paste.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/clipboard/dialogs/paste.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/clipboard/dialogs/paste.js	(revision 3747)
@@ -0,0 +1,154 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.dialog.add( 'paste', function( editor )
+{
+	var isCustomDomain = CKEDITOR.env.ie && document.domain != window.location.hostname;
+
+	return {
+		title : editor.lang.clipboard.title,
+
+		minWidth : CKEDITOR.env.ie && CKEDITOR.env.quirks ? 370 : 350,
+		minHeight : CKEDITOR.env.ie && CKEDITOR.env.quirks ? 250 : 240,
+		htmlToLoad : '<!doctype html><script type="text/javascript">'
+				+ 'window.onload = function()'
+				+ '{'
+					+ 'if ( ' + CKEDITOR.env.ie + ' ) '
+						+ 'document.body.contentEditable = "true";'
+					+ 'else '
+						+ 'document.designMode = "on";'
+					+ 'var iframe = new window.parent.CKEDITOR.dom.element( frameElement );'
+					+ 'var dialog = iframe.getCustomData( "dialog" );'
+					+ 'dialog.fire( "iframeAdded", { iframe : iframe } );'
+				+ '};'
+				+ '</script><style>body { margin: 3px; height: 95%; } </style><body></body>',
+
+		onShow : function()
+		{
+			if ( CKEDITOR.env.ie )
+				this.getParentEditor().document.getBody().$.contentEditable = 'false';
+
+			// FIREFOX BUG: Force the browser to render the dialog to make the to-be-
+			// inserted iframe editable. (#3366)
+			this.parts.dialog.$.offsetHeight;
+
+			var container = this.getContentElement( 'general', 'editing_area' ).getElement(),
+				iframe = CKEDITOR.dom.element.createFromHtml( '<iframe src="javascript:void(0)" frameborder="0" allowtransparency="1"></iframe>' );
+
+			var lang = this.getParentEditor().lang;
+
+			iframe.setStyles(
+				{
+					width : '346px',
+					height : '130px',
+					'background-color' : 'white',
+					border : '1px solid black'
+				} );
+			iframe.setCustomData( 'dialog', this );
+
+			var accTitle = lang.editorTitle.replace( '%1', lang.clipboard.title );
+
+			if ( CKEDITOR.env.ie )
+				container.setHtml( '<legend style="position:absolute;top:-1000000px;left:-1000000px;">'
+						+ CKEDITOR.tools.htmlEncode( accTitle )
+						+ '</legend>' );
+			else
+			{
+				container.setHtml( '' );
+				container.setAttributes(
+					{
+						role : 'region',
+						title : accTitle
+					} );
+				iframe.setAttributes(
+					{
+						role : 'region',
+						title : ' '
+					} );
+			}
+			container.append( iframe );
+			if ( CKEDITOR.env.ie )
+				container.setStyle( 'height', ( iframe.$.offsetHeight + 2 ) + 'px' );
+
+			if ( isCustomDomain )
+			{
+				CKEDITOR._cke_htmlToLoad = this.definition.htmlToLoad;
+				iframe.setAttribute( 'src',
+					'javascript:void( (function(){' +
+						   'document.open();' +
+						   'document.domain="' + document.domain + '";' +
+						   'document.write( window.parent.CKEDITOR._cke_htmlToLoad );' +
+						   'delete window.parent.CKEDITOR._cke_htmlToLoad;' +
+						   'document.close();' +
+					'})() )' );
+			}
+			else
+			{
+				var doc = iframe.$.contentWindow.document;
+				doc.open();
+				doc.write( this.definition.htmlToLoad );
+				doc.close();
+			}
+		},
+
+		onHide : function()
+		{
+			if ( CKEDITOR.env.ie )
+				this.getParentEditor().document.getBody().$.contentEditable = 'true';
+		},
+
+		onOk : function()
+		{
+			var container = this.getContentElement( 'general', 'editing_area' ).getElement(),
+				iframe = container.getElementsByTag( 'iframe' ).getItem( 0 ),
+				editor = this.getParentEditor(),
+				html = iframe.$.contentWindow.document.body.innerHTML;
+
+			editor.insertHtml( html );
+
+		},
+
+		contents : [
+			{
+				id : 'general',
+				label : editor.lang.common.generalTab,
+				elements : [
+					{
+						type : 'html',
+						id : 'securityMsg',
+						html : '<div style="white-space:normal;width:340px;">' + editor.lang.clipboard.securityMsg + '</div>'
+					},
+					{
+						type : 'html',
+						id : 'pasteMsg',
+						html : '<div style="white-space:normal;width:340px;">'+editor.lang.clipboard.pasteMsg +'</div>'
+					},
+					{
+						type : 'html',
+						id : 'editing_area',
+						style : 'width: 100%; height: 100%;',
+						html : '<fieldset></fieldset>',
+						focus : function()
+						{
+							var div = this.getElement();
+							var iframe = div.getElementsByTag( 'iframe' );
+							if ( iframe.count() < 1 )
+								return;
+							iframe = iframe.getItem( 0 );
+
+							// #3291 : JAWS needs the 500ms delay to detect that the editor iframe
+							// iframe is no longer editable. So that it will put the focus into the
+							// Paste from Word dialog's editable area instead.
+							setTimeout( function()
+							{
+								iframe.$.contentWindow.focus();
+							}, 500 );
+						}
+					}
+				]
+			}
+		]
+	};
+});
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/clipboard/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/clipboard/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/clipboard/plugin.js	(revision 3747)
@@ -0,0 +1,208 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @file Clipboard support
+ */
+
+(function()
+{
+	// Tries to execute any of the paste, cut or copy commands in IE. Returns a
+	// boolean indicating that the operation succeeded.
+	var execIECommand = function( editor, command )
+	{
+		var doc = editor.document,
+			body = doc.getBody();
+
+		var	enabled = false;
+		var onExec = function()
+		{
+			enabled = true;
+		};
+
+		// The following seems to be the only reliable way to detect that
+		// clipboard commands are enabled in IE. It will fire the
+		// onpaste/oncut/oncopy events only if the security settings allowed
+		// the command to execute.
+		body.on( command, onExec );
+
+		doc.$.execCommand( command );
+
+		body.removeListener( command, onExec );
+
+		return enabled;
+	};
+
+	// Attempts to execute the Cut and Copy operations.
+	var tryToCutCopy =
+		CKEDITOR.env.ie ?
+			function( editor, type )
+			{
+				return execIECommand( editor, type );
+			}
+		:		// !IE.
+			function( editor, type )
+			{
+				try
+				{
+					// Other browsers throw an error if the command is disabled.
+					return editor.document.$.execCommand( type );
+				}
+				catch( e )
+				{
+					return false;
+				}
+			};
+
+	// A class that represents one of the cut or copy commands.
+	var cutCopyCmd = function( type )
+	{
+		this.type = type;
+		this.canUndo = ( this.type == 'cut' );		// We can't undo copy to clipboard.
+	};
+
+	cutCopyCmd.prototype =
+	{
+		exec : function( editor, data )
+		{
+			var success = tryToCutCopy( editor, this.type );
+
+			if ( !success )
+				alert( editor.lang.clipboard[ this.type + 'Error' ] );		// Show cutError or copyError.
+
+			return success;
+		}
+	};
+
+	// Paste command.
+	var pasteCmd =
+		CKEDITOR.env.ie ?
+			{
+				exec : function( editor, data )
+				{
+					// Prevent IE from pasting at the begining of the document.
+					editor.focus();
+
+					if ( !editor.fire( 'beforePaste' )
+						&& !execIECommand( editor, 'paste' ) )
+					{
+							editor.openDialog( 'paste' );
+					}
+				}
+			}
+		:
+			{
+				exec : function( editor )
+				{
+					try
+					{
+						if ( !editor.fire( 'beforePaste' )
+							&& !editor.document.$.execCommand( 'Paste', false, null ) )
+						{
+							throw 0;
+						}
+					}
+					catch ( e )
+					{
+						// Open the paste dialog.
+						editor.openDialog( 'paste' );
+					}
+				}
+			};
+
+	// Listens for some clipboard related keystrokes, so they get customized.
+	var onKey = function( event )
+	{
+		switch ( event.data.keyCode )
+		{
+			// Paste
+			case CKEDITOR.CTRL + 86 :		// CTRL+V
+			case CKEDITOR.SHIFT + 45 :		// SHIFT+INS
+
+				var editor = this;
+				editor.fire( 'saveSnapshot' );		// Save before paste
+
+				if ( editor.fire( 'beforePaste' ) )
+					event.cancel();
+
+				setTimeout( function()
+					{
+						editor.fire( 'saveSnapshot' );		// Save after paste
+					}, 0 );
+				return;
+
+			// Cut
+			case CKEDITOR.CTRL + 88 :		// CTRL+X
+			case CKEDITOR.SHIFT + 46 :		// SHIFT+DEL
+
+				// Save Undo snapshot.
+				editor = this;
+				editor.fire( 'saveSnapshot' );		// Save before paste
+				setTimeout( function()
+					{
+						editor.fire( 'saveSnapshot' );		// Save after paste
+					}, 0 );
+		}
+	};
+
+	// Register the plugin.
+	CKEDITOR.plugins.add( 'clipboard',
+		{
+			init : function( editor )
+			{
+				function addButtonCommand( buttonName, commandName, command, ctxMenuOrder )
+				{
+					var lang = editor.lang[ commandName ];
+
+					editor.addCommand( commandName, command );
+					editor.ui.addButton( buttonName,
+						{
+							label : lang,
+							command : commandName
+						});
+
+					// If the "menu" plugin is loaded, register the menu item.
+					if ( editor.addMenuItems )
+					{
+						editor.addMenuItem( commandName,
+							{
+								label : lang,
+								command : commandName,
+								group : 'clipboard',
+								order : ctxMenuOrder
+							});
+					}
+				}
+
+				addButtonCommand( 'Cut', 'cut', new cutCopyCmd( 'cut' ), 1 );
+				addButtonCommand( 'Copy', 'copy', new cutCopyCmd( 'copy' ), 4 );
+				addButtonCommand( 'Paste', 'paste', pasteCmd, 8 );
+
+				CKEDITOR.dialog.add( 'paste', CKEDITOR.getUrl( this.path + 'dialogs/paste.js' ) );
+
+				editor.on( 'key', onKey, editor );
+
+				// If the "contextmenu" plugin is loaded, register the listeners.
+				if ( editor.contextMenu )
+				{
+					function stateFromNamedCommand( command )
+					{
+						return editor.document.$.queryCommandEnabled( command ) ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED;
+					}
+
+					editor.contextMenu.addListener( function()
+						{
+							return {
+								cut : stateFromNamedCommand( 'Cut' ),
+
+								// Browser bug: 'Cut' has the correct states for both Copy and Cut.
+								copy : stateFromNamedCommand( 'Cut' ),
+								paste : CKEDITOR.env.webkit ? CKEDITOR.TRISTATE_OFF : stateFromNamedCommand( 'Paste' )
+							};
+						});
+				}
+			}
+		});
+})();
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/colorbutton/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/colorbutton/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/colorbutton/plugin.js	(revision 3747)
@@ -0,0 +1,161 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.plugins.add( 'colorbutton',
+{
+	requires : [ 'panelbutton', 'floatpanel', 'styles' ],
+
+	init : function( editor )
+	{
+		var config = editor.config,
+			lang = editor.lang.colorButton;
+
+		var clickFn;
+
+		if ( !CKEDITOR.env.hc )
+		{
+			addButton( 'TextColor', 'fore', lang.textColorTitle );
+			addButton( 'BGColor', 'back', lang.bgColorTitle );
+		}
+
+		function addButton( name, type, title )
+		{
+			editor.ui.add( name, CKEDITOR.UI_PANELBUTTON,
+				{
+					label : title,
+					title : title,
+					className : 'cke_button_' + name.toLowerCase(),
+
+					panel :
+					{
+						css : [ CKEDITOR.getUrl( editor.skinPath + 'editor.css' ) ]
+					},
+
+					onBlock : function( panel, blockName )
+					{
+						var block = panel.addBlock( blockName );
+						block.autoSize = true;
+						block.element.addClass( 'cke_colorblock' );
+						block.element.setHtml( renderColors( panel, type ) );
+
+						var keys = block.keys;
+						keys[ 39 ]	= 'next';					// ARROW-RIGHT
+						keys[ 9 ]	= 'next';					// TAB
+						keys[ 37 ]	= 'prev';					// ARROW-LEFT
+						keys[ CKEDITOR.SHIFT + 9 ]	= 'prev';	// SHIFT + TAB
+						keys[ 32 ]	= 'click';					// SPACE
+					}
+				});
+		}
+
+
+		function renderColors( panel, type )
+		{
+			var output = [],
+				colors = CKEDITOR.config.colorButton_colors.split( ',' );
+
+			var clickFn = CKEDITOR.tools.addFunction( function( color, type )
+				{
+					if ( color == '?' )
+					{
+						// TODO : Implement the colors dialog.
+						// editor.openDialog( '' );
+						return;
+					}
+
+					editor.focus();
+
+					panel.hide();
+
+					var style = new CKEDITOR.style( config['colorButton_' + type + 'Style'], color && { color : color } );
+
+					editor.fire( 'saveSnapshot' );
+					if ( color )
+						style.apply( editor.document );
+					else
+						style.remove( editor.document );
+				});
+
+			// Render the "Automatic" button.
+			output.push(
+				'<a class="cke_colorauto" _cke_focus=1 hidefocus=true' +
+					' title="', lang.auto, '"' +
+					' onclick="CKEDITOR.tools.callFunction(', clickFn, ',null,\'', type, '\');return false;"' +
+					' href="javascript:void(\'', lang.auto, '\')">' +
+					'<table cellspacing=0 cellpadding=0 width="100%">' +
+						'<tr>' +
+							'<td>' +
+								'<span class="cke_colorbox" style="background-color:#000"></span>' +
+							'</td>' +
+							'<td colspan=7 align=center>',
+								lang.auto,
+							'</td>' +
+						'</tr>' +
+					'</table>' +
+				'</a>' +
+				'<table cellspacing=0 cellpadding=0 width="100%">' );
+
+			// Render the color boxes.
+			for ( var i = 0 ; i < colors.length ; i++ )
+			{
+				if ( ( i % 8 ) === 0 )
+					output.push( '</tr><tr>' );
+
+				var colorCode = colors[ i ];
+				var colorLabel = editor.lang.colors[ colorCode ] || colorCode;
+				output.push(
+					'<td>' +
+						'<a class="cke_colorbox" _cke_focus=1 hidefocus=true' +
+							' title="', colorLabel, '"' +
+							' onclick="CKEDITOR.tools.callFunction(', clickFn, ',\'#', colorCode, '\',\'', type, '\'); return false;"' +
+							' href="javascript:void(\'', colorLabel, '\')">' +
+							'<span class="cke_colorbox" style="background-color:#', colorCode, '"></span>' +
+						'</a>' +
+					'</td>' );
+			}
+
+			// Render the "More Colors" button.
+			if ( config.colorButton_enableMore )
+			{
+				output.push(
+					'</tr>' +
+					'<tr>' +
+						'<td colspan=8 align=center>' +
+							'<a class="cke_colormore" _cke_focus=1 hidefocus=true' +
+								' title="', lang.more, '"' +
+								' onclick="CKEDITOR.tools.callFunction(', clickFn, ',\'?\',\'', type, '\');return false;"' +
+								' href="javascript:void(\'', lang.more, '\')">',
+								lang.more,
+							'</a>' +
+						'</td>' );	// It is later in the code.
+			}
+
+			output.push( '</tr></table>' );
+
+			return output.join( '' );
+		}
+	}
+});
+
+CKEDITOR.config.colorButton_enableMore = false;
+CKEDITOR.config.colorButton_colors =
+	'000,800000,8B4513,2F4F4F,008080,000080,4B0082,696969,' +
+	'B22222,A52A2A,DAA520,006400,40E0D0,0000CD,800080,808080,' +
+	'F00,FF8C00,FFD700,008000,0FF,00F,EE82EE,A9A9A9,' +
+	'FFA07A,FFA500,FFFF00,00FF00,AFEEEE,ADD8E6,DDA0DD,D3D3D3,' +
+	'FFF0F5,FAEBD7,FFFFE0,F0FFF0,F0FFFF,F0F8FF,E6E6FA,FFF';
+
+CKEDITOR.config.colorButton_foreStyle =
+	{
+		element		: 'span',
+		styles		: { 'color' : '#(color)' },
+		overrides	: [ { element : 'font', attributes : { 'color' : null } } ]
+	};
+
+CKEDITOR.config.colorButton_backStyle =
+	{
+		element		: 'span',
+		styles		: { 'background-color' : '#(color)' }
+	};
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/contextmenu/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/contextmenu/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/contextmenu/plugin.js	(revision 3747)
@@ -0,0 +1,178 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.plugins.add( 'contextmenu',
+{
+	requires : [ 'menu' ],
+
+	beforeInit : function( editor )
+	{
+		editor.contextMenu = new CKEDITOR.plugins.contextMenu( editor );
+
+		editor.addCommand( 'contextMenu',
+			{
+				exec : function()
+					{
+						editor.contextMenu.show();
+					}
+			});
+	}
+});
+
+CKEDITOR.plugins.contextMenu = CKEDITOR.tools.createClass(
+{
+	$ : function( editor )
+	{
+		this.id = 'cke_' + CKEDITOR.tools.getNextNumber();
+		this.editor = editor;
+		this._.listeners = [];
+		this._.functionId = CKEDITOR.tools.addFunction( function( commandName )
+			{
+				this._.panel.hide();
+				editor.focus();
+				editor.execCommand( commandName );
+			},
+			this);
+	},
+
+	_ :
+	{
+		onMenu : function( offsetParent, corner, offsetX, offsetY )
+		{
+			var menu = this._.menu,
+				editor = this.editor;
+
+			if ( menu )
+			{
+				menu.hide();
+				menu.removeAll();
+			}
+			else
+			{
+				menu = this._.menu = new CKEDITOR.menu( editor );
+				menu.onClick = CKEDITOR.tools.bind( function( item )
+				{
+					var noUnlock = true;
+					menu.hide();
+
+					if ( CKEDITOR.env.ie )
+						menu.onEscape();
+
+					if ( item.onClick )
+						item.onClick();
+					else if ( item.command )
+						editor.execCommand( item.command );
+
+					noUnlock = false;
+				}, this );
+
+				menu.onEscape = function()
+				{
+					editor.focus();
+
+					if ( CKEDITOR.env.ie )
+						editor.getSelection().unlock( true );
+				};
+			}
+
+			var listeners = this._.listeners,
+				includedItems = [];
+
+			var selection = this.editor.getSelection(),
+				element = selection && selection.getStartElement();
+
+			// Lock the selection in IE, so it can be restored when closing the
+			// menu.
+			if ( CKEDITOR.env.ie )
+				selection.lock();
+
+			menu.onHide = CKEDITOR.tools.bind( function()
+				{
+					menu.onHide = null;
+
+					if ( CKEDITOR.env.ie )
+						editor.getSelection().unlock();
+
+					this.onHide && this.onHide();
+				},
+				this );
+
+			// Call all listeners, filling the list of items to be displayed.
+			for ( var i = 0 ; i < listeners.length ; i++ )
+			{
+				var listenerItems = listeners[ i ]( element, selection );
+
+				if ( listenerItems )
+				{
+					for ( var itemName in listenerItems )
+					{
+						var item = this.editor.getMenuItem( itemName );
+
+						if ( item )
+						{
+							item.state = listenerItems[ itemName ];
+							menu.add( item );
+						}
+					}
+				}
+			}
+
+			menu.show( offsetParent, corner || ( editor.lang.dir == 'rtl' ? 2 : 1 ), offsetX, offsetY );
+		}
+	},
+
+	proto :
+	{
+		addTarget : function( element )
+		{
+			element.on( 'contextmenu', function( event )
+				{
+					var domEvent = event.data;
+
+					// Cancel the browser context menu.
+					domEvent.preventDefault();
+
+					var offsetParent = domEvent.getTarget().getDocument().getDocumentElement(),
+						offsetX = domEvent.$.clientX,
+						offsetY = domEvent.$.clientY;
+
+					CKEDITOR.tools.setTimeout( function()
+						{
+							this._.onMenu( offsetParent, null, offsetX, offsetY );
+						},
+						0, this );
+				},
+				this );
+		},
+
+		addListener : function( listenerFn )
+		{
+			this._.listeners.push( listenerFn );
+		},
+
+		show : function( offsetParent, corner, offsetX, offsetY )
+		{
+			this.editor.focus();
+			this._.onMenu( offsetParent || CKEDITOR.document.getDocumentElement(), corner, offsetX || 0, offsetY || 0 );
+		}
+	}
+});
+
+// Fix the "contextmenu" event for DOM elements.
+// We may do this if we identify browsers that don't support the context meny
+// event on element directly. Leaving here for reference.
+//if ( <specific browsers> )
+//{
+//	CKEDITOR.dom.element.prototype.on = CKEDITOR.tools.override( CKEDITOR.dom.element.prototype.on, function( originalOn )
+//		{
+//			return function( eventName )
+//				{
+//					if ( eventName != 'contextmenu' )
+//						return originalOn.apply( this, arguments );
+//
+//					// TODO : Implement the fix.
+//				};
+//		});
+//}
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/dialog/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/dialog/plugin.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/dialog/plugin.js	(revision 3747)
@@ -39,4 +39,42 @@
 (function()
 {
+	function isTabVisible( tabId )
+	{
+		return !!this._.tabs[ tabId ][ 0 ].$.offsetHeight;
+	}
+
+	function getPreviousVisibleTab()
+	{
+		var tabId = this._.currentTabId,
+			length = this._.tabIdList.length,
+			tabIndex = CKEDITOR.tools.indexOf( this._.tabIdList, tabId ) + length;
+
+		for ( var i = tabIndex - 1 ; i > tabIndex - length ; i-- )
+		{
+			if ( isTabVisible.call( this, this._.tabIdList[ i % length ] ) )
+				return this._.tabIdList[ i % length ];
+		}
+
+		return null;
+	}
+
+	function getNextVisibleTab()
+	{
+		var tabId = this._.currentTabId,
+			length = this._.tabIdList.length,
+			tabIndex = CKEDITOR.tools.indexOf( this._.tabIdList, tabId );
+
+		for ( var i = tabIndex + 1 ; i < tabIndex + length ; i++ )
+		{
+			if ( isTabVisible.call( this, this._.tabIdList[ i % length ] ) )
+				return this._.tabIdList[ i % length ];
+		}
+
+		return null;
+	}
+
+	// Stores dialog related data from skin definitions. e.g. margin sizes.
+	var skinData = {};
+
 	/**
 	 * This is the base class for runtime dialog objects. An instance of this
@@ -61,4 +99,7 @@
 		definition = CKEDITOR.tools.extend( definition( editor ), defaultDialogDefinition );
 
+		// Clone a functionally independent copy for this dialog.
+		definition = CKEDITOR.tools.clone( definition );
+
 		// Create a complex definition object, extending it with the API
 		// functions.
@@ -74,4 +115,6 @@
 			, editor ).definition;
 
+		var doc = CKEDITOR.document;
+
 		var themeBuilt = editor.theme.buildDialog( editor );
 
@@ -82,5 +125,7 @@
 			element : themeBuilt.element,
 			name : dialogName,
+			contentSize : { width : 0, height : 0 },
 			size : { width : 0, height : 0 },
+			updateSize : false,
 			contents : {},
 			buttons : {},
@@ -89,67 +134,28 @@
 			// Initialize the tab and page map.
 			tabs : {},
+			tabIdList : [],
+			currentTabId : null,
+			currentTabIndex : null,
 			pageCount : 0,
-			lastTab : null
+			lastTab : null,
+			tabBarMode : false,
+
+			// Initialize the tab order array for input widgets.
+			focusList : [],
+			currentFocusIndex : 0,
+			hasFocus : false
 		};
 
-		/**
-		 * An associative map of elements in the dialog. It has the following members:
-		 * <ul>
-		 * 	<li>tl - top left corner.</li>
-		 * 	<li>tl_resize - resize handle at the top left corner.</li>
-		 * 	<li>t - top side.</li>
-		 * 	<li>t_resize - resize handle at the top.</li>
-		 * 	<li>tr - top right corner.</li>
-		 * 	<li>tr_resize - resize handle at the top right.</li>
-		 * 	<li>l - left side.</li>
-		 * 	<li>l_resize - resize handle at the left side.</li>
-		 * 	<li>c - center area.</li>
-		 * 	<li>r - right side.</li>
-		 * 	<li>r_resize - resize handle at the right side.</li>
-		 * 	<li>bl - bottom left corner.</li>
-		 * 	<li>bl_resize - resize handle at the bottom left.</li>
-		 * 	<li>b - bottom side.</li>
-		 * 	<li>b_resize - resize handle at the bottom.</li>
-		 * 	<li>br - bottom right corner.</li>
-		 * 	<li>br_resize - resize handle at the bottom right.</li>
-		 * 	<li>title - title area.</li>
-		 * 	<li>close - close button.</li>
-		 * 	<li>tabs - tabs area.</li>
-		 * 	<li>contents - the content page area.</li>
-		 * 	<li>footer - the footer area.</li>
-		 * </ul>
-		 * @type Object
-		 * @field
-		 */
-		this.parts = {
-			'tl' : [0,0],
-			'tl_resize' : [0,0,0],
-			't' : [0,1],
-			't_resize' : [0,1,0],
-			'tr' : [0,2],
-			'tr_resize' : [0,2,0],
-			'l' : [1,0],
-			'l_resize' : [1,0,0],
-			'c' : [1,1],
-			'r' : [1,2],
-			'r_resize' : [1,2,0],
-			'bl' : [2,0],
-			'bl_resize' : [2,0,0],
-			'b' : [2,1],
-			'b_resize' : [2,1,0],
-			'br' : [2,2],
-			'br_resize' : [2,2,0],
-			'title' : [1,1,0],
-			'close' : [1,1,0,0],
-			'tabs' : [1,1,1,0,0],
-			'tabs_table' : [1,1,1],
-			'contents' : [1,1,2],
-			'footer' : [1,1,3]
-		};
-
-		// Initialize the parts map.
-		var element = this._.element.getFirst();
-		for ( var i in this.parts )
-			this.parts[i] = element.getChild( this.parts[i] );
+		this.parts = themeBuilt.parts;
+
+		// Set the startup styles for the dialog, avoiding it enlarging the
+		// page size on the dialog creation.
+		this.parts.dialog.setStyles(
+			{
+				position : CKEDITOR.env.ie6Compat ? 'absolute' : 'fixed',
+				top : 0,
+				left: 0,
+				visibility : 'hidden'
+			});
 
 		// Call the CKEDITOR.event constructor to initialize this instance.
@@ -252,4 +258,125 @@
 				}, this );
 
+		function changeFocus( forward )
+		{
+			var focusList = me._.focusList,
+				offset = forward ? 1 : -1;
+			if ( focusList.length < 1 )
+				return;
+
+			var currentIndex = ( me._.currentFocusIndex + offset + focusList.length ) % focusList.length;
+			while ( !focusList[ currentIndex ].isFocusable() )
+			{
+				currentIndex = ( currentIndex + offset + focusList.length ) % focusList.length;
+				if ( currentIndex == me._.currentFocusIndex )
+					break;
+			}
+			focusList[ currentIndex ].focus();
+		}
+
+		function focusKeydownHandler( evt )
+		{
+			// If I'm not the top dialog, ignore.
+			if ( me != CKEDITOR.dialog._.currentTop )
+				return;
+
+			var keystroke = evt.data.getKeystroke(),
+				processed = false;
+			if ( keystroke == 9 || keystroke == CKEDITOR.SHIFT + 9 )
+			{
+				var shiftPressed = ( keystroke == CKEDITOR.SHIFT + 9 );
+
+				// Handling Tab and Shift-Tab.
+				if ( me._.tabBarMode )
+				{
+					// Change tabs.
+					var nextId = shiftPressed ? getPreviousVisibleTab.call( me ) : getNextVisibleTab.call( me );
+					me.selectPage( nextId );
+					me._.tabs[ nextId ][ 0 ].focus();
+				}
+				else
+				{
+					// Change the focus of inputs.
+					changeFocus( !shiftPressed );
+				}
+
+				processed = true;
+			}
+			else if ( keystroke == CKEDITOR.ALT + 121 && !me._.tabBarMode )
+			{
+				// Alt-F10 puts focus into the current tab item in the tab bar.
+				me._.tabBarMode = true;
+				me._.tabs[ me._.currentTabId ][ 0 ].focus();
+				processed = true;
+			}
+			else if ( ( keystroke == 37 || keystroke == 39 ) && me._.tabBarMode )
+			{
+				// Arrow keys - used for changing tabs.
+				nextId = ( keystroke == 37 ? getPreviousVisibleTab.call( me ) : getNextVisibleTab.call( me ) );
+				me.selectPage( nextId );
+				me._.tabs[ nextId ][ 0 ].focus();
+				processed = true;
+			}
+
+			if ( processed )
+			{
+				evt.stop();
+				evt.data.preventDefault();
+			}
+		}
+
+		// Add the dialog keyboard handlers.
+		this.on( 'show', function()
+			{
+				CKEDITOR.document.on( 'keydown', focusKeydownHandler, this, null, 0 );
+
+				if ( CKEDITOR.env.ie6Compat )
+				{
+					var coverDoc = coverElement.getChild( 0 ).getFrameDocument();
+					coverDoc.on( 'keydown', focusKeydownHandler, this, null, 0 );
+				}
+			} );
+		this.on( 'hide', function()
+			{
+				CKEDITOR.document.removeListener( 'keydown', focusKeydownHandler );
+			} );
+		this.on( 'iframeAdded', function( evt )
+			{
+				var doc = new CKEDITOR.dom.document( evt.data.iframe.$.contentWindow.document );
+				doc.on( 'keydown', focusKeydownHandler, this, null, 0 );
+			} );
+
+		// Auto-focus logic in dialog.
+		this.on( 'show', function()
+			{
+				if ( !this._.hasFocus )
+				{
+					this._.currentFocusIndex = -1;
+					changeFocus( true );
+
+					/*
+					 * IE BUG: If the initial focus went into a non-text element (e.g. button),
+					 * then IE would still leave the caret inside the editing area.
+					 */
+					if ( CKEDITOR.env.ie )
+					{
+						var $selection = editor.document.$.selection,
+							$range = $selection.createRange();
+
+						if ( $range )
+						{
+							if ( $range.parentElement && $range.parentElement().ownerDocument == editor.document.$
+							  || $range.item && $range.item( 0 ).ownerDocument == editor.document.$ )
+							{
+								var $myRange = document.body.createTextRange();
+								$myRange.moveToElementText( this.getElement().getFirst().$ );
+								$myRange.collapse( true );
+								$myRange.select();
+							}
+						}
+					}
+				}
+			}, this, null, 0xffffffff );
+
 		// IE6 BUG: Text fields and text areas are only half-rendered the first time the dialog appears in IE6 (#2661).
 		// This is still needed after [2708] and [2709] because text fields in hidden TR tags are still broken.
@@ -272,5 +399,5 @@
 
 		// Insert the tabs and contents.
-		for ( i = 0 ; i < definition.contents.length ; i++ )
+		for ( var i = 0 ; i < definition.contents.length ; i++ )
 			this.addPage( definition.contents[i] );
 
@@ -282,14 +409,19 @@
 
 					// If we aren't inside a tab, bail out.
-					if ( !tabRegex.test( target.$.className ) )
+					if ( !( tabRegex.test( target.$.className ) || target.getName() == 'a' ) )
 						return;
 
 					// Find the outer <td> container of the tab.
-					while ( target.getName() != 'td' || !tabOuterRegex.test( target.$.className ) )
-					{
-						target = target.getParent();
-					}
 					id = target.$.id.substr( 0, target.$.id.lastIndexOf( '_' ) );
 					this.selectPage( id );
+
+					if ( this._.tabBarMode )
+					{
+						this._.tabBarMode = false;
+						this._.currentFocusIndex = -1;
+						changeFocus( true );
+					}
+
+					evt.data.preventDefault();
 				}, this );
 
@@ -308,9 +440,5 @@
 			this._.buttons[ buttons[i].id ] = buttons[i];
 
-		// Insert dummy text box for grabbing focus away from the editing area.
-		this._.dummyText = CKEDITOR.dom.element.createFromHtml( '<input type="text" style="position: absolute; left: -100000px; top: -100000px" />' );
-		this._.dummyText.appendTo( element );
-
-		CKEDITOR.skins.load( editor.config.skin, 'dialog' );
+		CKEDITOR.skins.load( editor, 'dialog' );
 	};
 
@@ -329,5 +457,5 @@
 			return function( width, height )
 			{
-				if ( this._.size && this._.size.width == width && this._.size.height == height )
+				if ( this._.contentSize && this._.contentSize.width == width && this._.contentSize.height == height )
 					return;
 
@@ -335,10 +463,11 @@
 					{
 						dialog : this,
-						skin : this._.editor.config.skin,
+						skin : this._.editor.skinName,
 						width : width,
 						height : height
 					}, this._.editor );
 
-				this._.size = { width : width, height : height };
+				this._.contentSize = { width : width, height : height };
+				this._.updateSize = true;
 			};
 		})(),
@@ -352,5 +481,13 @@
 		getSize : function()
 		{
-			return CKEDITOR.tools.extend( {}, this._.size );
+			if ( !this._.updateSize )
+				return this._.size;
+			var element = this._.element.getFirst();
+			var size = this._.size = { width : element.$.offsetWidth || 0, height : element.$.offsetHeight || 0};
+
+			// If either the offsetWidth or offsetHeight is 0, the element isn't visible.
+			this._.updateSize = !size.width || !size.height;
+
+			return size;
 		},
 
@@ -370,6 +507,7 @@
 				// The dialog may be fixed positioned or absolute positioned. Ask the
 				// browser what is the current situation first.
+				var element = this._.element.getFirst();
 				if ( isFixed === undefined )
-					isFixed = this._.element.getFirst().getComputedStyle( 'position' ) == 'fixed';
+					isFixed = element.getComputedStyle( 'position' ) == 'fixed';
 
 				if ( isFixed && this._.position && this._.position.x == x && this._.position.y == y )
@@ -387,8 +525,8 @@
 				}
 
-				this._.element.getFirst().setStyles(
+				element.setStyles(
 						{
-							'left' : x + 'px',
-							'top' : y + 'px'
+							'left'	: ( x > 0 ? x : 0 ) + 'px',
+							'top'	: ( y > 0 ? y : 0 ) + 'px'
 						});
 			};
@@ -410,4 +548,7 @@
 		show : function()
 		{
+			if ( CKEDITOR.env.ie )
+				this._.editor.getSelection().lock();
+
 			// Insert the dialog's element to the root document.
 			var element = this._.element;
@@ -418,10 +559,18 @@
 				return;
 
+			// FIREFOX BUG: Fix vanishing caret for Firefox 2 or Gecko 1.8.
+			if ( CKEDITOR.env.gecko && CKEDITOR.env.version < 10900 )
+			{
+				var dialogElement = this.parts.dialog;
+				dialogElement.setStyle( 'position', 'absolute' );
+				setTimeout( function()
+					{
+						dialogElement.setStyle( 'position', 'fixed' );
+					}, 0 );
+			}
+
+
 			// First, set the dialog to an appropriate size.
 			this.resize( definition.minWidth, definition.minHeight );
-
-			// Rearrange the dialog to the middle of the window.
-			var viewSize = CKEDITOR.document.getWindow().getViewPaneSize();
-			this.move( ( viewSize.width - this._.size.width ) / 2, ( viewSize.height - this._.size.height ) / 2 );
 
 			// Select the first tab by default.
@@ -461,13 +610,26 @@
 					} );
 
-			// Save editor selection and grab the focus.
-			if ( !this._.parentDialog )
-				this.saveSelection();
-			this._.dummyText.focus();
-			this._.dummyText.$.select();
-
-			// Execute onLoad for the first show.
-			this.fireOnce( 'load', {} );
-			this.fire( 'show', {} );
+			// Reset the hasFocus state.
+			this._.hasFocus = false;
+
+			// Rearrange the dialog to the middle of the window.
+			CKEDITOR.tools.setTimeout( function()
+				{
+					var viewSize = CKEDITOR.document.getWindow().getViewPaneSize();
+					var dialogSize = this.getSize();
+
+					this.move( ( viewSize.width - dialogSize.width ) / 2, ( viewSize.height - dialogSize.height ) / 2 );
+
+					this.parts.dialog.setStyle( 'visibility', '' );
+
+					// Execute onLoad for the first show.
+					this.fireOnce( 'load', {} );
+					this.fire( 'show', {} );
+
+					// Save the initial values of the dialog.
+					this.foreach( function( contentObj ) { contentObj.setInitValue && contentObj.setInitValue(); } );
+
+				},
+				100, this );
 		},
 
@@ -499,28 +661,4 @@
 		})(),
 
-		/**
-		 * Pushes the current values of all inputs in the dialog into the default stack.
-		 * @example
-		 * dialogObj.pushDefault();
-		 * @returns {CKEDITOR.dialog} The current dialog object.
-		 */
-		pushDefault : (function()
-		{
-			var fn = function( widget ){ if ( widget.pushDefault ) widget.pushDefault(); };
-			return function(){ this.foreach( fn ); return this; };
-		})(),
-
-		/**
-		 * Pops the current default values of all inputs in the dialog.
-		 * @example
-		 * dialogObj.popDefault();
-		 * @returns {CKEDITOR.dialog} The current dialog object.
-		 */
-		popDefault : (function()
-		{
-			var fn = function( widget ){ if ( widget.popDefault ) widget.popDefault(); };
-			return function(){ this.foreach( fn ); return this; };
-		})(),
-
 		setupContent : function()
 		{
@@ -550,9 +688,13 @@
 		hide : function()
 		{
+			this.fire( 'hide', {} );
+
 			// Remove the dialog's element from the root document.
 			var element = this._.element;
 			if ( !element.getParent() )
 				return;
+
 			element.remove();
+			this.parts.dialog.setStyle( 'visibility', 'hidden' );
 
 			// Unregister all access keys associated with this dialog.
@@ -578,12 +720,16 @@
 				CKEDITOR.document.removeListener( 'keyup', accessKeyUpHandler );
 
-				// Restore focus and (if not already restored) selection in the editing area.
-				this.restoreSelection();
-				this._.editor.focus();
+				var editor = this._.editor;
+				editor.focus();
+
+				if ( CKEDITOR.env.ie )
+					editor.getSelection().unlock( true );
 			}
 			else
 				CKEDITOR.dialog._.currentZIndex -= 10;
 
-			this.fire( 'hide', {} );
+
+			// Reset the initial values of the dialog.
+			this.foreach( function( contentObj ) { contentObj.resetInitValue && contentObj.resetInitValue(); } );
 		},
 
@@ -596,5 +742,5 @@
 		{
 			var pageHtml = [],
-				titleHtml = contents.title ? 'title="' + CKEDITOR.tools.htmlEncode( contents.title ) + '" ' : '',
+				titleHtml = contents.label ? ' title="' + CKEDITOR.tools.htmlEncode( contents.label ) + '"' : '',
 				elements = contents.elements,
 				vbox = CKEDITOR.dialog._.uiElementBuilders.vbox.build( this,
@@ -603,5 +749,7 @@
 							className : 'cke_dialog_page_contents',
 							children : contents.elements,
-							expand : !!contents.expand
+							expand : !!contents.expand,
+							padding : contents.padding,
+							style : contents.style || 'width: 100%; height: 100%;'
 						}, pageHtml );
 
@@ -609,33 +757,31 @@
 			var page = CKEDITOR.dom.element.createFromHtml( pageHtml.join( '' ) );
 			var tab = CKEDITOR.dom.element.createFromHtml( [
-					'<table><tbody><tr><td class="cke_dialog_tab" ', titleHtml, '>',
-					'<table border="0" cellspacing="0" cellpadding="0"><tbody><tr>',
-						'<td class="cke_dialog_tab_left"></td>',
-						'<td class="cke_dialog_tab_center">',
-							CKEDITOR.tools.htmlEncode( contents.label.replace( / /g, '\xa0' ) ),
-						'</td>',
-						'<td class="cke_dialog_tab_right"></td>',
-					'</tr></tbody></table></td></tr></tbody></table>'
+					'<a class="cke_dialog_tab"',
+						( this._.pageCount > 0 ? ' cke_last' : 'cke_first' ),
+						titleHtml,
+						( !!contents.hidden ? ' style="display:none"' : '' ),
+						' id="', contents.id + '_', CKEDITOR.tools.getNextNumber(), '"' +
+						' href="javascript:void(0)"',
+						' hidefocus="true">',
+							contents.label,
+					'</a>'
 				].join( '' ) );
-			tab = tab.getChild( [0,0,0] );
-
-			// First and last tab styles classes.
-			if ( this._.lastTab )
-				this._.lastTab.removeClass( 'last' );
-			tab.addClass( this._.pageCount > 0 ? 'last' : 'first' );
 
 			// If only a single page exist, a different style is used in the central pane.
 			if ( this._.pageCount === 0 )
-				this.parts.c.addClass( 'single_page' );
+				this.parts.dialog.addClass( 'cke_single_page' );
 			else
-				this.parts.c.removeClass( 'single_page' );
+				this.parts.dialog.removeClass( 'cke_single_page' );
 
 			// Take records for the tabs and elements created.
 			this._.tabs[ contents.id ] = [ tab, page ];
+			this._.tabIdList.push( contents.id );
 			this._.pageCount++;
 			this._.lastTab = tab;
+
 			var contentMap = this._.contents[ contents.id ] = {},
 				cursor,
 				children = vbox.getChild();
+
 			while ( ( cursor = children.shift() ) )
 			{
@@ -646,9 +792,10 @@
 
 			// Attach the DOM nodes.
+
+			page.setAttribute( 'name', contents.id );
+			page.appendTo( this.parts.contents );
+
 			tab.unselectable();
-			page.appendTo( this.parts.contents );
-			tab.insertBefore( this.parts.tabs.getChild( this.parts.tabs.getChildCount() - 1 ) );
-			tab.setAttribute( 'id', contents.id + '_' + CKEDITOR.tools.getNextNumber() );
-			page.setAttribute( 'name', contents.id );
+			this.parts.tabs.append( tab );
 
 			// Add access key handlers if access key is defined.
@@ -684,5 +831,6 @@
 			selected[0].addClass( 'cke_dialog_tab_selected' );
 			selected[1].show();
-			var me = this;
+			this._.currentTabId = id;
+			this._.currentTabIndex = CKEDITOR.tools.indexOf( this._.tabIdList, id );
 		},
 
@@ -728,4 +876,15 @@
 
 		/**
+		 * Gets the name of the dialog.
+		 * @returns {String} The name of this dialog.
+		 * @example
+		 * var dialogName = dialogObj.getName();
+		 */
+		getName : function()
+		{
+			return this._.name;
+		},
+
+		/**
 		 * Gets a dialog UI element object from a dialog page.
 		 * @param {String} pageId id of dialog page.
@@ -824,40 +983,10 @@
 
 		/**
-		 * Saves the current selection position in the editor.
-		 * This function is automatically called when a non-nested dialog is opened,
-		 * but it may also be called by event handlers in dialog definition.
-		 * @example
-		 */
-		saveSelection : function()
-		{
-			if ( this._.editor.mode )
-			{
-				var selection = new CKEDITOR.dom.selection( this._.editor.document );
-				this._.selectedRanges = selection.getRanges();
-			}
-		},
-
-		/**
-		 * Clears the saved selection in the dialog object.
-		 * This function should be called if the dialog's code has already changed the
-		 * current selection position because the dialog closed. (e.g. at onOk())
-		 * @example
-		 */
-		clearSavedSelection : function()
-		{
-			delete this._.selectedRanges;
-		},
-
-		/**
-		 * Restores the editor's selection from the previously saved position in this
-		 * dialog.
-		 * This function is automatically called when a non-nested dialog is closed,
-		 * but it may also be called by event handlers in dialog definition.
-		 * @example
-		 */
-		restoreSelection : function()
-		{
-			if ( this._.editor.mode && this._.selectedRanges )
-				( new CKEDITOR.dom.selection( this._.editor.document ) ).selectRanges( this._.selectedRanges );
+		 * Gets the element that was selected when opening the dialog, if any.
+		 * @returns {CKEDITOR.dom.element} The element that was selected, or null.
+		 */
+		getSelectedElement : function()
+		{
+			return this.getParentEditor().getSelection().getSelectedElement();
 		}
 	};
@@ -880,5 +1009,8 @@
 			add : function( name, dialogDefinition )
 			{
-				this._.dialogDefinitions[name] = dialogDefinition;
+				// Avoid path registration from multiple instances override definition.
+				if ( !this._.dialogDefinitions[name]
+					|| typeof  dialogDefinition == 'function' )
+					this._.dialogDefinitions[name] = dialogDefinition;
 			},
 
@@ -886,4 +1018,9 @@
 			{
 				return !!this._.dialogDefinitions[ name ];
+			},
+
+			getCurrent : function()
+			{
+				return CKEDITOR.dialog._.currentTop;
 			},
 
@@ -904,5 +1041,5 @@
 						type : 'button',
 						label : editor.lang.common.ok,
-						style : 'width: 60px',
+						'class' : 'cke_dialog_ui_button_ok',
 						onClick : function( evt )
 						{
@@ -938,5 +1075,5 @@
 						type : 'button',
 						label : editor.lang.common.cancel,
-						style : 'width: 60px',
+						'class' : 'cke_dialog_ui_button_cancel',
 						onClick : function( evt )
 						{
@@ -964,21 +1101,5 @@
 			addUIElement : function( typeName, builder )
 			{
-				this._.uiElementBuilders[typeName] = builder;
-			},
-
-			/**
-			 * Sets the width of margins of dialogs, which is used for the dialog moving and resizing logic.
-			 * The margin here means the area between the dialog's container <div> and the visual boundary of the dialog.
-			 * Typically this area is used for dialog shadows.
-			 * This function is typically called in a skin's JavaScript files.
-			 * @param {Number} top The top margin in pixels.
-			 * @param {Number} right The right margin in pixels.
-			 * @param {Number} bottom The bottom margin in pixels.
-			 * @param {Number} left The left margin in pixels.
-			 * @example
-			 */
-			setMargins : function( top, right, bottom, left )
-			{
-				this._.margins = [ top, right, bottom, left ];
+				this._.uiElementBuilders[ typeName ] = builder;
 			}
 		});
@@ -992,12 +1113,10 @@
 		currentTop : null,
 
-		currentZIndex : null,
-
-		margins : [0, 0, 0, 0]
+		currentZIndex : null
 	};
 
 	// "Inherit" (copy actually) from CKEDITOR.event.
 	CKEDITOR.event.implementOn( CKEDITOR.dialog );
-	CKEDITOR.event.implementOn( CKEDITOR.dialog.prototype );
+	CKEDITOR.event.implementOn( CKEDITOR.dialog.prototype, true );
 
 	var defaultDialogDefinition =
@@ -1195,5 +1314,5 @@
 	 * 	} );
 	 */
-	var contentObject = function( dialog, contentDefinition )
+	function contentObject( dialog, contentDefinition )
 	{
 		this._ =
@@ -1203,5 +1322,5 @@
 
 		CKEDITOR.tools.extend( this, contentDefinition );
-	};
+	}
 
 	contentObject.prototype =
@@ -1248,75 +1367,79 @@
 	};
 
-	var initDragAndDrop = function( dialog )
+	function initDragAndDrop( dialog )
 	{
 		var lastCoords = null,
 			abstractDialogCoords = null,
 			element = dialog.getElement().getFirst(),
-			magnetDistance = dialog._.editor.config.dialog_magnetDistance,
-			mouseMoveHandler = function( evt )
-			{
-				var dialogSize = dialog.getSize(),
-					viewPaneSize = CKEDITOR.document.getWindow().getViewPaneSize(),
-					x = evt.data.$.screenX,
-					y = evt.data.$.screenY,
-					dx = x - lastCoords.x,
-					dy = y - lastCoords.y,
-					realX, realY;
-
-				lastCoords = { x : x, y : y };
-				abstractDialogCoords.x += dx;
-				abstractDialogCoords.y += dy;
-
-				if ( abstractDialogCoords.x + CKEDITOR.dialog._.margins[3] < magnetDistance )
-					realX = - CKEDITOR.dialog._.margins[3];
-				else if ( abstractDialogCoords.x - CKEDITOR.dialog._.margins[1] > viewPaneSize.width - dialogSize.width - magnetDistance )
-					realX = viewPaneSize.width - dialogSize.width + CKEDITOR.dialog._.margins[1];
-				else
-					realX = abstractDialogCoords.x;
-
-				if ( abstractDialogCoords.y + CKEDITOR.dialog._.margins[0] < magnetDistance )
-					realY = - CKEDITOR.dialog._.margins[0];
-				else if ( abstractDialogCoords.y - CKEDITOR.dialog._.margins[2] > viewPaneSize.height - dialogSize.height - magnetDistance )
-					realY = viewPaneSize.height - dialogSize.height + CKEDITOR.dialog._.margins[2];
-				else
-					realY = abstractDialogCoords.y;
-
-				dialog.move( realX, realY );
+			editor = dialog.getParentEditor(),
+			magnetDistance = editor.config.dialog_magnetDistance,
+			margins = skinData[ editor.skinName ].margins || [ 0, 0, 0, 0 ];
+
+		function mouseMoveHandler( evt )
+		{
+			var dialogSize = dialog.getSize(),
+				viewPaneSize = CKEDITOR.document.getWindow().getViewPaneSize(),
+				x = evt.data.$.screenX,
+				y = evt.data.$.screenY,
+				dx = x - lastCoords.x,
+				dy = y - lastCoords.y,
+				realX, realY;
+
+			lastCoords = { x : x, y : y };
+			abstractDialogCoords.x += dx;
+			abstractDialogCoords.y += dy;
+
+			if ( abstractDialogCoords.x + margins[3] < magnetDistance )
+				realX = - margins[3];
+			else if ( abstractDialogCoords.x - margins[1] > viewPaneSize.width - dialogSize.width - magnetDistance )
+				realX = viewPaneSize.width - dialogSize.width + margins[1];
+			else
+				realX = abstractDialogCoords.x;
+
+			if ( abstractDialogCoords.y + margins[0] < magnetDistance )
+				realY = - margins[0];
+			else if ( abstractDialogCoords.y - margins[2] > viewPaneSize.height - dialogSize.height - magnetDistance )
+				realY = viewPaneSize.height - dialogSize.height + margins[2];
+			else
+				realY = abstractDialogCoords.y;
+
+			dialog.move( realX, realY );
+
+			evt.data.preventDefault();
+		}
+
+		function mouseUpHandler( evt )
+		{
+			CKEDITOR.document.removeListener( 'mousemove', mouseMoveHandler );
+			CKEDITOR.document.removeListener( 'mouseup', mouseUpHandler );
+
+			if ( CKEDITOR.env.ie6Compat )
+			{
+				var coverDoc = coverElement.getChild( 0 ).getFrameDocument();
+				coverDoc.removeListener( 'mousemove', mouseMoveHandler );
+				coverDoc.removeListener( 'mouseup', mouseUpHandler );
+			}
+		}
+
+		dialog.parts.title.on( 'mousedown', function( evt )
+			{
+				lastCoords = { x : evt.data.$.screenX, y : evt.data.$.screenY };
+
+				CKEDITOR.document.on( 'mousemove', mouseMoveHandler );
+				CKEDITOR.document.on( 'mouseup', mouseUpHandler );
+				abstractDialogCoords = dialog.getPosition();
+
+				if ( CKEDITOR.env.ie6Compat )
+				{
+					var coverDoc = coverElement.getChild( 0 ).getFrameDocument();
+					coverDoc.on( 'mousemove', mouseMoveHandler );
+					coverDoc.on( 'mouseup', mouseUpHandler );
+				}
 
 				evt.data.preventDefault();
-			},
-			mouseUpHandler = function( evt )
-			{
-				CKEDITOR.document.removeListener( 'mousemove', mouseMoveHandler );
-				CKEDITOR.document.removeListener( 'mouseup', mouseUpHandler );
-
-				if ( CKEDITOR.env.ie6Compat )
-				{
-					var coverDoc = new CKEDITOR.dom.document( frames( 'cke_dialog_background_iframe' ).document );
-					coverDoc.removeListener( 'mousemove', mouseMoveHandler );
-					coverDoc.removeListener( 'mouseup', mouseUpHandler );
-				}
-			};
-
-		dialog.parts.title.on( 'mousedown', function( evt )
-				{
-					lastCoords = { x : evt.data.$.screenX, y : evt.data.$.screenY };
-
-					CKEDITOR.document.on( 'mousemove', mouseMoveHandler );
-					CKEDITOR.document.on( 'mouseup', mouseUpHandler );
-					abstractDialogCoords = dialog.getPosition();
-
-					if ( CKEDITOR.env.ie6Compat )
-					{
-						var coverDoc = new CKEDITOR.dom.document( frames( 'cke_dialog_background_iframe' ).document );
-						coverDoc.on( 'mousemove', mouseMoveHandler );
-						coverDoc.on( 'mouseup', mouseUpHandler );
-					}
-
-					evt.data.preventDefault();
-				}, dialog );
-	};
-
-	var initResizeHandles = function( dialog )
+			}, dialog );
+	}
+
+	function initResizeHandles( dialog )
 	{
 		var definition = dialog.definition,
@@ -1324,132 +1447,143 @@
 			minHeight = definition.minHeight || 0,
 			resizable = definition.resizable,
-			topSizer = function( coords, dy )
-			{
-				coords.y += dy;
-			},
-			rightSizer = function( coords, dx )
-			{
-				coords.x2 += dx;
-			},
-			bottomSizer = function( coords, dy )
-			{
-				coords.y2 += dy;
-			},
-			leftSizer = function( coords, dx )
-			{
-				coords.x += dx;
-			},
-			lastCoords = null,
+			margins = skinData[ dialog.getParentEditor().skinName ].margins || [ 0, 0, 0, 0 ];
+
+		function topSizer( coords, dy )
+		{
+			coords.y += dy;
+		}
+
+		function rightSizer( coords, dx )
+		{
+			coords.x2 += dx;
+		}
+
+		function bottomSizer( coords, dy )
+		{
+			coords.y2 += dy;
+		}
+
+		function leftSizer( coords, dx )
+		{
+			coords.x += dx;
+		}
+
+		var lastCoords = null,
 			abstractDialogCoords = null,
 			magnetDistance = dialog._.editor.config.magnetDistance,
-			parts = [ 'tl', 't', 'tr', 'l', 'r', 'bl', 'b', 'br' ],
-			mouseDownHandler = function( evt )
-			{
-				var partName = evt.listenerData.part, size = dialog.getSize();
-				abstractDialogCoords = dialog.getPosition();
-				CKEDITOR.tools.extend( abstractDialogCoords,
-					{
-						x2 : abstractDialogCoords.x + size.width,
-						y2 : abstractDialogCoords.y + size.height
-					} );
-				lastCoords = { x : evt.data.$.screenX, y : evt.data.$.screenY };
-
-				CKEDITOR.document.on( 'mousemove', mouseMoveHandler, dialog, { part : partName } );
-				CKEDITOR.document.on( 'mouseup', mouseUpHandler, dialog, { part : partName } );
-
-				if ( CKEDITOR.env.ie6Compat )
-				{
-					var coverDoc = new CKEDITOR.dom.document( frames( 'cke_dialog_background_iframe' ).document );
-					coverDoc.on( 'mousemove', mouseMoveHandler, dialog, { part : partName } );
-					coverDoc.on( 'mouseup', mouseUpHandler, dialog, { part : partName } );
-				}
-
-				evt.data.preventDefault();
-			},
-			mouseMoveHandler = function( evt )
-			{
-				var x = evt.data.$.screenX,
-					y = evt.data.$.screenY,
-					dx = x - lastCoords.x,
-					dy = y - lastCoords.y,
-					viewPaneSize = CKEDITOR.document.getWindow().getViewPaneSize(),
-					partName = evt.listenerData.part;
-
-				if ( partName.search( 't' ) != -1 )
-					topSizer( abstractDialogCoords, dy );
-				if ( partName.search( 'l' ) != -1 )
-					leftSizer( abstractDialogCoords, dx );
-				if ( partName.search( 'b' ) != -1 )
-					bottomSizer( abstractDialogCoords, dy );
-				if ( partName.search( 'r' ) != -1 )
-					rightSizer( abstractDialogCoords, dx );
-
-				lastCoords = { x : x, y : y };
-
-				var realX, realY, realX2, realY2;
-
-				if ( abstractDialogCoords.x + CKEDITOR.dialog._.margins[3] < magnetDistance )
-					realX = - CKEDITOR.dialog._.margins[3];
-				else if ( partName.search( 'l' ) != -1 && abstractDialogCoords.x2 - abstractDialogCoords.x < minWidth + magnetDistance )
-					realX = abstractDialogCoords.x2 - minWidth;
-				else
-					realX = abstractDialogCoords.x;
-
-				if ( abstractDialogCoords.y + CKEDITOR.dialog._.margins[0] < magnetDistance )
-					realY = - CKEDITOR.dialog._.margins[0];
-				else if ( partName.search( 't' ) != -1 && abstractDialogCoords.y2 - abstractDialogCoords.y < minHeight + magnetDistance )
-					realY = abstractDialogCoords.y2 - minHeight;
-				else
-					realY = abstractDialogCoords.y;
-
-				if ( abstractDialogCoords.x2 - CKEDITOR.dialog._.margins[1] > viewPaneSize.width - magnetDistance )
-					realX2 = viewPaneSize.width + CKEDITOR.dialog._.margins[1] ;
-				else if ( partName.search( 'r' ) != -1 && abstractDialogCoords.x2 - abstractDialogCoords.x < minWidth + magnetDistance )
-					realX2 = abstractDialogCoords.x + minWidth;
-				else
-					realX2 = abstractDialogCoords.x2;
-
-				if ( abstractDialogCoords.y2 - CKEDITOR.dialog._.margins[2] > viewPaneSize.height - magnetDistance )
-					realY2= viewPaneSize.height + CKEDITOR.dialog._.margins[2] ;
-				else if ( partName.search( 'b' ) != -1 && abstractDialogCoords.y2 - abstractDialogCoords.y < minHeight + magnetDistance )
-					realY2 = abstractDialogCoords.y + minHeight;
-				else
-					realY2 = abstractDialogCoords.y2 ;
-
-				dialog.move( realX, realY );
-				dialog.resize( realX2 - realX, realY2 - realY );
-
-				evt.data.preventDefault();
-			},
-			mouseUpHandler = function( evt )
-			{
-				CKEDITOR.document.removeListener( 'mouseup', mouseUpHandler );
-				CKEDITOR.document.removeListener( 'mousemove', mouseMoveHandler );
-
-				if ( CKEDITOR.env.ie6Compat )
-				{
-					var coverDoc = new CKEDITOR.dom.document( frames( 'cke_dialog_background_iframe' ).document );
-					coverDoc.removeListener( 'mouseup', mouseUpHandler );
-					coverDoc.removeListener( 'mousemove', mouseMoveHandler );
-				}
-			};
-
-		var widthTest = /[lr]/,
-			heightTest = /[tb]/;
-		for ( var i = 0 ; i < parts.length ; i++ )
-		{
-			var element = dialog.parts[ parts[i] + '_resize' ];
-			if ( resizable == CKEDITOR.DIALOG_RESIZE_NONE ||
-					resizable == CKEDITOR.DIALOG_RESIZE_HEIGHT && widthTest.test( parts[i] ) ||
-			  		resizable == CKEDITOR.DIALOG_RESIZE_WIDTH && heightTest.test( parts[i] ) )
-			{
-				element.hide();
-				continue;
-			}
-			element.on( 'mousedown', mouseDownHandler, dialog, { part : parts[i] } );
-		}
-	};
+			parts = [ 'tl', 't', 'tr', 'l', 'r', 'bl', 'b', 'br' ];
+
+		function mouseDownHandler( evt )
+		{
+			var partName = evt.listenerData.part, size = dialog.getSize();
+			abstractDialogCoords = dialog.getPosition();
+			CKEDITOR.tools.extend( abstractDialogCoords,
+				{
+					x2 : abstractDialogCoords.x + size.width,
+					y2 : abstractDialogCoords.y + size.height
+				} );
+			lastCoords = { x : evt.data.$.screenX, y : evt.data.$.screenY };
+
+			CKEDITOR.document.on( 'mousemove', mouseMoveHandler, dialog, { part : partName } );
+			CKEDITOR.document.on( 'mouseup', mouseUpHandler, dialog, { part : partName } );
+
+			if ( CKEDITOR.env.ie6Compat )
+			{
+				var coverDoc = coverElement.getChild( 0 ).getFrameDocument();
+				coverDoc.on( 'mousemove', mouseMoveHandler, dialog, { part : partName } );
+				coverDoc.on( 'mouseup', mouseUpHandler, dialog, { part : partName } );
+			}
+
+			evt.data.preventDefault();
+		}
+
+		function mouseMoveHandler( evt )
+		{
+			var x = evt.data.$.screenX,
+				y = evt.data.$.screenY,
+				dx = x - lastCoords.x,
+				dy = y - lastCoords.y,
+				viewPaneSize = CKEDITOR.document.getWindow().getViewPaneSize(),
+				partName = evt.listenerData.part;
+
+			if ( partName.search( 't' ) != -1 )
+				topSizer( abstractDialogCoords, dy );
+			if ( partName.search( 'l' ) != -1 )
+				leftSizer( abstractDialogCoords, dx );
+			if ( partName.search( 'b' ) != -1 )
+				bottomSizer( abstractDialogCoords, dy );
+			if ( partName.search( 'r' ) != -1 )
+				rightSizer( abstractDialogCoords, dx );
+
+			lastCoords = { x : x, y : y };
+
+			var realX, realY, realX2, realY2;
+
+			if ( abstractDialogCoords.x + margins[3] < magnetDistance )
+				realX = - margins[3];
+			else if ( partName.search( 'l' ) != -1 && abstractDialogCoords.x2 - abstractDialogCoords.x < minWidth + magnetDistance )
+				realX = abstractDialogCoords.x2 - minWidth;
+			else
+				realX = abstractDialogCoords.x;
+
+			if ( abstractDialogCoords.y + margins[0] < magnetDistance )
+				realY = - margins[0];
+			else if ( partName.search( 't' ) != -1 && abstractDialogCoords.y2 - abstractDialogCoords.y < minHeight + magnetDistance )
+				realY = abstractDialogCoords.y2 - minHeight;
+			else
+				realY = abstractDialogCoords.y;
+
+			if ( abstractDialogCoords.x2 - margins[1] > viewPaneSize.width - magnetDistance )
+				realX2 = viewPaneSize.width + margins[1] ;
+			else if ( partName.search( 'r' ) != -1 && abstractDialogCoords.x2 - abstractDialogCoords.x < minWidth + magnetDistance )
+				realX2 = abstractDialogCoords.x + minWidth;
+			else
+				realX2 = abstractDialogCoords.x2;
+
+			if ( abstractDialogCoords.y2 - margins[2] > viewPaneSize.height - magnetDistance )
+				realY2= viewPaneSize.height + margins[2] ;
+			else if ( partName.search( 'b' ) != -1 && abstractDialogCoords.y2 - abstractDialogCoords.y < minHeight + magnetDistance )
+				realY2 = abstractDialogCoords.y + minHeight;
+			else
+				realY2 = abstractDialogCoords.y2 ;
+
+			dialog.move( realX, realY );
+			dialog.resize( realX2 - realX, realY2 - realY );
+
+			evt.data.preventDefault();
+		}
+
+		function mouseUpHandler( evt )
+		{
+			CKEDITOR.document.removeListener( 'mouseup', mouseUpHandler );
+			CKEDITOR.document.removeListener( 'mousemove', mouseMoveHandler );
+
+			if ( CKEDITOR.env.ie6Compat )
+			{
+				var coverDoc = coverElement.getChild( 0 ).getFrameDocument();
+				coverDoc.removeListener( 'mouseup', mouseUpHandler );
+				coverDoc.removeListener( 'mousemove', mouseMoveHandler );
+			}
+		}
+
+// TODO : Simplify the resize logic, having just a single resize grip <div>.
+//		var widthTest = /[lr]/,
+//			heightTest = /[tb]/;
+//		for ( var i = 0 ; i < parts.length ; i++ )
+//		{
+//			var element = dialog.parts[ parts[i] + '_resize' ];
+//			if ( resizable == CKEDITOR.DIALOG_RESIZE_NONE ||
+//					resizable == CKEDITOR.DIALOG_RESIZE_HEIGHT && widthTest.test( parts[i] ) ||
+//			  		resizable == CKEDITOR.DIALOG_RESIZE_WIDTH && heightTest.test( parts[i] ) )
+//			{
+//				element.hide();
+//				continue;
+//			}
+//			element.on( 'mousedown', mouseDownHandler, dialog, { part : parts[i] } );
+//		}
+	}
 
 	var resizeCover;
+	var coverElement;
 
 	var addCover = function( editor )
@@ -1457,22 +1591,55 @@
 		var win = CKEDITOR.document.getWindow();
 
-		var html = [
-				'<div style="position: ', ( CKEDITOR.env.ie6Compat ? 'absolute' : 'fixed' ),
-				'; z-index: ', editor.config.baseFloatZIndex,
-				'; top: 0px; left: 0px; ',
-				'background-color: ', editor.config.dialog_backgroundCoverColor,
-				'" id="cke_dialog_background_cover">'
-			];
-
-		if ( CKEDITOR.env.ie6Compat )
-		{
-			html.push( '<iframe hidefocus="true" frameborder="0" name="cke_dialog_background_iframe" src="javascript: \'\'" ',
-					'style="position: absolute; left: 0px; top: 0px; width: 100%; height: 100%; ',
-					'progid:DXImageTransform.Microsoft.Alpha(opacity=0)" ></iframe>' );
-		}
-
-		html.push( '</div>' );
-
-		var element = CKEDITOR.dom.element.createFromHtml( html.join( '' ) );
+		if ( !coverElement )
+		{
+			var html = [
+					'<div style="position: ', ( CKEDITOR.env.ie6Compat ? 'absolute' : 'fixed' ),
+					'; z-index: ', editor.config.baseFloatZIndex,
+					'; top: 0px; left: 0px; ',
+					'background-color: ', editor.config.dialog_backgroundCoverColor,
+					'" id="cke_dialog_background_cover">'
+				];
+
+
+			if ( CKEDITOR.env.ie6Compat )
+			{
+				// Support for custom document.domain in IE.
+				var isCustomDomain = CKEDITOR.env.isCustomDomain();
+
+				html.push(
+					'<iframe' +
+						' hidefocus="true"' +
+						' frameborder="0"' +
+						' id="cke_dialog_background_iframe"' +
+						' src="javascript:' );
+
+				html.push(
+						isCustomDomain ?
+							'void((function(){' +
+								'document.open();' +
+								'document.domain=\'' + document.domain + '\';' +
+								'document.close();' +
+							'})())'
+						:
+							'\'\'' );
+
+				html.push(
+						'"' +
+						' style="' +
+							'position:absolute;' +
+							'left:0;' +
+							'top:0;' +
+							'width:100%;' +
+							'height: 100%;' +
+							'progid:DXImageTransform.Microsoft.Alpha(opacity=0)">' +
+					'</iframe>' );
+			}
+
+			html.push( '</div>' );
+
+			coverElement = CKEDITOR.dom.element.createFromHtml( html.join( '' ) );
+		}
+
+		var element = coverElement;
 
 		var resizeFunc = function()
@@ -1480,8 +1647,8 @@
 			var size = win.getViewPaneSize();
 			element.setStyles(
-					{
-						width : size.width + 'px',
-						height : size.height + 'px'
-					});
+				{
+					width : size.width + 'px',
+					height : size.height + 'px'
+				} );
 		};
 
@@ -1528,21 +1695,20 @@
 	var removeCover = function()
 	{
-		var element = CKEDITOR.document.getById( 'cke_dialog_background_cover' ),
-			win = CKEDITOR.document.getWindow();
-		if ( element )
-		{
-			element.remove();
-			win.removeListener( 'resize', resizeCover );
-
-			if ( CKEDITOR.env.ie6Compat )
-			{
-				win.$.setTimeout( function()
-					{
-						var prevScrollHandler = window.onscroll && window.onscroll.prevScrollHandler;
-						window.onscroll = prevScrollHandler || null;
-					}, 0 );
-			}
-			resizeCover = null;
-		}
+		if ( !coverElement )
+			return;
+
+		var win = CKEDITOR.document.getWindow();
+		coverElement.remove();
+		win.removeListener( 'resize', resizeCover );
+
+		if ( CKEDITOR.env.ie6Compat )
+		{
+			win.$.setTimeout( function()
+				{
+					var prevScrollHandler = window.onscroll && window.onscroll.prevScrollHandler;
+					window.onscroll = prevScrollHandler || null;
+				}, 0 );
+		}
+		resizeCover = null;
 	};
 
@@ -1620,10 +1786,4 @@
 	(function()
 	{
-		var decimalRegex = /^\d+(?:\.\d+)?$/,
-			fixLength = function( length )
-			{
-				return length + ( decimalRegex.test( length ) ? 'px' : '' );
-			};
-
 		CKEDITOR.ui.dialog =
 		{
@@ -1642,4 +1802,6 @@
 			 * 	<li><strong>title</strong> (Optional) The popup tooltip for the UI
 			 * 	element.</li>
+			 * 	<li><strong>hidden</strong> (Optional) A flag that tells if the element
+			 * 	should be initially visible.</li>
 			 * 	<li><strong>className</strong> (Optional) Additional CSS class names
 			 * 	to add to the UI element. Separated by space.</li>
@@ -1675,5 +1837,5 @@
 			uiElement : function( dialog, elementDefinition, htmlList, nodeNameArg, stylesArg, attributesArg, contentsArg )
 			{
-				if (arguments.length < 4 )
+				if ( arguments.length < 4 )
 					return;
 
@@ -1715,4 +1877,6 @@
 				for ( i in styles )
 					styleStr.push( i + ':' + styles[i] );
+				if ( elementDefinition.hidden )
+					styleStr.push( 'display:none' );
 				for ( i = styleStr.length - 1 ; i >= 0 ; i-- )
 				{
@@ -1721,5 +1885,5 @@
 				}
 				if ( styleStr.length > 0 )
-					attributes.style = ( attributes.style || '' ) + styleStr.join( '; ' );
+					attributes.style = ( attributes.style ? ( attributes.style + '; ' ) : '' ) + styleStr.join( '; ' );
 
 				// Write the attributes.
@@ -1747,4 +1911,28 @@
 				if ( this.accessKeyUp && this.accessKeyDown && elementDefinition.accessKey )
 					registerAccessKey( this, dialog, 'CTRL+' + elementDefinition.accessKey );
+
+				var me = this;
+				dialog.on( 'load', function()
+					{
+						if ( me.getInputElement() )
+						{
+							me.getInputElement().on( 'focus', function()
+								{
+									dialog._.tabBarMode = false;
+									dialog._.hasFocus = true;
+									me.fire( 'focus' );
+								}, me );
+						}
+					} );
+
+				// Register the object as a tab focus if it can be included.
+				if ( this.keyboardFocusable )
+				{
+					this.focusIndex = dialog._.focusList.push( this ) - 1;
+					this.on( 'focus', function()
+						{
+							dialog._.currentFocusIndex = me.focusIndex;
+						} );
+				}
 
 				// Completes this object with everything we have in the
@@ -1807,12 +1995,12 @@
 						{
 							if ( widths[i] )
-								styles.push( 'width:' + fixLength( widths[i] ) );
+								styles.push( 'width:' + CKEDITOR.tools.cssLength( widths[i] ) );
 						}
 						else
 							styles.push( 'width:' + Math.floor( 100 / childHtmlList.length ) + '%' );
 						if ( height )
-							styles.push( 'height:' + fixLength( height ) );
+							styles.push( 'height:' + CKEDITOR.tools.cssLength( height ) );
 						if ( elementDefinition && elementDefinition.padding != undefined )
-							styles.push( 'padding:' + fixLength( elementDefinition.padding ) );
+							styles.push( 'padding:' + CKEDITOR.tools.cssLength( elementDefinition.padding ) );
 						if ( styles.length > 0 )
 							html.push( 'style="' + styles.join('; ') + '" ' );
@@ -1823,7 +2011,13 @@
 				};
 
-				CKEDITOR.ui.dialog.uiElement.call( this, dialog, elementDefinition || { type : 'hbox' }, htmlList, 'table', styles,
-						{ align : ( elementDefinition && elementDefinition.align ) ||
-							( dialog.getParentEditor().lang.dir == 'ltr' ? 'left' : 'right' ) }, innerHTML );
+				CKEDITOR.ui.dialog.uiElement.call(
+					this,
+					dialog,
+					elementDefinition || { type : 'hbox' },
+					htmlList,
+					'table',
+					styles,
+					elementDefinition && elementDefinition.align && { align : elementDefinition.align } || null,
+					innerHTML );
 			},
 
@@ -1873,5 +2067,5 @@
 					if ( elementDefinition && elementDefinition.expand )
 						html.push( 'height:100%;' );
-					html.push( 'width:' + fixLength( width || '100%' ), ';' );
+					html.push( 'width:' + CKEDITOR.tools.cssLength( width || '100%' ), ';' );
 					html.push( '"' );
 					html.push( 'align="', CKEDITOR.tools.htmlEncode(
@@ -1884,11 +2078,11 @@
 						html.push( '<tr><td ' );
 						if ( width )
-							styles.push( 'width:' + fixLength( width || '100%' ) );
+							styles.push( 'width:' + CKEDITOR.tools.cssLength( width || '100%' ) );
 						if ( heights )
-							styles.push( 'height:' + fixLength( heights[i] ) );
+							styles.push( 'height:' + CKEDITOR.tools.cssLength( heights[i] ) );
 						else if ( elementDefinition && elementDefinition.expand )
 							styles.push( 'height:' + Math.floor( 100 / childHtmlList.length ) + '%' );
 						if ( elementDefinition && elementDefinition.padding != undefined )
-							styles.push( 'padding:' + fixLength( elementDefinition.padding ) );
+							styles.push( 'padding:' + CKEDITOR.tools.cssLength( elementDefinition.padding ) );
 						if ( styles.length > 0 )
 							html.push( 'style="', styles.join( '; ' ), '" ' );
@@ -1997,7 +2191,12 @@
 			{ /*jsl:pass*/ }
 
+			// Some widgets don't have parent tabs (e.g. OK and Cancel buttons).
+			if ( !cursor )
+				return this;
+
 			tabId = cursor.getAttribute( 'name' );
-
-			this._.dialog.selectPage( tabId );
+			// Avoid duplicate select.
+			if ( this._.dialog._.currentTabId != tabId )
+				this._.dialog.selectPage( tabId );
 			return this;
 		},
@@ -2088,15 +2287,15 @@
 			onLoad : function( dialog, func )
 			{
-				dialog.on( 'load', func );
+				dialog.on( 'load', func, this );
 			},
 
 			onShow : function( dialog, func )
 			{
-				dialog.on( 'show', func );
+				dialog.on( 'show', func, this );
 			},
 
 			onHide : function( dialog, func )
 			{
-				dialog.on( 'hide', func );
+				dialog.on( 'hide', func, this );
 			}
 		},
@@ -2151,4 +2350,37 @@
 			element.removeAttribute( 'disabled' );
 			element.removeClass( 'cke_disabled' );
+		},
+
+		/**
+		 * Determines whether an UI element is enabled or not.
+		 * @returns {Boolean} Whether the UI element is enabled.
+		 * @example
+		 */
+		isEnabled : function()
+		{
+			return !this.getInputElement().getAttribute( 'disabled' );
+		},
+
+		/**
+		 * Determines whether an UI element is visible or not.
+		 * @returns {Boolean} Whether the UI element is visible.
+		 * @example
+		 */
+		isVisible : function()
+		{
+			return !!this.getInputElement().$.offsetHeight;
+		},
+
+		/**
+		 * Determines whether an UI element is focus-able or not.
+		 * Focus-able is defined as being both visible and enabled.
+		 * @returns {Boolean} Whether the UI element can be focused.
+		 * @example
+		 */
+		isFocusable : function()
+		{
+			if ( !this.isEnabled() || !this.isVisible() )
+				return false;
+			return true;
 		}
 	};
@@ -2237,5 +2469,8 @@
 		{
 			editor.openDialog( this.dialogName );
-		}
+		},
+		// Dialog commands just open a dialog ui, thus require no undo logic,
+		// undo support should dedicate to specific dialog implementation.
+		canUndo: false
 	};
 
@@ -2359,4 +2594,14 @@
 	})();
 
+	// Grab the margin data from skin definition and store it away.
+	CKEDITOR.skins.add = ( function()
+	{
+		var original = CKEDITOR.skins.add;
+		return function( skinName, skinDefinition )
+		{
+			skinData[ skinName ] = { margins : skinDefinition.margins };
+			return original.apply( this, arguments );
+		};
+	} )();
 })();
 
@@ -2390,4 +2635,6 @@
 				return dialog;
 			}
+			else if ( dialogDefinitions == 'failed' )
+				throw new Error( '[CKEDITOR.dialog.openDialog] Dialog "' + dialogName + '" failed when loading definition.' );
 
 			// Not loaded? Load the .js file first.
@@ -2399,4 +2646,7 @@
 			CKEDITOR.scriptLoader.load( CKEDITOR.getUrl( dialogDefinitions ), function()
 				{
+					// In case of plugin error, mark it as loading failed.
+					if ( typeof CKEDITOR.dialog._.dialogDefinitions[ dialogName ] != 'function' )
+							CKEDITOR.dialog._.dialogDefinitions[ dialogName ] =  'failed';
 					me.openDialog( dialogName );
 					body.setStyle( 'cursor', cursor );
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/dialogui/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/dialogui/plugin.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/dialogui/plugin.js	(revision 3747)
@@ -1,3 +1,3 @@
-/*
+﻿/*
 Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.html or http://ckeditor.com/license
@@ -13,5 +13,5 @@
 	{
 		this._ || ( this._ = {} );
-		this._['default'] = [ elementDefinition['default'] || '' ];
+		this._['default'] = this._.initValue = elementDefinition['default'] || '';
 		var args = [ this._ ];
 		for ( var i = 1 ; i < arguments.length ; i++ )
@@ -39,26 +39,25 @@
 		isChanged : function()
 		{
-			return this.getValue() != this.getDefault();
+			return this.getValue() != this.getInitValue();
 		},
 
 		reset : function()
 		{
-			this.setValue( this.getDefault() );
+			this.setValue( this.getInitValue() );
 		},
 
-		getDefault : function()
+		setInitValue : function()
 		{
-			var defs = this._['default'];
-			return defs[ defs.length - 1 ];
+			this._.initValue = this.getValue();
 		},
 
-		pushDefault : function()
+		resetInitValue : function()
 		{
-			this._['default'].push( this.getValue() );
+			this._.initValue = this._['default'];
 		},
 
-		popDefault : function()
+		getInitValue : function()
 		{
-			this._['default'].pop();
+			return this._.initValue;
 		}
 	},
@@ -134,5 +133,5 @@
 								_.labelId,
 								'" >',
-								CKEDITOR.tools.htmlEncode( elementDefinition.label ),
+								elementDefinition.label,
 								'</div>',
 								'<div class="cke_dialog_ui_labeled_content">',
@@ -196,5 +195,5 @@
 				initPrivateObject.call( this, elementDefinition );
 				var domId = this._.inputId = CKEDITOR.tools.getNextNumber() + '_textInput',
-					attributes = { 'class' : 'cke_dialog_ui_input_' + elementDefinition.type, id : domId },
+					attributes = { 'class' : 'cke_dialog_ui_input_' + elementDefinition.type, id : domId, type : 'text' },
 					i;
 
@@ -210,12 +209,22 @@
 
 				// If user presses Enter in a text box, it implies clicking OK for the dialog.
-				var me = this;
+				var me = this, keyPressedOnMe = false;
 				dialog.on( 'load', function()
 					{
+						me.getInputElement().on( 'keydown', function( evt )
+							{
+								if ( evt.data.getKeystroke() == 13 )
+									keyPressedOnMe = true;
+							} );
+
+						// Lower the priority this 'keyup' since 'ok' will close the dialog.(#3749)
 						me.getInputElement().on( 'keyup', function( evt )
 							{
-								if ( evt.data.$.keyCode == 13 )
+								if ( evt.data.getKeystroke() == 13 && keyPressedOnMe )
+								{
 									dialog.getButton( 'ok' ) && dialog.getButton( 'ok' ).click();
-							} );
+									keyPressedOnMe = false;
+								}
+							}, null, null, 1000 );
 					} );
 
@@ -277,5 +286,5 @@
 					for ( var i in attributes )
 						html.push( i + '="' + CKEDITOR.tools.htmlEncode( attributes[i] ) + '" ' );
-					html.push( '>', CKEDITOR.tools.htmlEncode( me.getDefault() ), '</textarea></div>' );
+					html.push( '>', CKEDITOR.tools.htmlEncode( me._['default'] ), '</textarea></div>' );
 					return html.join( '' );
 				};
@@ -303,8 +312,8 @@
 			checkbox : function( dialog, elementDefinition, htmlList )
 			{
-				if ( arguments.length < 3)
+				if ( arguments.length < 3 )
 					return;
 
-				var _ = initPrivateObject.call( this, elementDefinition, { 'default' : [ elementDefinition.checked || false ] }  );
+				var _ = initPrivateObject.call( this, elementDefinition, { 'default' : !!elementDefinition[ 'default' ] } );
 
 				if ( elementDefinition.validate )
@@ -321,5 +330,5 @@
 						attributes = { 'class' : 'cke_dialog_ui_checkbox_input', type : 'checkbox' };
 					cleanInnerDefinition( myDefinition );
-					if ( elementDefinition.checked )
+					if ( elementDefinition[ 'default' ] )
 						attributes.checked = 'checked';
 					_.checkbox = new CKEDITOR.ui.dialog.uiElement( dialog, myDefinition, html, 'input', null, attributes );
@@ -357,6 +366,6 @@
 
 				initPrivateObject.call( this, elementDefinition );
-				if ( !this.getDefault() )
-					this._['default'] = [ elementDefinition.items[0][1] ] ;
+				if ( !this._['default'] )
+					this._['default'] = this._.initValue = elementDefinition.items[0][1];
 				if ( elementDefinition.validate )
 					this.validate = elementDefinition.valdiate;
@@ -393,5 +402,5 @@
 								value : value
 							};
-						if ( me.getDefault() == value )
+						if ( me._['default'] == value )
 							inputAttributes.checked = 'checked';
 						cleanInnerDefinition( inputDefinition );
@@ -428,88 +437,54 @@
 			button : function( dialog, elementDefinition, htmlList )
 			{
-				if ( arguments.length < 3)
+				if ( !arguments.length )
 					return;
 
-				if ( typeof( elementDefinition ) == 'function' )
+				if ( typeof elementDefinition == 'function' )
 					elementDefinition = elementDefinition( dialog.getParentEditor() );
+
 				initPrivateObject.call( this, elementDefinition, { disabled : elementDefinition.disabled || false } );
-
-				/** @ignore */
-				var innerHTML = function()
-				{
-					return [ '<tbody><tr><td class="cke_dialog_ui_button_txt">',
-						   CKEDITOR.tools.htmlEncode( elementDefinition.label ),
-						   '</td></tr></tbody>' ].join( '' );
-				};
 
 				// Add OnClick event to this input.
 				CKEDITOR.event.implementOn( this );
 
+				var me = this;
+
 				// Register an event handler for processing button clicks.
-				var me = this;
 				dialog.on( 'load', function( eventInfo )
+					{
+						var element = this.getElement();
+
+						(function()
 						{
-							var element = this.getElement();
-							element.on( 'mousedown', function( evt )
+							element.on( 'click', function( evt )
 								{
-									// If button is disabled, don't do anything.
-									if ( me._.disabled )
-										return;
-
-									// Change styles to indicate the button is being clicked.
-									me.getElement().addClass( 'active' );
-
-									// Store the currently active button.
-									CKEDITOR.ui.dialog.button._.activeButton = [ me, me.getElement() ];
-								});
-
-							// IE BUG: Padding attributes are ignored for <td> cells.
-							if ( CKEDITOR.env.ie )
-								element.getChild( [0, 0, 0] ).$.innerHTML += '';
-
-							if ( !eventInfo.data.buttonHandlerRegistered )
-							{
-								CKEDITOR.document.on( 'mouseup', function( evt )
-									{
-										var target = evt.data.getTarget(),
-											activeButton = CKEDITOR.ui.dialog.button._.activeButton;
-
-										// If there's no active button, bail out.
-										if ( !activeButton )
-											return;
-
-										// Change styles to remove active status.
-										activeButton[1].removeClass( 'active' );
-
-										// Fire the click event - but only if the
-										// active button is the same as target.
-										if ( activeButton[1].equals( target.getAscendant( 'table' ) ) )
-											activeButton[0].fire( 'click', { dialog : activeButton[0].getDialog() } );
-
-										// Clear active button flag.
-										CKEDITOR.ui.dialog.button._.activeButton = null;
-									});
-
-								eventInfo.data.buttonHandlerRegistered = true;
-							}
-
-							this.getElement().unselectable();
-						}, this );
-
-				var styles = {},
-					align = elementDefinition.align || ( dialog.getParentEditor().lang.dir == 'ltr' ? 'left' : 'right' );
-
-				// IE6 & 7 BUG: Need to set margin as well as align.
-				if ( CKEDITOR.env.ie && CKEDITOR.env.version < 8 )
-				{
-					styles.margin = [
-						'auto',
-						align == 'right' ? '0px' : 'auto',
-						'auto',
-						align == 'left' ? '0px' : 'auto' ].join( ' ' );
-				}
-
-				CKEDITOR.ui.dialog.uiElement.call( this, dialog, elementDefinition, htmlList, 'table', styles,
-						{ align : align }, innerHTML );
+									me.fire( 'click', { dialog : me.getDialog() } );
+									evt.data.preventDefault();
+								} );
+						})();
+
+						element.unselectable();
+					}, this );
+
+				var outerDefinition = CKEDITOR.tools.extend( {}, elementDefinition );
+				delete outerDefinition.style;
+
+				CKEDITOR.ui.dialog.uiElement.call(
+					this,
+					dialog,
+					outerDefinition,
+					htmlList,
+					'a',
+					null,
+					{
+						style : elementDefinition.style,
+						href : 'javascript:void(0)',
+						title : elementDefinition.label,
+						hidefocus : 'true',
+						'class' : elementDefinition['class']
+					},
+					'<span class="cke_dialog_ui_button">' +
+						CKEDITOR.tools.htmlEncode( elementDefinition.label ) +
+					'</span>' );
 			},
 
@@ -612,6 +587,30 @@
 				{
 					_.frameId = CKEDITOR.tools.getNextNumber() + '_fileInput';
-					var html = [ '<iframe frameborder="0" allowtransparency="0" class="cke_dialog_ui_input_file" id="',
-						_.frameId, '" src="javascript: void(0)" ></iframe>' ];
+
+					// Support for custom document.domain in IE.
+					var isCustomDomain = CKEDITOR.env.ie && document.domain != window.location.hostname;
+
+					var html = [
+						'<iframe' +
+							' frameborder="0"' +
+							' allowtransparency="0"' +
+							' class="cke_dialog_ui_input_file"' +
+							' id="', _.frameId, '"' +
+							' src="javascript:void(' ];
+
+					html.push(
+							isCustomDomain ?
+								'(function(){' +
+									'document.open();' +
+									'document.domain=\'' + document.domain + '\';' +
+									'document.close();' +
+								'})()'
+							:
+								'0' );
+
+					html.push(
+							')">' +
+						'</iframe>' );
+
 					return html.join( '' );
 				};
@@ -658,10 +657,14 @@
 
 				var myDefinition = CKEDITOR.tools.extend( {}, elementDefinition );
+				var onClick = myDefinition.onClick;
 				myDefinition.className = ( myDefinition.className ? myDefinition.className + ' ' : '' ) + 'cke_dialog_ui_button';
 				myDefinition.onClick = function( evt )
 				{
 					var target = elementDefinition[ 'for' ];		// [ pageId, elementId ]
-					dialog.getContentElement( target[0], target[1] ).submit();
-					this.disable();
+					if ( !onClick || onClick.call( this, evt ) !== false )
+					{
+						dialog.getContentElement( target[0], target[1] ).submit();
+						this.disable();
+					}
 				};
 
@@ -707,4 +710,22 @@
 						theirHtml = '<span>' + theirHtml + '</span>';
 
+					// Look for focus function in definition.
+					if ( elementDefinition.focus )
+					{
+						var oldFocus = this.focus;
+						this.focus = function()
+						{
+							oldFocus.call( this );
+							elementDefinition.focus.call( this );
+							this.fire( 'focus' );
+						};
+						if ( elementDefinition.isFocusable )
+						{
+							var oldIsFocusable = this.isFocusable;
+							this.isFocusable = oldIsFocusable;
+						}
+						this.keyboardFocusable = true;
+					}
+
 					CKEDITOR.ui.dialog.uiElement.call( this, dialog, elementDefinition, myHtmlList, 'span', null, null, '' );
 
@@ -781,4 +802,6 @@
 					if ( !this._.disabled )
 						return this.fire( 'click', { dialog : this._.dialog } );
+					this.getElement().$.blur();
+					return false;
 				},
 
@@ -801,4 +824,14 @@
 					this._.disabled = true;
 					this.getElement().addClass( 'disabled' );
+				},
+
+				isVisible : function()
+				{
+					return !!this.getElement().$.firstChild.offsetHeight;
+				},
+
+				isEnabled : function()
+				{
+					return !this._.disabled;
 				},
 
@@ -825,5 +858,4 @@
 				accessKeyUp : function()
 				{
-					this.getElement().removeClass( 'active' );
 					this.click();
 				},
@@ -836,6 +868,8 @@
 				accessKeyDown : function()
 				{
-					this.getElement().addClass( 'active' );
-				}
+					this.focus();
+				},
+
+				keyboardFocusable : true
 			}, true );
 
@@ -885,5 +919,20 @@
 				{
 					this.select();
-				}
+				},
+
+				/**
+				 * Sets the value of this text input object.
+				 * @param {Object} value The new value.
+				 * @returns {CKEDITOR.ui.dialog.textInput} The current UI element.
+				 * @example
+				 * uiElement.setValue( 'Blamo' );
+				 */
+				setValue : function( value )
+				{
+					value = value || '';
+					return CKEDITOR.ui.dialog.uiElement.prototype.setValue.call( this, value );
+				},
+
+				keyboardFocusable : true
 			}, commonPrototype, true );
 
@@ -955,5 +1004,7 @@
 						selectElement.remove( 0 );
 					return this;
-				}
+				},
+
+				keyboardFocusable : true
 			}, commonPrototype, true );
 
@@ -1029,5 +1080,7 @@
 						return null;
 					}
-				}
+				},
+
+				keyboardFocusable : true
 			}, commonPrototype, true );
 
@@ -1117,5 +1170,7 @@
 						return null;
 					}
-				}
+				},
+
+				keyboardFocusable : true
 			}, commonPrototype, true );
 
@@ -1131,6 +1186,8 @@
 				getInputElement : function()
 				{
-					return new CKEDITOR.dom.element( CKEDITOR.document.getById( this._.frameId )
-						.$.contentWindow.document.forms[0].elements[0] );
+					var frameDocument = CKEDITOR.document.getById( this._.frameId ).getFrameDocument();
+					return frameDocument.$.forms.length > 0 ?
+						new CKEDITOR.dom.element( frameDocument.$.forms[0].elements[0] ) :
+						this.getElement();
 				},
 
@@ -1144,4 +1201,14 @@
 					this.getInputElement().getParent().$.submit();
 					return this;
+				},
+
+				/**
+				 * Get the action assigned to the form.
+				 * @returns {String} The value of the action.
+				 * @example
+				 */
+				getAction : function( action )
+				{
+					return this.getInputElement().getParent().$.action;
 				},
 
@@ -1155,23 +1222,47 @@
 				{
 					var frameElement = CKEDITOR.document.getById( this._.frameId ),
-						frameDocument = frameElement.$.contentWindow.document,
+						frameDocument = frameElement.getFrameDocument(),
 						elementDefinition = this._.definition,
 						buttons = this._.buttons;
-					frameDocument.open();
-					frameDocument.write( [ '<html><head><title></title></head><body style="margin: 0; overflow: hidden; background: transparent;">',
-							'<form enctype="multipart/form-data" method="POST" action="',
-							CKEDITOR.tools.htmlEncode( elementDefinition.action ),
-							'">',
-							'<input type="file" name="',
-							CKEDITOR.tools.htmlEncode( elementDefinition.id || 'cke_upload' ),
-							'" size="',
-							CKEDITOR.tools.htmlEncode( elementDefinition.size || '' ),
-							'" />',
-							'</form>',
-							'</body></html>' ].join( '' ) );
-					frameDocument.close();
-
-					for ( var i = 0 ; i < buttons.length ; i++ )
-						buttons[i].enable();
+
+					function generateFormField()
+					{
+						frameDocument.$.open();
+
+						// Support for custom document.domain in IE.
+						if ( CKEDITOR.env.isCustomDomain() )
+							frameDocument.$.domain = document.domain;
+
+						frameDocument.$.write( [ '<html><head><title></title></head><body style="margin: 0; overflow: hidden; background: transparent;">',
+								'<form enctype="multipart/form-data" method="POST" action="',
+								CKEDITOR.tools.htmlEncode( elementDefinition.action ),
+								'">',
+								'<input type="file" name="',
+								CKEDITOR.tools.htmlEncode( elementDefinition.id || 'cke_upload' ),
+								'" size="',
+								CKEDITOR.tools.htmlEncode( elementDefinition.size || '' ),
+								'" />',
+								'</form>',
+								'</body></html>' ].join( '' ) );
+
+						frameDocument.$.close();
+
+						for ( var i = 0 ; i < buttons.length ; i++ )
+							buttons[i].enable();
+					}
+
+					// #3465: Wait for the browser to finish rendering the dialog first.
+					if ( CKEDITOR.env.gecko )
+						setTimeout( generateFormField, 500 );
+					else
+						generateFormField();
+				},
+
+				getValue : function()
+				{
+					// The file path returned from the input tag is incomplete anyway, so it's
+					// safe to ignore it and prevent the confirmation dialog from appearing.
+					// (Part of #3465)
+					return '';
 				},
 
@@ -1182,10 +1273,10 @@
 				 * @example
 				 */
-				eventProcessors : commonEventProcessors
+				eventProcessors : commonEventProcessors,
+
+				keyboardFocusable : true
 			}, true );
 
 	CKEDITOR.ui.dialog.fileButton.prototype = new CKEDITOR.ui.dialog.button;
-
-	CKEDITOR.ui.dialog.button._ = { activeButton : null };
 
 	CKEDITOR.dialog.addUIElement( 'text', textBuilder );
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/domiterator/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/domiterator/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/domiterator/plugin.js	(revision 3747)
@@ -0,0 +1,316 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @file DOM iterator, which iterates over list items, lines and paragraphs.
+ */
+
+CKEDITOR.plugins.add( 'domiterator' );
+
+(function()
+{
+
+	var iterator = function( range )
+	{
+		if ( arguments.length < 1 )
+			return;
+
+		this.range = range;
+		this.forceBrBreak = false;
+		this.enforceRealBlocks = false;
+
+		this._ || ( this._ = {} );
+	},
+		beginWhitespaceRegex = /^[\r\n\t ]+$/;
+
+
+	iterator.prototype = {
+		getNextParagraph : function( blockTag )
+		{
+			// The block element to be returned.
+			var block;
+
+			// The range object used to identify the paragraph contents.
+			var range;
+
+			// Indicats that the current element in the loop is the last one.
+			var isLast;
+
+			// Instructs to cleanup remaining BRs.
+			var removePreviousBr, removeLastBr;
+
+			// This is the first iteration. Let's initialize it.
+			if ( !this._.lastNode )
+			{
+				range = this.range.clone();
+				range.enlarge( this.forceBrBreak ? CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS : CKEDITOR.ENLARGE_BLOCK_CONTENTS );
+
+				var walker = new CKEDITOR.dom.walker( range ),
+					ignoreBookmarkTextEvaluator = CKEDITOR.dom.walker.bookmark( true, true );
+				// Avoid anchor inside bookmark inner text.
+				walker.evaluator = ignoreBookmarkTextEvaluator;
+				this._.nextNode = walker.next();
+				// TODO: It's better to have walker.reset() used here.
+				walker = new CKEDITOR.dom.walker( range );
+				walker.evaluator = ignoreBookmarkTextEvaluator;
+				var lastNode = walker.previous();
+				this._.lastNode = lastNode.getNextSourceNode( true );
+				// Probably the document end is reached, we need a marker node.
+				if ( !this._.lastNode )
+				{
+						this._.lastNode = range.document.createText( '' );
+						this._.lastNode.insertAfter( lastNode );
+				}
+				// Let's reuse this variable.
+				range = null;
+			}
+
+			var currentNode = this._.nextNode;
+			lastNode = this._.lastNode;
+
+			this._.nextNode = null;
+			while ( currentNode )
+			{
+				// closeRange indicates that a paragraph boundary has been found,
+				// so the range can be closed.
+				var closeRange = false;
+
+				// includeNode indicates that the current node is good to be part
+				// of the range. By default, any non-element node is ok for it.
+				var includeNode = ( currentNode.type != CKEDITOR.NODE_ELEMENT ),
+					continueFromSibling = false;
+
+				// If it is an element node, let's check if it can be part of the
+				// range.
+				if ( !includeNode )
+				{
+					var nodeName = currentNode.getName();
+
+					if ( currentNode.isBlockBoundary( this.forceBrBreak && { br : 1 } ) )
+					{
+						// <br> boundaries must be part of the range. It will
+						// happen only if ForceBrBreak.
+						if ( nodeName == 'br' )
+							includeNode = true;
+						else if ( !range && !currentNode.getChildCount() && nodeName != 'hr' )
+						{
+							// If we have found an empty block, and haven't started
+							// the range yet, it means we must return this block.
+							block = currentNode;
+							isLast = currentNode.equals( lastNode );
+							break;
+						}
+
+						// The range must finish right before the boundary,
+						// including possibly skipped empty spaces. (#1603)
+						if ( range )
+						{
+							range.setEndAt( currentNode, CKEDITOR.POSITION_BEFORE_START );
+
+							// The found boundary must be set as the next one at this
+							// point. (#1717)
+							if ( nodeName != 'br' )
+								this._.nextNode = currentNode;
+						}
+
+						closeRange = true;
+					}
+					else
+					{
+						// If we have child nodes, let's check them.
+						if ( currentNode.getFirst() )
+						{
+							// If we don't have a range yet, let's start it.
+							if ( !range )
+							{
+								range = new CKEDITOR.dom.range( this.range.document );
+								range.setStartAt( currentNode, CKEDITOR.POSITION_BEFORE_START );
+							}
+
+							currentNode = currentNode.getFirst();
+							continue;
+						}
+						includeNode = true;
+					}
+				}
+				else if ( currentNode.type == CKEDITOR.NODE_TEXT )
+				{
+					// Ignore normal whitespaces (i.e. not including &nbsp; or
+					// other unicode whitespaces) before/after a block node.
+					if ( beginWhitespaceRegex.test( currentNode.getText() ) )
+						includeNode = false;
+				}
+
+				// The current node is good to be part of the range and we are
+				// starting a new range, initialize it first.
+				if ( includeNode && !range )
+				{
+					range = new CKEDITOR.dom.range( this.range.document );
+					range.setStartAt( currentNode, CKEDITOR.POSITION_BEFORE_START );
+				}
+
+				// The last node has been found.
+				isLast = ( ( !closeRange || includeNode ) && currentNode.equals( lastNode ) );
+
+				// If we are in an element boundary, let's check if it is time
+				// to close the range, otherwise we include the parent within it.
+				if ( range && !closeRange )
+				{
+					while ( !currentNode.getNext() && !isLast )
+					{
+						var parentNode = currentNode.getParent();
+
+						if ( parentNode.isBlockBoundary( this.forceBrBreak && { br : 1 } ) )
+						{
+							closeRange = true;
+							isLast = isLast || ( parentNode.equals( lastNode) );
+							break;
+						}
+
+						currentNode = parentNode;
+						includeNode = true;
+						isLast = ( currentNode.equals( lastNode ) );
+						continueFromSibling = true;
+					}
+				}
+
+				// Now finally include the node.
+				if ( includeNode )
+					range.setEndAt( currentNode, CKEDITOR.POSITION_AFTER_END );
+
+				// We have found a block boundary. Let's close the range and move out of the
+				// loop.
+				if ( ( closeRange || isLast ) && range )
+				{
+					var boundaryNodes = range.getBoundaryNodes(),
+						startPath = new CKEDITOR.dom.elementPath( range.startContainer ),
+						endPath = new CKEDITOR.dom.elementPath( range.endContainer );
+					if ( boundaryNodes.startNode.equals( boundaryNodes.endNode )
+							&& boundaryNodes.startNode.getParent().equals( startPath.blockLimit )
+							&& boundaryNodes.startNode.type == CKEDITOR.NODE_ELEMENT && boundaryNodes.startNode.getAttribute( '_fck_bookmark' ) )
+						range = null;
+					else
+						break;
+				}
+
+				if ( isLast )
+					break;
+
+				currentNode = currentNode.getNextSourceNode( continueFromSibling, null, lastNode );
+			}
+
+			// Now, based on the processed range, look for (or create) the block to be returned.
+			if ( !block )
+			{
+				// If no range has been found, this is the end.
+				if ( !range )
+				{
+					this._.nextNode = null;
+					return null;
+				}
+
+				startPath = new CKEDITOR.dom.elementPath( range.startContainer );
+				var startBlockLimit = startPath.blockLimit,
+					checkLimits = { div : 1, th : 1, td : 1 };
+				block = startPath.block;
+
+				if ( !block
+						&& !this.enforceRealBlocks
+						&& checkLimits[ startBlockLimit.getName() ]
+						&& range.checkStartOfBlock()
+						&& range.checkEndOfBlock() )
+					block = startBlockLimit;
+				else if ( !block || ( this.enforceRealBlocks && block.getName() == 'li' ) )
+				{
+					// Create the fixed block.
+					block = this.range.document.createElement( blockTag || 'p' );
+
+					// Move the contents of the temporary range to the fixed block.
+					range.extractContents().appendTo( block );
+					block.trim();
+
+					// Insert the fixed block into the DOM.
+					range.insertNode( block );
+
+					removePreviousBr = removeLastBr = true;
+				}
+				else if ( block.getName() != 'li' )
+				{
+					// If the range doesn't includes the entire contents of the
+					// block, we must split it, isolating the range in a dedicated
+					// block.
+					if ( !range.checkStartOfBlock() || !range.checkEndOfBlock() )
+					{
+						// The resulting block will be a clone of the current one.
+						block = block.clone( false );
+
+						// Extract the range contents, moving it to the new block.
+						range.extractContents().appendTo( block );
+						block.trim();
+
+						// Split the block. At this point, the range will be in the
+						// right position for our intents.
+						var splitInfo = range.splitBlock();
+
+						removePreviousBr = !splitInfo.wasStartOfBlock;
+						removeLastBr = !splitInfo.wasEndOfBlock;
+
+						// Insert the new block into the DOM.
+						range.insertNode( block );
+					}
+				}
+				else if ( !isLast )
+				{
+					// LIs are returned as is, with all their children (due to the
+					// nested lists). But, the next node is the node right after
+					// the current range, which could be an <li> child (nested
+					// lists) or the next sibling <li>.
+
+					this._.nextNode = ( block.equals( lastNode ) ? null :
+						range.getBoundaryNodes().endNode.getNextSourceNode( true, null, lastNode ) );
+				}
+			}
+
+			if ( removePreviousBr )
+			{
+				var previousSibling = block.getPrevious();
+				if ( previousSibling && previousSibling.type == CKEDITOR.NODE_ELEMENT )
+				{
+					if ( previousSibling.getName() == 'br' )
+						previousSibling.remove();
+					else if ( previousSibling.getLast() && previousSibling.getLast().$.nodeName.toLowerCase() == 'br' )
+						previousSibling.getLast().remove();
+				}
+			}
+
+			if ( removeLastBr )
+			{
+				var lastChild = block.getLast();
+				if ( lastChild && lastChild.type == CKEDITOR.NODE_ELEMENT && lastChild.getName() == 'br' )
+				{
+					// Take care not to remove the block expanding <br> in non-IE browsers.
+					if ( CKEDITOR.env.ie || lastChild.getPrevious() || lastChild.getNext() )
+						lastChild.remove();
+				}
+			}
+
+			// Get a reference for the next element. This is important because the
+			// above block can be removed or changed, so we can rely on it for the
+			// next interation.
+			if ( !this._.nextNode )
+			{
+				this._.nextNode = ( isLast || block.equals( lastNode ) ) ? null :
+					block.getNextSourceNode( true, null, lastNode );
+			}
+
+			return block;
+		}
+	};
+
+	CKEDITOR.dom.range.prototype.createIterator = function()
+	{
+		return new iterator( this );
+	};
+})();
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/editingblock/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/editingblock/plugin.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/editingblock/plugin.js	(revision 3747)
@@ -22,5 +22,5 @@
 	CKEDITOR.plugins.add( 'editingblock',
 	{
-		init : function( editor, pluginPath )
+		init : function( editor )
 		{
 			if ( !editor.config.editingBlock )
@@ -41,16 +41,27 @@
 				{
 					editor.setMode( editor.config.startupMode );
-
-					if ( editor.config.startupFocus )
-						editor.focus();
 				});
 
 			editor.on( 'afterSetData', function()
 				{
-					if ( !isHandlingData && editor.mode )
+					if ( !isHandlingData )
 					{
-						isHandlingData = true;
-						getMode( editor ).loadData( editor.getData() );
-						isHandlingData = false;
+						function setData()
+						{
+							isHandlingData = true;
+							getMode( editor ).loadData( editor.getData() );
+							isHandlingData = false;
+						}
+
+						if ( editor.mode )
+							setData();
+						else
+						{
+							editor.on( 'mode', function()
+								{
+									setData();
+									editor.removeListener( 'mode', arguments.callee );
+								});
+						}
 					}
 				});
@@ -71,4 +82,48 @@
 						event.data = getMode( editor ).getSnapshotData();
 				});
+
+			editor.on( 'loadSnapshot', function( event )
+				{
+					if ( editor.mode )
+						getMode( editor ).loadSnapshotData( event.data );
+				});
+
+			// For the first "mode" call, we'll also fire the "instanceReady"
+			// event.
+			editor.on( 'mode', function( event )
+				{
+					// Do that once only.
+					event.removeListener();
+
+					// Grab editor focus if the editor container is focused. (#3104)
+					var focusGrabber = editor.container;
+
+					// Safari 3 can't handle tabindex in all elements, so we do
+					// a trick to make it move the focus to the editor on TAB.
+					if ( CKEDITOR.env.webkit && CKEDITOR.env.version < 528 )
+					{
+						var tabIndex = editor.config.tabIndex || editor.element.getAttribute( 'tabindex' ) || 0;
+						focusGrabber = focusGrabber.append( CKEDITOR.dom.element.createFromHtml(
+							'<input' +
+								' tabindex="' + tabIndex + '"' +
+								' style="position:absolute; left:-10000">' ) );
+					}
+
+					focusGrabber.on( 'focus', function()
+						{
+							editor.focus();
+						});
+
+					if ( editor.config.startupFocus )
+						editor.focus();
+
+					// Fire instanceReady for both the editor and CKEDITOR, but
+					// defer this until the whole execution has completed
+					// to guarantee the editor is fully responsible.
+					setTimeout( function(){
+						editor.fireOnce( 'instanceReady' );
+						CKEDITOR.fire( 'instanceReady', null, editor );
+					} );
+				});
 		}
 	});
@@ -137,5 +192,5 @@
 		}
 
-		modeEditor.load( holderElement, data || this.getData() );
+		modeEditor.load( holderElement, ( typeof data ) != 'string'  ? this.getData() : data);
 	};
 
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/elementspath/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/elementspath/plugin.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/elementspath/plugin.js	(revision 3747)
@@ -26,9 +26,11 @@
 	};
 
+	var emptyHtml = '<span class="cke_empty">&nbsp;</span>';
+
 	CKEDITOR.plugins.add( 'elementspath',
 	{
 		requires : [ 'selection' ],
 
-		init : function( editor, pluginPath )
+		init : function( editor )
 		{
 			var spaceId = 'cke_path_' + editor.name;
@@ -48,5 +50,5 @@
 				{
 					if ( event.data.space == 'bottom' )
-						event.data.html += '<div id="' + spaceId + '" class="cke_path"><br></div>';
+						event.data.html += '<div id="' + spaceId + '" class="cke_path">' + emptyHtml + '</div>';
 				});
 
@@ -91,4 +93,7 @@
 								' tabindex="-1"' +
 								' title="', editor.lang.elementsPath.eleTitle.replace( /%1/, name ), '"' +
+								( ( CKEDITOR.env.gecko && CKEDITOR.env.version < 10900 ) ?
+								' onfocus="event.preventBubble();"' : '' ) +
+								' hidefocus="true" ' +
 								' onkeydown="return CKEDITOR._.elementsPath.keydown(\'', this.name, '\',', index, ', event);"' +
 								extra ,
@@ -103,10 +108,10 @@
 					}
 
-					getSpaceElement().setHtml( html.join('') );
+					getSpaceElement().setHtml( html.join('') + emptyHtml );
 				});
 
 			editor.on( 'contentDomUnload', function()
 				{
-					getSpaceElement().setHtml( '<br>' );
+					getSpaceElement().setHtml( emptyHtml );
 				});
 
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/enterkey/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/enterkey/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/enterkey/plugin.js	(revision 3747)
@@ -0,0 +1,323 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+(function()
+{
+	CKEDITOR.plugins.add( 'enterkey',
+	{
+		requires : [ 'keystrokes', 'indent' ],
+
+		init : function( editor )
+		{
+			var specialKeys = editor.specialKeys;
+			specialKeys[ 13 ] = enter;
+			specialKeys[ CKEDITOR.SHIFT + 13 ] = shiftEnter;
+		}
+	});
+
+	var forceMode,
+		headerTagRegex = /^h[1-6]$/;
+
+	function shiftEnter( editor )
+	{
+		// On SHIFT+ENTER we want to enforce the mode to be respected, instead
+		// of cloning the current block. (#77)
+		forceMode = 1;
+
+		return enter( editor, editor.config.shiftEnterMode );
+	}
+
+	function enter( editor, mode )
+	{
+		// Only effective within document.
+		if ( editor.mode != 'wysiwyg' )
+			return false;
+
+		if ( !mode )
+			mode = editor.config.enterMode;
+
+		// Use setTimout so the keys get cancelled immediatelly.
+		setTimeout( function()
+			{
+				editor.fire( 'saveSnapshot' );	// Save undo step.
+				if ( mode == CKEDITOR.ENTER_BR || editor.getSelection().getStartElement().hasAscendant( 'pre', true ) )
+					enterBr( editor, mode );
+				else
+					enterBlock( editor, mode );
+
+				forceMode = 0;
+			}, 0 );
+
+		return true;
+	}
+
+	function enterBlock( editor, mode, range )
+	{
+		// Get the range for the current selection.
+		range = range || getRange( editor );
+
+		var doc = range.document;
+
+		// Determine the block element to be used.
+		var blockTag = ( mode == CKEDITOR.ENTER_DIV ? 'div' : 'p' );
+
+		// Split the range.
+		var splitInfo = range.splitBlock( blockTag );
+
+		if ( !splitInfo )
+			return;
+
+		// Get the current blocks.
+		var previousBlock	= splitInfo.previousBlock,
+			nextBlock		= splitInfo.nextBlock;
+
+		var isStartOfBlock	= splitInfo.wasStartOfBlock,
+			isEndOfBlock	= splitInfo.wasEndOfBlock;
+
+		var node;
+
+		// If this is a block under a list item, split it as well. (#1647)
+		if ( nextBlock )
+		{
+			node = nextBlock.getParent();
+			if ( node.is( 'li' ) )
+			{
+				nextBlock.breakParent( node );
+				nextBlock.move( nextBlock.getNext(), true );
+			}
+		}
+		else if ( previousBlock && ( node = previousBlock.getParent() ) && node.is( 'li' ) )
+		{
+			previousBlock.breakParent( node );
+			range.moveToElementEditStart( previousBlock.getNext() );
+			previousBlock.move( previousBlock.getPrevious() );
+		}
+
+		// If we have both the previous and next blocks, it means that the
+		// boundaries were on separated blocks, or none of them where on the
+		// block limits (start/end).
+		if ( !isStartOfBlock && !isEndOfBlock )
+		{
+			// If the next block is an <li> with another list tree as the first
+			// child, we'll need to append a placeholder or the list item
+			// wouldn't be editable. (#1420)
+			if ( nextBlock.is( 'li' ) && ( node = nextBlock.getFirst() )
+					&& node.is && node.is( 'ul', 'ol') )
+				nextBlock.insertBefore( doc.createText( '\xa0' ), node );
+
+			// Move the selection to the end block.
+			if ( nextBlock )
+				range.moveToElementEditStart( nextBlock );
+		}
+		else
+		{
+
+			if ( isStartOfBlock && isEndOfBlock && previousBlock.is( 'li' ) )
+			{
+				editor.execCommand( 'outdent' );
+				return;
+			}
+
+			var newBlock;
+
+			if ( previousBlock )
+			{
+				// Do not enter this block if it's a header tag, or we are in
+				// a Shift+Enter (#77). Create a new block element instead
+				// (later in the code).
+				if ( !forceMode && !headerTagRegex.test( previousBlock.getName() ) )
+				{
+					// Otherwise, duplicate the previous block.
+					newBlock = previousBlock.clone();
+				}
+			}
+			else if ( nextBlock )
+				newBlock = nextBlock.clone();
+
+			if ( !newBlock )
+				newBlock = doc.createElement( blockTag );
+
+			// Recreate the inline elements tree, which was available
+			// before hitting enter, so the same styles will be available in
+			// the new block.
+			var elementPath = splitInfo.elementPath;
+			if ( elementPath )
+			{
+				for ( var i = 0, len = elementPath.elements.length ; i < len ; i++ )
+				{
+					var element = elementPath.elements[ i ];
+
+					if ( element.equals( elementPath.block ) || element.equals( elementPath.blockLimit ) )
+						break;
+
+					if ( CKEDITOR.dtd.$removeEmpty[ element.getName() ] )
+					{
+						element = element.clone();
+						newBlock.moveChildren( element );
+						newBlock.append( element );
+					}
+				}
+			}
+
+			if ( !CKEDITOR.env.ie )
+				newBlock.appendBogus();
+
+			range.insertNode( newBlock );
+
+			// This is tricky, but to make the new block visible correctly
+			// we must select it.
+			// The previousBlock check has been included because it may be
+			// empty if we have fixed a block-less space (like ENTER into an
+			// empty table cell).
+			if ( CKEDITOR.env.ie && isStartOfBlock && ( !isEndOfBlock || !previousBlock.getChildCount() ) )
+			{
+				// Move the selection to the new block.
+				range.moveToElementEditStart( isEndOfBlock ? previousBlock : newBlock );
+				range.select();
+			}
+
+			// Move the selection to the new block.
+			range.moveToElementEditStart( isStartOfBlock && !isEndOfBlock ? nextBlock : newBlock );
+		}
+
+		if ( !CKEDITOR.env.ie )
+		{
+			if ( nextBlock )
+			{
+				// If we have split the block, adds a temporary span at the
+				// range position and scroll relatively to it.
+				var tmpNode = doc.createElement( 'span' );
+
+				// We need some content for Safari.
+				tmpNode.setHtml( '&nbsp;' );
+
+				range.insertNode( tmpNode );
+				tmpNode.scrollIntoView();
+				range.deleteContents();
+			}
+			else
+			{
+				// We may use the above scroll logic for the new block case
+				// too, but it gives some weird result with Opera.
+				newBlock.scrollIntoView();
+			}
+		}
+
+		range.select();
+	}
+
+	function enterBr( editor, mode )
+	{
+		// Get the range for the current selection.
+		var range = getRange( editor ),
+			doc = range.document;
+
+		// Determine the block element to be used.
+		var blockTag = ( mode == CKEDITOR.ENTER_DIV ? 'div' : 'p' );
+
+		var isEndOfBlock = range.checkEndOfBlock();
+
+		var elementPath = new CKEDITOR.dom.elementPath( editor.getSelection().getStartElement() );
+
+		var startBlock = elementPath.block,
+			startBlockTag = startBlock && elementPath.block.getName();
+
+		var isPre = false;
+
+		if ( !forceMode && startBlockTag == 'li' )
+		{
+			enterBlock( editor, mode, range );
+			return;
+		}
+
+		// If we are at the end of a header block.
+		if ( !forceMode && isEndOfBlock && headerTagRegex.test( startBlockTag ) )
+		{
+			// Insert a <br> after the current paragraph.
+			doc.createElement( 'br' ).insertAfter( startBlock );
+
+			// A text node is required by Gecko only to make the cursor blink.
+			if ( CKEDITOR.env.gecko )
+				doc.createText( '' ).insertAfter( startBlock );
+
+			// IE has different behaviors regarding position.
+			range.setStartAt( startBlock.getNext(), CKEDITOR.env.ie ? CKEDITOR.POSITION_BEFORE_START : CKEDITOR.POSITION_AFTER_START );
+		}
+		else
+		{
+			var lineBreak;
+
+			isPre = ( startBlockTag == 'pre' );
+
+			if ( isPre )
+				lineBreak = doc.createText( CKEDITOR.env.ie ? '\r' : '\n' );
+			else
+				lineBreak = doc.createElement( 'br' );
+
+			range.insertNode( lineBreak );
+
+			// A text node is required by Gecko only to make the cursor blink.
+			// We need some text inside of it, so the bogus <br> is properly
+			// created.
+			if ( !CKEDITOR.env.ie )
+				doc.createText( '\ufeff' ).insertAfter( lineBreak );
+
+			// If we are at the end of a block, we must be sure the bogus node is available in that block.
+			if ( isEndOfBlock && !CKEDITOR.env.ie )
+				lineBreak.getParent().appendBogus();
+
+			// Now we can remove the text node contents, so the caret doesn't
+			// stop on it.
+			if ( !CKEDITOR.env.ie )
+				lineBreak.getNext().$.nodeValue = '';
+			// IE has different behavior regarding position.
+			if ( CKEDITOR.env.ie )
+				range.setStartAt( lineBreak, CKEDITOR.POSITION_AFTER_END );
+			else
+				range.setStartAt( lineBreak.getNext(), CKEDITOR.POSITION_AFTER_START );
+
+			// Scroll into view, for non IE.
+			if ( !CKEDITOR.env.ie )
+			{
+				var dummy = null;
+
+				// BR is not positioned in Opera and Webkit.
+				if ( !CKEDITOR.env.gecko )
+				{
+					dummy = doc.createElement( 'span' );
+					// We need have some contents for Webkit to position it
+					// under parent node. ( #3681)
+					dummy.setHtml('&nbsp;');
+				}
+				else
+					dummy = doc.createElement( 'br' );
+
+				dummy.insertBefore( lineBreak.getNext() );
+				dummy.scrollIntoView();
+				dummy.remove();
+			}
+		}
+
+		// This collapse guarantees the cursor will be blinking.
+		range.collapse( true );
+
+		range.select( isPre );
+	}
+
+	function getRange( editor )
+	{
+		// Get the selection ranges.
+		var ranges = editor.getSelection().getRanges();
+
+		// Delete the contents of all ranges except the first one.
+		for ( var i = ranges.length - 1 ; i > 0 ; i-- )
+		{
+			ranges[ i ].deleteContents();
+		}
+
+		// Return the first range.
+		return ranges[ 0 ];
+	}
+})();
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/entities/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/entities/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/entities/plugin.js	(revision 3747)
@@ -0,0 +1,152 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+(function()
+{
+	var entities =
+
+		// Base HTML entities.
+		'nbsp,gt,lt,quot,' +
+
+		// Latin-1 Entities
+		'iexcl,cent,pound,curren,yen,brvbar,sect,uml,copy,ordf,laquo,' +
+		'not,shy,reg,macr,deg,plusmn,sup2,sup3,acute,micro,para,middot,' +
+		'cedil,sup1,ordm,raquo,frac14,frac12,frac34,iquest,times,divide,' +
+
+		// Symbols
+		'fnof,bull,hellip,prime,Prime,oline,frasl,weierp,image,real,trade,' +
+		'alefsym,larr,uarr,rarr,darr,harr,crarr,lArr,uArr,rArr,dArr,hArr,' +
+		'forall,part,exist,empty,nabla,isin,notin,ni,prod,sum,minus,lowast,' +
+		'radic,prop,infin,ang,and,or,cap,cup,int,there4,sim,cong,asymp,ne,' +
+		'equiv,le,ge,sub,sup,nsub,sube,supe,oplus,otimes,perp,sdot,lceil,' +
+		'rceil,lfloor,rfloor,lang,rang,loz,spades,clubs,hearts,diams,' +
+
+		// Other Special Characters
+		'circ,tilde,ensp,emsp,thinsp,zwnj,zwj,lrm,rlm,ndash,mdash,lsquo,' +
+		'rsquo,sbquo,ldquo,rdquo,bdquo,dagger,Dagger,permil,lsaquo,rsaquo,' +
+		'euro';
+
+	// Latin Letters Entities
+	var latin =
+		'Agrave,Aacute,Acirc,Atilde,Auml,Aring,AElig,Ccedil,Egrave,Eacute,' +
+		'Ecirc,Euml,Igrave,Iacute,Icirc,Iuml,ETH,Ntilde,Ograve,Oacute,Ocirc,' +
+		'Otilde,Ouml,Oslash,Ugrave,Uacute,Ucirc,Uuml,Yacute,THORN,szlig,' +
+		'agrave,aacute,acirc,atilde,auml,aring,aelig,ccedil,egrave,eacute,' +
+		'ecirc,euml,igrave,iacute,icirc,iuml,eth,ntilde,ograve,oacute,ocirc,' +
+		'otilde,ouml,oslash,ugrave,uacute,ucirc,uuml,yacute,thorn,yuml,' +
+		'OElig,oelig,Scaron,scaron,Yuml';
+
+	// Greek Letters Entities.
+	var greek =
+		'Alpha,Beta,Gamma,Delta,Epsilon,Zeta,Eta,Theta,Iota,Kappa,Lambda,Mu,' +
+		'Nu,Xi,Omicron,Pi,Rho,Sigma,Tau,Upsilon,Phi,Chi,Psi,Omega,alpha,' +
+		'beta,gamma,delta,epsilon,zeta,eta,theta,iota,kappa,lambda,mu,nu,xi,' +
+		'omicron,pi,rho,sigmaf,sigma,tau,upsilon,phi,chi,psi,omega,thetasym,' +
+		'upsih,piv';
+
+	function buildTable( entities )
+	{
+		var table = {},
+			regex = [];
+
+		// Entities that the browsers DOM don't transform to the final char
+		// automatically.
+		var specialTable =
+			{
+				nbsp	: '\u00A0',		// IE | FF
+				shy		: '\u00AD',		// IE
+				gt		: '\u003E',		// IE | FF |   --   | Opera
+				lt		: '\u003C'		// IE | FF | Safari | Opera
+			};
+
+		entities = entities.replace( /\b(nbsp|shy|gt|lt|amp)(?:,|$)/g, function( match, entity )
+			{
+				table[ specialTable[ entity ] ] = '&' + entity + ';';
+				regex.push( specialTable[ entity ] );
+				return '';
+			});
+
+		// Transforms the entities string into an array.
+		entities = entities.split( ',' );
+
+		// Put all entities inside a DOM element, transforming them to their
+		// final chars.
+		var div = document.createElement( 'div' ),
+			chars;
+		div.innerHTML = '&' + entities.join( ';&' ) + ';';
+		chars = div.innerHTML;
+		div = null;
+
+		// Add all chars to the table.
+		for ( var i = 0 ; i < chars.length ; i++ )
+		{
+			var charAt = chars.charAt( i );
+			table[ charAt ] = '&' + entities[ i ] + ';';
+			regex.push( charAt );
+		}
+
+		table.regex = regex.join( '' );
+
+		return table;
+	}
+
+	CKEDITOR.plugins.add( 'entities',
+	{
+		afterInit : function( editor )
+		{
+			var config = editor.config;
+
+			if ( !config.entities )
+				return;
+
+			var dataProcessor = editor.dataProcessor,
+				htmlFilter = dataProcessor && dataProcessor.htmlFilter;
+
+			if ( htmlFilter )
+			{
+				var selectedEntities = entities;
+
+				if ( config.entities_latin )
+					selectedEntities += ',' + latin;
+
+				if ( config.entities_greek )
+					selectedEntities += ',' + greek;
+
+				if ( config.entities_additional )
+					selectedEntities += ',' + config.entities_additional;
+
+				var entitiesTable = buildTable( selectedEntities );
+
+				// Create the Regex used to find entities in the text.
+				var entitiesRegex = '[' + entitiesTable.regex + ']';
+				delete entitiesTable.regex;
+
+				if ( config.entities_processNumerical )
+					entitiesRegex = '[^ -~]|' + entitiesRegex ;
+
+				entitiesRegex = new RegExp( entitiesRegex, 'g' );
+
+				function getChar( character )
+				{
+					return entitiesTable[ character ] || ( '&#' + character.charCodeAt(0) + ';' );
+				}
+
+				htmlFilter.addRules(
+					{
+						text : function( text )
+						{
+							return text.replace( entitiesRegex, getChar );
+						}
+					});
+			}
+		}
+	});
+})();
+
+CKEDITOR.config.entities = true;
+CKEDITOR.config.entities_latin = true;
+CKEDITOR.config.entities_greek = true;
+CKEDITOR.config.entities_processNumerical = false;
+CKEDITOR.config.entities_additional = '#39';
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/fakeobjects/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/fakeobjects/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/fakeobjects/plugin.js	(revision 3747)
@@ -0,0 +1,111 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+(function()
+{
+	var htmlFilterRules =
+	{
+		elements :
+		{
+			$ : function( element )
+			{
+				var realHtml = element.attributes._cke_realelement,
+					realFragment = realHtml && new CKEDITOR.htmlParser.fragment.fromHtml( decodeURIComponent( realHtml ) ),
+					realElement = realFragment && realFragment.children[ 0 ];
+
+				if ( realElement )
+				{
+					// If we have width/height in the element, we must move it into
+					// the real element.
+
+					var style = element.attributes.style;
+
+					if ( style )
+					{
+						// Get the width from the style.
+						var match = /(?:^|\s)width\s*:\s*(\d+)/.exec( style ),
+							width = match && match[1];
+
+						// Get the height from the style.
+						match = /(?:^|\s)height\s*:\s*(\d+)/.exec( style );
+						var height = match && match[1];
+
+						if ( width )
+							realElement.attributes.width = width;
+
+						if ( height )
+							realElement.attributes.height = height;
+					}
+				}
+
+				return realElement;
+			}
+		}
+	};
+
+	CKEDITOR.plugins.add( 'fakeobjects',
+	{
+		requires : [ 'htmlwriter' ],
+
+		afterInit : function( editor )
+		{
+			var dataProcessor = editor.dataProcessor,
+				htmlFilter = dataProcessor && dataProcessor.htmlFilter;
+
+			if ( htmlFilter )
+				htmlFilter.addRules( htmlFilterRules );
+		}
+	});
+})();
+
+CKEDITOR.editor.prototype.createFakeElement = function( realElement, className, realElementType, isResizable )
+{
+	var lang = this.lang.fakeobjects;
+	var attributes =
+	{
+		'class' : className,
+		src : CKEDITOR.getUrl( 'images/spacer.gif' ),
+		_cke_realelement : encodeURIComponent( realElement.getOuterHtml() ),
+		alt : lang[ realElementType ] || lang.unknown
+	};
+	if ( realElementType )
+		attributes._cke_real_element_type = realElementType;
+	if ( isResizable )
+		attributes._cke_resizable = isResizable;
+
+	return this.document.createElement( 'img', { attributes : attributes } );
+};
+
+CKEDITOR.editor.prototype.createFakeParserElement = function( realElement, className, realElementType, isResizable )
+{
+	var writer = new CKEDITOR.htmlParser.basicWriter();
+
+	realElement.writeHtml( writer );
+
+	var html = writer.getHtml();
+	var lang = this.lang.fakeobjects;
+
+	var attributes =
+	{
+		'class' : className,
+		src : CKEDITOR.getUrl( 'images/spacer.gif' ),
+		_cke_realelement : encodeURIComponent( html ),
+		alt : lang[ realElementType ] || lang.unknown
+	};
+
+	if ( realElementType )
+		attributes._cke_real_element_type = realElementType;
+
+	if ( isResizable )
+		attributes._cke_resizable = isResizable;
+
+	return new CKEDITOR.htmlParser.element( 'img', attributes );
+};
+
+CKEDITOR.editor.prototype.restoreRealElement = function( fakeElement )
+{
+	var html = decodeURIComponent( fakeElement.getAttribute( '_cke_realelement' ) );
+	return CKEDITOR.dom.element.createFromHtml( html, this.document );
+};
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/filebrowser/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/filebrowser/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/filebrowser/plugin.js	(revision 3747)
@@ -0,0 +1,383 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview The "filebrowser" plugin, it adds support for file uploads and
+ *               browsing.
+ *
+ * When file is selected inside of the file browser or uploaded, its url is
+ * inserted automatically to a field, which is described in the 'filebrowser'
+ * attribute. To specify field that should be updated, pass the tab id and
+ * element id, separated with a colon.
+ *
+ * Example 1: (Browse)
+ *
+ * <pre>
+ * {
+ * 	type : 'button',
+ * 	id : 'browse',
+ * 	filebrowser : 'tabId:elementId',
+ * 	label : editor.lang.common.browseServer
+ * }
+ * </pre>
+ *
+ * If you set the 'filebrowser' attribute on any element other than
+ * 'fileButton', the 'Browse' action will be triggered.
+ *
+ * Example 2: (Quick Upload)
+ *
+ * <pre>
+ * {
+ * 	type : 'fileButton',
+ * 	id : 'uploadButton',
+ * 	filebrowser : 'tabId:elementId',
+ * 	label : editor.lang.common.uploadSubmit,
+ * 	'for' : [ 'upload', 'upload' ]
+ * }
+ * </pre>
+ *
+ * If you set the 'filebrowser' attribute on a fileButton element, the
+ * 'QuickUpload' action will be executed.
+ *
+ * Filebrowser plugin also supports more advanced configuration (through
+ * javascript object).
+ *
+ * The following settings are supported:
+ *
+ * <pre>
+ *  [action] - Browse or QuickUpload
+ *  [target] - field to update, tabId:elementId
+ *  [params] - additional arguments to be passed to the server connector (optional)
+ *  [onSelect] - function to execute when file is selected/uploaded (optional)
+ *  [url] - the URL to be called (optional)
+ * </pre>
+ *
+ * Example 3: (Quick Upload)
+ *
+ * <pre>
+ * {
+ * 	type : 'fileButton',
+ * 	label : editor.lang.common.uploadSubmit,
+ * 	id : 'buttonId',
+ * 	filebrowser :
+ * 	{
+ * 		action : 'QuickUpload', //required
+ * 		target : 'tab1:elementId', //required
+ * 		params : //optional
+ * 		{
+ * 			type : 'Files',
+ * 			currentFolder : '/folder/'
+ * 		},
+ * 		onSelect : function( fileUrl, errorMessage ) //optional
+ * 		{
+ * 			// Do not call the built-in selectFuntion
+ * 			// return false;
+ * 		}
+ * 	},
+ * 	'for' : [ 'tab1', 'myFile' ]
+ * }
+ * </pre>
+ *
+ * Suppose we have a file element with id 'myFile', text field with id
+ * 'elementId' and a fileButton. If filebowser.url is not specified explicitly,
+ * form action will be set to 'filebrowser[DialogName]UploadUrl' or, if not
+ * specified, to 'filebrowserUploadUrl'. Additional parameters from 'params'
+ * object will be added to the query string. It is possible to create your own
+ * uploadHandler and cancel the built-in updateTargetElement command.
+ *
+ * Example 4: (Browse)
+ *
+ * <pre>
+ * {
+ * 	type : 'button',
+ * 	id : 'buttonId',
+ * 	label : editor.lang.common.browseServer,
+ * 	filebrowser :
+ * 	{
+ * 		action : 'Browse',
+ * 		url : '/ckfinder/ckfinder.html&amp;type=Images',
+ * 		target : 'tab1:elementId'
+ * 	}
+ * }
+ * </pre>
+ *
+ * In this example, after pressing a button, file browser will be opened in a
+ * popup. If we don't specify filebrowser.url attribute,
+ * 'filebrowser[DialogName]BrowseUrl' or 'filebrowserBrowseUrl' will be used.
+ * After selecting a file in a file browser, an element with id 'elementId' will
+ * be updated. Just like in the third example, a custom 'onSelect' function may be
+ * defined.
+ */
+( function()
+{
+	/**
+	 * Adds (additional) arguments to given url.
+	 *
+	 * @param {String}
+	 *            url The url.
+	 * @param {Object}
+	 *            params Additional parameters.
+	 */
+	function addQueryString( url, params )
+	{
+		var queryString = [];
+
+		if ( !params )
+			return url;
+		else
+		{
+			for ( var i in params )
+				queryString.push( i + "=" + encodeURIComponent( params[ i ] ) );
+		}
+
+		return url + ( ( url.indexOf( "?" ) != -1 ) ? "&" : "?" ) + queryString.join( "&" );
+	}
+
+	/**
+	 * Make a string's first character uppercase.
+	 *
+	 * @param {String}
+	 *            str String.
+	 */
+	function ucFirst( str )
+	{
+		str += '';
+		var f = str.charAt( 0 ).toUpperCase();
+		return f + str.substr( 1 );
+	}
+
+	/**
+	 * The onlick function assigned to the 'Browse Server' button. Opens the
+	 * file browser and updates target field when file is selected.
+	 *
+	 * @param {CKEDITOR.event}
+	 *            evt The event object.
+	 */
+	function browseServer( evt )
+	{
+		var dialog = this.getDialog();
+		var editor = dialog.getParentEditor();
+
+		editor._.filebrowserSe = this;
+
+		var width = editor.config[ 'filebrowser' + ucFirst( dialog.getName() ) + 'WindowWidth' ]
+				|| editor.config.filebrowserWindowWidth || '80%';
+		var height = editor.config[ 'filebrowser' + ucFirst( dialog.getName() ) + 'WindowHeight' ]
+				|| editor.config.filebrowserWindowHeight || '70%';
+
+		var params = this.filebrowser.params || {};
+		params.CKEditor = editor.name;
+		params.CKEditorFuncNum = editor._.filebrowserFn;
+		if ( !params.langCode )
+			params.langCode = editor.langCode;
+
+		var url = addQueryString( this.filebrowser.url, params );
+		editor.popup( url, width, height );
+	}
+
+	/**
+	 * The onlick function assigned to the 'Upload' button. Makes the final
+	 * decision whether form is really submitted and updates target field when
+	 * file is uploaded.
+	 *
+	 * @param {CKEDITOR.event}
+	 *            evt The event object.
+	 */
+	function uploadFile( evt )
+	{
+		var dialog = this.getDialog();
+		var editor = dialog.getParentEditor();
+
+		editor._.filebrowserSe = this;
+
+		// If user didn't select the file, stop the upload.
+		if ( !dialog.getContentElement( this[ 'for' ][ 0 ], this[ 'for' ][ 1 ] ).getInputElement().$.value )
+			return false;
+
+		if ( !dialog.getContentElement( this[ 'for' ][ 0 ], this[ 'for' ][ 1 ] ).getAction() )
+			return false;
+
+		return true;
+	}
+
+	/**
+	 * Setups the file element.
+	 *
+	 * @param {CKEDITOR.ui.dialog.file}
+	 *            fileInput The file element used during file upload.
+	 * @param {Object}
+	 *            filebrowser Object containing filebrowser settings assigned to
+	 *            the fileButton associated with this file element.
+	 */
+	function setupFileElement( editor, fileInput, filebrowser )
+	{
+		var params = filebrowser.params || {};
+		params.CKEditor = editor.name;
+		params.CKEditorFuncNum = editor._.filebrowserFn;
+		if ( !params.langCode )
+			params.langCode = editor.langCode;
+
+		fileInput.action = addQueryString( filebrowser.url, params );
+		fileInput.filebrowser = filebrowser;
+	}
+
+	/**
+	 * Traverse through the content definition and attach filebrowser to
+	 * elements with 'filebrowser' attribute.
+	 *
+	 * @param String
+	 *            dialogName Dialog name.
+	 * @param {CKEDITOR.dialog.dialogDefinitionObject}
+	 *            definition Dialog definition.
+	 * @param {Array}
+	 *            elements Array of {@link CKEDITOR.dialog.contentDefinition}
+	 *            objects.
+	 */
+	function attachFileBrowser( editor, dialogName, definition, elements )
+	{
+		var element, fileInput;
+
+		for ( var i in elements )
+		{
+			element = elements[ i ];
+
+			if ( element.type == 'hbox' || element.type == 'vbox' )
+				attachFileBrowser( editor, dialogName, definition, element.children );
+
+			if ( !element.filebrowser )
+				continue;
+
+			if ( typeof element.filebrowser == 'string' )
+			{
+				var fb =
+				{
+					action : ( element.type == 'fileButton' ) ? 'QuickUpload' : 'Browse',
+					target : element.filebrowser
+				};
+				element.filebrowser = fb;
+			}
+
+			if ( element.filebrowser.action == 'Browse' )
+			{
+				var url = element.filebrowser.url || editor.config[ 'filebrowser' + ucFirst( dialogName ) + 'BrowseUrl' ]
+							|| editor.config.filebrowserBrowseUrl;
+
+				if ( url )
+				{
+					element.onClick = browseServer;
+					element.filebrowser.url = url;
+					element.hidden = false;
+				}
+			}
+			else if ( element.filebrowser.action == 'QuickUpload' && element[ 'for' ] )
+			{
+				url =  element.filebrowser.url || editor.config[ 'filebrowser' + ucFirst( dialogName ) + 'UploadUrl' ]
+							|| editor.config.filebrowserUploadUrl;
+
+				if ( url )
+				{
+					element.onClick = uploadFile;
+					element.filebrowser.url = url;
+					element.hidden = false;
+					setupFileElement( editor, definition.getContents( element[ 'for' ][ 0 ] ).get( element[ 'for' ][ 1 ] ), element.filebrowser );
+				}
+			}
+		}
+	}
+
+	/**
+	 * Updates the target element with the url of uploaded/selected file.
+	 *
+	 * @param {String}
+	 *            url The url of a file.
+	 */
+	function updateTargetElement( url, sourceElement )
+	{
+		var dialog = sourceElement.getDialog();
+		var targetElement = sourceElement.filebrowser.target || null;
+		url = url.replace( /#/g, '%23' );
+
+		// If there is a reference to targetElement, update it.
+		if ( targetElement )
+		{
+			var target = targetElement.split( ':' );
+			var element = dialog.getContentElement( target[ 0 ], target[ 1 ] );
+			if ( element )
+			{
+				element.setValue( url );
+				dialog.selectPage( target[ 0 ] );
+			}
+		}
+	}
+
+	/**
+	 * Returns true if filebrowser is configured in one of the elements.
+	 *
+	 * @param {CKEDITOR.dialog.dialogDefinitionObject}
+	 *            definition Dialog definition.
+	 * @param String
+	 *            tabId The tab id where element(s) can be found.
+	 * @param String
+	 *            elementId The element id (or ids, separated with a semicolon) to check.
+	 */
+	function isConfigured( definition, tabId, elementId )
+	{
+		if ( elementId.indexOf( ";" ) !== -1 )
+		{
+			var ids = elementId.split( ";" );
+			for ( var i = 0 ; i < ids.length ; i++ )
+			{
+				if ( isConfigured( definition, tabId, ids[i]) )
+					return true;
+			}
+			return false;
+		}
+
+		return ( definition.getContents( tabId ).get( elementId ).filebrowser && definition.getContents( tabId ).get( elementId ).filebrowser.url );
+	}
+
+	function setUrl( fileUrl, data )
+	{
+		var dialog = this._.filebrowserSe.getDialog(),
+			targetInput = this._.filebrowserSe[ 'for' ],
+			onSelect = this._.filebrowserSe.filebrowser.onSelect;
+
+		if ( targetInput )
+			dialog.getContentElement( targetInput[ 0 ], targetInput[ 1 ] ).reset();
+
+		if ( onSelect && onSelect.call( this._.filebrowserSe, fileUrl, data ) === false )
+			return;
+
+		// The "data" argument may be used to pass the error message to the editor.
+		if ( typeof data == 'string' && data )
+			alert( data );
+
+		if ( fileUrl )
+			updateTargetElement( fileUrl, this._.filebrowserSe );
+	}
+
+	CKEDITOR.plugins.add( 'filebrowser',
+	{
+		init : function( editor, pluginPath )
+		{
+			editor._.filebrowserFn = CKEDITOR.tools.addFunction( setUrl, editor );
+
+			CKEDITOR.on( 'dialogDefinition', function( evt )
+			{
+				// Associate filebrowser to elements with 'filebrowser' attribute.
+				for ( var i in evt.data.definition.contents )
+				{
+					attachFileBrowser( evt.editor, evt.data.name, evt.data.definition, evt.data.definition.contents[ i ].elements );
+					if ( evt.data.definition.contents[ i ].hidden && evt.data.definition.contents[ i ].filebrowser )
+					{
+						evt.data.definition.contents[ i ].hidden =
+							!isConfigured( evt.data.definition, evt.data.definition.contents[ i ][ 'id' ], evt.data.definition.contents[ i ].filebrowser );
+					}
+				}
+			} );
+		}
+	} );
+
+} )();
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/find/dialogs/find.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/find/dialogs/find.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/find/dialogs/find.js	(revision 3747)
@@ -0,0 +1,843 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+(function()
+{
+	function guardDomWalkerNonEmptyTextNode( node )
+	{
+		return ( node.type == CKEDITOR.NODE_TEXT && node.getLength() > 0 );
+	}
+
+	/**
+	 * Elements which break characters been considered as sequence.
+	*/
+	function checkCharactersBoundary ( node )
+	{
+		var dtd = CKEDITOR.dtd;
+		return node.isBlockBoundary(
+			CKEDITOR.tools.extend( {}, dtd.$empty, dtd.$nonEditable ) );
+	}
+
+	/**
+	 * Get the cursor object which represent both current character and it's dom
+	 * position thing.
+	 */
+	var cursorStep = function()
+	{
+		return {
+			textNode : this.textNode,
+			offset : this.offset,
+			character : this.textNode ?
+				this.textNode.getText().charAt( this.offset ) : null,
+			hitMatchBoundary : this._.matchBoundary
+		};
+	};
+
+	var pages = [ 'find', 'replace' ],
+		fieldsMapping = [
+		[ 'txtFindFind', 'txtFindReplace' ],
+		[ 'txtFindCaseChk', 'txtReplaceCaseChk' ],
+		[ 'txtFindWordChk', 'txtReplaceWordChk' ],
+		[ 'txtFindCyclic', 'txtReplaceCyclic' ] ];
+
+	/**
+	 * Synchronize corresponding filed values between 'replace' and 'find' pages.
+	 * @param {String} currentPageId	The page id which receive values.
+	 */
+	function syncFieldsBetweenTabs( currentPageId )
+	{
+		var sourceIndex, targetIndex,
+			sourceField, targetField;
+
+		sourceIndex = currentPageId === 'find' ? 1 : 0;
+		targetIndex = 1 - sourceIndex;
+		var i, l = fieldsMapping.length;
+		for ( i = 0 ; i < l ; i++ )
+		{
+			sourceField = this.getContentElement( pages[ sourceIndex ],
+					fieldsMapping[ i ][ sourceIndex ] );
+			targetField = this.getContentElement( pages[ targetIndex ],
+					fieldsMapping[ i ][ targetIndex ] );
+
+			targetField.setValue( sourceField.getValue() );
+		}
+	}
+
+	var findDialog = function( editor, startupPage )
+	{
+		// Style object for highlights.
+		var highlightStyle = new CKEDITOR.style( editor.config.find_highlight );
+
+		/**
+		 * Iterator which walk through the specified range char by char. By
+		 * default the walking will not stop at the character boundaries, until
+		 * the end of the range is encountered.
+		 * @param { CKEDITOR.dom.range } range
+		 * @param {Boolean} matchWord Whether the walking will stop at character boundary.
+		 */
+		var characterWalker = function( range , matchWord )
+		{
+			var walker =
+				new CKEDITOR.dom.walker( range );
+			walker[ matchWord ? 'guard' : 'evaluator' ] =
+				guardDomWalkerNonEmptyTextNode;
+			walker.breakOnFalse = true;
+
+			this._ = {
+				matchWord : matchWord,
+				walker : walker,
+				matchBoundary : false
+			};
+		};
+
+		characterWalker.prototype = {
+			next : function()
+			{
+				return this.move();
+			},
+
+			back : function()
+			{
+				return this.move( true );
+			},
+
+			move : function( rtl )
+			{
+				var currentTextNode = this.textNode;
+				// Already at the end of document, no more character available.
+				if(  currentTextNode === null )
+					return cursorStep.call( this );
+
+				this._.matchBoundary = false;
+
+				// There are more characters in the text node, step forward.
+				if( currentTextNode
+				    && rtl
+					&& this.offset > 0 )
+				{
+					this.offset--;
+					return cursorStep.call( this );
+				}
+				else if( currentTextNode
+					&& this.offset < currentTextNode.getLength() - 1 )
+				{
+					this.offset++;
+					return cursorStep.call( this );
+				}
+				else
+				{
+					currentTextNode = null;
+					// At the end of the text node, walking foward for the next.
+					while ( !currentTextNode )
+					{
+						currentTextNode =
+							this._.walker[ rtl ? 'previous' : 'next' ].call( this._.walker );
+
+						// Stop searching if we're need full word match OR
+						// already reach document end.
+						if ( this._.matchWord && !currentTextNode
+							 ||this._.walker._.end )
+							break;
+
+						// Marking as match character boundaries.
+						if( !currentTextNode
+						   && checkCharactersBoundary( this._.walker.current ) )
+							this._.matchBoundary = true;
+
+					}
+					// Found a fresh text node.
+					this.textNode = currentTextNode;
+					if ( currentTextNode )
+						this.offset = rtl ? currentTextNode.getLength() - 1 : 0;
+					else
+						this.offset = 0;
+				}
+
+				return cursorStep.call( this );
+			}
+
+		};
+
+		/**
+		 * A range of cursors which represent a trunk of characters which try to
+		 * match, it has the same length as the pattern  string.
+		 */
+		var characterRange = function( characterWalker, rangeLength )
+		{
+			this._ = {
+				walker : characterWalker,
+				cursors : [],
+				rangeLength : rangeLength,
+				highlightRange : null,
+				isMatched : false
+			};
+		};
+
+		characterRange.prototype = {
+			/**
+			 * Translate this range to {@link CKEDITOR.dom.range}
+			 */
+			toDomRange : function()
+			{
+				var cursors = this._.cursors;
+				if ( cursors.length < 1 )
+					return null;
+
+				var first = cursors[0],
+					last = cursors[ cursors.length - 1 ],
+					range = new CKEDITOR.dom.range( editor.document );
+
+				range.setStart( first.textNode, first.offset );
+				range.setEnd( last.textNode, last.offset + 1 );
+				return range;
+			},
+			/**
+			 * Reflect the latest changes from dom range.
+			 */
+			updateFromDomRange : function( domRange )
+			{
+				var cursor,
+						walker = new characterWalker( domRange );
+				this._.cursors = [];
+				do
+				{
+					cursor = walker.next();
+					if ( cursor.character )
+						this._.cursors.push( cursor );
+				}
+				while ( cursor.character );
+				this._.rangeLength = this._.cursors.length;
+			},
+
+			setMatched : function()
+			{
+				this._.isMatched = true;
+			},
+
+			clearMatched : function()
+			{
+				this._.isMatched = false;
+			},
+
+			isMatched : function()
+			{
+				return this._.isMatched;
+			},
+
+			/**
+			 * Hightlight the current matched chunk of text.
+			 */
+			highlight : function()
+			{
+				// Do not apply if nothing is found.
+				if ( this._.cursors.length < 1 )
+					return;
+
+				// Remove the previous highlight if there's one.
+				if ( this._.highlightRange )
+					this.removeHighlight();
+
+				// Apply the highlight.
+				var range = this.toDomRange();
+				highlightStyle.applyToRange( range );
+				this._.highlightRange = range;
+
+				// Scroll the editor to the highlighted area.
+				var element = range.startContainer;
+				if ( element.type != CKEDITOR.NODE_ELEMENT )
+					element = element.getParent();
+				element.scrollIntoView();
+
+				// Update the character cursors.
+				this.updateFromDomRange( range );
+			},
+
+			/**
+			 * Remove highlighted find result.
+			 */
+			removeHighlight : function()
+			{
+				if ( !this._.highlightRange )
+					return;
+
+				highlightStyle.removeFromRange( this._.highlightRange );
+				this.updateFromDomRange( this._.highlightRange );
+				this._.highlightRange = null;
+			},
+
+			moveBack : function()
+			{
+				var retval = this._.walker.back(),
+					cursors = this._.cursors;
+
+				if ( retval.hitMatchBoundary )
+					this._.cursors = cursors = [];
+
+				cursors.unshift( retval );
+				if ( cursors.length > this._.rangeLength )
+					cursors.pop();
+
+				return retval;
+			},
+
+			moveNext : function()
+			{
+				var retval = this._.walker.next(),
+					cursors = this._.cursors;
+
+				// Clear the cursors queue if we've crossed a match boundary.
+				if ( retval.hitMatchBoundary )
+					this._.cursors = cursors = [];
+
+				cursors.push( retval );
+				if ( cursors.length > this._.rangeLength )
+					cursors.shift();
+
+				return retval;
+			},
+
+			getEndCharacter : function()
+			{
+				var cursors = this._.cursors;
+				if ( cursors.length < 1 )
+					return null;
+
+				return cursors[ cursors.length - 1 ].character;
+			},
+
+			getNextCharacterRange : function( maxLength )
+			{
+				var lastCursor,
+						cursors = this._.cursors;
+				if ( !( lastCursor = cursors[ cursors.length - 1 ] ) )
+					return null;
+				return new characterRange(
+										new characterWalker(
+											getRangeAfterCursor( lastCursor ) ),
+										maxLength );
+			},
+
+			getCursors : function()
+			{
+				return this._.cursors;
+			}
+		};
+
+
+		// The remaining document range after the character cursor.
+		function getRangeAfterCursor( cursor , inclusive )
+		{
+			var range = new CKEDITOR.dom.range();
+			range.setStart( cursor.textNode,
+						   ( inclusive ? cursor.offset : cursor.offset + 1 ) );
+			range.setEndAt( editor.document.getBody(),
+							CKEDITOR.POSITION_BEFORE_END );
+			return range;
+		}
+
+		// The document range before the character cursor.
+		function getRangeBeforeCursor( cursor )
+		{
+			var range = new CKEDITOR.dom.range();
+			range.setStartAt( editor.document.getBody(),
+							CKEDITOR.POSITION_AFTER_START );
+			range.setEnd( cursor.textNode, cursor.offset );
+			return range;
+		}
+
+		var KMP_NOMATCH = 0,
+			KMP_ADVANCED = 1,
+			KMP_MATCHED = 2;
+		/**
+		 * Examination the occurrence of a word which implement KMP algorithm.
+		 */
+		var kmpMatcher = function( pattern, ignoreCase )
+		{
+			var overlap = [ -1 ];
+			if ( ignoreCase )
+				pattern = pattern.toLowerCase();
+			for ( var i = 0 ; i < pattern.length ; i++ )
+			{
+				overlap.push( overlap[i] + 1 );
+				while ( overlap[ i + 1 ] > 0
+					&& pattern.charAt( i ) != pattern
+						.charAt( overlap[ i + 1 ] - 1 ) )
+					overlap[ i + 1 ] = overlap[ overlap[ i + 1 ] - 1 ] + 1;
+			}
+
+			this._ = {
+				overlap : overlap,
+				state : 0,
+				ignoreCase : !!ignoreCase,
+				pattern : pattern
+			};
+		};
+
+		kmpMatcher.prototype =
+		{
+			feedCharacter : function( c )
+			{
+				if ( this._.ignoreCase )
+					c = c.toLowerCase();
+
+				while ( true )
+				{
+					if ( c == this._.pattern.charAt( this._.state ) )
+					{
+						this._.state++;
+						if ( this._.state == this._.pattern.length )
+						{
+							this._.state = 0;
+							return KMP_MATCHED;
+						}
+						return KMP_ADVANCED;
+					}
+					else if ( !this._.state )
+						return KMP_NOMATCH;
+					else
+						this._.state = this._.overlap[ this._.state ];
+				}
+
+				return null;
+			},
+
+			reset : function()
+			{
+				this._.state = 0;
+			}
+		};
+
+		var wordSeparatorRegex =
+		/[.,"'?!;: \u0085\u00a0\u1680\u280e\u2028\u2029\u202f\u205f\u3000]/;
+
+		var isWordSeparator = function( c )
+		{
+			if ( !c )
+				return true;
+			var code = c.charCodeAt( 0 );
+			return ( code >= 9 && code <= 0xd )
+				|| ( code >= 0x2000 && code <= 0x200a )
+				|| wordSeparatorRegex.test( c );
+		};
+
+		var finder = {
+			searchRange : null,
+			matchRange : null,
+			find : function( pattern, matchCase, matchWord, matchCyclic, highlightMatched )
+			{
+				if( !this.matchRange )
+					this.matchRange =
+						new characterRange(
+							new characterWalker( this.searchRange ),
+							pattern.length );
+				else
+				{
+					this.matchRange.removeHighlight();
+					this.matchRange = this.matchRange.getNextCharacterRange( pattern.length );
+				}
+
+				var matcher = new kmpMatcher( pattern, !matchCase ),
+					matchState = KMP_NOMATCH,
+					character = '%';
+
+				while ( character !== null )
+				{
+					this.matchRange.moveNext();
+					while ( ( character = this.matchRange.getEndCharacter() ) )
+					{
+						matchState = matcher.feedCharacter( character );
+						if ( matchState == KMP_MATCHED )
+							break;
+						if ( this.matchRange.moveNext().hitMatchBoundary )
+							matcher.reset();
+					}
+
+					if ( matchState == KMP_MATCHED )
+					{
+						if ( matchWord )
+						{
+							var cursors = this.matchRange.getCursors(),
+								tail = cursors[ cursors.length - 1 ],
+								head = cursors[ 0 ];
+
+							var headWalker = new characterWalker( getRangeBeforeCursor( head ), true ),
+								tailWalker = new characterWalker( getRangeAfterCursor( tail ), true );
+
+							if ( ! ( isWordSeparator( headWalker.back().character )
+										&& isWordSeparator( tailWalker.next().character ) ) )
+								continue;
+						}
+						this.matchRange.setMatched();
+						if ( highlightMatched !== false )
+							this.matchRange.highlight();
+						return true;
+					}
+				}
+
+				this.matchRange.clearMatched();
+				this.matchRange.removeHighlight();
+				// Clear current session and restart with the default search
+				// range.
+				if ( matchCyclic )
+				{
+					this.searchRange = getSearchRange( true );
+					this.matchRange = null;
+				}
+
+				return false;
+			},
+
+			/**
+			 * Record how much replacement occurred toward one replacing.
+			 */
+			replaceCounter : 0,
+
+			replace : function( dialog, pattern, newString, matchCase, matchWord,
+				matchCyclic , isReplaceAll )
+			{
+				// Successiveness of current replace/find.
+				var result = false;
+
+				// 1. Perform the replace when there's already a match here.
+				// 2. Otherwise perform the find but don't replace it immediately.
+				if ( this.matchRange && this.matchRange.isMatched()
+						&& !this.matchRange._.isReplaced )
+				{
+					// Turn off highlight for a while when saving snapshots.
+					this.matchRange.removeHighlight();
+					var domRange = this.matchRange.toDomRange();
+					var text = editor.document.createText( newString );
+					if ( !isReplaceAll )
+					{
+						// Save undo snaps before and after the replacement.
+						var selection = editor.getSelection();
+						selection.selectRanges( [ domRange ] );
+						editor.fire( 'saveSnapshot' );
+					}
+					domRange.deleteContents();
+					domRange.insertNode( text );
+					if ( !isReplaceAll )
+					{
+						selection.selectRanges( [ domRange ] );
+						editor.fire( 'saveSnapshot' );
+					}
+					this.matchRange.updateFromDomRange( domRange );
+					if ( !isReplaceAll )
+						this.matchRange.highlight();
+					this.matchRange._.isReplaced = true;
+					this.replaceCounter++;
+					result = true;
+				}
+				else
+					result = this.find( pattern, matchCase, matchWord, matchCyclic, !isReplaceAll );
+
+				return result;
+			}
+		};
+
+		/**
+		 * The range in which find/replace happened, receive from user
+		 * selection prior.
+		 */
+		function getSearchRange( isDefault )
+		{
+			var searchRange,
+				sel = editor.getSelection(),
+				body = editor.document.getBody();
+			if ( sel && !isDefault )
+			{
+				searchRange = sel.getRanges()[ 0 ].clone();
+				searchRange.collapse( true );
+			}
+			else
+			{
+				searchRange = new CKEDITOR.dom.range();
+				searchRange.setStartAt( body, CKEDITOR.POSITION_AFTER_START );
+			}
+			searchRange.setEndAt( body, CKEDITOR.POSITION_BEFORE_END );
+			return searchRange;
+		}
+
+		return {
+			title : editor.lang.findAndReplace.title,
+			resizable : CKEDITOR.DIALOG_RESIZE_NONE,
+			minWidth : 350,
+			minHeight : 165,
+			buttons : [ CKEDITOR.dialog.cancelButton ],		//Cancel button only.
+			contents : [
+				{
+					id : 'find',
+					label : editor.lang.findAndReplace.find,
+					title : editor.lang.findAndReplace.find,
+					accessKey : '',
+					elements : [
+						{
+							type : 'hbox',
+							widths : [ '230px', '90px' ],
+							children :
+							[
+								{
+									type : 'text',
+									id : 'txtFindFind',
+									label : editor.lang.findAndReplace.findWhat,
+									isChanged : false,
+									labelLayout : 'horizontal',
+									accessKey : 'F'
+								},
+								{
+									type : 'button',
+									align : 'left',
+									style : 'width:100%',
+									label : editor.lang.findAndReplace.find,
+									onClick : function()
+									{
+										var dialog = this.getDialog();
+										if ( !finder.find( dialog.getValueOf( 'find', 'txtFindFind' ),
+													dialog.getValueOf( 'find', 'txtFindCaseChk' ),
+													dialog.getValueOf( 'find', 'txtFindWordChk' ),
+													dialog.getValueOf( 'find', 'txtFindCyclic' ) ) )
+											alert( editor.lang.findAndReplace
+												.notFoundMsg );
+									}
+								}
+							]
+						},
+						{
+							type : 'vbox',
+							padding : 0,
+							children :
+							[
+								{
+									type : 'checkbox',
+									id : 'txtFindCaseChk',
+									isChanged : false,
+									style : 'margin-top:28px',
+									label : editor.lang.findAndReplace.matchCase
+								},
+								{
+									type : 'checkbox',
+									id : 'txtFindWordChk',
+									isChanged : false,
+									label : editor.lang.findAndReplace.matchWord
+								},
+								{
+									type : 'checkbox',
+									id : 'txtFindCyclic',
+									isChanged : false,
+									'default' : true,
+									label : editor.lang.findAndReplace.matchCyclic
+								}
+							]
+						}
+					]
+				},
+				{
+					id : 'replace',
+					label : editor.lang.findAndReplace.replace,
+					accessKey : 'M',
+					elements : [
+						{
+							type : 'hbox',
+							widths : [ '230px', '90px' ],
+							children :
+							[
+								{
+									type : 'text',
+									id : 'txtFindReplace',
+									label : editor.lang.findAndReplace.findWhat,
+									isChanged : false,
+									labelLayout : 'horizontal',
+									accessKey : 'F'
+								},
+								{
+									type : 'button',
+									align : 'left',
+									style : 'width:100%',
+									label : editor.lang.findAndReplace.replace,
+									onClick : function()
+									{
+										var dialog = this.getDialog();
+										if ( !finder.replace( dialog,
+													dialog.getValueOf( 'replace', 'txtFindReplace' ),
+													dialog.getValueOf( 'replace', 'txtReplace' ),
+													dialog.getValueOf( 'replace', 'txtReplaceCaseChk' ),
+													dialog.getValueOf( 'replace', 'txtReplaceWordChk' ),
+													dialog.getValueOf( 'replace', 'txtReplaceCyclic' ) ) )
+											alert( editor.lang.findAndReplace
+												.notFoundMsg );
+									}
+								}
+							]
+						},
+						{
+							type : 'hbox',
+							widths : [ '230px', '90px' ],
+							children :
+							[
+								{
+									type : 'text',
+									id : 'txtReplace',
+									label : editor.lang.findAndReplace.replaceWith,
+									isChanged : false,
+									labelLayout : 'horizontal',
+									accessKey : 'R'
+								},
+								{
+									type : 'button',
+									align : 'left',
+									style : 'width:100%',
+									label : editor.lang.findAndReplace.replaceAll,
+									isChanged : false,
+									onClick : function()
+									{
+										var dialog = this.getDialog();
+										var replaceNums;
+
+										finder.replaceCounter = 0;
+
+										// Scope to full document.
+										finder.searchRange = getSearchRange( true );
+										if ( finder.matchRange )
+										{
+											finder.matchRange.removeHighlight();
+											finder.matchRange = null;
+										}
+										editor.fire( 'saveSnapshot' );
+										while( finder.replace( dialog,
+											dialog.getValueOf( 'replace', 'txtFindReplace' ),
+											dialog.getValueOf( 'replace', 'txtReplace' ),
+											dialog.getValueOf( 'replace', 'txtReplaceCaseChk' ),
+											dialog.getValueOf( 'replace', 'txtReplaceWordChk' ),
+											false, true ) )
+										;
+
+										if ( finder.replaceCounter )
+										{
+											alert( editor.lang.findAndReplace.replaceSuccessMsg.replace( /%1/, finder.replaceCounter ) );
+											editor.fire( 'saveSnapshot' );
+										}
+										else
+											alert( editor.lang.findAndReplace.notFoundMsg );
+									}
+								}
+							]
+						},
+						{
+							type : 'vbox',
+							padding : 0,
+							children :
+							[
+								{
+									type : 'checkbox',
+									id : 'txtReplaceCaseChk',
+									isChanged : false,
+									label : editor.lang.findAndReplace
+										.matchCase
+								},
+								{
+									type : 'checkbox',
+									id : 'txtReplaceWordChk',
+									isChanged : false,
+									label : editor.lang.findAndReplace
+										.matchWord
+								},
+								{
+									type : 'checkbox',
+									id : 'txtReplaceCyclic',
+									isChanged : false,
+									'default' : true,
+									label : editor.lang.findAndReplace
+										.matchCyclic
+								}
+							]
+						}
+					]
+				}
+			],
+			onLoad : function()
+			{
+				var dialog = this;
+
+				//keep track of the current pattern field in use.
+				var patternField, wholeWordChkField;
+
+				//Ignore initial page select on dialog show
+				var isUserSelect = false;
+				this.on('hide', function()
+						{
+							isUserSelect = false;
+						} );
+				this.on('show', function()
+						{
+							isUserSelect = true;
+						} );
+
+				this.selectPage = CKEDITOR.tools.override( this.selectPage, function( originalFunc )
+					{
+						return function( pageId )
+						{
+							originalFunc.call( dialog, pageId );
+
+							var currPage = dialog._.tabs[ pageId ];
+							var patternFieldInput, patternFieldId, wholeWordChkFieldId;
+							patternFieldId = pageId === 'find' ? 'txtFindFind' : 'txtFindReplace';
+							wholeWordChkFieldId = pageId === 'find' ? 'txtFindWordChk' : 'txtReplaceWordChk';
+
+							patternField = dialog.getContentElement( pageId,
+								patternFieldId );
+							wholeWordChkField = dialog.getContentElement( pageId,
+								wholeWordChkFieldId );
+
+							// prepare for check pattern text filed 'keyup' event
+							if ( !currPage.initialized )
+							{
+								patternFieldInput = CKEDITOR.document
+									.getById( patternField._.inputId );
+								currPage.initialized = true;
+							}
+
+							if( isUserSelect )
+								// synchronize fields on tab switch.
+								syncFieldsBetweenTabs.call( this, pageId );
+						};
+					} );
+
+			},
+			onShow : function()
+			{
+				// Establish initial searching start position.
+				finder.searchRange = getSearchRange();
+
+				if ( startupPage == 'replace' )
+					this.getContentElement( 'replace', 'txtFindReplace' ).focus();
+				else
+					this.getContentElement( 'find', 'txtFindFind' ).focus();
+			},
+			onHide : function()
+			{
+				if ( finder.matchRange && finder.matchRange.isMatched() )
+				{
+					finder.matchRange.removeHighlight();
+					editor.focus();
+					editor.getSelection().selectRanges(
+						[ finder.matchRange.toDomRange() ] );
+				}
+
+				// Clear current session before dialog close
+				delete finder.matchRange;
+			}
+		};
+	};
+
+	CKEDITOR.dialog.add( 'find', function( editor )
+		{
+			return findDialog( editor, 'find' );
+		});
+
+	CKEDITOR.dialog.add( 'replace', function( editor )
+		{
+			return findDialog( editor, 'replace' );
+		});
+})();
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/find/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/find/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/find/plugin.js	(revision 3747)
@@ -0,0 +1,35 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.plugins.add( 'find',
+{
+	init : function( editor )
+	{
+		var forms = CKEDITOR.plugins.find;
+		editor.ui.addButton( 'Find',
+			{
+				label : editor.lang.findAndReplace.find,
+				command : 'find'
+			});
+		var findCommand = editor.addCommand( 'find', new CKEDITOR.dialogCommand( 'find' ) );
+		findCommand.canUndo = false;
+
+		editor.ui.addButton( 'Replace',
+			{
+				label : editor.lang.findAndReplace.replace,
+				command : 'replace'
+			});
+		var replaceCommand = editor.addCommand( 'replace', new CKEDITOR.dialogCommand( 'replace' ) );
+		replaceCommand.canUndo = false;
+
+		CKEDITOR.dialog.add( 'find',	this.path + 'dialogs/find.js' );
+		CKEDITOR.dialog.add( 'replace',	this.path + 'dialogs/find.js' );
+	},
+
+	requires : [ 'styles' ]
+} );
+
+// Styles for highlighting search results.
+CKEDITOR.config.find_highlight = { element : 'span', styles : { 'background-color' : '#004', 'color' : '#fff' } };
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/flash/dialogs/flash.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/flash/dialogs/flash.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/flash/dialogs/flash.js	(revision 3747)
@@ -0,0 +1,678 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+(function()
+{
+	/*
+	 * It is possible to set things in three different places.
+	 * 1. As attributes in the object tag.
+	 * 2. As param tags under the object tag.
+	 * 3. As attributes in the embed tag.
+	 * It is possible for a single attribute to be present in more than one place.
+	 * So let's define a mapping between a sementic attribute and its syntactic
+	 * equivalents.
+	 * Then we'll set and retrieve attribute values according to the mapping,
+	 * instead of having to check and set each syntactic attribute every time.
+	 *
+	 * Reference: http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_12701
+	 */
+	var ATTRTYPE_OBJECT = 1,
+		ATTRTYPE_PARAM = 2,
+		ATTRTYPE_EMBED = 4;
+
+	var attributesMap =
+	{
+		id : [ { type : ATTRTYPE_OBJECT, name : CKEDITOR.env.ie ? '_cke_saved_id' : 'id' } ],
+		classid : [ { type : ATTRTYPE_OBJECT, name : 'classid' } ],
+		codebase : [ { type : ATTRTYPE_OBJECT, name : 'codebase'} ],
+		pluginspage : [ { type : ATTRTYPE_EMBED, name : 'pluginspage' } ],
+		src : [ { type : ATTRTYPE_PARAM, name : 'movie' }, { type : ATTRTYPE_EMBED, name : 'src' } ],
+		name : [ { type : ATTRTYPE_EMBED, name : 'name' } ],
+		align : [ { type : ATTRTYPE_OBJECT, name : 'align' } ],
+		title : [ { type : ATTRTYPE_OBJECT, name : 'title' }, { type : ATTRTYPE_EMBED, name : 'title' } ],
+		'class' : [ { type : ATTRTYPE_OBJECT, name : 'class' }, { type : ATTRTYPE_EMBED, name : 'class'} ],
+		width : [ { type : ATTRTYPE_OBJECT, name : 'width' }, { type : ATTRTYPE_EMBED, name : 'width' } ],
+		height : [ { type : ATTRTYPE_OBJECT, name : 'height' }, { type : ATTRTYPE_EMBED, name : 'height' } ],
+		hSpace : [ { type : ATTRTYPE_OBJECT, name : 'hSpace' }, { type : ATTRTYPE_EMBED, name : 'hSpace' } ],
+		vSpace : [ { type : ATTRTYPE_OBJECT, name : 'vSpace' }, { type : ATTRTYPE_EMBED, name : 'vSpace' } ],
+		style : [ { type : ATTRTYPE_OBJECT, name : 'style' }, { type : ATTRTYPE_EMBED, name : 'style' } ],
+		type : [ { type : ATTRTYPE_EMBED, name : 'type' } ]
+	};
+
+	var names = [ 'play', 'loop', 'menu', 'quality', 'scale', 'salign', 'wmode', 'bgcolor', 'base', 'flashvars', 'allowScriptAccess',
+		'allowFullScreen' ];
+	for ( var i = 0 ; i < names.length ; i++ )
+		attributesMap[ names[i] ] = [ { type : ATTRTYPE_EMBED, name : names[i] }, { type : ATTRTYPE_PARAM, name : names[i] } ];
+	names = [ 'allowFullScreen', 'play', 'loop', 'menu' ];
+	for ( i = 0 ; i < names.length ; i++ )
+		attributesMap[ names[i] ][0]['default'] = attributesMap[ names[i] ][1]['default'] = true;
+
+	function loadValue( objectNode, embedNode, paramMap )
+	{
+		var attributes = attributesMap[ this.id ];
+		if ( !attributes )
+			return;
+
+		var isCheckbox = ( this instanceof CKEDITOR.ui.dialog.checkbox );
+		for ( var i = 0 ; i < attributes.length ; i++ )
+		{
+			var attrDef = attributes[ i ];
+			switch ( attrDef.type )
+			{
+				case ATTRTYPE_OBJECT:
+					if ( !objectNode )
+						continue;
+					if ( objectNode.getAttribute( attrDef.name ) !== null )
+					{
+						var value = objectNode.getAttribute( attrDef.name );
+						if ( isCheckbox )
+							this.setValue( value.toLowerCase() == 'true' );
+						else
+							this.setValue( value );
+						return;
+					}
+					else if ( isCheckbox )
+						this.setValue( !!attrDef[ 'default' ] );
+					break;
+				case ATTRTYPE_PARAM:
+					if ( !objectNode )
+						continue;
+					if ( attrDef.name in paramMap )
+					{
+						value = paramMap[ attrDef.name ];
+						if ( isCheckbox )
+							this.setValue( value.toLowerCase() == 'true' );
+						else
+							this.setValue( value );
+						return;
+					}
+					else if ( isCheckbox )
+						this.setValue( !!attrDef[ 'default' ] );
+					break;
+				case ATTRTYPE_EMBED:
+					if ( !embedNode )
+						continue;
+					if ( embedNode.getAttribute( attrDef.name ) )
+					{
+						value = embedNode.getAttribute( attrDef.name );
+						if ( isCheckbox )
+							this.setValue( value.toLowerCase() == 'true' );
+						else
+							this.setValue( value );
+						return;
+					}
+					else if ( isCheckbox )
+						this.setValue( !!attrDef[ 'default' ] );
+			}
+		}
+	}
+
+	function commitValue( objectNode, embedNode, paramMap )
+	{
+		var attributes = attributesMap[ this.id ];
+		if ( !attributes )
+			return;
+
+		var isRemove = ( this.getValue() === '' ),
+			isCheckbox = ( this instanceof CKEDITOR.ui.dialog.checkbox );
+
+		for ( var i = 0 ; i < attributes.length ; i++ )
+		{
+			var attrDef = attributes[i];
+			switch ( attrDef.type )
+			{
+				case ATTRTYPE_OBJECT:
+					if ( !objectNode )
+						continue;
+					var value = this.getValue();
+					if ( isRemove || isCheckbox && value === attrDef[ 'default' ] )
+						objectNode.removeAttribute( attrDef.name );
+					else
+						objectNode.setAttribute( attrDef.name, value );
+					break;
+				case ATTRTYPE_PARAM:
+					if ( !objectNode )
+						continue;
+					value = this.getValue();
+					if ( isRemove || isCheckbox && value === attrDef[ 'default' ] )
+					{
+						if ( attrDef.name in paramMap )
+							paramMap[ attrDef.name ].remove();
+					}
+					else
+					{
+						if ( attrDef.name in paramMap )
+							paramMap[ attrDef.name ].setAttribute( 'value', value );
+						else
+						{
+							var param = CKEDITOR.dom.element.createFromHtml( '<cke:param></cke:param>', objectNode.getDocument() );
+							param.setAttributes( { name : attrDef.name, value : value } );
+							if ( objectNode.getChildCount() < 1 )
+								param.appendTo( objectNode );
+							else
+								param.insertBefore( objectNode.getFirst() );
+						}
+					}
+					break;
+				case ATTRTYPE_EMBED:
+					if ( !embedNode )
+						continue;
+					value = this.getValue();
+					if ( isRemove || isCheckbox && value === attrDef[ 'default' ])
+						embedNode.removeAttribute( attrDef.name );
+					else
+						embedNode.setAttribute( attrDef.name, value );
+			}
+		}
+	}
+
+	CKEDITOR.dialog.add( 'flash', function( editor )
+	{
+		var makeObjectTag = !editor.config.flashEmbedTagOnly,
+			makeEmbedTag = editor.config.flashAddEmbedTag || editor.config.flashEmbedTagOnly;
+
+		var previewAreaHtml = '<div>' + CKEDITOR.tools.htmlEncode( editor.lang.image.preview ) +'<br>' +
+			'<div id="FlashPreviewLoader" style="display:none"><div class="loading">&nbsp;</div></div>' +
+			'<div id="FlashPreviewBox"></div></div>';
+
+		return {
+			title : editor.lang.flash.title,
+			minWidth : 420,
+			minHeight : 310,
+			onShow : function()
+			{
+				// Clear previously saved elements.
+				this.fakeImage = this.objectNode = this.embedNode = null;
+
+				// Try to detect any embed or object tag that has Flash parameters.
+				var fakeImage = this.getSelectedElement();
+				if ( fakeImage && fakeImage.getAttribute( '_cke_real_element_type' ) && fakeImage.getAttribute( '_cke_real_element_type' ) == 'flash' )
+				{
+					this.fakeImage = fakeImage;
+
+					var realElement = editor.restoreRealElement( fakeImage ),
+						objectNode = null, embedNode = null, paramMap = {};
+					if ( realElement.getName() == 'cke:object' )
+					{
+						objectNode = realElement;
+						var embedList = objectNode.getElementsByTag( 'embed', 'cke' );
+						if ( embedList.count() > 0 )
+							embedNode = embedList.getItem( 0 );
+						var paramList = objectNode.getElementsByTag( 'param', 'cke' );
+						for ( var i = 0, length = paramList.count() ; i < length ; i++ )
+						{
+							var item = paramList.getItem( i ),
+								name = item.getAttribute( 'name' ),
+								value = item.getAttribute( 'value' );
+							paramMap[ name ] = value;
+						}
+					}
+					else if ( realElement.getName() == 'cke:embed' )
+						embedNode = realElement;
+
+					this.objectNode = objectNode;
+					this.embedNode = embedNode;
+
+					this.setupContent( objectNode, embedNode, paramMap, fakeImage );
+				}
+			},
+			onOk : function()
+			{
+				// If there's no selected object or embed, create one. Otherwise, reuse the
+				// selected object and embed nodes.
+				var objectNode = null,
+					embedNode = null,
+					paramMap = null;
+				if ( !this.fakeImage )
+				{
+					if ( makeObjectTag )
+					{
+						objectNode = CKEDITOR.dom.element.createFromHtml( '<cke:object></cke:object>', editor.document );
+						var attributes = {
+							classid : 'clsid:d27cdb6e-ae6d-11cf-96b8-444553540000',
+							codebase : 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0'
+						};
+						objectNode.setAttributes( attributes );
+					}
+					if ( makeEmbedTag )
+					{
+						embedNode = CKEDITOR.dom.element.createFromHtml( '<cke:embed></cke:embed>', editor.document );
+						embedNode.setAttributes(
+							{
+								type : 'application/x-shockwave-flash',
+								pluginspage : 'http://www.macromedia.com/go/getflashplayer'
+							} );
+						if ( objectNode )
+							embedNode.appendTo( objectNode );
+					}
+				}
+				else
+				{
+					objectNode = this.objectNode;
+					embedNode = this.embedNode;
+				}
+
+				// Produce the paramMap if there's an object tag.
+				if ( objectNode )
+				{
+					paramMap = {};
+					var paramList = objectNode.getElementsByTag( 'param', 'cke' );
+					for ( var i = 0, length = paramList.count() ; i < length ; i++ )
+						paramMap[ paramList.getItem( i ).getAttribute( 'name' ) ] = paramList.getItem( i );
+				}
+
+				// Apply or remove flash parameters.
+				var extraStyles = {};
+				this.commitContent( objectNode, embedNode, paramMap, extraStyles );
+
+				// Refresh the fake image.
+				var newFakeImage = editor.createFakeElement( objectNode || embedNode, 'cke_flash', 'flash', true );
+				newFakeImage.setStyles( extraStyles );
+				if ( this.fakeImage )
+					newFakeImage.replace( this.fakeImage );
+				else
+					editor.insertElement( newFakeImage );
+			},
+
+			onHide : function()
+			{
+				if ( this.preview )
+					this.preview.setHtml('');
+			},
+
+			contents : [
+				{
+					id : 'info',
+					label : editor.lang.common.generalTab,
+					accessKey : 'I',
+					elements :
+					[
+						{
+							type : 'vbox',
+							padding : 0,
+							children :
+							[
+								{
+									type : 'html',
+									html : '<span>' + CKEDITOR.tools.htmlEncode( editor.lang.image.url ) + '</span>'
+								},
+								{
+									type : 'hbox',
+									widths : [ '280px', '110px' ],
+									align : 'right',
+									children :
+									[
+										{
+											id : 'src',
+											type : 'text',
+											label : '',
+											validate : CKEDITOR.dialog.validate.notEmpty( editor.lang.flash.validateSrc ),
+											setup : loadValue,
+											commit : commitValue,
+											onLoad : function()
+											{
+												var dialog = this.getDialog(),
+												updatePreview = function( src ){
+
+													dialog.preview.setHtml( '<embed height="100%" width="100%" src="'
+														+ CKEDITOR.tools.htmlEncode( src )
+														+ '" type="application/x-shockwave-flash"></embed>' );
+												};
+												// Preview element
+												dialog.preview = dialog.getContentElement( 'info', 'preview' ).getElement().getChild( 3 );
+
+												// Sync on inital value loaded.
+												this.on( 'change', function( evt ){
+
+														if ( evt.data && evt.data.value )
+															updatePreview( evt.data.value );
+													} );
+												// Sync when input value changed.
+												this.getInputElement().on( 'change', function( evt ){
+
+													updatePreview( this.getValue() );
+												}, this );
+											}
+										},
+										{
+											type : 'button',
+											id : 'browse',
+											filebrowser : 'info:src',
+											hidden : true,
+											align : 'center',
+											label : editor.lang.common.browseServer
+										}
+									]
+								}
+							]
+						},
+						{
+							type : 'hbox',
+							widths : [ '25%', '25%', '25%', '25%', '25%' ],
+							children :
+							[
+								{
+									type : 'text',
+									id : 'width',
+									label : editor.lang.flash.width,
+									validate : CKEDITOR.dialog.validate.integer( editor.lang.flash.validateWidth ),
+									setup : function( objectNode, embedNode, paramMap, fakeImage )
+									{
+										loadValue.apply( this, arguments );
+										if ( fakeImage )
+										{
+											var fakeImageWidth = parseInt( fakeImage.$.style.width, 10 );
+											if ( !isNaN( fakeImageWidth ) )
+												this.setValue( fakeImageWidth );
+										}
+									},
+									commit : function( objectNode, embedNode, paramMap, extraStyles )
+									{
+										commitValue.apply( this, arguments );
+										if ( this.getValue() )
+											extraStyles.width = this.getValue() + 'px';
+									}
+								},
+								{
+									type : 'text',
+									id : 'height',
+									label : editor.lang.flash.height,
+									validate : CKEDITOR.dialog.validate.integer( editor.lang.flash.validateHeight ),
+									setup : function( objectNode, embedNode, paramMap, fakeImage )
+									{
+										loadValue.apply( this, arguments );
+										if ( fakeImage )
+										{
+											var fakeImageHeight = parseInt( fakeImage.$.style.height, 10 );
+											if ( !isNaN( fakeImageHeight ) )
+												this.setValue( fakeImageHeight );
+										}
+									},
+									commit : function( objectNode, embedNode, paramMap, extraStyles )
+									{
+										commitValue.apply( this, arguments );
+										if ( this.getValue() )
+											extraStyles.height = this.getValue() + 'px';
+									}
+								},
+								{
+									type : 'text',
+									id : 'hSpace',
+									label : editor.lang.flash.hSpace,
+									validate : CKEDITOR.dialog.validate.integer( editor.lang.flash.validateHSpace ),
+									setup : loadValue,
+									commit : commitValue
+								},
+								{
+									type : 'text',
+									id : 'vSpace',
+									label : editor.lang.flash.vSpace,
+									validate : CKEDITOR.dialog.validate.integer( editor.lang.flash.validateVSpace ),
+									setup : loadValue,
+									commit : commitValue
+								}
+							]
+						},
+
+						{
+							type : 'vbox',
+							children :
+							[
+								{
+									type : 'html',
+									id : 'preview',
+									style : 'width:95%;',
+									html : previewAreaHtml
+								}
+							]
+						}
+					]
+				},
+				{
+					id : 'Upload',
+					hidden : true,
+					filebrowser : 'uploadButton',
+					label : editor.lang.common.upload,
+					elements :
+					[
+						{
+							type : 'file',
+							id : 'upload',
+							label : editor.lang.common.upload,
+							size : 38
+						},
+						{
+							type : 'fileButton',
+							id : 'uploadButton',
+							label : editor.lang.common.uploadSubmit,
+							filebrowser : 'info:src',
+							'for' : [ 'Upload', 'upload' ]
+						}
+					]
+				},
+				{
+					id : 'properties',
+					label : editor.lang.flash.propertiesTab,
+					elements :
+					[
+						{
+							type : 'hbox',
+							widths : [ '50%', '50%' ],
+							children :
+							[
+								{
+									id : 'scale',
+									type : 'select',
+									label : editor.lang.flash.scale,
+									'default' : '',
+									style : 'width : 100%;',
+									items :
+									[
+										[ editor.lang.common.notSet , ''],
+										[ editor.lang.flash.scaleAll, 'showall' ],
+										[ editor.lang.flash.scaleNoBorder, 'noborder' ],
+										[ editor.lang.flash.scaleFit, 'exactfit' ]
+									],
+									setup : loadValue,
+									commit : commitValue
+								},
+								{
+									id : 'allowScriptAccess',
+									type : 'select',
+									label : editor.lang.flash.access,
+									'default' : '',
+									style : 'width : 100%;',
+									items :
+									[
+										[ editor.lang.common.notSet , ''],
+										[ editor.lang.flash.accessAlways, 'always' ],
+										[ editor.lang.flash.accessSameDomain, 'samedomain' ],
+										[ editor.lang.flash.accessNever, 'never' ]
+									],
+									setup : loadValue,
+									commit : commitValue
+								}
+							]
+						},
+						{
+							type : 'hbox',
+							widths : [ '50%', '50%' ],
+							children :
+							[
+								{
+									id : 'wmode',
+									type : 'select',
+									label : editor.lang.flash.windowMode,
+									'default' : '',
+									style : 'width : 100%;',
+									items :
+									[
+										[ editor.lang.common.notSet , '' ],
+										[ editor.lang.flash.windowModeWindow, 'window' ],
+										[ editor.lang.flash.windowModeOpaque, 'opaque' ],
+										[ editor.lang.flash.windowModeTransparent, 'transparent' ]
+									],
+									setup : loadValue,
+									commit : commitValue
+								},
+								{
+									id : 'quality',
+									type : 'select',
+									label : editor.lang.flash.quality,
+									'default' : 'high',
+									style : 'width : 100%;',
+									items :
+									[
+										[ editor.lang.common.notSet , '' ],
+										[ editor.lang.flash.qualityBest, 'best' ],
+										[ editor.lang.flash.qualityHigh, 'high' ],
+										[ editor.lang.flash.qualityAutoHigh, 'autohigh' ],
+										[ editor.lang.flash.qualityMedium, 'medium' ],
+										[ editor.lang.flash.qualityAutoLow, 'autolow' ],
+										[ editor.lang.flash.qualityLow, 'low' ]
+									],
+									setup : loadValue,
+									commit : commitValue
+								}
+							]
+						},
+						{
+							type : 'hbox',
+							widths : [ '50%', '50%' ],
+							children :
+							[
+								{
+									id : 'align',
+									type : 'select',
+									label : editor.lang.flash.align,
+									'default' : '',
+									style : 'width : 100%;',
+									items :
+									[
+										[ editor.lang.common.notSet , ''],
+										[ editor.lang.image.alignLeft , 'left'],
+										[ editor.lang.image.alignAbsBottom , 'absBottom'],
+										[ editor.lang.image.alignAbsMiddle , 'absMiddle'],
+										[ editor.lang.image.alignBaseline , 'baseline'],
+										[ editor.lang.image.alignBottom , 'bottom'],
+										[ editor.lang.image.alignMiddle , 'middle'],
+										[ editor.lang.image.alignRight , 'right'],
+										[ editor.lang.image.alignTextTop , 'textTop'],
+										[ editor.lang.image.alignTop , 'top']
+									],
+									setup : loadValue,
+									commit : commitValue
+								},
+								{
+									type : 'html',
+									html : '<div></div>'
+								}
+							]
+						},
+						{
+							type : 'vbox',
+							padding : 0,
+							children :
+							[
+								{
+									type : 'html',
+									html : CKEDITOR.tools.htmlEncode( editor.lang.flash.flashvars )
+								},
+								{
+									type : 'checkbox',
+									id : 'menu',
+									label : editor.lang.flash.chkMenu,
+									'default' : true,
+									setup : loadValue,
+									commit : commitValue
+								},
+								{
+									type : 'checkbox',
+									id : 'play',
+									label : editor.lang.flash.chkPlay,
+									'default' : true,
+									setup : loadValue,
+									commit : commitValue
+								},
+								{
+									type : 'checkbox',
+									id : 'loop',
+									label : editor.lang.flash.chkLoop,
+									'default' : true,
+									setup : loadValue,
+									commit : commitValue
+								},
+								{
+									type : 'checkbox',
+									id : 'allowFullScreen',
+									label : editor.lang.flash.chkFull,
+									'default' : true,
+									setup : loadValue,
+									commit : commitValue
+								}
+							]
+						}
+					]
+				},
+				{
+					id : 'advanced',
+					label : editor.lang.common.advancedTab,
+					elements :
+					[
+						{
+							type : 'hbox',
+							widths : [ '45%', '55%' ],
+							children :
+							[
+								{
+									type : 'text',
+									id : 'id',
+									label : editor.lang.common.id,
+									setup : loadValue,
+									commit : commitValue
+								},
+								{
+									type : 'text',
+									id : 'title',
+									label : editor.lang.common.advisoryTitle,
+									setup : loadValue,
+									commit : commitValue
+								}
+							]
+						},
+						{
+							type : 'hbox',
+							widths : [ '45%', '55%' ],
+							children :
+							[
+								{
+									type : 'text',
+									id : 'bgcolor',
+									label : editor.lang.flash.bgcolor,
+									setup : loadValue,
+									commit : commitValue
+								},
+								{
+									type : 'text',
+									id : 'class',
+									label : editor.lang.common.cssClass,
+									setup : loadValue,
+									commit : commitValue
+								}
+							]
+						},
+						{
+							type : 'text',
+							id : 'style',
+							label : editor.lang.common.cssStyle,
+							setup : loadValue,
+							commit : commitValue
+						}
+					]
+				}
+			]
+		};
+	} );
+})();
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/flash/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/flash/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/flash/plugin.js	(revision 3747)
@@ -0,0 +1,165 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+(function()
+{
+	var flashFilenameRegex = /\.swf(?:$|\?)/i,
+		numberRegex = /^\d+(?:\.\d+)?$/;
+
+	function cssifyLength( length )
+	{
+		if ( numberRegex.test( length ) )
+			return length + 'px';
+		return length;
+	}
+
+	function isFlashEmbed( element )
+	{
+		var attributes = element.attributes;
+
+		return ( attributes.type != 'application/x-shockwave-flash' || !flashFilenameRegex.test( attributes.src || '' ) );
+	}
+
+	function createFakeElement( editor, realElement )
+	{
+		var fakeElement = editor.createFakeParserElement( realElement, 'cke_flash', 'flash', true ),
+			fakeStyle = fakeElement.attributes.style || '';
+
+		var width = realElement.attributes.width,
+			height = realElement.attributes.height;
+
+		if ( typeof width != 'undefined' )
+			fakeStyle = fakeElement.attributes.style = fakeStyle + 'width:' + cssifyLength( width ) + ';';
+
+		if ( typeof height != 'undefined' )
+			fakeStyle = fakeElement.attributes.style = fakeStyle + 'height:' + cssifyLength( height ) + ';';
+
+		return fakeElement;
+	}
+
+	CKEDITOR.plugins.add( 'flash',
+	{
+		init : function( editor )
+		{
+			editor.addCommand( 'flash', new CKEDITOR.dialogCommand( 'flash' ) );
+			editor.ui.addButton( 'Flash',
+				{
+					label : editor.lang.common.flash,
+					command : 'flash'
+				});
+			CKEDITOR.dialog.add( 'flash', this.path + 'dialogs/flash.js' );
+
+			editor.addCss(
+				'img.cke_flash' +
+				'{' +
+					'background-image: url(' + CKEDITOR.getUrl( this.path + 'images/placeholder.png' ) + ');' +
+					'background-position: center center;' +
+					'background-repeat: no-repeat;' +
+					'border: 1px solid #a9a9a9;' +
+					'width: 80px;' +
+					'height: 80px;' +
+				'}'
+				);
+
+			// If the "menu" plugin is loaded, register the menu items.
+			if ( editor.addMenuItems )
+			{
+				editor.addMenuItems(
+					{
+						flash :
+						{
+							label : editor.lang.flash.properties,
+							command : 'flash',
+							group : 'flash'
+						}
+					});
+			}
+
+			// If the "contextmenu" plugin is loaded, register the listeners.
+			if ( editor.contextMenu )
+			{
+				editor.contextMenu.addListener( function( element, selection )
+					{
+						if ( element && element.is( 'img' ) && element.getAttribute( '_cke_real_element_type' ) == 'flash' )
+							return { flash : CKEDITOR.TRISTATE_OFF };
+					});
+			}
+		},
+
+		afterInit : function( editor )
+		{
+			var dataProcessor = editor.dataProcessor,
+				dataFilter = dataProcessor && dataProcessor.dataFilter;
+
+			if ( dataFilter )
+			{
+				dataFilter.addRules(
+					{
+						elements :
+						{
+							'cke:object' : function( element )
+							{
+								var attributes = element.attributes,
+									classId = attributes.classid && String( attributes.classid ).toLowerCase();
+
+								if ( !classId )
+								{
+									// Look for the inner <embed>
+									for ( var i = 0 ; i < element.children.length ; i++ )
+									{
+										if ( element.children[ i ].name == 'embed' )
+										{
+											if ( !isFlashEmbed( element.children[ i ] ) )
+												return null;
+
+											return createFakeElement( editor, element );
+										}
+									}
+									return null;
+								}
+
+								return createFakeElement( editor, element );
+							},
+
+							'cke:embed' : function( element )
+							{
+								if ( !isFlashEmbed( element ) )
+									return null;
+
+								return createFakeElement( editor, element );
+							}
+						}
+					},
+					5);
+			}
+		},
+
+		requires : [ 'fakeobjects' ]
+	});
+})();
+
+CKEDITOR.tools.extend( CKEDITOR.config,
+{
+	/**
+	 * Save as EMBED tag only. This tag is unrecommended.
+	 * @type Boolean
+	 * @default false
+	 */
+	flashEmbedTagOnly : false,
+
+	/**
+	 * Add EMBED tag as alternative: &lt;object&gt&lt;embed&gt&lt;/embed&gt&lt;/object&gt
+	 * @type Boolean
+	 * @default false
+	 */
+	flashAddEmbedTag : true,
+
+	/**
+	 * Use embedTagOnly and addEmbedTag values on edit.
+	 * @type Boolean
+	 * @default false
+	 */
+	flashConvertOnEdit : false
+} );
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/floatpanel/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/floatpanel/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/floatpanel/plugin.js	(revision 3747)
@@ -0,0 +1,322 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.plugins.add( 'floatpanel',
+{
+	requires : [ 'panel' ]
+});
+
+(function()
+{
+	var panels = {};
+	var isShowing = false;
+
+	function getPanel( editor, doc, parentElement, definition, level )
+	{
+		// Generates the panel key: docId-eleId-skinName-langDir[-uiColor][-CSSs][-level]
+		var key =
+			doc.getUniqueId() +
+			'-' + parentElement.getUniqueId() +
+			'-' + editor.skinName +
+			'-' + editor.lang.dir +
+			( ( editor.uiColor && ( '-' + editor.uiColor ) ) || '' ) +
+			( ( definition.css && ( '-' + definition.css ) ) || '' ) +
+			( ( level && ( '-' + level ) ) || '' );
+
+		var panel = panels[ key ];
+
+		if ( !panel )
+		{
+			panel = panels[ key ] = new CKEDITOR.ui.panel( doc, definition );
+			panel.element = parentElement.append( CKEDITOR.dom.element.createFromHtml( panel.renderHtml( editor ), doc ) );
+
+			panel.element.setStyles(
+				{
+					display : 'none',
+					position : 'absolute'
+				});
+		}
+
+		return panel;
+	}
+
+	CKEDITOR.ui.floatPanel = CKEDITOR.tools.createClass(
+	{
+		$ : function( editor, parentElement, definition, level )
+		{
+			definition.forceIFrame = true;
+
+			var doc = parentElement.getDocument(),
+				panel = getPanel( editor, doc, parentElement, definition, level || 0 ),
+				element = panel.element,
+				iframe = element.getFirst().getFirst();
+
+			this.element = element;
+
+			this._ =
+			{
+				// The panel that will be floating.
+				panel : panel,
+				parentElement : parentElement,
+				definition : definition,
+				document : doc,
+				iframe : iframe,
+				children : [],
+				dir : editor.lang.dir
+			};
+		},
+
+		proto :
+		{
+			addBlock : function( name, block )
+			{
+				return this._.panel.addBlock( name, block );
+			},
+
+			addListBlock : function( name, multiSelect )
+			{
+				return this._.panel.addListBlock( name, multiSelect );
+			},
+
+			getBlock : function( name )
+			{
+				return this._.panel.getBlock( name );
+			},
+
+			/*
+				corner (LTR):
+					1 = top-left
+					2 = top-right
+					3 = bottom-right
+					4 = bottom-left
+
+				corner (RTL):
+					1 = top-right
+					2 = top-left
+					3 = bottom-left
+					4 = bottom-right
+			 */
+			showBlock : function( name, offsetParent, corner, offsetX, offsetY )
+			{
+				var panel = this._.panel,
+					block = panel.showBlock( name );
+
+				this.allowBlur( false );
+				isShowing = true;
+
+				var element = this.element,
+					iframe = this._.iframe,
+					definition = this._.definition,
+					position = offsetParent.getDocumentPosition( element.getDocument() ),
+					rtl = this._.dir == 'rtl';
+
+				var left	= position.x + ( offsetX || 0 ),
+					top		= position.y + ( offsetY || 0 );
+
+				if ( ( rtl && ( corner == 1 || corner == 4 ) ) || ( !rtl && ( corner == 2 || corner == 3 ) ) )
+					left += offsetParent.$.offsetWidth - 1;
+
+				if ( corner == 3 || corner == 4 )
+					top += offsetParent.$.offsetHeight - 1;
+
+				element.setStyles(
+					{
+						top : top + 'px',
+						left : '-3000px',
+						visibility : 'hidden',
+						opacity : '0',	// FF3 is ignoring "visibility"
+						display	: ''
+					});
+
+				// Configure the IFrame blur event. Do that only once.
+				if ( !this._.blurSet )
+				{
+					// Non IE prefer the event into a window object.
+					var focused = CKEDITOR.env.ie ? iframe : new CKEDITOR.dom.window( iframe.$.contentWindow );
+
+					// With addEventListener compatible browsers, we must
+					// useCapture when registering the focus/blur events to
+					// guarantee they will be firing in all situations. (#3068, #3222 )
+					CKEDITOR.event.useCapture = true;
+
+					focused.on( 'blur', function( ev )
+						{
+							if ( CKEDITOR.env.ie && !this.allowBlur() )
+								return;
+
+							// As we are using capture to register the listener,
+							// the blur event may get fired even when focusing
+							// inside the window itself, so we must ensure the
+							// target is out of it.
+							var target = ev.data.getTarget(),
+								targetWindow = target.getWindow && target.getWindow();
+
+							if ( targetWindow && targetWindow.equals( focused ) )
+								return;
+
+							if ( this.visible && !this._.activeChild && !isShowing )
+								this.hide();
+						},
+						this );
+
+					focused.on( 'focus', function()
+						{
+							this._.focused = true;
+							this.hideChild();
+							this.allowBlur( true );
+						},
+						this );
+
+					CKEDITOR.event.useCapture = false;
+
+					this._.blurSet = 1;
+				}
+
+				panel.onEscape = CKEDITOR.tools.bind( function()
+					{
+						this.onEscape && this.onEscape();
+					},
+					this );
+
+				setTimeout( function()
+					{
+						if ( rtl )
+							left -= element.$.offsetWidth;
+
+						element.setStyles(
+							{
+								left : left + 'px',
+								visibility	: '',
+								opacity : '1'	// FF3 is ignoring "visibility"
+							});
+
+						if ( block.autoSize )
+						{
+							function setHeight()
+							{
+								var target = element.getFirst();
+								var height = block.element.$.scrollHeight;
+
+								// Account for extra height needed due to IE quirks box model bug:
+								// http://en.wikipedia.org/wiki/Internet_Explorer_box_model_bug
+								// (#3426)
+								if ( CKEDITOR.env.ie && CKEDITOR.env.quirks && height > 0 )
+									height += ( target.$.offsetHeight || 0 ) - ( target.$.clientHeight || 0 );
+
+								target.setStyle( 'height', height + 'px' );
+
+								// Fix IE < 8 visibility.
+								panel._.currentBlock.element.setStyle( 'display', 'none' ).removeStyle( 'display' );
+							}
+
+							if ( !CKEDITOR.env.gecko || panel.isLoaded )
+							{
+								// IE7 needs some time (setting the delay to 0ms won't work) to refresh
+								// the scrollHeight. (#3174)
+								if ( CKEDITOR.env.ie && CKEDITOR.env.version >= 7 )
+									setTimeout( setHeight, 50 );
+								else
+									setHeight();
+							}
+							else
+								panel.onLoad = setHeight;
+						}
+						else
+							element.getFirst().removeStyle( 'height' );
+
+						// Set the IFrame focus, so the blur event gets fired.
+						setTimeout( function()
+							{
+								if ( definition.voiceLabel )
+								{
+									if ( CKEDITOR.env.gecko )
+									{
+										var container = iframe.getParent();
+										container.setAttribute( 'role', 'region' );
+										container.setAttribute( 'title', definition.voiceLabel );
+										iframe.setAttribute( 'role', 'region' );
+										iframe.setAttribute( 'title', ' ' );
+									}
+								}
+								if ( CKEDITOR.env.ie && CKEDITOR.env.quirks )
+									iframe.focus();
+								else
+									iframe.$.contentWindow.focus();
+							}, 0);
+					}, 0);
+
+				this.visible = 1;
+
+				if ( this.onShow )
+					this.onShow.call( this );
+
+				isShowing = false;
+			},
+
+			hide : function()
+			{
+				if ( this.visible && ( !this.onHide || this.onHide.call( this ) !== true ) )
+				{
+					this.hideChild();
+					this.element.setStyle( 'display', 'none' );
+					this.visible = 0;
+				}
+			},
+
+			allowBlur : function( allow )	// Prevent editor from hiding the panel. #3222.
+			{
+				var panel = this._.panel;
+				if ( allow != undefined )
+					panel.allowBlur = allow;
+
+				return panel.allowBlur;
+			},
+
+			showAsChild : function( panel, blockName, offsetParent, corner, offsetX, offsetY )
+			{
+				this.hideChild();
+
+				panel.onHide = CKEDITOR.tools.bind( function()
+					{
+						// Use a timeout, so we give time for this menu to get
+						// potentially focused.
+						CKEDITOR.tools.setTimeout( function()
+							{
+								if ( !this._.focused )
+									this.hide();
+							},
+							0, this );
+					},
+					this );
+
+				this._.activeChild = panel;
+				this._.focused = false;
+
+				panel.showBlock( blockName, offsetParent, corner, offsetX, offsetY );
+
+				/* #3767 IE: Second level menu may not have borders */
+				if ( CKEDITOR.env.ie7Compat || ( CKEDITOR.env.ie8 && CKEDITOR.env.ie6Compat ) )
+				{
+					setTimeout(function()
+						{
+							panel.element.getChild( 0 ).$.style.cssText += '';
+						}, 100);
+				}
+			},
+
+			hideChild : function()
+			{
+				var activeChild = this._.activeChild;
+
+				if ( activeChild )
+				{
+					delete activeChild.onHide;
+					delete this._.activeChild;
+					activeChild.hide();
+				}
+			}
+		}
+	});
+})();
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/font/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/font/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/font/plugin.js	(revision 3747)
@@ -0,0 +1,152 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+(function()
+{
+	function addCombo( editor, comboName, styleType, lang, entries, defaultLabel, styleDefinition )
+	{
+		var config = editor.config;
+
+		// Gets the list of fonts from the settings.
+		var names = entries.split( ';' ),
+			values = [];
+
+		// Create style objects for all fonts.
+		var styles = {};
+		for ( var i = 0 ; i < names.length ; i++ )
+		{
+			var vars = {};
+			var parts = names[ i ].split( '/' );
+
+			var name = names[ i ] = parts[ 0 ];
+			vars[ styleType ] = values[ i ] = parts[ 1 ] || name;
+
+			styles[ name ] = new CKEDITOR.style( styleDefinition, vars );
+		}
+
+		editor.ui.addRichCombo( comboName,
+			{
+				label : lang.label,
+				title : lang.panelTitle,
+				voiceLabel : lang.voiceLabel,
+				className : 'cke_' + ( styleType == 'size' ? 'fontSize' : 'font' ),
+				multiSelect : false,
+
+				panel :
+				{
+					css : [ config.contentsCss, CKEDITOR.getUrl( editor.skinPath + 'editor.css' ) ],
+					voiceLabel : lang.panelVoiceLabel
+				},
+
+				init : function()
+				{
+					this.startGroup( lang.panelTitle );
+
+					for ( var i = 0 ; i < names.length ; i++ )
+					{
+						var name = names[ i ];
+
+						// Add the tag entry to the panel list.
+						this.add( name, '<span style="font-' + styleType + ':' + values[ i ] + '">' + name + '</span>', name );
+					}
+				},
+
+				onClick : function( value )
+				{
+					editor.focus();
+					editor.fire( 'saveSnapshot' );
+
+					var style = styles[ value ];
+
+					if ( this.getValue() == value )
+						style.remove( editor.document );
+					else
+						style.apply( editor.document );
+
+					editor.fire( 'saveSnapshot' );
+				},
+
+				onRender : function()
+				{
+					editor.on( 'selectionChange', function( ev )
+						{
+							var currentValue = this.getValue();
+
+							var elementPath = ev.data.path,
+								elements = elementPath.elements;
+
+							// For each element into the elements path.
+							for ( var i = 0, element ; i < elements.length ; i++ )
+							{
+								element = elements[i];
+
+								// Check if the element is removable by any of
+								// the styles.
+								for ( var value in styles )
+								{
+									if ( styles[ value ].checkElementRemovable( element, true ) )
+									{
+										if ( value != currentValue )
+											this.setValue( value );
+										return;
+									}
+								}
+							}
+
+							// If no styles match, just empty it.
+							this.setValue( '', defaultLabel );
+						},
+						this);
+				}
+			});
+	}
+
+	CKEDITOR.plugins.add( 'font',
+	{
+		requires : [ 'richcombo', 'styles' ],
+
+		init : function( editor )
+		{
+			var config = editor.config;
+
+			addCombo( editor, 'Font', 'family', editor.lang.font, config.font_names, config.font_defaultLabel, config.font_style );
+			addCombo( editor, 'FontSize', 'size', editor.lang.fontSize, config.fontSize_sizes, config.fontSize_defaultLabel, config.fontSize_style );
+		}
+	});
+})();
+
+// Font settings.
+
+CKEDITOR.config.font_names =
+	'Arial/Arial, Helvetica, sans-serif;' +
+	'Comic Sans MS/Comic Sans MS, cursive;' +
+	'Courier New/Courier New, Courier, monospace;' +
+	'Georgia/Georgia, serif;' +
+	'Lucida Sans Unicode/Lucida Sans Unicode, Lucida Grande, sans-serif;' +
+	'Tahoma/Tahoma, Geneva, sans-serif;' +
+	'Times New Roman/Times New Roman, Times, serif;' +
+	'Trebuchet MS/Trebuchet MS, Helvetica, sans-serif;' +
+	'Verdana/Verdana, Geneva, sans-serif';
+
+CKEDITOR.config.font_defaultLabel = '';
+CKEDITOR.config.font_style =
+	{
+		element		: 'span',
+		styles		: { 'font-family' : '#(family)' },
+		overrides	: [ { element : 'font', attributes : { 'face' : null } } ]
+	};
+
+// Font Size setting.
+
+CKEDITOR.config.fontSize_sizes =
+	'8/8px;9/9px;10/10px;11/11px;12/12px;14/14px;16/16px;18/18px;20/20px;22/22px;24/24px;26/26px;28/28px;36/36px;48/48px;72/72px';
+
+CKEDITOR.config.fontSize_defaultLabel = '';
+CKEDITOR.config.fontSize_style =
+	{
+		element		: 'span',
+		styles		: { 'font-size' : '#(size)' },
+		overrides	: [ { element : 'font', attributes : { 'face' : null } } ]
+	};
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/format/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/format/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/format/plugin.js	(revision 3747)
@@ -0,0 +1,101 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.plugins.add( 'format',
+{
+	requires : [ 'richcombo', 'styles' ],
+
+	init : function( editor )
+	{
+		var config = editor.config,
+			lang = editor.lang.format;
+
+		// Gets the list of tags from the settings.
+		var tags = config.format_tags.split( ';' );
+
+		// Create style objects for all defined styles.
+		var styles = {};
+		for ( var i = 0 ; i < tags.length ; i++ )
+		{
+			var tag = tags[ i ];
+			styles[ tag ] = new CKEDITOR.style( config[ 'format_' + tag ] );
+		}
+
+		editor.ui.addRichCombo( 'Format',
+			{
+				label : lang.label,
+				title : lang.panelTitle,
+				voiceLabel : lang.voiceLabel,
+				className : 'cke_format',
+				multiSelect : false,
+
+				panel :
+				{
+					css : [ config.contentsCss, CKEDITOR.getUrl( editor.skinPath + 'editor.css' ) ],
+					voiceLabel : lang.panelVoiceLabel
+				},
+
+				init : function()
+				{
+					this.startGroup( lang.panelTitle );
+
+					for ( var tag in styles )
+					{
+						var label = lang[ 'tag_' + tag ];
+
+						// Add the tag entry to the panel list.
+						this.add( tag, '<' + tag + '>' + label + '</' + tag + '>', label );
+					}
+				},
+
+				onClick : function( value )
+				{
+					editor.focus();
+					editor.fire( 'saveSnapshot' );
+
+					styles[ value ].apply( editor.document );
+
+					editor.fire( 'saveSnapshot' );
+				},
+
+				onRender : function()
+				{
+					editor.on( 'selectionChange', function( ev )
+						{
+							var currentTag = this.getValue();
+
+							var elementPath = ev.data.path;
+
+							for ( var tag in styles )
+							{
+								if ( styles[ tag ].checkActive( elementPath ) )
+								{
+									if ( tag != currentTag )
+										this.setValue( tag, editor.lang.format[ 'tag_' + tag ] );
+									return;
+								}
+							}
+
+							// If no styles match, just empty it.
+							this.setValue( '' );
+						},
+						this);
+				}
+			});
+	}
+});
+
+CKEDITOR.config.format_tags = 'p;h1;h2;h3;h4;h5;h6;pre;address;div';
+
+CKEDITOR.config.format_p		= { element : 'p' };
+CKEDITOR.config.format_div		= { element : 'div' };
+CKEDITOR.config.format_pre		= { element : 'pre' };
+CKEDITOR.config.format_address	= { element : 'address' };
+CKEDITOR.config.format_h1		= { element : 'h1' };
+CKEDITOR.config.format_h2		= { element : 'h2' };
+CKEDITOR.config.format_h3		= { element : 'h3' };
+CKEDITOR.config.format_h4		= { element : 'h4' };
+CKEDITOR.config.format_h5		= { element : 'h5' };
+CKEDITOR.config.format_h6		= { element : 'h6' };
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/forms/dialogs/button.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/forms/dialogs/button.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/forms/dialogs/button.js	(revision 3747)
@@ -0,0 +1,135 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+CKEDITOR.dialog.add( 'button', function( editor )
+{
+	return {
+		title : editor.lang.button.title,
+		minWidth : 350,
+		minHeight : 150,
+		onShow : function()
+		{
+			delete this.button;
+			var element = this.getParentEditor().getSelection().getSelectedElement();
+			if ( element && element.getName() == "input" )
+			{
+				var type = element.getAttribute( 'type' );
+				if ( type == "button" || type == "reset" || type == "submit" )
+				{
+					this.button = element;
+					this.setupContent( element );
+				}
+			}
+		},
+		onOk : function()
+		{
+			var editor,
+				element = this.button,
+				isInsertMode = !element;
+
+			if ( isInsertMode )
+			{
+				editor = this.getParentEditor();
+				element = editor.document.createElement( 'input' );
+			}
+
+			if ( isInsertMode )
+				editor.insertElement( element );
+			this.commitContent( { element : element } );
+		},
+		contents : [
+			{
+				id : 'info',
+				label : editor.lang.button.title,
+				title : editor.lang.button.title,
+				elements : [
+					{
+						id : '_cke_saved_name',
+						type : 'text',
+						label : editor.lang.common.name,
+						'default' : '',
+						setup : function( element )
+						{
+							this.setValue(
+									element.getAttribute( '_cke_saved_name' ) ||
+									element.getAttribute( 'name' ) ||
+									'' );
+						},
+						commit : function( data )
+						{
+							var element = data.element;
+
+							if ( this.getValue() )
+								element.setAttribute( '_cke_saved_name', this.getValue() );
+							else
+							{
+								element.removeAttribute( '_cke_saved_name' );
+								element.removeAttribute( 'name' );
+							}
+						}
+					},
+					{
+						id : 'value',
+						type : 'text',
+						label : editor.lang.button.text,
+						accessKey : 'V',
+						'default' : '',
+						setup : function( element )
+						{
+							this.setValue( element.getAttribute( 'value' ) || '' );
+						},
+						commit : function( data )
+						{
+							var element = data.element;
+
+							if ( this.getValue() )
+								element.setAttribute( 'value', this.getValue() );
+							else
+								element.removeAttribute( 'value' );
+						}
+					},
+					{
+						id : 'type',
+						type : 'select',
+						label : editor.lang.button.type,
+						'default' : 'button',
+						accessKey : 'T',
+						items :
+						[
+							[ editor.lang.button.typeBtn, 'button' ],
+							[ editor.lang.button.typeSbm, 'submit' ],
+							[ editor.lang.button.typeRst, 'reset' ]
+						],
+						setup : function( element )
+						{
+							this.setValue( element.getAttribute( 'type' ) || '' );
+						},
+						commit : function( data )
+						{
+							var element = data.element;
+
+							if ( CKEDITOR.env.ie )
+							{
+								var elementType = element.getAttribute( 'type' );
+								var currentType = this.getValue();
+
+								if ( currentType != elementType )
+								{
+									var replace = CKEDITOR.dom.element.createFromHtml( '<input type="' + currentType +
+										'"></input>', editor.document );
+									element.copyAttributes( replace, { type : 1 } );
+									replace.replace( element );
+									editor.getSelection().selectElement( replace );
+									data.element = replace;
+								}
+							}
+							else
+								element.setAttribute( 'type', this.getValue() );
+						}
+					}
+				]
+			}
+		]
+	};
+});
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/forms/dialogs/checkbox.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/forms/dialogs/checkbox.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/forms/dialogs/checkbox.js	(revision 3747)
@@ -0,0 +1,138 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+CKEDITOR.dialog.add( 'checkbox', function( editor )
+{
+	return {
+		title : editor.lang.checkboxAndRadio.checkboxTitle,
+		minWidth : 350,
+		minHeight : 140,
+		onShow : function()
+		{
+			delete this.checkbox;
+
+			var element = this.getParentEditor().getSelection().getSelectedElement();
+
+			if ( element && element.getAttribute( 'type' ) == "checkbox" )
+			{
+				this.checkbox = element;
+				this.setupContent( element );
+			}
+		},
+		onOk : function()
+		{
+			var editor,
+				element = this.checkbox,
+				isInsertMode = !element;
+
+			if ( isInsertMode )
+			{
+				editor = this.getParentEditor();
+				element = editor.document.createElement( 'input' );
+				element.setAttribute( 'type', 'checkbox' );
+			}
+
+			if ( isInsertMode )
+				editor.insertElement( element );
+			this.commitContent( { element : element } );
+		},
+		contents : [
+			{
+				id : 'info',
+				label : editor.lang.checkboxAndRadio.checkboxTitle,
+				title : editor.lang.checkboxAndRadio.checkboxTitle,
+				startupFocus : 'txtName',
+				elements : [
+					{
+						id : 'txtName',
+						type : 'text',
+						label : editor.lang.common.name,
+						'default' : '',
+						accessKey : 'N',
+						setup : function( element )
+						{
+							this.setValue(
+									element.getAttribute( '_cke_saved_name' ) ||
+									element.getAttribute( 'name' ) ||
+									'' );
+						},
+						commit : function( data )
+						{
+							var element = data.element;
+
+							// IE failed to update 'name' property on input elements, protect it now.
+							if ( this.getValue() )
+								element.setAttribute( '_cke_saved_name', this.getValue() );
+							else
+							{
+								element.removeAttribute( '_cke_saved_name' );
+								element.removeAttribute( 'name' );
+							}
+						}
+					},
+					{
+						id : 'txtValue',
+						type : 'text',
+						label : editor.lang.checkboxAndRadio.value,
+						'default' : '',
+						accessKey : 'V',
+						setup : function( element )
+						{
+							this.setValue( element.getAttribute( 'value' ) || '' );
+						},
+						commit : function( data )
+						{
+							var element = data.element;
+
+							if ( this.getValue() )
+								element.setAttribute( 'value', this.getValue() );
+							else
+								element.removeAttribute( 'value' );
+						}
+					},
+					{
+						id : 'cmbSelected',
+						type : 'checkbox',
+						label : editor.lang.checkboxAndRadio.selected,
+						'default' : '',
+						accessKey : 'S',
+						value : "checked",
+						setup : function( element )
+						{
+							this.setValue( element.getAttribute( 'checked' ) );
+						},
+						commit : function( data )
+						{
+							var element = data.element;
+
+							if ( CKEDITOR.env.ie )
+							{
+								var isElementChecked = !!element.getAttribute( 'checked' );
+								var isChecked = !!this.getValue();
+
+								if ( isElementChecked != isChecked )
+								{
+									var replace = CKEDITOR.dom.element.createFromHtml( '<input type="checkbox"'
+										   + ( isChecked ? ' checked="checked"' : '' )
+										   + '></input>', editor.document );
+									element.copyAttributes( replace, { type : 1, checked : 1 } );
+									replace.replace( element );
+									editor.getSelection().selectElement( replace );
+									data.element = replace;
+								}
+							}
+							else
+							{
+								if ( this.getValue() )
+									element.setAttribute( 'checked', this.getValue() );
+								else
+									element.removeAttribute( 'checked' );
+							}
+						}
+					}
+				]
+			}
+		]
+	};
+});
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/forms/dialogs/form.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/forms/dialogs/form.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/forms/dialogs/form.js	(revision 3747)
@@ -0,0 +1,177 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+CKEDITOR.dialog.add( 'form', function( editor )
+{
+	var autoAttributes =
+	{
+		action : 1,
+		id : 1,
+		method : 1,
+		encoding : 1,
+		target : 1
+	};
+
+	return {
+		title : editor.lang.form.title,
+		minWidth : 350,
+		minHeight : 200,
+		onShow : function()
+		{
+			delete this.form;
+
+			var element = this.getParentEditor().getSelection().getStartElement();
+			var form = element && element.getAscendant( 'form', true );
+			if ( form )
+			{
+				this.form = form;
+				this.setupContent( form );
+			}
+		},
+		onOk : function()
+		{
+			var editor,
+				element = this.form,
+				isInsertMode = !element;
+
+			if ( isInsertMode )
+			{
+				editor = this.getParentEditor();
+				element = editor.document.createElement( 'form' );
+				element.append( editor.document.createElement( 'br' ) );
+			}
+
+			if ( isInsertMode )
+				editor.insertElement( element );
+			this.commitContent( element );
+		},
+		onLoad : function()
+		{
+			function autoSetup( element )
+			{
+				this.setValue( element.getAttribute( this.id ) || '' );
+			}
+
+			function autoCommit( element )
+			{
+				if ( this.getValue() )
+					element.setAttribute( this.id, this.getValue() );
+				else
+					element.removeAttribute( this.id );
+			}
+
+			this.foreach( function( contentObj )
+				{
+					if ( autoAttributes[ contentObj.id ] )
+					{
+						contentObj.setup = autoSetup;
+						contentObj.commit = autoCommit;
+					}
+				} );
+		},
+		contents : [
+			{
+				id : 'info',
+				label : editor.lang.form.title,
+				title : editor.lang.form.title,
+				elements : [
+					{
+						id : 'txtName',
+						type : 'text',
+						label : editor.lang.common.name,
+						'default' : '',
+						accessKey : 'N',
+						setup : function( element )
+						{
+							this.setValue( element.getAttribute( '_cke_saved_name' ) ||
+									element.getAttribute( 'name' ) ||
+									'' );
+						},
+						commit : function( element )
+						{
+							if ( this.getValue() )
+								element.setAttribute( '_cke_saved_name', this.getValue() );
+							else
+							{
+								element.removeAttribute( '_cke_saved_name' );
+								element.removeAttribute( 'name' );
+							}
+						}
+					},
+					{
+						id : 'action',
+						type : 'text',
+						label : editor.lang.form.action,
+						'default' : '',
+						accessKey : 'A'
+					},
+					{
+						type : 'hbox',
+						widths : [ '45%', '55%' ],
+						children :
+						[
+							{
+								id : 'id',
+								type : 'text',
+								label : editor.lang.common.id,
+								'default' : '',
+								accessKey : 'I'
+							},
+							{
+								id : 'encoding',
+								type : 'select',
+								label : editor.lang.form.encoding,
+								style : 'width:100%',
+								accessKey : 'E',
+								'default' : '',
+								items :
+								[
+									[ '' ],
+									[ 'text/plain' ],
+									[ 'multipart/form-data' ],
+									[ 'application/x-www-form-urlencoded' ]
+								]
+							}
+						]
+					},
+					{
+						type : 'hbox',
+						widths : [ '45%', '55%' ],
+						children :
+						[
+							{
+								id : 'target',
+								type : 'select',
+								label : editor.lang.form.target,
+								style : 'width:100%',
+								accessKey : 'M',
+								'default' : '',
+								items :
+								[
+									[ editor.lang.form.targetNotSet, '' ],
+									[ editor.lang.form.targetNew, '_blank' ],
+									[ editor.lang.form.targetTop, '_top' ],
+									[ editor.lang.form.targetSelf, '_self' ],
+									[ editor.lang.form.targetParent, '_parent' ]
+								]
+							},
+							{
+								id : 'method',
+								type : 'select',
+								label : editor.lang.form.method,
+								accessKey : 'M',
+								'default' : 'GET',
+								items :
+								[
+									[ 'GET', 'get' ],
+									[ 'POST', 'post' ]
+								]
+							}
+						]
+					}
+				]
+			}
+		]
+	};
+});
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/forms/dialogs/hiddenfield.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/forms/dialogs/hiddenfield.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/forms/dialogs/hiddenfield.js	(revision 3747)
@@ -0,0 +1,91 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+CKEDITOR.dialog.add( 'hiddenfield', function( editor )
+{
+	return {
+		title : editor.lang.hidden.title,
+		minWidth : 350,
+		minHeight : 110,
+		onShow : function()
+		{
+			delete this.hiddenField;
+
+			var element = this.getParentEditor().getSelection().getSelectedElement();
+			if ( element && element.getName() == "input" && element.getAttribute( 'type' ) == "checkbox" )
+			{
+				this.hiddenField = element;
+				this.setupContent( element );
+			}
+		},
+		onOk : function()
+		{
+			var editor,
+				element = this.hiddenField,
+				isInsertMode = !element;
+
+			if ( isInsertMode )
+			{
+				editor = this.getParentEditor();
+				element = editor.document.createElement( 'input' );
+				element.setAttribute( 'type', 'hidden' );
+			}
+
+			if ( isInsertMode )
+				editor.insertElement( element );
+			this.commitContent( element );
+		},
+		contents : [
+			{
+				id : 'info',
+				label : editor.lang.hidden.title,
+				title : editor.lang.hidden.title,
+				elements : [
+					{
+						id : '_cke_saved_name',
+						type : 'text',
+						label : editor.lang.hidden.name,
+						'default' : '',
+						accessKey : 'N',
+						setup : function( element )
+						{
+							this.setValue(
+									element.getAttribute( '_cke_saved_name' ) ||
+									element.getAttribute( 'name' ) ||
+									'' );
+						},
+						commit : function( element )
+						{
+							if ( this.getValue() )
+								element.setAttribute( '_cke_saved_name', this.getValue() );
+							else
+							{
+								element.removeAttribute( '_cke_saved_name' );
+								element.removeAttribute( 'name' );
+							}
+						}
+					},
+					{
+						id : 'value',
+						type : 'text',
+						label : editor.lang.hidden.value,
+						'default' : '',
+						accessKey : 'V',
+						setup : function( element )
+						{
+							this.setValue( element.getAttribute( 'value' ) || '' );
+						},
+						commit : function( element )
+						{
+							if ( this.getValue() )
+								element.setAttribute( 'value', this.getValue() );
+							else
+								element.removeAttribute( 'value' );
+						}
+					}
+				]
+			}
+		]
+	};
+});
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/forms/dialogs/radio.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/forms/dialogs/radio.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/forms/dialogs/radio.js	(revision 3747)
@@ -0,0 +1,135 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+CKEDITOR.dialog.add( 'radio', function( editor )
+{
+	return {
+		title : editor.lang.checkboxAndRadio.radioTitle,
+		minWidth : 350,
+		minHeight : 140,
+		onShow : function()
+		{
+			delete this.radioButton;
+
+			var element = this.getParentEditor().getSelection().getSelectedElement();
+			if ( element && element.getName() == "input" && element.getAttribute( 'type' ) == "radio" )
+			{
+				this.radioButton = element;
+				this.setupContent( element );
+			}
+		},
+		onOk : function()
+		{
+			var editor,
+				element = this.radioButton,
+				isInsertMode = !element;
+
+			if ( isInsertMode )
+			{
+				editor = this.getParentEditor();
+				element = editor.document.createElement( 'input' );
+				element.setAttribute( 'type', 'radio' );
+			}
+
+			if ( isInsertMode )
+				editor.insertElement( element );
+			this.commitContent( { element : element } );
+		},
+		contents : [
+			{
+				id : 'info',
+				label : editor.lang.checkboxAndRadio.radioTitle,
+				title : editor.lang.checkboxAndRadio.radioTitle,
+				elements : [
+					{
+						id : 'name',
+						type : 'text',
+						label : editor.lang.common.name,
+						'default' : '',
+						accessKey : 'N',
+						setup : function( element )
+						{
+							this.setValue(
+									element.getAttribute( '_cke_saved_name' ) ||
+									element.getAttribute( 'name' ) ||
+									'' );
+						},
+						commit : function( data )
+						{
+							var element = data.element;
+
+							if ( this.getValue() )
+								element.setAttribute( '_cke_saved_name', this.getValue() );
+							else
+							{
+								element.removeAttribute( '_cke_saved_name' );
+								element.removeAttribute( 'name' );
+							}
+						}
+					},
+					{
+						id : 'value',
+						type : 'text',
+						label : editor.lang.checkboxAndRadio.value,
+						'default' : '',
+						accessKey : 'V',
+						setup : function( element )
+						{
+							this.setValue( element.getAttribute( 'value' ) || '' );
+						},
+						commit : function( data )
+						{
+							var element = data.element;
+
+							if ( this.getValue() )
+								element.setAttribute( 'value', this.getValue() );
+							else
+								element.removeAttribute( 'value' );
+						}
+					},
+					{
+						id : 'checked',
+						type : 'checkbox',
+						label : editor.lang.checkboxAndRadio.selected,
+						'default' : '',
+						accessKey : 'S',
+						value : "checked",
+						setup : function( element )
+						{
+							this.setValue( element.getAttribute( 'checked' ) );
+						},
+						commit : function( data )
+						{
+							var element = data.element;
+
+							if ( !CKEDITOR.env.ie )
+							{
+								if ( this.getValue() )
+									element.setAttribute( 'checked', 'checked' );
+								else
+									element.removeAttribute( 'checked' );
+							}
+							else
+							{
+								var isElementChecked = element.getAttribute( 'checked' );
+								var isChecked = !!this.getValue();
+
+								if ( isElementChecked != isChecked )
+								{
+									var replace = CKEDITOR.dom.element.createFromHtml( '<input type="radio"'
+											+ ( isChecked ? ' checked="checked"' : '' )
+											+ '></input>', editor.document );
+									element.copyAttributes( replace, { type : 1, checked : 1 } );
+									replace.replace( element );
+									editor.getSelection().selectElement( replace );
+									data.element = replace;
+								}
+							}
+						}
+					}
+				]
+			}
+		]
+	};
+});
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/forms/dialogs/select.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/forms/dialogs/select.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/forms/dialogs/select.js	(revision 3747)
@@ -0,0 +1,541 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+CKEDITOR.dialog.add( 'select', function( editor )
+{
+	// Add a new option to a SELECT object (combo or list).
+	function addOption( combo, optionText, optionValue, documentObject, index )
+	{
+		combo = getSelect( combo );
+		var oOption;
+		if ( documentObject )
+			oOption = documentObject.createElement( "OPTION" );
+		else
+			oOption = document.createElement( "OPTION" );
+
+		if ( combo && oOption && oOption.getName() == 'option' )
+		{
+			if ( CKEDITOR.env.ie ) {
+				if ( !isNaN( parseInt( index, 10) ) )
+					combo.$.options.add( oOption.$, index );
+				else
+					combo.$.options.add( oOption.$ );
+
+				oOption.$.innerHTML = optionText.length > 0 ? optionText : '';
+				oOption.$.value     = optionValue;
+			}
+			else
+			{
+				if ( index !== null && index < combo.getChildCount() )
+					combo.getChild( index < 0 ? 0 : index ).insertBeforeMe( oOption );
+				else
+					combo.append( oOption );
+
+				oOption.setText( optionText.length > 0 ? optionText : '' );
+				oOption.setValue( optionValue );
+			}
+		}
+		else
+			return false;
+
+		return oOption;
+	}
+	// Remove all selected options from a SELECT object.
+	function removeSelectedOptions( combo )
+	{
+		combo = getSelect( combo );
+
+		// Save the selected index
+		var iSelectedIndex = getSelectedIndex( combo );
+
+		// Remove all selected options.
+		for ( var i = combo.getChildren().count() - 1 ; i >= 0 ; i-- )
+		{
+			if ( combo.getChild( i ).$.selected )
+				combo.getChild( i ).remove();
+		}
+
+		// Reset the selection based on the original selected index.
+		setSelectedIndex( combo, iSelectedIndex );
+	}
+	//Modify option  from a SELECT object.
+	function modifyOption( combo, index, title, value )
+	{
+		combo = getSelect( combo );
+		if ( index < 0 )
+			return false;
+		var child = combo.getChild( index );
+		child.setText( title );
+		child.setValue( value );
+		return child;
+	}
+	function removeAllOptions( combo )
+	{
+		combo = getSelect( combo );
+		while( combo.getChild( 0 ) && combo.getChild( 0 ).remove() )
+		{ /*jsl:pass*/ }
+	}
+	// Moves the selected option by a number of steps (also negative).
+	function changeOptionPosition( combo, steps, documentObject )
+	{
+		combo = getSelect( combo );
+		var iActualIndex = getSelectedIndex( combo );
+		if ( iActualIndex < 0 )
+			return false;
+
+		var iFinalIndex = iActualIndex + steps;
+		iFinalIndex = ( iFinalIndex < 0 ) ? 0 : iFinalIndex;
+		iFinalIndex = ( iFinalIndex >= combo.getChildCount() ) ? combo.getChildCount() - 1 : iFinalIndex;
+
+		if ( iActualIndex == iFinalIndex )
+			return false;
+
+		var oOption = combo.getChild( iActualIndex ),
+			sText	= oOption.getText(),
+			sValue	= oOption.getValue();
+
+		oOption.remove();
+
+		oOption = addOption( combo, sText, sValue, ( !documentObject ) ? null : documentObject, iFinalIndex );
+		setSelectedIndex( combo, iFinalIndex );
+		return oOption;
+	}
+	function getSelectedIndex( combo )
+	{
+		combo = getSelect( combo );
+		return combo ? combo.$.selectedIndex : -1;
+	}
+	function setSelectedIndex( combo, index )
+	{
+		combo = getSelect( combo );
+		if ( index < 0 )
+			return null;
+		var count = combo.getChildren().count();
+		combo.$.selectedIndex = ( index >= count ) ? ( count - 1 ) : index;
+		return combo;
+	}
+	function getOptions( combo )
+	{
+		combo = getSelect( combo );
+		return combo ? combo.getChildren() : false;
+	}
+	function getSelect( obj )
+	{
+		if ( obj && obj.domId && obj.getInputElement().$ )				// Dialog element.
+			return  obj.getInputElement();
+		else if ( obj && obj.$ )
+			return obj;
+		return false;
+	}
+
+	return {
+		title : editor.lang.select.title,
+		minWidth : CKEDITOR.env.ie ? 460 : 395,
+		minHeight : CKEDITOR.env.ie ? 320 : 300,
+		onShow : function()
+		{
+			delete this.selectBox;
+			this.setupContent( 'clear' );
+			var element = this.getParentEditor().getSelection().getSelectedElement();
+			if ( element && element.getName() == "select" )
+			{
+				this.selectBox = element;
+				this.setupContent( element.getName(), element );
+
+				// Load Options into dialog.
+				var objOptions = getOptions( element );
+				for ( var i = 0 ; i < objOptions.count() ; i++ )
+					this.setupContent( 'option', objOptions.getItem( i ) );
+			}
+		},
+		onOk : function()
+		{
+			var editor = this.getParentEditor(),
+				element = this.selectBox,
+				isInsertMode = !element;
+
+			if ( isInsertMode )
+				element = editor.document.createElement( 'select' );
+			this.commitContent( element );
+
+			if ( isInsertMode )
+				editor.insertElement( element );
+		},
+		contents : [
+			{
+				id : 'info',
+				label : editor.lang.select.selectInfo,
+				title : editor.lang.select.selectInfo,
+				accessKey : '',
+				elements : [
+					{
+						id : 'txtName',
+						type : 'text',
+						widths : [ '25%','75%' ],
+						labelLayout : 'horizontal',
+						label : editor.lang.common.name,
+						'default' : '',
+						accessKey : 'N',
+						align : 'center',
+						style : 'width:350px',
+						setup : function( name, element )
+						{
+							if ( name == 'clear' )
+								this.setValue( '' );
+							else if ( name == 'select' )
+							{
+								this.setValue(
+										element.getAttribute( '_cke_saved_name' ) ||
+										element.getAttribute( 'name' ) ||
+										'' );
+							}
+						},
+						commit : function( element )
+						{
+							if ( this.getValue() )
+								element.setAttribute( '_cke_saved_name', this.getValue() );
+							else
+							{
+								element.removeAttribute( '_cke_saved_name' ) ;
+								element.removeAttribute( 'name' );
+							}
+						}
+					},
+					{
+						id : 'txtValue',
+						type : 'text',
+						widths : [ '25%','75%' ],
+						labelLayout : 'horizontal',
+						label : editor.lang.select.value,
+						style : 'width:350px',
+						'default' : '',
+						className : 'cke_disabled',
+						onLoad : function()
+						{
+							this.getInputElement().setAttribute( 'readOnly', true );
+						},
+						setup : function( name, element )
+						{
+							if ( name == 'clear' )
+								this.setValue( '' );
+							else if ( name == 'option' && element.getAttribute( 'selected' ) )
+								this.setValue( element.$.value );
+						}
+					},
+					{
+						type : 'hbox',
+						widths : [ '175px', '170px' ],
+						align : 'center',
+						children :
+						[
+							{
+								id : 'txtSize',
+								type : 'text',
+								align : 'center',
+								labelLayout : 'horizontal',
+								label : editor.lang.select.size,
+								'default' : '',
+								accessKey : 'S',
+								style : 'width:175px',
+								validate: function()
+								{
+									var func = CKEDITOR.dialog.validate.integer( editor.lang.common.validateNumberFailed );
+									return ( ( this.getValue() === '' ) || func.apply( this ) );
+								},
+								setup : function( name, element )
+								{
+									if ( name == 'select' )
+										this.setValue( element.getAttribute( 'size' ) || '' );
+								},
+								commit : function( element )
+								{
+									if ( this.getValue() )
+										element.setAttribute( 'size', this.getValue() );
+									else
+										element.removeAttribute( 'size' );
+								}
+							},
+							{
+								type : 'html',
+								html : '<span>' + CKEDITOR.tools.htmlEncode( editor.lang.select.lines ) + '</span>'
+							}
+						]
+					},
+					{
+						type : 'html',
+						html : '<span>' + CKEDITOR.tools.htmlEncode( editor.lang.select.opAvail ) + '</span>'
+					},
+					{
+						type : 'hbox',
+						widths : [ '115px', '115px' ,'100px' ],
+						align : 'top',
+						children :
+						[
+							{
+								type : 'vbox',
+								children :
+								[
+									{
+										id : 'txtOptName',
+										type : 'text',
+										label : editor.lang.select.opText,
+										style : 'width:115px',
+										setup : function( name, element )
+										{
+											if ( name == 'clear' )
+												this.setValue( "" );
+										}
+									},
+									{
+										type : 'select',
+										id : 'cmbName',
+										label : '',
+										title : '',
+										size : 5,
+										style : 'width:115px;height:75px',
+										items : [],
+										onChange : function()
+										{
+											var dialog = this.getDialog(),
+												values = dialog.getContentElement( 'info', 'cmbValue' ),
+												optName = dialog.getContentElement( 'info', 'txtOptName' ),
+												optValue = dialog.getContentElement( 'info', 'txtOptValue' ),
+												iIndex = getSelectedIndex( this );
+
+											setSelectedIndex( values, iIndex );
+											optName.setValue( this.getValue() );
+											optValue.setValue( values.getValue() );
+										},
+										setup : function( name, element )
+										{
+											if ( name == 'clear' )
+												removeAllOptions( this );
+											else if ( name == 'option' )
+												addOption( this, element.getText(), element.getText(),
+													this.getDialog().getParentEditor().document );
+										},
+										commit : function( element )
+										{
+											var dialog = this.getDialog(),
+												optionsNames = getOptions( this ),
+												optionsValues = getOptions( dialog.getContentElement( 'info', 'cmbValue' ) ),
+												selectValue = dialog.getContentElement( 'info', 'txtValue' ).getValue();
+
+											removeAllOptions( element );
+
+											for ( var i = 0 ; i < optionsNames.count() ; i++ )
+											{
+												var oOption = addOption( element, optionsNames.getItem( i ).getValue(),
+													optionsValues.getItem( i ).getValue(), dialog.getParentEditor().document );
+												if ( optionsValues.getItem( i ).getValue() == selectValue )
+												{
+													oOption.setAttribute( 'selected', 'selected' );
+													oOption.selected = true;
+												}
+											}
+										}
+									}
+								]
+							},
+							{
+								type : 'vbox',
+								children :
+								[
+									{
+										id : 'txtOptValue',
+										type : 'text',
+										label : editor.lang.select.opValue,
+										style : 'width:115px',
+										setup : function( name, element )
+										{
+											if ( name == 'clear' )
+												this.setValue( "" );
+										}
+									},
+									{
+										type : 'select',
+										id : 'cmbValue',
+										label : '',
+										size : 5,
+										style : 'width:115px;height:75px',
+										items : [],
+										onChange : function()
+										{
+											var dialog = this.getDialog(),
+												names = dialog.getContentElement( 'info', 'cmbName' ),
+												optName = dialog.getContentElement( 'info', 'txtOptName' ),
+												optValue = dialog.getContentElement( 'info', 'txtOptValue' ),
+												iIndex = getSelectedIndex( this );
+
+											setSelectedIndex( names, iIndex );
+											optName.setValue( names.getValue() );
+											optValue.setValue( this.getValue() );
+										},
+										setup : function( name, element )
+										{
+											if ( name == 'clear' )
+												removeAllOptions( this );
+											else if ( name == 'option' )
+											{
+												var oValue	= element.getValue();
+												addOption( this, oValue, oValue,
+													this.getDialog().getParentEditor().document );
+												if ( element.getAttribute( 'selected' ) == 'selected' )
+													this.getDialog().getContentElement( 'info', 'txtValue' ).setValue( oValue );
+											}
+										}
+									}
+								]
+							},
+							{
+								type : 'vbox',
+								padding : 5,
+								children :
+								[
+									{
+										type : 'button',
+										style : '',
+										label : editor.lang.select.btnAdd,
+										title : editor.lang.select.btnAdd,
+										style : 'width:100%;',
+										onClick : function()
+										{
+											//Add new option.
+											var dialog = this.getDialog(),
+												parentEditor = dialog.getParentEditor(),
+												optName = dialog.getContentElement( 'info', 'txtOptName' ),
+												optValue = dialog.getContentElement( 'info', 'txtOptValue' ),
+												names = dialog.getContentElement( 'info', 'cmbName' ),
+												values = dialog.getContentElement( 'info', 'cmbValue' );
+
+											addOption(names, optName.getValue(), optName.getValue(), dialog.getParentEditor().document );
+											addOption(values, optValue.getValue(), optValue.getValue(), dialog.getParentEditor().document );
+
+											optName.setValue( "" );
+											optValue.setValue( "" );
+										}
+									},
+									{
+										type : 'button',
+										label : editor.lang.select.btnModify,
+										title : editor.lang.select.btnModify,
+										style : 'width:100%;',
+										onClick : function()
+										{
+											//Modify selected option.
+											var dialog = this.getDialog(),
+												optName = dialog.getContentElement( 'info', 'txtOptName' ),
+												optValue = dialog.getContentElement( 'info', 'txtOptValue' ),
+												names = dialog.getContentElement( 'info', 'cmbName' ),
+												values = dialog.getContentElement( 'info', 'cmbValue' ),
+												iIndex = getSelectedIndex( names );
+
+											if ( iIndex >= 0 )
+											{
+												modifyOption( names, iIndex, optName.getValue(), optName.getValue() );
+												modifyOption( values, iIndex, optValue.getValue(), optValue.getValue() );
+											}
+										}
+									},
+									{
+										type : 'button',
+										style : 'width:100%;',
+										label : editor.lang.select.btnUp,
+										title : editor.lang.select.btnUp,
+										onClick : function()
+										{
+											//Move up.
+											var dialog = this.getDialog(),
+												names = dialog.getContentElement( 'info', 'cmbName' ),
+												values = dialog.getContentElement( 'info', 'cmbValue' );
+
+											changeOptionPosition( names, -1, dialog.getParentEditor().document );
+											changeOptionPosition( values, -1, dialog.getParentEditor().document );
+										}
+									},
+									{
+										type : 'button',
+										style : 'width:100%;',
+										label : editor.lang.select.btnDown,
+										title : editor.lang.select.btnDown,
+										onClick : function()
+										{
+											//Move down.
+											var dialog = this.getDialog(),
+												names = dialog.getContentElement( 'info', 'cmbName' ),
+												values = dialog.getContentElement( 'info', 'cmbValue' );
+
+											changeOptionPosition( names, 1, dialog.getParentEditor().document );
+											changeOptionPosition( values, 1, dialog.getParentEditor().document );
+										}
+									}
+								]
+							}
+						]
+					},
+					{
+						type : 'hbox',
+						widths : [ '40%', '20%', '40%' ],
+						children :
+						[
+							{
+								type : 'button',
+								label : editor.lang.select.btnSetValue,
+								title : editor.lang.select.btnSetValue,
+								onClick : function()
+								{
+									//Set as default value.
+									var dialog = this.getDialog(),
+										values = dialog.getContentElement( 'info', 'cmbValue' ),
+										txtValue = dialog.getContentElement( 'info', 'txtValue' );
+									txtValue.setValue( values.getValue() );
+								}
+							},
+							{
+								type : 'button',
+								label : editor.lang.select.btnDelete,
+								title : editor.lang.select.btnDelete,
+								onClick : function()
+								{
+									// Delete option.
+									var dialog = this.getDialog(),
+										names = dialog.getContentElement( 'info', 'cmbName' ),
+										values = dialog.getContentElement( 'info', 'cmbValue' ),
+										optName = dialog.getContentElement( 'info', 'txtOptName' ),
+										optValue = dialog.getContentElement( 'info', 'txtOptValue' );
+
+									removeSelectedOptions( names );
+									removeSelectedOptions( values );
+
+									optName.setValue( "" );
+									optValue.setValue( "" );
+								}
+							},
+							{
+								id : 'chkMulti',
+								type : 'checkbox',
+								label : editor.lang.select.chkMulti,
+								'default' : '',
+								accessKey : 'M',
+								value : "checked",
+								setup : function( name, element )
+								{
+									if ( name == 'select' )
+										this.setValue( element.getAttribute( 'multiple' ) );
+								},
+								commit : function( element )
+								{
+									if ( this.getValue() )
+										element.setAttribute( 'multiple', this.getValue() );
+									else
+										element.removeAttribute( 'multiple' );
+								}
+							}
+						]
+					}
+				]
+			}
+		]
+	};
+});
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/forms/dialogs/textarea.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/forms/dialogs/textarea.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/forms/dialogs/textarea.js	(revision 3747)
@@ -0,0 +1,114 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+CKEDITOR.dialog.add( 'textarea', function( editor )
+{
+	return {
+		title : editor.lang.textarea.title,
+		minWidth : 350,
+		minHeight : 150,
+		onShow : function()
+		{
+			delete this.textarea;
+
+			var element = this.getParentEditor().getSelection().getSelectedElement();
+			if ( element && element.getName() == "textarea" )
+			{
+				this.textarea = element;
+				this.setupContent( element );
+			}
+		},
+		onOk : function()
+		{
+			var editor,
+				element = this.textarea,
+				isInsertMode = !element;
+
+			if ( isInsertMode )
+			{
+				editor = this.getParentEditor();
+				element = editor.document.createElement( 'textarea' );
+			}
+			this.commitContent( element );
+
+			if ( isInsertMode )
+				editor.insertElement( element );
+		},
+		contents : [
+			{
+				id : 'info',
+				label : editor.lang.textarea.title,
+				title : editor.lang.textarea.title,
+				elements : [
+					{
+						id : '_cke_saved_name',
+						type : 'text',
+						label : editor.lang.common.name,
+						'default' : '',
+						accessKey : 'N',
+						setup : function( element )
+						{
+							this.setValue(
+									element.getAttribute( '_cke_saved_name' ) ||
+									element.getAttribute( 'name' ) ||
+									'' );
+						},
+						commit : function( element )
+						{
+							if ( this.getValue() )
+								element.setAttribute( '_cke_saved_name', this.getValue() );
+							else
+							{
+								element.removeAttribute( '_cke_saved_name' );
+								element.removeAttribute( 'name' );
+							}
+						}
+					},
+					{
+						id : 'cols',
+						type : 'text',
+						label : editor.lang.textarea.cols,
+						'default' : '',
+						accessKey : 'C',
+						style : 'width:50px',
+						validate : CKEDITOR.dialog.validate.integer( editor.lang.common.validateNumberFailed ),
+						setup : function( element )
+						{
+							var value = element.hasAttribute( 'cols' ) && element.getAttribute( 'cols' );
+							this.setValue( value || '' );
+						},
+						commit : function( element )
+						{
+							if ( this.getValue() )
+								element.setAttribute( 'cols', this.getValue() );
+							else
+								element.removeAttribute( 'cols' );
+						}
+					},
+					{
+						id : 'rows',
+						type : 'text',
+						label : editor.lang.textarea.rows,
+						'default' : '',
+						accessKey : 'R',
+						style : 'width:50px',
+						validate : CKEDITOR.dialog.validate.integer( editor.lang.common.validateNumberFailed ),
+						setup : function( element )
+						{
+							var value = element.hasAttribute( 'rows' ) && element.getAttribute( 'rows' );
+							this.setValue( value || '' );
+						},
+						commit : function( element )
+						{
+							if ( this.getValue() )
+								element.setAttribute( 'rows', this.getValue() );
+							else
+								element.removeAttribute( 'rows' );
+						}
+					}
+				]
+			}
+		]
+	};
+});
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/forms/dialogs/textfield.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/forms/dialogs/textfield.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/forms/dialogs/textfield.js	(revision 3747)
@@ -0,0 +1,193 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+CKEDITOR.dialog.add( 'textfield', function( editor )
+{
+	var autoAttributes =
+	{
+		value : 1,
+		size : 1,
+		maxLength : 1
+	};
+
+	var acceptedTypes =
+	{
+		text : 1,
+		password : 1
+	};
+
+	return {
+		title : editor.lang.textfield.title,
+		minWidth : 350,
+		minHeight : 150,
+		onShow : function()
+		{
+			delete this.textField;
+
+			var element = this.getParentEditor().getSelection().getSelectedElement();
+			if ( element && element.getName() == "input" &&
+					( acceptedTypes[ element.getAttribute( 'type' ) ] || !element.getAttribute( 'type' ) ) )
+			{
+				this.textField = element;
+				this.setupContent( element );
+			}
+		},
+		onOk : function()
+		{
+			var editor,
+				element = this.textField,
+				isInsertMode = !element;
+
+			if ( isInsertMode )
+			{
+				editor = this.getParentEditor();
+				element = editor.document.createElement( 'input' );
+				element.setAttribute( 'type', 'text' );
+			}
+
+			if ( isInsertMode )
+				editor.insertElement( element );
+			this.commitContent( { element : element } );
+		},
+		onLoad : function()
+		{
+			var autoSetup = function( element )
+			{
+				var value = element.hasAttribute( this.id ) && element.getAttribute( this.id );
+				this.setValue( value || '' );
+			};
+
+			var autoCommit = function( data )
+			{
+				var element = data.element;
+				var value = this.getValue();
+
+				if ( value )
+					element.setAttribute( this.id, value );
+				else
+					element.removeAttribute( this.id );
+			};
+
+			this.foreach( function( contentObj )
+				{
+					if ( autoAttributes[ contentObj.id ] )
+					{
+						contentObj.setup = autoSetup;
+						contentObj.commit = autoCommit;
+					}
+				} );
+		},
+		contents : [
+			{
+				id : 'info',
+				label : editor.lang.textfield.title,
+				title : editor.lang.textfield.title,
+				elements : [
+					{
+						type : 'hbox',
+						widths : [ '50%', '50%' ],
+						children :
+						[
+							{
+								id : '_cke_saved_name',
+								type : 'text',
+								label : editor.lang.textfield.name,
+								'default' : '',
+								accessKey : 'N',
+								setup : function( element )
+								{
+									this.setValue(
+											element.getAttribute( '_cke_saved_name' ) ||
+											element.getAttribute( 'name' ) ||
+											'' );
+								},
+								commit : function( data )
+								{
+									var element = data.element;
+
+									if ( this.getValue() )
+										element.setAttribute( '_cke_saved_name', this.getValue() );
+									else
+									{
+										element.removeAttribute( '_cke_saved_name' );
+										element.removeAttribute( 'name' );
+									}
+								}
+							},
+							{
+								id : 'value',
+								type : 'text',
+								label : editor.lang.textfield.value,
+								'default' : '',
+								accessKey : 'V'
+							}
+						]
+					},
+					{
+						type : 'hbox',
+						widths : [ '50%', '50%' ],
+						children :
+						[
+							{
+								id : 'size',
+								type : 'text',
+								label : editor.lang.textfield.charWidth,
+								'default' : '',
+								accessKey : 'C',
+								style : 'width:50px',
+								validate : CKEDITOR.dialog.validate.integer( editor.lang.common.validateNumberFailed )
+							},
+							{
+								id : 'maxLength',
+								type : 'text',
+								label : editor.lang.textfield.maxChars,
+								'default' : '',
+								accessKey : 'M',
+								style : 'width:50px',
+								validate : CKEDITOR.dialog.validate.integer( editor.lang.common.validateNumberFailed )
+							}
+						]
+					},
+					{
+						id : 'type',
+						type : 'select',
+						label : editor.lang.textfield.type,
+						'default' : 'text',
+						accessKey : 'M',
+						items :
+						[
+							[ editor.lang.textfield.typeText, 'text' ],
+							[ editor.lang.textfield.typePass, 'password' ]
+						],
+						setup : function( element )
+						{
+							this.setValue( element.getAttribute( 'type' ) );
+						},
+						commit : function( data )
+						{
+							var element = data.element;
+
+							if ( CKEDITOR.env.ie )
+							{
+								var elementType = element.getAttribute( 'type' );
+								var myType = this.getValue();
+
+								if ( elementType != myType )
+								{
+									var replace = CKEDITOR.dom.element.createFromHtml( '<input type="' + myType + '"></input>', editor.document );
+									element.copyAttributes( replace, { type : 1 } );
+									replace.replace( element );
+									editor.getSelection().selectElement( replace );
+									data.element = element;
+								}
+							}
+							else
+								element.setAttribute( 'type', this.getValue() );
+						}
+					}
+				]
+			}
+		]
+	};
+});
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/forms/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/forms/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/forms/plugin.js	(revision 3747)
@@ -0,0 +1,193 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @file Forms Plugin
+ */
+
+CKEDITOR.plugins.add( 'forms',
+{
+	init : function( editor )
+	{
+		var lang = editor.lang;
+
+		editor.addCss(
+			'form' +
+			'{' +
+				'border: 1px dotted #FF0000;' +
+				'padding: 2px;' +
+			'}' );
+
+		// All buttons use the same code to register. So, to avoid
+		// duplications, let's use this tool function.
+		var addButtonCommand = function( buttonName, commandName, dialogFile )
+		{
+			editor.addCommand( commandName, new CKEDITOR.dialogCommand( commandName ) );
+
+			editor.ui.addButton( buttonName,
+				{
+					label : lang.common[ buttonName.charAt(0).toLowerCase() + buttonName.slice(1) ],
+					command : commandName
+				});
+			CKEDITOR.dialog.add( commandName, dialogFile );
+		};
+
+		var dialogPath = this.path + 'dialogs/';
+		addButtonCommand( 'Form',			'form',			dialogPath + 'form.js' );
+		addButtonCommand( 'Checkbox',		'checkbox',		dialogPath + 'checkbox.js' );
+		addButtonCommand( 'Radio',			'radio',		dialogPath + 'radio.js' );
+		addButtonCommand( 'TextField',		'textfield',	dialogPath + 'textfield.js' );
+		addButtonCommand( 'Textarea',		'textarea',		dialogPath + 'textarea.js' );
+		addButtonCommand( 'Select',			'select',		dialogPath + 'select.js' );
+		addButtonCommand( 'Button',			'button',		dialogPath + 'button.js' );
+		addButtonCommand( 'ImageButton',	'imagebutton',	CKEDITOR.plugins.getPath('image') + 'dialogs/image.js' );
+		addButtonCommand( 'HiddenField',	'hiddenfield',	dialogPath + 'hiddenfield.js' );
+
+		// If the "menu" plugin is loaded, register the menu items.
+		if ( editor.addMenuItems )
+		{
+			editor.addMenuItems(
+				{
+					form :
+					{
+						label : lang.form.menu,
+						command : 'form',
+						group : 'form'
+					},
+
+					checkbox :
+					{
+						label : lang.checkboxAndRadio.checkboxTitle,
+						command : 'checkbox',
+						group : 'checkbox'
+					},
+
+					radio :
+					{
+						label : lang.checkboxAndRadio.radioTitle,
+						command : 'radio',
+						group : 'radio'
+					},
+
+					textfield :
+					{
+						label : lang.textfield.title,
+						command : 'textfield',
+						group : 'textfield'
+					},
+
+					hiddenfield :
+					{
+						label : lang.hidden.title,
+						command : 'hiddenfield',
+						group : 'hiddenfield'
+					},
+
+					imagebutton :
+					{
+						label : lang.image.titleButton,
+						command : 'imagebutton',
+						group : 'imagebutton'
+					},
+
+					button :
+					{
+						label : lang.button.title,
+						command : 'button',
+						group : 'button'
+					},
+
+					select :
+					{
+						label : lang.select.title,
+						command : 'select',
+						group : 'select'
+					},
+
+					textarea :
+					{
+						label : lang.textarea.title,
+						command : 'textarea',
+						group : 'textarea'
+					}
+				});
+		}
+
+		// If the "contextmenu" plugin is loaded, register the listeners.
+		if ( editor.contextMenu )
+		{
+			editor.contextMenu.addListener( function( element )
+				{
+					if ( element && element.hasAscendant( 'form' ) )
+						return { form : CKEDITOR.TRISTATE_OFF };
+				});
+
+			editor.contextMenu.addListener( function( element )
+				{
+					if ( element )
+					{
+						var name = element.getName();
+
+						if ( name == 'select' )
+							return { select : CKEDITOR.TRISTATE_OFF };
+
+						if ( name == 'textarea' )
+							return { textarea : CKEDITOR.TRISTATE_OFF };
+
+						if ( name == 'input' )
+						{
+							var type = element.getAttribute( 'type' );
+
+							if ( type == 'text' || type == 'password' )
+								return { textfield : CKEDITOR.TRISTATE_OFF };
+
+							if ( type == 'button' || type == 'submit' || type == 'reset' )
+								return { button : CKEDITOR.TRISTATE_OFF };
+
+							if ( type == 'checkbox' )
+								return { checkbox : CKEDITOR.TRISTATE_OFF };
+
+							if ( type == 'radio' )
+								return { radio : CKEDITOR.TRISTATE_OFF };
+
+							if ( type == 'image' )
+								return { imagebutton : CKEDITOR.TRISTATE_OFF };
+						}
+
+						if ( name == 'img' && element.getAttribute( '_cke_real_element_type' ) == 'hiddenfield' )
+							return { hiddenfield : CKEDITOR.TRISTATE_OFF };
+					}
+				});
+		}
+	},
+	requires : [ 'image' ]
+} );
+
+if ( CKEDITOR.env.ie )
+{
+	CKEDITOR.dom.element.prototype.hasAttribute = function( name )
+	{
+		var $attr = this.$.attributes.getNamedItem( name );
+
+		if ( this.getName() == 'input' )
+		{
+			switch ( name )
+			{
+				case 'class' :
+					return this.$.className.length > 0;
+				case 'checked' :
+					return !!this.$.checked;
+				case 'value' :
+					var type = this.getAttribute( 'type' );
+					if ( type == 'checkbox' || type == 'radio' )
+						return this.$.value != 'on';
+					break;
+				default:
+			}
+		}
+
+		return !!( $attr && $attr.specified );
+	};
+}
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/horizontalrule/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/horizontalrule/plugin.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/horizontalrule/plugin.js	(revision 3747)
@@ -23,5 +23,5 @@
 	CKEDITOR.plugins.add( pluginName,
 	{
-		init : function( editor, pluginPath )
+		init : function( editor )
 		{
 			editor.addCommand( pluginName, horizontalruleCmd );
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/htmldataprocessor/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/htmldataprocessor/plugin.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/htmldataprocessor/plugin.js	(revision 3747)
@@ -4,37 +4,331 @@
 */
 
-CKEDITOR.plugins.add( 'htmldataprocessor',
+(function()
 {
-	requires : [ 'htmlwriter' ],
-
-	init : function( editor, pluginPath )
-	{
-		editor.dataProcessor = new CKEDITOR.htmlDataProcessor();
-	}
-});
-
-CKEDITOR.htmlDataProcessor = function()
-{
-	this.writer = new CKEDITOR.htmlWriter();
-};
-
-CKEDITOR.htmlDataProcessor.prototype =
-{
-	toHtml : function( data )
-	{
-		// The source data is already HTML, so just return it as is.
+	// Regex to scan for &nbsp; at the end of blocks, which are actually placeholders.
+	var tailNbspRegex = /^[\t\r\n ]*&nbsp;$/;
+
+	var protectedSourceMarker = '{cke_protected}';
+
+	function trimFillers( block, fromSource )
+	{
+		// If the current node is a block, and if we're converting from source or
+		// we're not in IE then search for and remove any tailing BR node.
+		//
+		// Also, any &nbsp; at the end of blocks are fillers, remove them as well.
+		// (#2886)
+		var children = block.children;
+		var lastChild = children[ children.length - 1 ];
+		if ( lastChild )
+		{
+			if ( ( fromSource || !CKEDITOR.env.ie ) && lastChild.type == CKEDITOR.NODE_ELEMENT && lastChild.name == 'br' )
+				children.pop();
+			if ( lastChild.type == CKEDITOR.NODE_TEXT && tailNbspRegex.test( lastChild.value ) )
+				children.pop();
+		}
+	}
+
+	function blockNeedsExtension( block )
+	{
+		if ( block.children.length < 1 )
+			return true;
+
+		var lastChild = block.children[ block.children.length - 1 ];
+		return lastChild.type == CKEDITOR.NODE_ELEMENT && lastChild.name == 'br';
+	}
+
+	function extendBlockForDisplay( block )
+	{
+		trimFillers( block, true );
+
+		if ( blockNeedsExtension( block ) )
+		{
+			if ( CKEDITOR.env.ie )
+				block.add( new CKEDITOR.htmlParser.text( '\xa0' ) );
+			else
+				block.add( new CKEDITOR.htmlParser.element( 'br', {} ) );
+		}
+	}
+
+	function extendBlockForOutput( block )
+	{
+		trimFillers( block );
+
+		if ( blockNeedsExtension( block ) )
+			block.add( new CKEDITOR.htmlParser.text( '\xa0' ) );
+	}
+
+	var dtd = CKEDITOR.dtd;
+
+	// Find out the list of block-like tags that can contain <br>.
+	var blockLikeTags = CKEDITOR.tools.extend( {}, dtd.$block, dtd.$listItem, dtd.$tableContent );
+	for ( var i in blockLikeTags )
+	{
+		if ( ! ( 'br' in dtd[i] ) )
+			delete blockLikeTags[i];
+	}
+	// We just avoid filler in <pre> right now.
+	// TODO: Support filler for <pre>, line break is also occupy line height.
+	delete blockLikeTags.pre;
+	var defaultDataFilterRules =
+	{
+		elementNames :
+		[
+			// Elements that cause problems in wysiwyg mode.
+			[ ( /^(object|embed|param)$/ ), 'cke:$1' ]
+		],
+
+		attributeNames :
+		[
+			// Event attributes (onXYZ) must not be directly set. They can become
+			// active in the editing area (IE|WebKit).
+			[ ( /^on/ ), '_cke_pa_on' ]
+		]
+	};
+
+	var defaultDataBlockFilterRules = { elements : {} };
+
+	for ( i in blockLikeTags )
+		defaultDataBlockFilterRules.elements[ i ] = extendBlockForDisplay;
+
+	/**
+	 * IE sucks with dynamic 'name' attribute after element is created, '_cke_saved_name' is used instead for this attribute.
+	 */
+	var removeName = function( element )
+	{
+		var attribs = element.attributes;
+
+		if ( attribs._cke_saved_name )
+			delete attribs.name;
+	};
+
+	var defaultHtmlFilterRules =
+		{
+			elementNames :
+			[
+				// Remove the "cke:" namespace prefix.
+				[ ( /^cke:/ ), '' ],
+
+				// Ignore <?xml:namespace> tags.
+				[ ( /^\?xml:namespace$/ ), '' ]
+			],
+
+			attributeNames :
+			[
+				// Attributes saved for changes and protected attributes.
+				[ ( /^_cke_(saved|pa)_/ ), '' ],
+
+				// All "_cke" attributes are to be ignored.
+				[ ( /^_cke.*/ ), '' ]
+			],
+
+			elements :
+			{
+				embed : function( element )
+				{
+					var parent = element.parent;
+
+					// If the <embed> is child of a <object>, copy the width
+					// and height attributes from it.
+					if ( parent && parent.name == 'object' )
+					{
+						element.attributes.width = parent.attributes.width;
+						element.attributes.height = parent.attributes.height;
+					}
+				},
+
+				img : function( element )
+				{
+					var attribs = element.attributes;
+
+					if ( attribs._cke_saved_name )
+						delete attribs.name;
+					if ( attribs._cke_saved_src )
+						delete attribs.src;
+				},
+
+				a : function( element )
+				{
+					var attribs = element.attributes;
+
+					if ( attribs._cke_saved_name )
+						delete attribs.name;
+					if ( attribs._cke_saved_href )
+						delete attribs.href;
+				},
+
+				input : removeName,
+				textarea : removeName,
+				select : removeName,
+				form : removeName
+			},
+
+			attributes :
+			{
+				'class' : function( value, element )
+				{
+					// Remove all class names starting with "cke_".
+					return CKEDITOR.tools.ltrim( value.replace( /(?:^|\s+)cke_[^\s]*/g, '' ) ) || false;
+				}
+			},
+
+			comment : function( contents )
+			{
+				if ( contents.substr( 0, protectedSourceMarker.length ) == protectedSourceMarker )
+					return new CKEDITOR.htmlParser.cdata( decodeURIComponent( contents.substr( protectedSourceMarker.length ) ) );
+
+				return contents;
+			}
+		};
+
+	var defaultHtmlBlockFilterRules = { elements : {} };
+
+	for ( i in blockLikeTags )
+		defaultHtmlBlockFilterRules.elements[ i ] = extendBlockForOutput;
+
+	if ( CKEDITOR.env.ie )
+	{
+		// IE outputs style attribute in capital letters. We should convert
+		// them back to lower case.
+		defaultHtmlFilterRules.attributes.style = function( value, element )
+		{
+			return value.toLowerCase();
+		};
+	}
+
+	var protectAttributeRegex = /<(?:a|area|img|input).*?\s((?:href|src|name)\s*=\s*(?:(?:"[^"]*")|(?:'[^']*')|(?:[^ "'>]+)))/gi;
+
+	function protectAttributes( html )
+	{
+		return html.replace( protectAttributeRegex, '$& _cke_saved_$1' );
+	}
+
+	var protectStyleTagsRegex = /<(style)(?=[ >])[^>]*>[^<]*<\/\1>/gi;
+	var encodedTagsRegex = /<cke:encoded>([^<]*)<\/cke:encoded>/gi;
+
+	function protectStyleTagsMatch( match )
+	{
+		return '<cke:encoded>' + encodeURIComponent( match ) + '</cke:encoded>';
+	}
+
+	function protectStyleTags( html )
+	{
+		return html.replace( protectStyleTagsRegex, protectStyleTagsMatch );
+	}
+
+	function unprotectEncodedTagsMatch( match, encoded )
+	{
+		return decodeURIComponent( encoded );
+	}
+
+	function unprotectEncodedTags( html )
+	{
+		return html.replace( encodedTagsRegex, unprotectEncodedTagsMatch );
+	}
+
+	function protectSource( data, protectRegexes )
+	{
+		var regexes =
+			[
+				// First of any other protection, we must protect all comments
+				// to avoid loosing them (of course, IE related).
+				/<!--[\s\S]*?-->/g,
+
+				// Script tags will also be forced to be protected, otherwise
+				// IE will execute them.
+				/<script[\s\S]*?<\/script>/gi,
+
+				// <noscript> tags (get lost in IE and messed up in FF).
+				/<noscript[\s\S]*?<\/noscript>/gi
+			]
+			.concat( protectRegexes );
+
+		for ( var i = 0 ; i < regexes.length ; i++ )
+		{
+			data = data.replace( regexes[i], function( match )
+				{
+					return '<!--' + protectedSourceMarker + encodeURIComponent( match ).replace( /--/g, '%2D%2D' ) + '-->';
+				});
+		}
+
 		return data;
-	},
-
-	toDataFormat : function( element )
-	{
-		var writer = this.writer,
-			fragment = CKEDITOR.htmlParser.fragment.fromHtml( element.getHtml() );
-
-		writer.reset();
-
-		fragment.writeHtml( writer );
-
-		return writer.getHtml( true );
-	}
-};
+	}
+
+	CKEDITOR.plugins.add( 'htmldataprocessor',
+	{
+		requires : [ 'htmlwriter' ],
+
+		init : function( editor )
+		{
+			var dataProcessor = editor.dataProcessor = new CKEDITOR.htmlDataProcessor( editor );
+
+			dataProcessor.writer.forceSimpleAmpersand = editor.config.forceSimpleAmpersand;
+
+			dataProcessor.dataFilter.addRules( defaultDataFilterRules );
+			dataProcessor.dataFilter.addRules( defaultDataBlockFilterRules );
+			dataProcessor.htmlFilter.addRules( defaultHtmlFilterRules );
+			dataProcessor.htmlFilter.addRules( defaultHtmlBlockFilterRules );
+		}
+	});
+
+	CKEDITOR.htmlDataProcessor = function( editor )
+	{
+		this.editor = editor;
+
+		this.writer = new CKEDITOR.htmlWriter();
+		this.dataFilter = new CKEDITOR.htmlParser.filter();
+		this.htmlFilter = new CKEDITOR.htmlParser.filter();
+	};
+
+	CKEDITOR.htmlDataProcessor.prototype =
+	{
+		toHtml : function( data, fixForBody )
+		{
+			// The source data is already HTML, but we need to clean
+			// it up and apply the filter.
+
+			data = protectSource( data, this.editor.config.protectedSource );
+
+			// Before anything, we must protect the URL attributes as the
+			// browser may changing them when setting the innerHTML later in
+			// the code.
+			data = protectAttributes( data );
+
+			// IE remvoes style tags from innerHTML. (#3710).
+			if ( CKEDITOR.env.ie )
+				data = protectStyleTags( data );
+
+			// Call the browser to help us fixing a possibly invalid HTML
+			// structure.
+			var div = document.createElement( 'div' );
+			div.innerHTML = data;
+			data = div.innerHTML;
+
+			if ( CKEDITOR.env.ie )
+				data = unprotectEncodedTags( data );
+
+			// Now use our parser to make further fixes to the structure, as
+			// well as apply the filter.
+			var fragment = CKEDITOR.htmlParser.fragment.fromHtml( data, fixForBody ),
+				writer = new CKEDITOR.htmlParser.basicWriter();
+
+			fragment.writeHtml( writer, this.dataFilter );
+
+			return writer.getHtml( true );
+		},
+
+		toDataFormat : function( html, fixForBody )
+		{
+			var writer = this.writer,
+				fragment = CKEDITOR.htmlParser.fragment.fromHtml( html, fixForBody );
+
+			writer.reset();
+
+			fragment.writeHtml( writer, this.htmlFilter );
+
+			return writer.getHtml( true );
+		}
+	};
+})();
+
+CKEDITOR.config.forceSimpleAmpersand = false;
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/htmlwriter/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/htmlwriter/plugin.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/htmlwriter/plugin.js	(revision 3747)
@@ -3,4 +3,6 @@
 For licensing, see LICENSE.html or http://ckeditor.com/license
 */
+
+CKEDITOR.plugins.add( 'htmlwriter' );
 
 /**
@@ -16,287 +18,272 @@
  * alert( writer.getHtml() );  "&lt;p class="MyClass"&gt;Hello&lt;/p&gt;"
  */
-CKEDITOR.htmlWriter = function()
+CKEDITOR.htmlWriter = CKEDITOR.tools.createClass(
 {
-	/**
-	 * The characters to be used for each identation step.
-	 * @type String
-	 * @default "\t" (tab)
-	 * @example
-	 * // Use two spaces for indentation.
-	 * editorInstance.dataProcessor.writer.indentationChars = '  ';
-	 */
-	this.indentationChars	= '\t';
-
-	/**
-	 * The characters to be used to close "self-closing" elements, like "br" or
-	 * "img".
-	 * @type String
-	 * @default " /&gt;"
-	 * @example
-	 * // Use HTML4 notation for self-closing elements.
-	 * editorInstance.dataProcessor.writer.selfClosingEnd = '>';
-	 */
-	this.selfClosingEnd		= ' />';
-
-	/**
-	 * The characters to be used for line breaks.
-	 * @type String
-	 * @default "\n" (LF)
-	 * @example
-	 * // Use CRLF for line breaks.
-	 * editorInstance.dataProcessor.writer.lineBreakChars = '\r\n';
-	 */
-	this.lineBreakChars		= '\n';
-
-	this._ =
+	base : CKEDITOR.htmlParser.basicWriter,
+
+	$ : function()
 	{
-		output : [],
-		indent : false,
-		indentation : '',
-		rules : {}
-	};
-
-	var dtd = CKEDITOR.dtd;
-
-	for ( var e in CKEDITOR.tools.extend( {}, dtd.$block, dtd.$listItem, dtd.$tableContent ) )
+		// Call the base contructor.
+		this.base();
+
+		/**
+		 * The characters to be used for each identation step.
+		 * @type String
+		 * @default "\t" (tab)
+		 * @example
+		 * // Use two spaces for indentation.
+		 * editorInstance.dataProcessor.writer.indentationChars = '  ';
+		 */
+		this.indentationChars = '\t';
+
+		/**
+		 * The characters to be used to close "self-closing" elements, like "br" or
+		 * "img".
+		 * @type String
+		 * @default " /&gt;"
+		 * @example
+		 * // Use HTML4 notation for self-closing elements.
+		 * editorInstance.dataProcessor.writer.selfClosingEnd = '>';
+		 */
+		this.selfClosingEnd = ' />';
+
+		/**
+		 * The characters to be used for line breaks.
+		 * @type String
+		 * @default "\n" (LF)
+		 * @example
+		 * // Use CRLF for line breaks.
+		 * editorInstance.dataProcessor.writer.lineBreakChars = '\r\n';
+		 */
+		this.lineBreakChars = '\n';
+
+		this.forceSimpleAmpersand = false;
+
+		this.sortAttributes = true;
+
+		this._.indent = false;
+		this._.indentation = '';
+		this._.rules = {};
+
+		var dtd = CKEDITOR.dtd;
+
+		for ( var e in CKEDITOR.tools.extend( {}, dtd.$block, dtd.$listItem, dtd.$tableContent ) )
+		{
+			this.setRules( e,
+				{
+					indent : true,
+					breakBeforeOpen : true,
+					breakAfterOpen : true,
+					breakBeforeClose : !dtd[ e ][ '#' ],
+					breakAfterClose : true
+				});
+		}
+		this.setRules( 'br',
+			{
+				breakAfterOpen : true
+			});
+		// Disable indentation on <pre>.
+		this.setRules( 'pre',
+		{
+		  indent: false
+		} );
+	},
+
+	proto :
 	{
-		this.setRules( e,
-			{
-				indent : true,
-				breakBeforeOpen : true,
-				breakAfterOpen : true,
-				breakBeforeClose : !dtd[ e ][ '#' ],
-				breakAfterClose : true
-			});
+		/**
+		 * Writes the tag opening part for a opener tag.
+		 * @param {String} tagName The element name for this tag.
+		 * @param {Object} attributes The attributes defined for this tag. The
+		 *		attributes could be used to inspect the tag.
+		 * @example
+		 * // Writes "&lt;p".
+		 * writer.openTag( 'p', { class : 'MyClass', id : 'MyId' } );
+		 */
+		openTag : function( tagName, attributes )
+		{
+			var rules = this._.rules[ tagName ];
+
+			if ( this._.indent )
+				this.indentation();
+			// Do not break if indenting.
+			else if ( rules && rules.breakBeforeOpen )
+			{
+				this.lineBreak();
+				this.indentation();
+			}
+
+			this._.output.push( '<', tagName );
+		},
+
+		/**
+		 * Writes the tag closing part for a opener tag.
+		 * @param {String} tagName The element name for this tag.
+		 * @param {Boolean} isSelfClose Indicates that this is a self-closing tag,
+		 *		like "br" or "img".
+		 * @example
+		 * // Writes "&gt;".
+		 * writer.openTagClose( 'p', false );
+		 * @example
+		 * // Writes " /&gt;".
+		 * writer.openTagClose( 'br', true );
+		 */
+		openTagClose : function( tagName, isSelfClose )
+		{
+			var rules = this._.rules[ tagName ];
+
+			if ( isSelfClose )
+				this._.output.push( this.selfClosingEnd );
+			else
+			{
+				this._.output.push( '>' );
+
+				if ( rules && rules.indent )
+					this._.indentation += this.indentationChars;
+			}
+
+			if ( rules && rules.breakAfterOpen )
+				this.lineBreak();
+		},
+
+		/**
+		 * Writes an attribute. This function should be called after opening the
+		 * tag with {@link #openTagClose}.
+		 * @param {String} attName The attribute name.
+		 * @param {String} attValue The attribute value.
+		 * @example
+		 * // Writes ' class="MyClass"'.
+		 * writer.attribute( 'class', 'MyClass' );
+		 */
+		attribute : function( attName, attValue )
+		{
+			if ( this.forceSimpleAmpersand )
+				attValue = attValue.replace( /&amp;/, '&' );
+
+			this._.output.push( ' ', attName, '="', attValue, '"' );
+		},
+
+		/**
+		 * Writes a closer tag.
+		 * @param {String} tagName The element name for this tag.
+		 * @example
+		 * // Writes "&lt;/p&gt;".
+		 * writer.closeTag( 'p' );
+		 */
+		closeTag : function( tagName )
+		{
+			var rules = this._.rules[ tagName ];
+
+			if ( rules && rules.indent )
+				this._.indentation = this._.indentation.substr( this.indentationChars.length );
+
+			if ( this._.indent )
+				this.indentation();
+			// Do not break if indenting.
+			else if ( rules && rules.breakBeforeClose )
+			{
+				this.lineBreak();
+				this.indentation();
+			}
+
+			this._.output.push( '</', tagName, '>' );
+
+			if ( rules && rules.breakAfterClose )
+				this.lineBreak();
+		},
+
+		/**
+		 * Writes text.
+		 * @param {String} text The text value
+		 * @example
+		 * // Writes "Hello Word".
+		 * writer.text( 'Hello Word' );
+		 */
+		text : function( text )
+		{
+			if ( this._.indent )
+			{
+				this.indentation();
+				text = CKEDITOR.tools.ltrim( text );
+			}
+
+			this._.output.push( text );
+		},
+
+		/**
+		 * Writes a comment.
+		 * @param {String} comment The comment text.
+		 * @example
+		 * // Writes "&lt;!-- My comment --&gt;".
+		 * writer.comment( ' My comment ' );
+		 */
+		comment : function( comment )
+		{
+			if ( this._.indent )
+				this.indentation();
+
+			this._.output.push( '<!--', comment, '-->' );
+		},
+
+		/**
+		 * Writes a line break. It uses the {@link #lineBreakChars} property for it.
+		 * @example
+		 * // Writes "\n" (e.g.).
+		 * writer.lineBreak();
+		 */
+		lineBreak : function()
+		{
+			if ( this._.output.length > 0 )
+				this._.output.push( this.lineBreakChars );
+			this._.indent = true;
+		},
+
+		/**
+		 * Writes the current indentation chars. It uses the
+		 * {@link #indentationChars} property, repeating it for the current
+		 * indentation steps.
+		 * @example
+		 * // Writes "\t" (e.g.).
+		 * writer.indentation();
+		 */
+		indentation : function()
+		{
+			this._.output.push( this._.indentation );
+			this._.indent = false;
+		},
+
+		/**
+		 * Sets formatting rules for a give element. The possible rules are:
+		 * <ul>
+		 *	<li><b>indent</b>: indent the element contents.</li>
+		 *	<li><b>breakBeforeOpen</b>: break line before the opener tag for this element.</li>
+		 *	<li><b>breakAfterOpen</b>: break line after the opener tag for this element.</li>
+		 *	<li><b>breakBeforeClose</b>: break line before the closer tag for this element.</li>
+		 *	<li><b>breakAfterClose</b>: break line after the closer tag for this element.</li>
+		 * </ul>
+		 *
+		 * All rules default to "false".
+		 *
+		 * By default, all elements available in the {@link CKEDITOR.dtd.$block),
+		 * {@link CKEDITOR.dtd.$listItem} and {@link CKEDITOR.dtd.$tableContent}
+		 * lists have all the above rules set to "true". Additionaly, the "br"
+		 * element has the "breakAfterOpen" set to "true".
+		 * @param {String} tagName The element name to which set the rules.
+		 * @param {Object} rules An object containing the element rules.
+		 * @example
+		 * // Break line before and after "img" tags.
+		 * writer.setRules( 'img',
+		 *     {
+		 *         breakBeforeOpen : true
+		 *         breakAfterOpen : true
+		 *     });
+		 * @example
+		 * // Reset the rules for the "h1" tag.
+		 * writer.setRules( 'h1', {} );
+		 */
+		setRules : function( tagName, rules )
+		{
+			this._.rules[ tagName ] = rules;
+		}
 	}
-
-	this.setRules( 'br',
-		{
-			breakAfterOpen : true
-		});
-};
-
-CKEDITOR.htmlWriter.prototype =
-{
-	/**
-	 * Writes the tag opening part for a opener tag.
-	 * @param {String} tagName The element name for this tag.
-	 * @param {Object} attributes The attributes defined for this tag. The
-	 *		attributes could be used to inspect the tag.
-	 * @example
-	 * // Writes "&lt;p".
-	 * writer.openTag( 'p', { class : 'MyClass', id : 'MyId' } );
-	 */
-	openTag : function( tagName, attributes )
-	{
-		var rules = this._.rules[ tagName ];
-
-		if ( this._.indent )
-			this.indentation();
-		// Do not break if indenting.
-		else if ( rules && rules.breakBeforeOpen )
-		{
-			this.lineBreak();
-			this.indentation();
-		}
-
-		this._.output.push( '<', tagName );
-	},
-
-	/**
-	 * Writes the tag closing part for a opener tag.
-	 * @param {String} tagName The element name for this tag.
-	 * @param {Boolean} isSelfClose Indicates that this is a self-closing tag,
-	 *		like "br" or "img".
-	 * @example
-	 * // Writes "&gt;".
-	 * writer.openTagClose( 'p', false );
-	 * @example
-	 * // Writes " /&gt;".
-	 * writer.openTagClose( 'br', true );
-	 */
-	openTagClose : function( tagName, isSelfClose )
-	{
-		var rules = this._.rules[ tagName ];
-
-		if ( isSelfClose )
-			this._.output.push( this.selfClosingEnd );
-		else
-		{
-			this._.output.push( '>' );
-
-			if ( rules && rules.indent )
-				this._.indentation += this.indentationChars;
-		}
-
-		if ( rules && rules.breakAfterOpen )
-			this.lineBreak();
-	},
-
-	/**
-	 * Writes an attribute. This function should be called after opening the
-	 * tag with {@link #openTagClose}.
-	 * @param {String} attName The attribute name.
-	 * @param {String} attValue The attribute value.
-	 * @example
-	 * // Writes ' class="MyClass"'.
-	 * writer.attribute( 'class', 'MyClass' );
-	 */
-	attribute : function( attName, attValue )
-	{
-		this._.output.push( ' ', attName, '="', attValue, '"' );
-	},
-
-	/**
-	 * Writes a closer tag.
-	 * @param {String} tagName The element name for this tag.
-	 * @example
-	 * // Writes "&lt;/p&gt;".
-	 * writer.closeTag( 'p' );
-	 */
-	closeTag : function( tagName )
-	{
-		var rules = this._.rules[ tagName ];
-
-		if ( rules && rules.indent )
-			this._.indentation = this._.indentation.substr( this.indentationChars.length );
-
-		if ( this._.indent )
-			this.indentation();
-		// Do not break if indenting.
-		else if ( rules && rules.breakBeforeClose )
-		{
-			this.lineBreak();
-			this.indentation();
-		}
-
-		this._.output.push( '</', tagName, '>' );
-
-		if ( rules && rules.breakAfterClose )
-			this.lineBreak();
-	},
-
-	/**
-	 * Writes text.
-	 * @param {String} text The text value
-	 * @example
-	 * // Writes "Hello Word".
-	 * writer.text( 'Hello Word' );
-	 */
-	text : function( text )
-	{
-		if ( this._.indent )
-		{
-			this.indentation();
-			text = CKEDITOR.tools.ltrim( text );
-		}
-
-		this._.output.push( text );
-	},
-
-	/**
-	 * Writes a comment.
-	 * @param {String} comment The comment text.
-	 * @example
-	 * // Writes "&lt;!-- My comment --&gt;".
-	 * writer.comment( ' My comment ' );
-	 */
-	comment : function( comment )
-	{
-		if ( this._.indent )
-			this.indentation();
-
-		this._.output.push( '<!--', comment, '-->' );
-	},
-
-	/**
-	 * Writes a line break. It uses the {@link #lineBreakChars} property for it.
-	 * @example
-	 * // Writes "\n" (e.g.).
-	 * writer.lineBreak();
-	 */
-	lineBreak : function()
-	{
-		if ( this._.output.length > 0 )
-			this._.output.push( this.lineBreakChars );
-		this._.indent = true;
-	},
-
-	/**
-	 * Writes the current indentation chars. It uses the
-	 * {@link #indentationChars} property, repeating it for the current
-	 * intentation steps.
-	 * @example
-	 * // Writes "\t" (e.g.).
-	 * writer.indentation();
-	 */
-	indentation : function()
-	{
-		this._.output.push( this._.indentation );
-		this._.indent = false;
-	},
-
-	/**
-	 * Empties the current output buffer.
-	 * @example
-	 * writer.reset();
-	 */
-	reset : function()
-	{
-		this._.output = [];
-	},
-
-	/**
-	 * Empties the current output buffer.
-	 * @param {Boolean} reset Indicates that the {@link reset} function is to
-	 *		be automatically called after retrieving the HTML.
-	 * @returns {String} The HTML written to the writer so far.
-	 * @example
-	 * var html = writer.getHtml();
-	 */
-	getHtml : function( reset )
-	{
-		var html = this._.output.join( '' );
-
-		if ( reset )
-			this.reset();
-
-		return html;
-	},
-
-	/**
-	 * Sets formatting rules for a give element. The possible rules are:
-	 * <ul>
-	 *	<li><b>indent</b>: indent the element contents.</li>
-	 *	<li><b>breakBeforeOpen</b>: break line before the opener tag for this element.</li>
-	 *	<li><b>breakAfterOpen</b>: break line after the opener tag for this element.</li>
-	 *	<li><b>breakBeforeClose</b>: break line before the closer tag for this element.</li>
-	 *	<li><b>breakAfterClose</b>: break line after the closer tag for this element.</li>
-	 * </ul>
-	 *
-	 * All rules default to "false".
-	 *
-	 * By default, all elements available in the {@link CKEDITOR.dtd.$block),
-	 * {@link CKEDITOR.dtd.$listItem} and {@link CKEDITOR.dtd.$tableContent}
-	 * lists have all the above rules set to "true". Additionaly, the "br"
-	 * element has the "breakAfterOpen" set to "true".
-	 * @param {String} tagName The element name to which set the rules.
-	 * @param {Object} rules An object containing the element rules.
-	 * @example
-	 * // Break line before and after "img" tags.
-	 * writer.setRules( 'img',
-	 *     {
-	 *         breakBeforeOpen : true
-	 *         breakAfterOpen : true
-	 *     });
-	 * @example
-	 * // Reset the rules for the "h1" tag.
-	 * writer.setRules( 'h1', {} );
-	 */
-	setRules : function( tagName, rules )
-	{
-		this._.rules[ tagName ] = rules;
-	}
-};
-
-CKEDITOR.plugins.add( 'htmlwriter' );
+});
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/iframedialog/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/iframedialog/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/iframedialog/plugin.js	(revision 3747)
@@ -0,0 +1,136 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Plugin for making iframe based dialogs.
+ */
+
+CKEDITOR.plugins.add( 'iframedialog',
+{
+	requires : [ 'dialog' ],
+	onLoad : function()
+	{
+		CKEDITOR.dialog.addIframe = function( name, title, src, width, height, onContentLoad )
+		{
+			var element =
+			{
+				type : 'iframe',
+				src : src,
+				width : '100%',
+				height : '100%'
+			};
+
+			if ( typeof( onContentLoad ) == 'function' )
+				element.onContentLoad = onContentLoad;
+
+			var definition =
+			{
+				title : title,
+				minWidth : width,
+				minHeight : height,
+				contents :
+				[
+					{
+						id : 'iframe',
+						label : title,
+						expand : true,
+						elements : [ element ]
+					}
+				]
+			};
+
+			return this.add( name, function(){ return definition; } );
+		};
+
+		(function()
+		{
+			/**
+			 * An iframe element.
+			 * @extends CKEDITOR.ui.dialog.uiElement
+			 * @example
+			 * @constructor
+			 * @param {CKEDITOR.dialog} dialog
+			 * Parent dialog object.
+			 * @param {CKEDITOR.dialog.uiElementDefinition} elementDefinition
+			 * The element definition. Accepted fields:
+			 * <ul>
+			 * 	<li><strong>src</strong> (Required) The src field of the iframe. </li>
+			 * 	<li><strong>width</strong> (Required) The iframe's width.</li>
+			 * 	<li><strong>height</strong> (Required) The iframe's height.</li>
+			 * 	<li><strong>onContentLoad</strong> (Optional) A function to be executed
+			 * 	after the iframe's contents has finished loading.</li>
+			 * </ul>
+			 * @param {Array} htmlList
+			 * List of HTML code to output to.
+			 */
+			var iframeElement = function( dialog, elementDefinition, htmlList )
+			{
+				if ( arguments.length < 3 )
+					return;
+
+				var _ = ( this._ || ( this._ = {} ) ),
+					contentLoad = elementDefinition.onContentLoad && CKEDITOR.tools.bind( elementDefinition.onContentLoad, this ),
+					cssWidth = CKEDITOR.tools.cssLength( elementDefinition.width ),
+					cssHeight = CKEDITOR.tools.cssLength( elementDefinition.height );
+				_.frameId = CKEDITOR.tools.getNextNumber() + '_iframe';
+
+				// IE BUG: Parent container does not resize to contain the iframe automatically.
+				dialog.on( 'load', function()
+					{
+						var iframe = CKEDITOR.document.getById( _.frameId ),
+							parentContainer = iframe.getParent();
+
+						parentContainer.setStyles(
+							{
+								width : cssWidth,
+								height : cssHeight
+							} );
+					} );
+
+				var attributes =
+				{
+					src : '%2',
+					id : _.frameId,
+					frameborder : 0,
+					allowtransparency : true
+				};
+				var myHtml = [];
+
+				if ( typeof( elementDefinition.onContentLoad ) == 'function' )
+					attributes.onload = 'CKEDITOR.tools.callFunction(%1);';
+
+				CKEDITOR.ui.dialog.uiElement.call( this, dialog, elementDefinition, myHtml, 'iframe',
+						{
+							width : cssWidth,
+							height : cssHeight
+						}, attributes, '' );
+
+				// Put a placeholder for the first time.
+				htmlList.push( '<div style="width:' + cssWidth + ';height:' + cssHeight + ';" id="' + this.domId + '"></div>' );
+
+				// Iframe elements should be refreshed whenever it is shown.
+				myHtml = myHtml.join( '' );
+				dialog.on( 'show', function()
+					{
+						var iframe = CKEDITOR.document.getById( _.frameId ),
+							parentContainer = iframe.getParent(),
+							callIndex = CKEDITOR.tools.addFunction( contentLoad ),
+							html = myHtml.replace( '%1', callIndex ).replace( '%2', CKEDITOR.tools.htmlEncode( elementDefinition.src ) );
+						parentContainer.setHtml( html );
+					} );
+			};
+
+			iframeElement.prototype = new CKEDITOR.ui.dialog.uiElement;
+
+			CKEDITOR.dialog.addUIElement( 'iframe',
+				{
+					build : function( dialog, elementDefinition, output )
+					{
+						return new iframeElement( dialog, elementDefinition, output );
+					}
+				} );
+		})();
+	}
+} );
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/image/dialogs/image.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/image/dialogs/image.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/image/dialogs/image.js	(revision 3747)
@@ -0,0 +1,1209 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+(function()
+{
+	// Load image preview.
+	var IMAGE = 1,
+		LINK = 2,
+		PREVIEW = 4,
+		CLEANUP = 8,
+		regexGetSize = /^\s*(\d+)((px)|\%)?\s*$/i,
+		regexGetSizeOrEmpty = /(^\s*(\d+)((px)|\%)?\s*$)|^$/i;
+
+	var onSizeChange = function()
+	{
+		var value = this.getValue(),	// This = input element.
+			dialog = this.getDialog(),
+			aMatch  =  value.match( regexGetSize );	// Check value
+		if ( aMatch )
+		{
+			if ( aMatch[2] == '%' )			// % is allowed - > unlock ratio.
+				switchLockRatio( dialog, false );	// Unlock.
+			value = aMatch[1];
+		}
+
+		// Only if ratio is locked
+		if ( dialog.lockRatio )
+		{
+			var oImageOriginal = dialog.originalElement;
+			if ( oImageOriginal.getCustomData( 'isReady' ) == 'true' )
+			{
+				if ( this.id == 'txtHeight' )
+				{
+					if ( value && value != '0' )
+						value = Math.round( oImageOriginal.$.width * ( value  / oImageOriginal.$.height ) );
+					if ( !isNaN( value ) )
+						dialog.setValueOf( 'info', 'txtWidth', value );
+				}
+				else		//this.id = txtWidth.
+				{
+					if ( value && value != '0' )
+						value = Math.round( oImageOriginal.$.height * ( value  / oImageOriginal.$.width ) );
+					if ( !isNaN( value ) )
+						dialog.setValueOf( 'info', 'txtHeight', value );
+				}
+			}
+		}
+		updatePreview( dialog );
+	};
+
+	var updatePreview = function( dialog )
+	{
+		//Don't load before onShow.
+		if ( !dialog.originalElement || !dialog.preview )
+			return 1;
+
+		// Read attributes and update imagePreview;
+		dialog.commitContent( PREVIEW, dialog.preview );
+		return 0;
+	};
+
+	var switchLockRatio = function( dialog, value )
+	{
+		var oImageOriginal = dialog.originalElement,
+			ratioButton = CKEDITOR.document.getById( 'btnLockSizes' );
+
+		if ( oImageOriginal.getCustomData( 'isReady' ) == 'true' )
+		{
+			if ( value == 'check' )			// Check image ratio and original image ratio.
+			{
+				var width = dialog.getValueOf( 'info', 'txtWidth' ),
+					height = dialog.getValueOf( 'info', 'txtHeight' ),
+					originalRatio = oImageOriginal.$.width * 1000 / oImageOriginal.$.height,
+					thisRatio = width * 1000 / height;
+				dialog.lockRatio  = false;		// Default: unlock ratio
+
+				if ( !width && !height )
+					dialog.lockRatio = true;
+				else if ( !isNaN( originalRatio ) && !isNaN( thisRatio ) )
+				{
+					if ( Math.round( originalRatio ) == Math.round( thisRatio ) )
+						dialog.lockRatio = true;
+				}
+			}
+			else if ( value != undefined )
+				dialog.lockRatio = value;
+			else
+				dialog.lockRatio = !dialog.lockRatio;
+		}
+		else if ( value != 'check' )		// I can't lock ratio if ratio is unknown.
+			dialog.lockRatio = false;
+
+		if ( dialog.lockRatio )
+			ratioButton.removeClass( 'cke_btn_unlocked' );
+		else
+			ratioButton.addClass( 'cke_btn_unlocked' );
+
+		return dialog.lockRatio;
+	};
+
+	var resetSize = function( dialog )
+	{
+		var oImageOriginal = dialog.originalElement;
+		if ( oImageOriginal.getCustomData( 'isReady' ) == 'true' )
+		{
+			dialog.setValueOf( 'info', 'txtWidth', oImageOriginal.$.width );
+			dialog.setValueOf( 'info', 'txtHeight', oImageOriginal.$.height );
+		}
+		updatePreview( dialog );
+	};
+
+	var setupDimension = function( type, element )
+	{
+		if ( type != IMAGE )
+			return;
+
+		function checkDimension( size, defaultValue )
+		{
+			var aMatch  =  size.match( regexGetSize );
+			if ( aMatch )
+			{
+				if ( aMatch[2] == '%' )				// % is allowed.
+				{
+					aMatch[1] += '%';
+					switchLockRatio( dialog, false );	// Unlock ratio
+				}
+				return aMatch[1];
+			}
+			return defaultValue;
+		}
+
+		var dialog = this.getDialog(),
+			value = '',
+			dimension = (( this.id == 'txtWidth' )? 'width' : 'height' ),
+			size = element.getAttribute( dimension );
+
+		if ( size )
+			value = checkDimension( size, value );
+		value = checkDimension( element.$.style[ dimension ], value );
+
+		this.setValue( value );
+	};
+
+	var imageDialog = function( editor, dialogType )
+	{
+		var onImgLoadEvent = function()
+		{
+			// Image is ready.
+			var original = this.originalElement;
+			original.setCustomData( 'isReady', 'true' );
+			original.removeListener( 'load', onImgLoadEvent );
+			original.removeListener( 'error', onImgLoadErrorEvent );
+			original.removeListener( 'abort', onImgLoadErrorEvent );
+
+			// Hide loader
+			CKEDITOR.document.getById( 'ImagePreviewLoader' ).setStyle( 'display', 'none' );
+
+			// New image -> new domensions
+			if ( !this.dontResetSize )
+				resetSize( this );
+
+			if ( this.firstLoad )
+				switchLockRatio( this, 'check' );
+			this.firstLoad = false;
+			this.dontResetSize = false;
+		};
+
+		var onImgLoadErrorEvent = function()
+		{
+			// Error. Image is not loaded.
+			var original = this.originalElement;
+			original.removeListener( 'load', onImgLoadEvent );
+			original.removeListener( 'error', onImgLoadErrorEvent );
+			original.removeListener( 'abort', onImgLoadErrorEvent );
+
+			// Set Error image.
+			var noimage = CKEDITOR.getUrl( editor.skinPath + 'images/noimage.png' );
+
+			if ( this.preview )
+				this.preview.setAttribute( 'src', noimage );
+
+			// Hide loader
+			CKEDITOR.document.getById( 'ImagePreviewLoader' ).setStyle( 'display', 'none' );
+			switchLockRatio( this, false );	// Unlock.
+		};
+		return {
+			title : ( dialogType == 'image' ) ? editor.lang.image.title : editor.lang.image.titleButton,
+			minWidth : 420,
+			minHeight : 310,
+			onShow : function()
+			{
+				this.imageElement = false;
+				this.linkElement = false;
+
+				// Default: create a new element.
+				this.imageEditMode = false;
+				this.linkEditMode = false;
+
+				this.lockRatio = true;
+				this.dontResetSize = false;
+				this.firstLoad = true;
+				this.addLink = false;
+
+				//Hide loader.
+				CKEDITOR.document.getById( 'ImagePreviewLoader' ).setStyle( 'display', 'none' );
+				// Preview
+				this.preview = CKEDITOR.document.getById( 'previewImage' );
+
+				var editor = this.getParentEditor(),
+					element = this.getParentEditor().getSelection().getSelectedElement();
+
+				// Copy of the image
+				this.originalElement = editor.document.createElement( 'img' );
+				this.originalElement.setAttribute( 'alt', '' );
+				this.originalElement.setCustomData( 'isReady', 'false' );
+
+				if ( element && element.getName() == 'a' )
+				{
+					this.linkElement = element;
+					this.linkEditMode = true;
+
+					// Look for Image element.
+					var linkChildren = element.getChildren();
+					if ( linkChildren.count() == 1 )			// 1 child.
+					{
+						var childTagName = linkChildren.getItem( 0 ).getName();
+						if ( childTagName == 'img' || childTagName == 'input' )
+						{
+							this.imageElement = linkChildren.getItem( 0 );
+							if ( this.imageElement.getName() == 'img' )
+								this.imageEditMode = 'img';
+							else if ( this.imageElement.getName() == 'input' )
+								this.imageEditMode = 'input';
+						}
+					}
+					// Fill out all fields.
+					if ( dialogType == 'image' )
+						this.setupContent( LINK, element );
+				}
+				else if ( element && element.getName() == 'img' && !element.getAttribute( '_cke_protected_html' ) )
+					this.imageEditMode = 'img';
+				else if ( element && element.getName() == 'input' && element.getAttribute( 'type' ) && element.getAttribute( 'type' ) == 'image' )
+					this.imageEditMode = 'input';
+
+				if ( this.imageEditMode || this.imageElement )
+				{
+					if ( !this.imageElement )
+						this.imageElement = element;
+
+					// Fill out all fields.
+					this.setupContent( IMAGE, this.imageElement );
+
+					// Refresh LockRatio button
+					switchLockRatio ( this, true );
+				}
+			},
+			onOk : function()
+			{
+				// Edit existing Image.
+				if ( this.imageEditMode )
+				{
+					var imgTagName = this.imageEditMode,
+						removeObj = this.imageElement;
+
+					// Image dialog and Input element.
+					if ( dialogType == 'image' && imgTagName == 'input' && confirm( editor.lang.image.button2Img ) )
+					{
+						// Replace INPUT-> IMG
+						imgTagName = 'img';
+						this.imageElement = editor.document.createElement( 'img' );
+						this.imageElement.setAttribute( 'alt', '' );
+						removeObj.insertBeforeMe( this.imageElement );
+						removeObj.remove( false );
+
+					}
+					// ImageButton dialog and Image element.
+					else if ( dialogType != 'image' && imgTagName == 'img' && confirm( editor.lang.image.img2Button ))
+					{
+						// Replace IMG -> INPUT
+						imgTagName = 'input';
+						this.imageElement = editor.document.createElement( 'input' );
+						this.imageElement.setAttributes(
+							{
+								type : 'image',
+								alt : ''
+							}
+						);
+						removeObj.insertBeforeMe( this.imageElement );
+						removeObj.remove( false );
+					}
+				}
+				else	// Create a new image.
+				{
+					// Image dialog -> create IMG element.
+					if ( dialogType == 'image' )
+						this.imageElement = editor.document.createElement( 'img' );
+					else
+					{
+						this.imageElement = editor.document.createElement( 'input' );
+						this.imageElement.setAttribute ( 'type' ,'image' );
+					}
+					this.imageElement.setAttribute( 'alt', '' );
+				}
+
+				// Create a new link.
+				if ( !this.linkEditMode )
+					this.linkElement = editor.document.createElement( 'a' );
+
+				// Set attributes.
+				this.commitContent( IMAGE, this.imageElement );
+				this.commitContent( LINK, this.linkElement );
+
+				// Insert a new Image.
+				if ( !this.imageEditMode )
+				{
+					if ( this.addLink )
+					{
+						//Insert a new Link.
+						if ( !this.linkEditMode )
+						{
+							this.linkElement.append( this.imageElement, false );
+							editor.insertElement( this.linkElement );
+						}
+						else 	//Link already exists, image not.
+							this.linkElement.append( this.imageElement, false );
+					}
+					else
+						editor.insertElement( this.imageElement );
+				}
+				else		// Image already exists.
+				{
+					//Add a new link element.
+					if ( !this.linkEditMode && this.addLink )
+					{
+						this.imageElement.insertBeforeMe( this.linkElement );
+						this.imageElement.appendTo( this.linkElement );
+					}
+					//Remove Link, Image exists.
+					else if ( this.linkEditMode && !this.addLink )
+						this.linkElement.remove( true );
+				}
+			},
+			onLoad : function()
+			{
+				if ( dialogType != 'image' )
+					this.hidePage( 'Link' );		//Hide Link tab.
+			},
+			onHide : function()
+			{
+				if ( this.preview )
+					this.commitContent( CLEANUP, this.preview );
+
+				if ( this.originalElement )
+				{
+					this.originalElement.removeListener( 'load', onImgLoadEvent );
+					this.originalElement.removeListener( 'error', onImgLoadErrorEvent );
+					this.originalElement.removeListener( 'abort', onImgLoadErrorEvent );
+					this.originalElement.remove();
+					this.originalElement = false;		// Dialog is closed.
+				}
+			},
+			contents : [
+				{
+					id : 'info',
+					label : editor.lang.image.infoTab,
+					accessKey : 'I',
+					elements :
+					[
+						{
+							type : 'vbox',
+							padding : 0,
+							children :
+							[
+								{
+									type : 'html',
+									html : '<span>' + CKEDITOR.tools.htmlEncode( editor.lang.image.url ) + '</span>'
+								},
+								{
+									type : 'hbox',
+									widths : [ '280px', '110px' ],
+									align : 'right',
+									children :
+									[
+										{
+											id : 'txtUrl',
+											type : 'text',
+											label : '',
+											onChange : function()
+											{
+												var dialog = this.getDialog(),
+													newUrl = this.getValue();
+
+												//Update original image
+												if ( newUrl.length > 0 )	//Prevent from load before onShow
+												{
+													dialog = this.getDialog();
+													var original = dialog.originalElement;
+
+													original.setCustomData( 'isReady', 'false' );
+													// Show loader
+													var loader = CKEDITOR.document.getById( 'ImagePreviewLoader' );
+													if ( loader )
+														loader.setStyle( 'display', '' );
+
+													original.on( 'load', onImgLoadEvent, dialog );
+													original.on( 'error', onImgLoadErrorEvent, dialog );
+													original.on( 'abort', onImgLoadErrorEvent, dialog );
+													original.setAttribute( 'src', newUrl );
+													dialog.preview.setAttribute( 'src', newUrl );
+
+													updatePreview( dialog );
+												}
+											},
+											setup : function( type, element )
+											{
+												if ( type == IMAGE )
+												{
+													var dialog = this.getDialog();
+													var url = element.getAttribute( '_cke_saved_src' );
+													if ( !url )
+														url = element.getAttribute( 'src' );
+													dialog.dontResetSize = true;
+													this.setValue( url );		// And call this.onChange()
+													this.focus();
+												}
+											},
+											commit : function( type, element )
+											{
+												if ( type == IMAGE && ( this.getValue() || this.isChanged() ) )
+												{
+													element.setAttribute( '_cke_saved_src', decodeURI( this.getValue() ) );
+													element.setAttribute( 'src', decodeURI( this.getValue() ) );
+												}
+												else if ( type == CLEANUP )
+												{
+													element.setAttribute( 'src', '' );	// If removeAttribute doesn't work.
+													element.removeAttribute( 'src' );
+												}
+											}
+										},
+										{
+											type : 'button',
+											id : 'browse',
+											align : 'center',
+											label : editor.lang.common.browseServer,
+											hidden : true,
+											filebrowser : 'info:txtUrl'
+										}
+									]
+								}
+							]
+						},
+						{
+							id : 'txtAlt',
+							type : 'text',
+							label : editor.lang.image.alt,
+							accessKey : 'A',
+							'default' : '',
+							onChange : function()
+							{
+								updatePreview( this.getDialog() );
+							},
+							setup : function( type, element )
+							{
+								if ( type == IMAGE )
+									this.setValue( element.getAttribute( 'alt' ) );
+							},
+							commit : function( type, element )
+							{
+								if ( type == IMAGE )
+								{
+									if ( this.getValue() || this.isChanged() )
+										element.setAttribute( 'alt', this.getValue() );
+								}
+								else if ( type == PREVIEW )
+								{
+									element.setAttribute( 'alt', this.getValue() );
+								}
+								else if ( type == CLEANUP )
+								{
+									element.removeAttribute( 'alt' );
+								}
+							}
+						},
+						{
+							type : 'hbox',
+							widths : [ '140px', '240px' ],
+							children :
+							[
+								{
+									type : 'vbox',
+									padding : 10,
+									children :
+									[
+										{
+											type : 'hbox',
+											widths : [ '70%', '30%' ],
+											children :
+											[
+												{
+													type : 'vbox',
+													padding : 1,
+													children :
+													[
+														{
+															type : 'text',
+															id : 'txtWidth',
+															labelLayout : 'horizontal',
+															label : editor.lang.image.width,
+															onKeyUp : onSizeChange,
+															validate: function()
+															{
+																var aMatch  =  this.getValue().match( regexGetSizeOrEmpty );
+																if ( !aMatch )
+																	alert( editor.lang.common.validateNumberFailed );
+																return !!aMatch;
+															},
+															setup : setupDimension,
+															commit : function( type, element )
+															{
+																if ( type == IMAGE )
+																{
+																	var value = this.getValue();
+																	if ( value )
+																		element.setAttribute( 'width', value );
+																	else if ( !value && this.isChanged() )
+																		element.removeAttribute( 'width' );
+																}
+																else if ( type == PREVIEW )
+																{
+																	value = this.getValue();
+																	var aMatch = value.match( regexGetSize );
+																	if ( !aMatch )
+																	{
+																		var oImageOriginal = this.getDialog().originalElement;
+																		if ( oImageOriginal.getCustomData( 'isReady' ) == 'true' )
+																			element.setStyle( 'width',  oImageOriginal.$.width + 'px');
+																	}
+																	else
+																		element.setStyle( 'width', value + 'px');
+																}
+																else if ( type == CLEANUP )
+																{
+																	element.setStyle( 'width', '0px' );	// If removeAttribute doesn't work.
+																	element.removeAttribute( 'width' );
+																	element.removeStyle( 'width' );
+																}
+															}
+														},
+														{
+															type : 'text',
+															id : 'txtHeight',
+															labelLayout : 'horizontal',
+															label : editor.lang.image.height,
+															onKeyUp : onSizeChange,
+															validate: function()
+															{
+																var aMatch = this.getValue().match( regexGetSizeOrEmpty );
+																if ( !aMatch )
+																	alert( editor.lang.common.validateNumberFailed );
+																return !!aMatch;
+															},
+															setup : setupDimension,
+															commit : function( type, element )
+															{
+																if ( type == IMAGE )
+																{
+																	var value = this.getValue();
+																	if ( value )
+																		element.setAttribute( 'height', value );
+																	else if ( !value && this.isChanged() )
+																		element.removeAttribute( 'height' );
+																}
+																else if ( type == PREVIEW )
+																{
+																	value = this.getValue();
+																	var aMatch = value.match( regexGetSize );
+																	if ( !aMatch )
+																	{
+																		var oImageOriginal = this.getDialog().originalElement;
+																		if ( oImageOriginal.getCustomData( 'isReady' ) == 'true' )
+																			element.setStyle( 'height',  oImageOriginal.$.height + 'px');
+																	}
+																	else
+																		element.setStyle( 'height', value + 'px');
+																}
+																else if ( type == CLEANUP )
+																{
+																	element.setStyle( 'height', '0px' );	// If removeAttribute doesn't work.
+																	element.removeAttribute( 'height' );
+																	element.removeStyle( 'height' );
+																}
+															}
+														}
+													]
+												},
+												{
+													type : 'html',
+													style : 'position:relative;top:10px;height:50px;',
+													onLoad : function()
+													{
+														// Activate Reset button
+														var	resetButton = CKEDITOR.document.getById( 'btnResetSize' ),
+															ratioButton = CKEDITOR.document.getById( 'btnLockSizes' );
+														if ( resetButton )
+														{
+															resetButton.on( 'click', function()
+																{
+																	resetSize( this );
+																}, this.getDialog() );
+															resetButton.on( 'mouseover', function()
+																{
+																	this.addClass( 'BtnOver' );
+																}, resetButton );
+															resetButton.on( 'mouseout', function()
+																{
+																	this.removeClass( 'BtnOver' );
+																}, resetButton );
+														}
+														// Activate (Un)LockRatio button
+														if ( ratioButton )
+														{
+															ratioButton.on( 'click', function()
+																{
+																	var locked = switchLockRatio( this ),
+																		oImageOriginal = this.originalElement,
+																		width = this.getValueOf( 'info', 'txtWidth' );
+
+																	if ( oImageOriginal.getCustomData( 'isReady' ) == 'true' && width )
+																	{
+																		var height = oImageOriginal.$.height / oImageOriginal.$.width * width;
+																		if ( !isNaN( height ) )
+																		{
+																			this.setValueOf( 'info', 'txtHeight', Math.round( height ) );
+																			updatePreview( this );
+																		}
+																	}
+																}, this.getDialog() );
+															ratioButton.on( 'mouseover', function()
+																{
+																	this.addClass( 'BtnOver' );
+																}, ratioButton );
+															ratioButton.on( 'mouseout', function()
+																{
+																	this.removeClass( 'BtnOver' );
+																}, ratioButton );
+														}
+													},
+													html : '<div>'+
+														'<div title="' + editor.lang.image.lockRatio +
+														'" class="cke_btn_locked" id="btnLockSizes"></div>' +
+														'<div title="' + editor.lang.image.resetSize +
+														'" class="cke_btn_reset" id="btnResetSize"></div>'+
+														'</div>'
+												}
+											]
+										},
+										{
+											type : 'vbox',
+											padding : 1,
+											children :
+											[
+												{
+													type : 'text',
+													id : 'txtBorder',
+													labelLayout : 'horizontal',
+													label : editor.lang.image.border,
+													'default' : '',
+													onKeyUp : function()
+													{
+														updatePreview( this.getDialog() );
+													},
+													validate: function()
+													{
+														var func = CKEDITOR.dialog.validate.integer( editor.lang.common.validateNumberFailed );
+														return func.apply( this );
+													},
+													setup : function( type, element )
+													{
+														if ( type == IMAGE )
+															this.setValue( element.getAttribute( 'border' ) );
+													},
+													commit : function( type, element )
+													{
+														if ( type == IMAGE )
+														{
+															if ( this.getValue() || this.isChanged() )
+																element.setAttribute( 'border', this.getValue() );
+														}
+														else if ( type == PREVIEW )
+														{
+															var value = parseInt( this.getValue(), 10 );
+															value = isNaN( value ) ? 0 : value;
+															element.setAttribute( 'border', value );
+															element.setStyle( 'border', value + 'px solid black' );
+														}
+														else if ( type == CLEANUP )
+														{
+															element.removeAttribute( 'border' );
+															element.removeStyle( 'border' );
+														}
+													}
+												},
+												{
+													type : 'text',
+													id : 'txtHSpace',
+													labelLayout : 'horizontal',
+													label : editor.lang.image.hSpace,
+													'default' : '',
+													onKeyUp : function()
+													{
+														updatePreview( this.getDialog() );
+													},
+													validate: function()
+													{
+														var func = CKEDITOR.dialog.validate.integer( editor.lang.common.validateNumberFailed );
+														return func.apply( this );
+													},
+													setup : function( type, element )
+													{
+														if ( type == IMAGE )
+														{
+															var value = element.getAttribute( 'hspace' );
+															if ( value != -1 )				// In IE empty = -1.
+																this.setValue( value );
+														}
+													},
+													commit : function( type, element )
+													{
+														if ( type == IMAGE )
+														{
+															if ( this.getValue() || this.isChanged() )
+																element.setAttribute( 'hspace', this.getValue() );
+														}
+														else if ( type == PREVIEW )
+														{
+															var value = parseInt( this.getValue(), 10 );
+															value = isNaN( value ) ? 0 : value;
+															element.setAttribute( 'hspace', value );
+															element.setStyle( 'margin-left', value + 'px' );
+															element.setStyle( 'margin-right', value + 'px' );
+														}
+														else if ( type == CLEANUP )
+														{
+															element.removeAttribute( 'hspace' );
+															element.removeStyle( 'margin-left' );
+															element.removeStyle( 'margin-right' );
+														}
+													}
+												},
+												{
+													type : 'text',
+													id : 'txtVSpace',
+													labelLayout : 'horizontal',
+													label : editor.lang.image.vSpace,
+													'default' : '',
+													onKeyUp : function()
+													{
+														updatePreview( this.getDialog() );
+													},
+													validate: function()
+													{
+														var func = CKEDITOR.dialog.validate.integer( editor.lang.common.validateNumberFailed );
+														return func.apply( this );
+													},
+													setup : function( type, element )
+													{
+														if ( type == IMAGE )
+															this.setValue( element.getAttribute( 'vspace' ) );
+													},
+													commit : function( type, element )
+													{
+														if ( type == IMAGE )
+														{
+															if ( this.getValue() || this.isChanged() )
+																element.setAttribute( 'vspace', this.getValue() );
+														}
+														else if ( type == PREVIEW )
+														{
+															var value = parseInt( this.getValue(), 10 );
+															value = isNaN( value ) ? 0 : value;
+															element.setAttribute( 'vspace', this.getValue() );
+															element.setStyle( 'margin-top', value + 'px' );
+															element.setStyle( 'margin-bottom', value + 'px' );
+														}
+														else if ( type == CLEANUP )
+														{
+															element.removeAttribute( 'vspace' );
+															element.removeStyle( 'margin-top' );
+															element.removeStyle( 'margin-bottom' );
+														}
+													}
+												},
+												{
+													id : 'cmbAlign',
+													type : 'select',
+													labelLayout : 'horizontal',
+													widths : [ '35%','65%' ],
+													style : 'width:100%',
+													label : editor.lang.image.align,
+													'default' : '',
+													items :
+													[
+														[ editor.lang.common.notSet , ''],
+														[ editor.lang.image.alignLeft , 'left'],
+														[ editor.lang.image.alignAbsBottom , 'absBottom'],
+														[ editor.lang.image.alignAbsMiddle , 'absMiddle'],
+														[ editor.lang.image.alignBaseline , 'baseline'],
+														[ editor.lang.image.alignBottom , 'bottom'],
+														[ editor.lang.image.alignMiddle , 'middle'],
+														[ editor.lang.image.alignRight , 'right'],
+														[ editor.lang.image.alignTextTop , 'textTop'],
+														[ editor.lang.image.alignTop , 'top']
+													],
+													onChange : function()
+													{
+														updatePreview( this.getDialog() );
+													},
+													setup : function( type, element )
+													{
+														if ( type == IMAGE )
+															this.setValue( element.getAttribute( 'align' ) );
+													},
+													commit : function( type, element )
+													{
+														var value = this.getValue();
+														if ( type == IMAGE )
+														{
+															if ( value || this.isChanged() )
+																element.setAttribute( 'align', value );
+														}
+														else if ( type == PREVIEW )
+														{
+															element.setAttribute( 'align', this.getValue() );
+
+															if ( value == 'absMiddle' || value == 'middle' )
+																element.setStyle( 'vertical-align', 'middle' );
+															else if ( value == 'top' || value == 'textTop' )
+																element.setStyle( 'vertical-align', 'top' );
+															else
+																element.removeStyle( 'vertical-align' );
+
+															if ( value == 'right' || value == 'left' )
+																element.setStyle( 'styleFloat', value );
+															else
+																element.removeStyle( 'styleFloat' );
+
+														}
+														else if ( type == CLEANUP )
+														{
+															element.removeAttribute( 'align' );
+														}
+													}
+												}
+											]
+										}
+									]
+								},
+								{
+									type : 'vbox',
+									height : '250px',
+									children :
+									[
+										{
+											type : 'html',
+											style : 'width:95%;',
+											html : '<div>' + CKEDITOR.tools.htmlEncode( editor.lang.image.preview ) +'<br>'+
+											'<div id="ImagePreviewLoader" style="display:none"><div class="loading">&nbsp;</div></div>'+
+											'<div id="ImagePreviewBox">'+
+											'<a href="javascript:void(0)" target="_blank" onclick="return false;" id="previewLink">'+
+											'<img id="previewImage" src="" alt="" /></a>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. '+
+											'Maecenas feugiat consequat diam. Maecenas metus. Vivamus diam purus, cursus a, commodo non, facilisis vitae, '+
+											'nulla. Aenean dictum lacinia tortor. Nunc iaculis, nibh non iaculis aliquam, orci felis euismod neque, sed ornare massa mauris sed velit. Nulla pretium mi et risus. Fusce mi pede, tempor id, cursus ac, ullamcorper nec, enim. Sed tortor. Curabitur molestie. Duis velit augue, condimentum at, ultrices a, luctus ut, orci. Donec pellentesque egestas eros. Integer cursus, augue in cursus faucibus, eros pede bibendum sem, in tempus tellus justo quis ligula. Etiam eget tortor. Vestibulum rutrum, est ut placerat elementum, lectus nisl aliquam velit, tempor aliquam eros nunc nonummy metus. In eros metus, gravida a, gravida sed, lobortis id, turpis. Ut ultrices, ipsum at venenatis fringilla, sem nulla lacinia tellus, eget aliquet turpis mauris non enim. Nam turpis. Suspendisse lacinia. Curabitur ac tortor ut ipsum egestas elementum. Nunc imperdiet gravida mauris.' +
+											'</div>'+'</div>'
+										}
+									]
+								}
+							]
+						}
+					]
+				},
+				{
+					id : 'Link',
+					label : editor.lang.link.title,
+					padding : 0,
+					elements :
+					[
+						{
+							id : 'txtUrl',
+							type : 'text',
+							label : editor.lang.image.url,
+							style : 'width: 100%',
+							'default' : '',
+							setup : function( type, element )
+							{
+								if ( type == LINK )
+								{
+									var href = element.getAttribute( '_cke_saved_href' );
+									if ( !href )
+										href = element.getAttribute( 'href' );
+									this.setValue( href );
+								}
+							},
+							commit : function( type, element )
+							{
+								if ( type == LINK )
+								{
+									if ( this.getValue() || this.isChanged() )
+									{
+										element.setAttribute( '_cke_saved_href', decodeURI( this.getValue() ) );
+										element.setAttribute( 'href', 'javascript:void(0)/*' +
+											CKEDITOR.tools.getNextNumber() + '*/' );
+
+										if ( this.getValue() || !editor.config.image_removeLinkByEmptyURL )
+											this.getDialog().addLink = true;
+									}
+								}
+							}
+						},
+						{
+							type : 'button',
+							id : 'browse',
+							filebrowser : 'Link:txtUrl',
+							style : 'float:right',
+							hidden : true,
+							label : editor.lang.common.browseServer
+						},
+						{
+							id : 'cmbTarget',
+							type : 'select',
+							label : editor.lang.link.target,
+							'default' : '',
+							items :
+							[
+								[ editor.lang.link.targetNotSet , ''],
+								[ editor.lang.link.targetNew , '_blank'],
+								[ editor.lang.link.targetTop , '_top'],
+								[ editor.lang.link.targetSelf , '_self'],
+								[ editor.lang.link.targetParent , '_parent']
+							],
+							setup : function( type, element )
+							{
+								if ( type == LINK )
+									this.setValue( element.getAttribute( 'target' ) );
+							},
+							commit : function( type, element )
+							{
+								if ( type == LINK )
+								{
+									if ( this.getValue() || this.isChanged() )
+										element.setAttribute( 'target', this.getValue() );
+								}
+							}
+						}
+					]
+				},
+				{
+					id : 'Upload',
+					hidden : true,
+					filebrowser : 'uploadButton',
+					label : editor.lang.image.upload,
+					elements :
+					[
+						{
+							type : 'file',
+							id : 'upload',
+							label : editor.lang.image.btnUpload,
+							size : 38
+						},
+						{
+							type : 'fileButton',
+							id : 'uploadButton',
+							filebrowser : 'info:txtUrl',
+							label : editor.lang.image.btnUpload,
+							'for' : [ 'Upload', 'upload' ]
+						}
+					]
+				},
+				{
+					id : 'advanced',
+					label : editor.lang.common.advancedTab,
+					elements :
+					[
+						{
+							type : 'hbox',
+							widths : [ '50%', '25%', '25%' ],
+							children :
+							[
+								{
+									type : 'text',
+									id : 'linkId',
+									label : editor.lang.common.id,
+									setup : function( type, element )
+									{
+										if ( type == IMAGE )
+											this.setValue( element.getAttribute( 'id' ) );
+									},
+									commit : function( type, element )
+									{
+										if ( type == IMAGE )
+										{
+											if ( this.getValue() || this.isChanged() )
+												element.setAttribute( 'id', this.getValue() );
+										}
+									}
+								},
+								{
+									id : 'cmbLangDir',
+									type : 'select',
+									style : 'width : 100%;',
+									label : editor.lang.common.langDir,
+									'default' : '',
+									items :
+									[
+										[ editor.lang.common.notSet, '' ],
+										[ editor.lang.common.langDirLtr, 'ltr' ],
+										[ editor.lang.common.langDirRtl, 'rtl' ]
+									],
+									setup : function( type, element )
+									{
+										if ( type == IMAGE )
+											this.setValue( element.getAttribute( 'dir' ) );
+									},
+									commit : function( type, element )
+									{
+										if ( type == IMAGE )
+										{
+											if ( this.getValue() || this.isChanged() )
+												element.setAttribute( 'dir', this.getValue() );
+										}
+									}
+								},
+								{
+									type : 'text',
+									id : 'txtLangCode',
+									label : editor.lang.common.langCode,
+									'default' : '',
+									setup : function( type, element )
+									{
+										if ( type == IMAGE )
+											this.setValue( element.getAttribute( 'lang' ) );
+									},
+									commit : function( type, element )
+									{
+										if ( type == IMAGE )
+										{
+											if ( this.getValue() || this.isChanged() )
+												element.setAttribute( 'lang', this.getValue() );
+										}
+									}
+								}
+							]
+						},
+						{
+							type : 'text',
+							id : 'txtGenLongDescr',
+							label : editor.lang.common.longDescr,
+							setup : function( type, element )
+							{
+								if ( type == IMAGE )
+									this.setValue( element.getAttribute( 'longDesc' ) );
+							},
+							commit : function( type, element )
+							{
+								if ( type == IMAGE )
+								{
+									if ( this.getValue() || this.isChanged() )
+										element.setAttribute( 'longDesc', this.getValue() );
+								}
+							}
+						},
+						{
+							type : 'hbox',
+							widths : [ '50%', '50%' ],
+							children :
+							[
+								{
+									type : 'text',
+									id : 'txtGenClass',
+									label : editor.lang.common.cssClass,
+									'default' : '',
+									setup : function( type, element )
+									{
+										if ( type == IMAGE )
+											this.setValue( element.getAttribute( 'class' ) );
+									},
+									commit : function( type, element )
+									{
+										if ( type == IMAGE )
+										{
+											if ( this.getValue() || this.isChanged() )
+												element.setAttribute( 'class', this.getValue() );
+										}
+									}
+								},
+								{
+									type : 'text',
+									id : 'txtGenTitle',
+									label : editor.lang.common.advisoryTitle,
+									'default' : '',
+									onChange : function()
+									{
+										updatePreview( this.getDialog() );
+									},
+									setup : function( type, element )
+									{
+										if ( type == IMAGE )
+											this.setValue( element.getAttribute( 'title' ) );
+									},
+									commit : function( type, element )
+									{
+										if ( type == IMAGE )
+										{
+											if ( this.getValue() || this.isChanged() )
+												element.setAttribute( 'title', this.getValue() );
+										}
+										else if ( type == PREVIEW )
+										{
+											element.setAttribute( 'title', this.getValue() );
+										}
+										else if ( type == CLEANUP )
+										{
+											element.removeAttribute( 'title' );
+										}
+									}
+								}
+							]
+						},
+						{
+							type : 'text',
+							id : 'txtdlgGenStyle',
+							label : editor.lang.common.cssStyle,
+							'default' : '',
+							setup : function( type, element )
+							{
+								if ( type == IMAGE )
+								{
+									var genStyle = element.getAttribute( 'style' );
+									if ( !genStyle && element.$.style.cssText )
+										genStyle = element.$.style.cssText;
+									this.setValue( genStyle );
+
+									var height = element.$.style.height,
+										width = element.$.style.width,
+										aMatchH  = ( height ? height : '' ).match( regexGetSize ),
+										aMatchW  = ( width ? width : '').match( regexGetSize );
+
+									this.attributesInStyle =
+									{
+										height : !!aMatchH,
+										width : !!aMatchW
+									};
+								}
+							},
+							commit : function( type, element )
+							{
+								if ( type == IMAGE && ( this.getValue() || this.isChanged() ) )
+								{
+									element.setAttribute( 'style', this.getValue() );
+
+									// Set STYLE dimensions.
+									var height = element.getAttribute( 'height' ),
+										width = element.getAttribute( 'width' );
+
+									if ( this.attributesInStyle && this.attributesInStyle.height )
+									{
+										if ( height )
+										{
+											if ( height.match( regexGetSize )[2] == '%' )			// % is allowed
+												element.setStyle( 'height', height + '%' );
+											else
+												element.setStyle( 'height', height + 'px' );
+										}
+										else
+											element.removeStyle( 'height' );
+									}
+									if ( this.attributesInStyle && this.attributesInStyle.width )
+									{
+										if ( width )
+										{
+											if ( width.match( regexGetSize )[2] == '%' )			// % is allowed
+												element.setStyle( 'width', width + '%' );
+											else
+												element.setStyle( 'width', width + 'px' );
+										}
+										else
+											element.removeStyle( 'width' );
+									}
+								}
+							}
+						}
+					]
+				}
+			]
+		};
+	};
+
+	CKEDITOR.dialog.add( 'image', function( editor )
+		{
+			return imageDialog( editor, 'image' );
+		});
+
+	CKEDITOR.dialog.add( 'imagebutton', function( editor )
+		{
+			return imageDialog( editor, 'imagebutton' );
+		});
+})();
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/image/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/image/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/image/plugin.js	(revision 3747)
@@ -0,0 +1,57 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @file Image plugin
+ */
+
+CKEDITOR.plugins.add( 'image',
+{
+	init : function( editor )
+	{
+		var pluginName = 'image';
+
+		// Register the dialog.
+		CKEDITOR.dialog.add( pluginName, this.path + 'dialogs/image.js' );
+
+		// Register the command.
+		editor.addCommand( pluginName, new CKEDITOR.dialogCommand( pluginName ) );
+
+		// Register the toolbar button.
+		editor.ui.addButton( 'Image',
+			{
+				label : editor.lang.common.image,
+				command : pluginName
+			});
+
+		// If the "menu" plugin is loaded, register the menu items.
+		if ( editor.addMenuItems )
+		{
+			editor.addMenuItems(
+				{
+					image :
+					{
+						label : editor.lang.image.menu,
+						command : 'image',
+						group : 'image'
+					}
+				});
+		}
+
+		// If the "contextmenu" plugin is loaded, register the listeners.
+		if ( editor.contextMenu )
+		{
+			editor.contextMenu.addListener( function( element, selection )
+				{
+					if ( !element || !element.is( 'img' ) || element.getAttribute( '_cke_realelement' ) )
+						return null;
+
+					return { image : CKEDITOR.TRISTATE_OFF };
+				});
+		}
+	}
+} );
+
+CKEDITOR.config.image_removeLinkByEmptyURL = true;
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/indent/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/indent/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/indent/plugin.js	(revision 3747)
@@ -0,0 +1,281 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @file Increse and decrease indent commands.
+ */
+
+(function()
+{
+	var listNodeNames = { ol : 1, ul : 1 };
+
+	function setState( editor, state )
+	{
+		editor.getCommand( this.name ).setState( state );
+	}
+
+	function onSelectionChange( evt )
+	{
+		var elements = evt.data.path.elements,
+			listNode, listItem,
+			editor = evt.editor;
+
+		for ( var i = 0 ; i < elements.length ; i++ )
+		{
+			if ( elements[i].getName() == 'li' )
+			{
+				listItem = elements[i];
+				continue;
+			}
+			if ( listNodeNames[ elements[i].getName() ] )
+			{
+				listNode = elements[i];
+				break;
+			}
+		}
+
+		if ( listNode )
+		{
+			if ( this.name == 'outdent' )
+				return setState.call( this, editor, CKEDITOR.TRISTATE_OFF );
+			else
+			{
+				while ( listItem && ( listItem = listItem.getPrevious() ) )
+				{
+					if ( listItem.getName && listItem.getName() == 'li' )
+						return setState.call( this, editor, CKEDITOR.TRISTATE_OFF );
+				}
+				return setState.call( this, editor, CKEDITOR.TRISTATE_DISABLED );
+			}
+		}
+
+		if ( !this.useIndentClasses && this.name == 'indent' )
+			return setState.call( this, editor, CKEDITOR.TRISTATE_OFF );
+
+		var path = evt.data.path,
+			firstBlock = path.block || path.blockLimit;
+		if ( !firstBlock )
+			return setState.call( this, editor, CKEDITOR.TRISTATE_DISABLED );
+
+		if ( this.useIndentClasses )
+		{
+			var indentClass = firstBlock.$.className.match( this.classNameRegex ),
+				indentStep = 0;
+			if ( indentClass )
+			{
+				indentClass = indentClass[1];
+				indentStep = this.indentClassMap[ indentClass ];
+			}
+			if ( ( this.name == 'outdent' && !indentStep ) ||
+					( this.name == 'indent' && indentStep == editor.config.indentClass.length ) )
+				return setState.call( this, editor, CKEDITOR.TRISTATE_DISABLED );
+			return setState.call( this, editor, CKEDITOR.TRISTATE_OFF );
+		}
+		else
+		{
+			var indent = parseInt( firstBlock.getStyle( this.indentCssProperty ), 10 );
+			if ( isNaN( indent ) )
+				indent = 0;
+			if ( indent <= 0 )
+				return setState.call( this, editor, CKEDITOR.TRISTATE_DISABLED );
+			return setState.call( this, editor, CKEDITOR.TRISTATE_OFF );
+		}
+	}
+
+	function indentList( editor, range, listNode )
+	{
+		// Our starting and ending points of the range might be inside some blocks under a list item...
+		// So before playing with the iterator, we need to expand the block to include the list items.
+		var startContainer = range.startContainer,
+			endContainer = range.endContainer;
+		while ( startContainer && !startContainer.getParent().equals( listNode ) )
+			startContainer = startContainer.getParent();
+		while ( endContainer && !endContainer.getParent().equals( listNode ) )
+			endContainer = endContainer.getParent();
+
+		if ( !startContainer || !endContainer )
+			return;
+
+		// Now we can iterate over the individual items on the same tree depth.
+		var block = startContainer,
+			itemsToMove = [],
+			stopFlag = false;
+		while ( !stopFlag )
+		{
+			if ( block.equals( endContainer ) )
+				stopFlag = true;
+			itemsToMove.push( block );
+			block = block.getNext();
+		}
+		if ( itemsToMove.length < 1 )
+			return;
+
+		// Do indent or outdent operations on the array model of the list, not the
+		// list's DOM tree itself. The array model demands that it knows as much as
+		// possible about the surrounding lists, we need to feed it the further
+		// ancestor node that is still a list.
+		var listParents = listNode.getParents();
+		for ( var i = 0 ; i < listParents.length ; i++ )
+		{
+			if ( listParents[i].getName && listNodeNames[ listParents[i].getName() ] )
+			{
+				listNode = listParents[i];
+				break;
+			}
+		}
+		var indentOffset = this.name == 'indent' ? 1 : -1,
+			startItem = itemsToMove[0],
+			lastItem = itemsToMove[ itemsToMove.length - 1 ],
+			database = {};
+
+		// Convert the list DOM tree into a one dimensional array.
+		var listArray = CKEDITOR.plugins.list.listToArray( listNode, database );
+
+		// Apply indenting or outdenting on the array.
+		var baseIndent = listArray[ lastItem.getCustomData( 'listarray_index' ) ].indent;
+		for ( i = startItem.getCustomData( 'listarray_index' ) ; i <= lastItem.getCustomData( 'listarray_index' ) ; i++ )
+			listArray[i].indent += indentOffset;
+		for ( i = lastItem.getCustomData( 'listarray_index' ) + 1 ;
+				i < listArray.length && listArray[i].indent > baseIndent ; i++ )
+			listArray[i].indent += indentOffset;
+
+		// Convert the array back to a DOM forest (yes we might have a few subtrees now).
+		// And replace the old list with the new forest.
+		var newList = CKEDITOR.plugins.list.arrayToList( listArray, database, null, editor.config.enterMode, 0 );
+		if ( newList )
+			newList.listNode.replace( listNode );
+
+		// Clean up the markers.
+		CKEDITOR.dom.element.clearAllMarkers( database );
+	}
+
+	function indentBlock( editor, range )
+	{
+		var iterator = range.createIterator();
+		iterator.enforceRealBlocks = true;
+
+		var block;
+		while ( ( block = iterator.getNextParagraph() ) )
+		{
+
+			if ( this.useIndentClasses )
+			{
+				// Transform current class name to indent step index.
+				var indentClass = block.$.className.match( this.classNameRegex ),
+					indentStep = 0;
+				if ( indentClass )
+				{
+					indentClass = indentClass[1];
+					indentStep = this.indentClassMap[ indentClass ];
+				}
+
+				// Operate on indent step index, transform indent step index back to class
+				// name.
+				if ( this.name == 'outdent' )
+					indentStep--;
+				else
+					indentStep++;
+				indentStep = Math.min( indentStep, editor.config.indentClasses.length );
+				indentStep = Math.max( indentStep, 0 );
+				var className = CKEDITOR.tools.ltrim( block.$.className.replace( this.classNameRegex, '' ) );
+				if ( indentStep < 1 )
+					block.$.className = className;
+				else
+					block.addClass( editor.config.indentClasses[ indentStep - 1 ] );
+			}
+			else
+			{
+				var currentOffset = parseInt( block.getStyle( this.indentCssProperty ), 10 );
+				if ( isNaN( currentOffset ) )
+					currentOffset = 0;
+				currentOffset += ( this.name == 'indent' ? 1 : -1 ) * editor.config.indentOffset;
+				currentOffset = Math.max( currentOffset, 0 );
+				currentOffset = Math.ceil( currentOffset / editor.config.indentOffset ) * editor.config.indentOffset;
+				block.setStyle( this.indentCssProperty, currentOffset ? currentOffset + editor.config.indentUnit : '' );
+				if ( block.getAttribute( 'style' ) === '' )
+					block.removeAttribute( 'style' );
+			}
+		}
+	}
+
+	function indentCommand( editor, name )
+	{
+		this.name = name;
+		this.useIndentClasses = editor.config.indentClasses && editor.config.indentClasses.length > 0;
+		if ( this.useIndentClasses )
+		{
+			this.classNameRegex = new RegExp( '(?:^|\\s+)(' + editor.config.indentClasses.join( '|' ) + ')(?=$|\\s)' );
+			this.indentClassMap = {};
+			for ( var i = 0 ; i < editor.config.indentClasses.length ; i++ )
+				this.indentClassMap[ editor.config.indentClasses[i] ] = i + 1;
+		}
+		else
+			this.indentCssProperty = editor.config.contentsLangDirection == 'ltr' ? 'margin-left' : 'margin-right';
+	}
+
+	indentCommand.prototype = {
+		exec : function( editor )
+		{
+			var selection = editor.getSelection(),
+				range = selection && selection.getRanges()[0];
+
+			if ( !selection || !range )
+				return;
+
+			var bookmarks = selection.createBookmarks( true ),
+				nearestListBlock = range.getCommonAncestor();
+
+			while ( nearestListBlock && !( nearestListBlock.type == CKEDITOR.NODE_ELEMENT &&
+				listNodeNames[ nearestListBlock.getName() ] ) )
+				nearestListBlock = nearestListBlock.getParent();
+
+			if ( nearestListBlock )
+				indentList.call( this, editor, range, nearestListBlock );
+			else
+				indentBlock.call( this, editor, range );
+
+			editor.focus();
+			editor.forceNextSelectionCheck();
+			selection.selectBookmarks( bookmarks );
+		}
+	};
+
+	CKEDITOR.plugins.add( 'indent',
+	{
+		init : function( editor )
+		{
+			// Register commands.
+			var indent = new indentCommand( editor, 'indent' ),
+				outdent = new indentCommand( editor, 'outdent' );
+			editor.addCommand( 'indent', indent );
+			editor.addCommand( 'outdent', outdent );
+
+			// Register the toolbar buttons.
+			editor.ui.addButton( 'Indent',
+				{
+					label : editor.lang.indent,
+					command : 'indent'
+				});
+			editor.ui.addButton( 'Outdent',
+				{
+					label : editor.lang.outdent,
+					command : 'outdent'
+				});
+
+			// Register the state changing handlers.
+			editor.on( 'selectionChange', CKEDITOR.tools.bind( onSelectionChange, indent ) );
+			editor.on( 'selectionChange', CKEDITOR.tools.bind( onSelectionChange, outdent ) );
+		},
+
+		requires : [ 'domiterator', 'list' ]
+	} );
+})();
+
+CKEDITOR.tools.extend( CKEDITOR.config,
+	{
+		indentOffset : 40,
+		indentUnit : 'px',
+		indentClasses : null
+	});
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/justify/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/justify/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/justify/plugin.js	(revision 3747)
@@ -0,0 +1,164 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @file Justify commands.
+ */
+
+(function()
+{
+	var alignRemoveRegex = /(-moz-|-webkit-|start|auto)/i;
+
+	function getState( editor, path )
+	{
+		var firstBlock = path.block || path.blockLimit;
+
+		if ( !firstBlock || firstBlock.getName() == 'body' )
+			return CKEDITOR.TRISTATE_OFF;
+
+		var currentAlign = firstBlock.getComputedStyle( 'text-align' ).replace( alignRemoveRegex, '' );
+		if ( ( !currentAlign && this.isDefaultAlign ) || currentAlign == this.value )
+			return CKEDITOR.TRISTATE_ON;
+		return CKEDITOR.TRISTATE_OFF;
+	}
+
+	function onSelectionChange( evt )
+	{
+		var command = evt.editor.getCommand( this.name );
+		command.state = getState.call( this, evt.editor, evt.data.path );
+		command.fire( 'state' );
+	}
+
+	function justifyCommand( editor, name, value )
+	{
+		this.name = name;
+		this.value = value;
+
+		var contentDir = editor.config.contentsLangDirection;
+		this.isDefaultAlign = ( value == 'left' && contentDir == 'ltr' ) ||
+			( value == 'right' && contentDir == 'rtl' );
+
+		var classes = editor.config.justifyClasses;
+		if ( classes )
+		{
+			switch ( value )
+			{
+				case 'left' :
+					this.cssClassName = classes[0];
+					break;
+				case 'center' :
+					this.cssClassName = classes[1];
+					break;
+				case 'right' :
+					this.cssClassName = classes[2];
+					break;
+				case 'justify' :
+					this.cssClassName = classes[3];
+					break;
+			}
+
+			this.cssClassRegex = new RegExp( '(?:^|\\s+)(?:' + classes.join( '|' ) + ')(?=$|\\s)' );
+		}
+	}
+
+	justifyCommand.prototype = {
+		exec : function( editor )
+		{
+			var selection = editor.getSelection();
+			if ( !selection )
+				return;
+
+			var bookmarks = selection.createBookmarks(),
+				ranges = selection.getRanges();
+
+
+			var cssClassName = this.cssClassName,
+				iterator,
+				block;
+			for ( var i = ranges.length - 1 ; i >= 0 ; i-- )
+			{
+				iterator = ranges[ i ].createIterator();
+				while ( ( block = iterator.getNextParagraph() ) )
+				{
+					block.removeAttribute( 'align' );
+
+					if ( cssClassName )
+					{
+						// Remove any of the alignment classes from the className.
+						var className = block.$.className =
+							CKEDITOR.tools.ltrim( block.$.className.replace( this.cssClassRegex, '' ) );
+
+						// Append the desired class name.
+						if ( this.state == CKEDITOR.TRISTATE_OFF && !this.isDefaultAlign )
+							block.addClass( cssClassName );
+						else if ( !className )
+							block.removeAttribute( 'class' );
+					}
+					else
+					{
+						if ( this.state == CKEDITOR.TRISTATE_OFF && !this.isDefaultAlign )
+							block.setStyle( 'text-align', this.value );
+						else
+							block.removeStyle( 'text-align' );
+					}
+				}
+
+			}
+
+			editor.focus();
+			editor.forceNextSelectionCheck();
+			selection.selectBookmarks( bookmarks );
+		}
+	};
+
+	CKEDITOR.plugins.add( 'justify',
+	{
+		init : function( editor )
+		{
+			var left = new justifyCommand( editor, 'justifyleft', 'left' ),
+				center = new justifyCommand( editor, 'justifycenter', 'center' ),
+				right = new justifyCommand( editor, 'justifyright', 'right' ),
+				justify = new justifyCommand( editor, 'justifyblock', 'justify' );
+
+			editor.addCommand( 'justifyleft', left );
+			editor.addCommand( 'justifycenter', center );
+			editor.addCommand( 'justifyright', right );
+			editor.addCommand( 'justifyblock', justify );
+
+			editor.ui.addButton( 'JustifyLeft',
+				{
+					label : editor.lang.justify.left,
+					command : 'justifyleft'
+				} );
+			editor.ui.addButton( 'JustifyCenter',
+				{
+					label : editor.lang.justify.center,
+					command : 'justifycenter'
+				} );
+			editor.ui.addButton( 'JustifyRight',
+				{
+					label : editor.lang.justify.right,
+					command : 'justifyright'
+				} );
+			editor.ui.addButton( 'JustifyBlock',
+				{
+					label : editor.lang.justify.block,
+					command : 'justifyblock'
+				} );
+
+			editor.on( 'selectionChange', CKEDITOR.tools.bind( onSelectionChange, left ) );
+			editor.on( 'selectionChange', CKEDITOR.tools.bind( onSelectionChange, right ) );
+			editor.on( 'selectionChange', CKEDITOR.tools.bind( onSelectionChange, center ) );
+			editor.on( 'selectionChange', CKEDITOR.tools.bind( onSelectionChange, justify ) );
+		},
+
+		requires : [ 'domiterator' ]
+	});
+})();
+
+CKEDITOR.tools.extend( CKEDITOR.config,
+	{
+		justifyClasses : null
+	} );
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/keystrokes/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/keystrokes/plugin.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/keystrokes/plugin.js	(revision 3747)
@@ -16,4 +16,6 @@
 		 */
 		editor.keystrokeHandler = new CKEDITOR.keystrokeHandler( editor );
+
+		editor.specialKeys = {};
 	},
 
@@ -76,4 +78,6 @@
 (function()
 {
+	var cancel;
+
 	var onKeyDown = function( event )
 	{
@@ -83,14 +87,24 @@
 		var keyCombination = event.getKeystroke();
 		var command = this.keystrokes[ keyCombination ];
+		var editor = this._.editor;
 
-		var cancel = !this._.editor.fire( 'key', { keyCode : keyCombination } );
+		cancel = ( editor.fire( 'key', { keyCode : keyCombination } ) === true );
 
 		if ( !cancel )
 		{
 			if ( command )
-				cancel = ( this._.editor.execCommand( command ) !== false );
+			{
+				var data = { from : 'keystrokeHandler' };
+				cancel = ( editor.execCommand( command, data ) !== false );
+			}
 
-			if ( !cancel )
-				cancel = !!this.blockedKeystrokes[ keyCombination ];
+			if  ( !cancel )
+			{
+				var handler = editor.specialKeys[ keyCombination ];
+				cancel = ( handler && handler( editor ) === true );
+
+				if ( !cancel )
+					cancel = !!this.blockedKeystrokes[ keyCombination ];
+			}
 		}
 
@@ -99,4 +113,13 @@
 
 		return !cancel;
+	};
+
+	var onKeyPress = function( event )
+	{
+		if ( cancel )
+		{
+			cancel = false;
+			event.data.preventDefault( true );
+		}
 	};
 
@@ -112,5 +135,12 @@
 		attach : function( domObject )
 		{
+			// For most browsers, it is enough to listen to the keydown event
+			// only.
 			domObject.on( 'keydown', onKeyDown, this );
+
+			// Some browsers instead, don't cancel key events in the keydown, but in the
+			// keypress. So we must do a longer trip in those cases.
+			if ( CKEDITOR.env.opera || ( CKEDITOR.env.gecko && CKEDITOR.env.mac ) )
+				domObject.on( 'keypress', onKeyPress, this );
 		}
 	};
@@ -143,16 +173,16 @@
 	[ CKEDITOR.ALT + 122 /*F11*/, 'elementsPathFocus' ],
 
-	[ CKEDITOR.CTRL + 86 /*V*/, 'paste' ],
-	[ CKEDITOR.SHIFT + 45 /*INS*/, 'paste' ],
-	[ CKEDITOR.CTRL + 88 /*X*/, 'cut' ],
-	[ CKEDITOR.SHIFT + 46 /*DEL*/, 'cut' ],
+	[ CKEDITOR.SHIFT + 121 /*F10*/, 'contextMenu' ],
+
 	[ CKEDITOR.CTRL + 90 /*Z*/, 'undo' ],
 	[ CKEDITOR.CTRL + 89 /*Y*/, 'redo' ],
 	[ CKEDITOR.CTRL + CKEDITOR.SHIFT + 90 /*Z*/, 'redo' ],
+
 	[ CKEDITOR.CTRL + 76 /*L*/, 'link' ],
+
 	[ CKEDITOR.CTRL + 66 /*B*/, 'bold' ],
 	[ CKEDITOR.CTRL + 73 /*I*/, 'italic' ],
 	[ CKEDITOR.CTRL + 85 /*U*/, 'underline' ],
-	[ CKEDITOR.CTRL + CKEDITOR.ALT + 13 /*ENTER*/, 'fitWindow' ],
-	[ CKEDITOR.SHIFT + 32 /*SPACE*/, 'nbsp' ]
+
+	[ CKEDITOR.ALT + 109 /*-*/, 'toolbarCollapse' ]
 ];
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/link/dialogs/anchor.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/link/dialogs/anchor.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/link/dialogs/anchor.js	(revision 3747)
@@ -0,0 +1,98 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.dialog.add( 'anchor', function( editor )
+{
+	// Function called in onShow to load selected element.
+	var loadElements = function( editor, selection, element )
+	{
+		this.editMode = true;
+		this.editObj = element;
+
+		var attributeValue = this.editObj.getAttribute( 'name' );
+		if ( attributeValue )
+			this.setValueOf( 'info','txtName', attributeValue );
+		else
+			this.setValueOf( 'info','txtName', "" );
+	};
+
+	return {
+		title : editor.lang.anchor.title,
+		minWidth : 300,
+		minHeight : 60,
+		onOk : function()
+		{
+			// Always create a new anchor, because of IE BUG.
+			var name = this.getValueOf( 'info', 'txtName' ),
+				element = CKEDITOR.env.ie ?
+				editor.document.createElement( '<a name="' + CKEDITOR.tools.htmlEncode( name ) + '">' ) :
+				editor.document.createElement( 'a' );
+
+			// Move contents and attributes of old anchor to new anchor.
+			if ( this.editMode )
+			{
+				this.editObj.copyAttributes( element, { name : 1 } );
+				this.editObj.moveChildren( element );
+			}
+
+			// Set name.
+			element.removeAttribute( '_cke_saved_name' );
+			element.setAttribute( 'name', name );
+
+			// Insert a new anchor.
+			var fakeElement = editor.createFakeElement( element, 'cke_anchor', 'anchor' );
+			if ( !this.editMode )
+				editor.insertElement( fakeElement );
+			else
+			{
+				fakeElement.replace( this.fakeObj );
+				editor.getSelection().selectElement( fakeElement );
+			}
+
+			return true;
+		},
+		onShow : function()
+		{
+			this.editObj = false;
+			this.fakeObj = false;
+			this.editMode = false;
+
+			var selection = editor.getSelection();
+			var element = selection.getSelectedElement();
+			if ( element && element.getAttribute( '_cke_real_element_type' ) && element.getAttribute( '_cke_real_element_type' ) == 'anchor' )
+			{
+				this.fakeObj = element;
+				element = editor.restoreRealElement( this.fakeObj );
+				loadElements.apply( this, [ editor, selection, element ] );
+				selection.selectElement( this.fakeObj );
+			}
+			this.getContentElement( 'info', 'txtName' ).focus();
+		},
+		contents : [
+			{
+				id : 'info',
+				label : editor.lang.anchor.title,
+				accessKey : 'I',
+				elements :
+				[
+					{
+						type : 'text',
+						id : 'txtName',
+						label : editor.lang.anchor.name,
+						validate : function()
+						{
+							if ( !this.getValue() )
+							{
+								alert( editor.lang.anchor.errorName );
+								return false;
+							}
+							return true;
+						}
+					}
+				]
+			}
+		]
+	};
+} );
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/link/dialogs/link.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/link/dialogs/link.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/link/dialogs/link.js	(revision 3747)
@@ -0,0 +1,1213 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.dialog.add( 'link', function( editor )
+{
+	// Handles the event when the "Target" selection box is changed.
+	var targetChanged = function()
+	{
+		var dialog = this.getDialog(),
+			popupFeatures = dialog.getContentElement( 'target', 'popupFeatures' ),
+			targetName = dialog.getContentElement( 'target', 'linkTargetName' ),
+			value = this.getValue();
+
+		if ( !popupFeatures || !targetName )
+			return;
+
+		popupFeatures = popupFeatures.getElement();
+
+		if ( value == 'popup' )
+		{
+			popupFeatures.show();
+			targetName.setLabel( editor.lang.link.targetPopupName );
+		}
+		else
+		{
+			popupFeatures.hide();
+			targetName.setLabel( editor.lang.link.targetFrameName );
+			this.getDialog().setValueOf( 'target', 'linkTargetName', value.charAt( 0 ) == '_' ? value : '' );
+		}
+	};
+
+	// Handles the event when the "Type" selection box is changed.
+	var linkTypeChanged = function()
+	{
+		var dialog = this.getDialog(),
+			partIds = [ 'urlOptions', 'anchorOptions', 'emailOptions' ],
+			typeValue = this.getValue(),
+			uploadInitiallyHidden = dialog.definition.getContents( 'upload' ).hidden;
+
+		if ( typeValue == 'url' )
+		{
+			if ( editor.config.linkShowTargetTab )
+				dialog.showPage( 'target' );
+			if ( !uploadInitiallyHidden )
+				dialog.showPage( 'upload' );
+		}
+		else
+		{
+			dialog.hidePage( 'target' );
+			if ( !uploadInitiallyHidden )
+				dialog.hidePage( 'upload' );
+		}
+
+		for ( var i = 0 ; i < partIds.length ; i++ )
+		{
+			var element = dialog.getContentElement( 'info', partIds[i] );
+			if ( !element )
+				continue;
+
+			element = element.getElement().getParent().getParent();
+			if ( partIds[i] == typeValue + 'Options' )
+				element.show();
+			else
+				element.hide();
+		}
+	};
+
+	// Loads the parameters in a selected link to the link dialog fields.
+	var emailRegex = /^mailto:([^?]+)(?:\?(.+))?$/,
+		emailSubjectRegex = /subject=([^;?:@&=$,\/]*)/,
+		emailBodyRegex = /body=([^;?:@&=$,\/]*)/,
+		anchorRegex = /^#(.*)$/,
+		urlRegex = /^((?:http|https|ftp|news):\/\/)?(.*)$/,
+		selectableTargets = /^(_(?:self|top|parent|blank))$/;
+
+	var popupRegex =
+		/\s*window.open\(\s*this\.href\s*,\s*(?:'([^']*)'|null)\s*,\s*'([^']*)'\s*\)\s*;\s*return\s*false;*\s*/;
+	var popupFeaturesRegex = /(?:^|,)([^=]+)=(\d+|yes|no)/gi;
+
+	var parseLink = function( editor, element )
+	{
+		var href = element ? ( element.getAttribute( '_cke_saved_href' ) || element.getAttribute( 'href' ) ) : '',
+			emailMatch = '',
+			anchorMatch = '',
+			urlMatch = false,
+			retval = {};
+
+		if ( href )
+		{
+			emailMatch = href.match( emailRegex );
+			anchorMatch = href.match( anchorRegex );
+			urlMatch = href.match( urlRegex );
+		}
+
+		// Load the link type and URL.
+		if ( emailMatch )
+		{
+			var subjectMatch = href.match( emailSubjectRegex ),
+				bodyMatch = href.match( emailBodyRegex );
+			retval.type = 'email';
+			retval.email = {};
+			retval.email.address = emailMatch[1];
+			subjectMatch && ( retval.email.subject = decodeURIComponent( subjectMatch[1] ) );
+			bodyMatch && ( retval.email.body = decodeURIComponent( bodyMatch[1] ) );
+		}
+		else if ( anchorMatch )
+		{
+			retval.type = 'anchor';
+			retval.anchor = {};
+			retval.anchor.name = retval.anchor.id = anchorMatch[1];
+		}
+		else if ( href && urlMatch )		// urlRegex matches empty strings, so need to check for href as well.
+		{
+			retval.type = 'url';
+			retval.url = {};
+			retval.url.protocol = urlMatch[1];
+			retval.url.url = urlMatch[2];
+		}
+		else
+			retval.type = 'url';
+
+		// Load target and popup settings.
+		if ( element )
+		{
+			var target = element.getAttribute( 'target' );
+			retval.target = {};
+			retval.adv = {};
+
+			// IE BUG: target attribute is an empty string instead of null in IE if it's not set.
+			if ( !target )
+			{
+				var onclick = element.getAttribute( '_cke_pa_onclick' ) || element.getAttribute( 'onclick' ),
+					onclickMatch = onclick && onclick.match( popupRegex );
+				if ( onclickMatch )
+				{
+					retval.target.type = 'popup';
+					retval.target.name = onclickMatch[1];
+
+					var featureMatch;
+					while ( ( featureMatch = popupFeaturesRegex.exec( onclickMatch[2] ) ) )
+					{
+						if ( featureMatch[2] == 'yes' || featureMatch[2] == '1' )
+							retval.target[ featureMatch[1] ] = true;
+						else if ( isFinite( featureMatch[2] ) )
+							retval.target[ featureMatch[1] ] = featureMatch[2];
+					}
+				}
+			}
+			else
+			{
+				var targetMatch = target.match( selectableTargets );
+				if ( targetMatch )
+					retval.target.type = retval.target.name = target;
+				else
+				{
+					retval.target.type = 'frame';
+					retval.target.name = target;
+				}
+			}
+
+			var me = this;
+			var advAttr = function( inputName, attrName )
+			{
+				var value = element.getAttribute( attrName );
+				if ( value !== null )
+					retval.adv[ inputName ] = value || '';
+			};
+			advAttr( 'advId', 'id' );
+			advAttr( 'advLangDir', 'dir' );
+			advAttr( 'advAccessKey', 'accessKey' );
+			advAttr( 'advName', 'name' );
+			advAttr( 'advLangCode', 'lang' );
+			advAttr( 'advTabIndex', 'tabindex' );
+			advAttr( 'advTitle', 'title' );
+			advAttr( 'advContentType', 'type' );
+			advAttr( 'advCSSClasses', 'class' );
+			advAttr( 'advCharset', 'charset' );
+			advAttr( 'advStyles', 'style' );
+		}
+
+		// Find out whether we have any anchors in the editor.
+		// Get all IMG elements in CK document.
+		var elements = editor.document.getElementsByTag( 'img' ),
+			realAnchors = new CKEDITOR.dom.nodeList( editor.document.$.anchors ),
+			anchors = retval.anchors = [];
+
+		for( var i = 0; i < elements.count() ; i++ )
+		{
+			var item = elements.getItem( i );
+			if ( item.getAttribute( '_cke_realelement' ) && item.getAttribute( '_cke_real_element_type' ) == 'anchor' )
+			{
+				anchors.push( editor.restoreRealElement( item ) );
+			}
+		}
+
+		for ( i = 0 ; i < realAnchors.count() ; i++ )
+			anchors.push( realAnchors.getItem( i ) );
+
+		for ( i = 0 ; i < anchors.length ; i++ )
+		{
+			item = anchors[ i ];
+			anchors[ i ] = { name : item.getAttribute( 'name' ), id : item.getAttribute( 'id' ) };
+		}
+
+		// Record down the selected element in the dialog.
+		this._.selectedElement = element;
+
+		return retval;
+	};
+
+	var setupParams = function( page, data )
+	{
+		if ( data[page] )
+			this.setValue( data[page][this.id] || '' );
+	};
+
+	var setupPopupParams = function( data )
+	{
+		return setupParams.call( this, 'target', data );
+	};
+
+	var setupAdvParams = function( data )
+	{
+		return setupParams.call( this, 'adv', data );
+	};
+
+	var commitParams = function( page, data )
+	{
+		if ( !data[page] )
+			data[page] = {};
+
+		data[page][this.id] = this.getValue() || '';
+	};
+
+	var commitPopupParams = function( data )
+	{
+		return commitParams.call( this, 'target', data );
+	};
+
+	var commitAdvParams = function( data )
+	{
+		return commitParams.call( this, 'adv', data );
+	};
+
+	return {
+		title : editor.lang.link.title,
+		minWidth : 350,
+		minHeight : 230,
+		contents : [
+			{
+				id : 'info',
+				label : editor.lang.link.info,
+				title : editor.lang.link.info,
+				elements :
+				[
+					{
+						id : 'linkType',
+						type : 'select',
+						label : editor.lang.link.type,
+						'default' : 'url',
+						items :
+						[
+							[ editor.lang.common.url, 'url' ],
+							[ editor.lang.link.toAnchor, 'anchor' ],
+							[ editor.lang.link.toEmail, 'email' ]
+						],
+						onChange : linkTypeChanged,
+						setup : function( data )
+						{
+							if ( data.type )
+								this.setValue( data.type );
+						},
+						commit : function( data )
+						{
+							data.type = this.getValue();
+						}
+					},
+					{
+						type : 'vbox',
+						id : 'urlOptions',
+						children :
+						[
+							{
+								type : 'hbox',
+								widths : [ '25%', '75%' ],
+								children :
+								[
+									{
+										id : 'protocol',
+										type : 'select',
+										label : editor.lang.common.protocol,
+										'default' : 'http://',
+										style : 'width : 100%;',
+										items :
+										[
+											[ 'http://' ],
+											[ 'https://' ],
+											[ 'ftp://' ],
+											[ 'news://' ],
+											[ '<other>', '' ]
+										],
+										setup : function( data )
+										{
+											if ( data.url )
+												this.setValue( data.url.protocol );
+										},
+										commit : function( data )
+										{
+											if ( !data.url )
+												data.url = {};
+
+											data.url.protocol = this.getValue();
+										}
+									},
+									{
+										type : 'text',
+										id : 'url',
+										label : editor.lang.common.url,
+										onLoad : function ()
+										{
+											this.allowOnChange = true;
+										},
+										onKeyUp : function()
+										{
+											this.allowOnChange = false;
+											var	protocolCmb = this.getDialog().getContentElement( 'info', 'protocol' ),
+												url = this.getValue(),
+												urlOnChangeProtocol = /^(http|https|ftp|news):\/\/(?=.)/gi,
+												urlOnChangeTestOther = /^((javascript:)|[#\/\.])/gi;
+
+											var protocol = urlOnChangeProtocol.exec( url );
+											if ( protocol )
+											{
+												this.setValue( url.substr( protocol[ 0 ].length ) );
+												protocolCmb.setValue( protocol[ 0 ].toLowerCase() );
+											}
+											else if ( urlOnChangeTestOther.test( url ) )
+												protocolCmb.setValue( '' );
+
+											this.allowOnChange = true;
+										},
+										onChange : function()
+										{
+											if ( this.allowOnChange )		// Dont't call on dialog load.
+												this.onKeyUp();
+										},
+										validate : function()
+										{
+											var dialog = this.getDialog();
+
+											if ( dialog.getContentElement( 'info', 'linkType' ) &&
+													dialog.getValueOf( 'info', 'linkType' ) != 'url' )
+												return true;
+
+											if ( this.getDialog().fakeObj )	// Edit Anchor.
+												return true;
+
+											var func = CKEDITOR.dialog.validate.notEmpty( editor.lang.link.noUrl );
+											return func.apply( this );
+										},
+										setup : function( data )
+										{
+											this.allowOnChange = false;
+											if ( data.url )
+												this.setValue( data.url.url );
+											this.allowOnChange = true;
+
+											var linkType = this.getDialog().getContentElement( 'info', 'linkType' );
+											if ( linkType && linkType.getValue() == 'url' )
+												this.select();
+
+										},
+										commit : function( data )
+										{
+											if ( !data.url )
+												data.url = {};
+
+											data.url.url = this.getValue();
+											this.allowOnChange = false;
+										}
+									}
+								],
+								setup : function( data )
+								{
+									if ( !this.getDialog().getContentElement( 'info', 'linkType' ) )
+										this.getElement().show();
+								}
+							},
+							{
+								type : 'button',
+								id : 'browse',
+								hidden : 'true',
+								filebrowser : 'info:url',
+								label : editor.lang.common.browseServer
+							}
+						]
+					},
+					{
+						type : 'vbox',
+						id : 'anchorOptions',
+						width : 260,
+						align : 'center',
+						padding : 0,
+						children :
+						[
+							{
+								type : 'html',
+								id : 'selectAnchorText',
+								html : CKEDITOR.tools.htmlEncode( editor.lang.link.selectAnchor ),
+								setup : function( data )
+								{
+									if ( data.anchors.length > 0 )
+										this.getElement().show();
+									else
+										this.getElement().hide();
+								}
+							},
+							{
+								type : 'html',
+								id : 'noAnchors',
+								style : 'text-align: center;',
+								html : '<div>' + CKEDITOR.tools.htmlEncode( editor.lang.link.noAnchors ) + '</div>',
+								setup : function( data )
+								{
+									if ( data.anchors.length < 1 )
+										this.getElement().show();
+									else
+										this.getElement().hide();
+								}
+							},
+							{
+								type : 'hbox',
+								id : 'selectAnchor',
+								children :
+								[
+									{
+										type : 'select',
+										id : 'anchorName',
+										'default' : '',
+										label : editor.lang.link.anchorName,
+										style : 'width: 100%;',
+										items :
+										[
+											[ '' ]
+										],
+										setup : function( data )
+										{
+											this.clear();
+											this.add( '' );
+											for ( var i = 0 ; i < data.anchors.length ; i++ )
+											{
+												if ( data.anchors[i].name )
+													this.add( data.anchors[i].name );
+											}
+
+											if ( data.anchor )
+												this.setValue( data.anchor.name );
+
+											var linkType = this.getDialog().getContentElement( 'info', 'linkType' );
+											if ( linkType && linkType.getValue() == 'email' )
+												this.focus();
+										},
+										commit : function( data )
+										{
+											if ( !data.anchor )
+												data.anchor = {};
+
+											data.anchor.name = this.getValue();
+										}
+									},
+									{
+										type : 'select',
+										id : 'anchorId',
+										'default' : '',
+										label : editor.lang.link.anchorId,
+										style : 'width: 100%;',
+										items :
+										[
+											[ '' ]
+										],
+										setup : function( data )
+										{
+											this.clear();
+											this.add( '' );
+											for ( var i = 0 ; i < data.anchors.length ; i++ )
+											{
+												if ( data.anchors[i].id )
+													this.add( data.anchors[i].id );
+											}
+
+											if ( data.anchor )
+												this.setValue( data.anchor.id );
+										},
+										commit : function( data )
+										{
+											if ( !data.anchor )
+												data.anchor = {};
+
+											data.anchor.id = this.getValue();
+										}
+									}
+								],
+								setup : function( data )
+								{
+									if ( data.anchors.length > 0 )
+										this.getElement().show();
+									else
+										this.getElement().hide();
+								}
+							}
+						],
+						setup : function( data )
+						{
+							if ( !this.getDialog().getContentElement( 'info', 'linkType' ) )
+								this.getElement().hide();
+						}
+					},
+					{
+						type :  'vbox',
+						id : 'emailOptions',
+						padding : 1,
+						children :
+						[
+							{
+								type : 'text',
+								id : 'emailAddress',
+								label : editor.lang.link.emailAddress,
+								validate : function()
+								{
+									var dialog = this.getDialog();
+
+									if ( !dialog.getContentElement( 'info', 'linkType' ) ||
+											dialog.getValueOf( 'info', 'linkType' ) != 'email' )
+										return true;
+
+									var func = CKEDITOR.dialog.validate.notEmpty( editor.lang.link.noEmail );
+									return func.apply( this );
+								},
+								setup : function( data )
+								{
+									if ( data.email )
+										this.setValue( data.email.address );
+
+									var linkType = this.getDialog().getContentElement( 'info', 'linkType' );
+									if ( linkType && linkType.getValue() == 'email' )
+										this.select();
+								},
+								commit : function( data )
+								{
+									if ( !data.email )
+										data.email = {};
+
+									data.email.address = this.getValue();
+								}
+							},
+							{
+								type : 'text',
+								id : 'emailSubject',
+								label : editor.lang.link.emailSubject,
+								setup : function( data )
+								{
+									if ( data.email )
+										this.setValue( data.email.subject );
+								},
+								commit : function( data )
+								{
+									if ( !data.email )
+										data.email = {};
+
+									data.email.subject = this.getValue();
+								}
+							},
+							{
+								type : 'textarea',
+								id : 'emailBody',
+								label : editor.lang.link.emailBody,
+								rows : 3,
+								'default' : '',
+								setup : function( data )
+								{
+									if ( data.email )
+										this.setValue( data.email.body );
+								},
+								commit : function( data )
+								{
+									if ( !data.email )
+										data.email = {};
+
+									data.email.body = this.getValue();
+								}
+							}
+						],
+						setup : function( data )
+						{
+							if ( !this.getDialog().getContentElement( 'info', 'linkType' ) )
+								this.getElement().hide();
+						}
+					}
+				]
+			},
+			{
+				id : 'target',
+				label : editor.lang.link.target,
+				title : editor.lang.link.target,
+				elements :
+				[
+					{
+						type : 'hbox',
+						widths : [ '50%', '50%' ],
+						children :
+						[
+							{
+								type : 'select',
+								id : 'linkTargetType',
+								label : editor.lang.link.target,
+								'default' : 'notSet',
+								style : 'width : 100%;',
+								'items' :
+								[
+									[ editor.lang.link.targetNotSet, 'notSet' ],
+									[ editor.lang.link.targetFrame, 'frame' ],
+									[ editor.lang.link.targetPopup, 'popup' ],
+									[ editor.lang.link.targetNew, '_blank' ],
+									[ editor.lang.link.targetTop, '_top' ],
+									[ editor.lang.link.targetSelf, '_self' ],
+									[ editor.lang.link.targetParent, '_parent' ]
+								],
+								onChange : targetChanged,
+								setup : function( data )
+								{
+									if ( data.target )
+										this.setValue( data.target.type );
+								},
+								commit : function( data )
+								{
+									if ( !data.target )
+										data.target = {};
+
+									data.target.type = this.getValue();
+								}
+							},
+							{
+								type : 'text',
+								id : 'linkTargetName',
+								label : editor.lang.link.targetFrameName,
+								'default' : '',
+								setup : function( data )
+								{
+									if ( data.target )
+										this.setValue( data.target.name );
+								},
+								commit : function( data )
+								{
+									if ( !data.target )
+										data.target = {};
+
+									data.target.name = this.getValue();
+								}
+							}
+						]
+					},
+					{
+						type : 'vbox',
+						width : 260,
+						align : 'center',
+						padding : 2,
+						id : 'popupFeatures',
+						children :
+						[
+							{
+								type : 'html',
+								html : CKEDITOR.tools.htmlEncode( editor.lang.link.popupFeatures )
+							},
+							{
+								type : 'hbox',
+								children :
+								[
+									{
+										type : 'checkbox',
+										id : 'resizable',
+										label : editor.lang.link.popupResizable,
+										setup : setupPopupParams,
+										commit : commitPopupParams
+									},
+									{
+										type : 'checkbox',
+										id : 'status',
+										label : editor.lang.link.popupStatusBar,
+										setup : setupPopupParams,
+										commit : commitPopupParams
+
+									}
+								]
+							},
+							{
+								type : 'hbox',
+								children :
+								[
+									{
+										type : 'checkbox',
+										id : 'location',
+										label : editor.lang.link.popupLocationBar,
+										setup : setupPopupParams,
+										commit : commitPopupParams
+
+									},
+									{
+										type : 'checkbox',
+										id : 'toolbar',
+										label : editor.lang.link.popupToolbar,
+										setup : setupPopupParams,
+										commit : commitPopupParams
+
+									}
+								]
+							},
+							{
+								type : 'hbox',
+								children :
+								[
+									{
+										type : 'checkbox',
+										id : 'menubar',
+										label : editor.lang.link.popupMenuBar,
+										setup : setupPopupParams,
+										commit : commitPopupParams
+
+									},
+									{
+										type : 'checkbox',
+										id : 'fullscreen',
+										label : editor.lang.link.popupFullScreen,
+										setup : setupPopupParams,
+										commit : commitPopupParams
+
+									}
+								]
+							},
+							{
+								type : 'hbox',
+								children :
+								[
+									{
+										type : 'checkbox',
+										id : 'scrollbars',
+										label : editor.lang.link.popupScrollBars,
+										setup : setupPopupParams,
+										commit : commitPopupParams
+
+									},
+									{
+										type : 'checkbox',
+										id : 'dependent',
+										label : editor.lang.link.popupDependent,
+										setup : setupPopupParams,
+										commit : commitPopupParams
+
+									}
+								]
+							},
+							{
+								type : 'hbox',
+								children :
+								[
+									{
+										type :  'text',
+										widths : [ '30%', '70%' ],
+										labelLayout : 'horizontal',
+										label : editor.lang.link.popupWidth,
+										id : 'width',
+										setup : setupPopupParams,
+										commit : commitPopupParams
+
+									},
+									{
+										type :  'text',
+										labelLayout : 'horizontal',
+										widths : [ '55%', '45%' ],
+										label : editor.lang.link.popupLeft,
+										id : 'left',
+										setup : setupPopupParams,
+										commit : commitPopupParams
+
+									}
+								]
+							},
+							{
+								type : 'hbox',
+								children :
+								[
+									{
+										type :  'text',
+										labelLayout : 'horizontal',
+										widths : [ '30%', '70%' ],
+										label : editor.lang.link.popupHeight,
+										id : 'height',
+										setup : setupPopupParams,
+										commit : commitPopupParams
+
+									},
+									{
+										type :  'text',
+										labelLayout : 'horizontal',
+										label : editor.lang.link.popupTop,
+										widths : [ '55%', '45%' ],
+										id : 'top',
+										setup : setupPopupParams,
+										commit : commitPopupParams
+
+									}
+								]
+							}
+						]
+					}
+				]
+			},
+			{
+				id : 'upload',
+				label : editor.lang.link.upload,
+				title : editor.lang.link.upload,
+				hidden : true,
+				filebrowser : 'uploadButton',
+				elements :
+				[
+					{
+						type : 'file',
+						id : 'upload',
+						label : editor.lang.common.upload,
+						size : 38
+					},
+					{
+						type : 'fileButton',
+						id : 'uploadButton',
+						label : editor.lang.common.uploadSubmit,
+						filebrowser : 'info:url',
+						'for' : [ 'upload', 'upload' ]
+					}
+				]
+			},
+			{
+				id : 'advanced',
+				label : editor.lang.link.advanced,
+				title : editor.lang.link.advanced,
+				elements :
+				[
+					{
+						type : 'vbox',
+						padding : 1,
+						children :
+						[
+							{
+								type : 'hbox',
+								widths : [ '45%', '35%', '20%' ],
+								children :
+								[
+									{
+										type : 'text',
+										id : 'advId',
+										label : editor.lang.link.id,
+										setup : setupAdvParams,
+										commit : commitAdvParams
+									},
+									{
+										type : 'select',
+										id : 'advLangDir',
+										label : editor.lang.link.langDir,
+										'default' : '',
+										style : 'width: 100%;',
+										items :
+										[
+											[ editor.lang.link.langDirNotSet, '' ],
+											[ editor.lang.link.langDirLTR, 'ltr' ],
+											[ editor.lang.link.langDirRTL, 'rtl' ]
+										],
+										setup : setupAdvParams,
+										commit : commitAdvParams
+									},
+									{
+										type : 'text',
+										id : 'advAccessKey',
+										label : editor.lang.link.acccessKey,
+										maxLength : 1,
+										setup : setupAdvParams,
+										commit : commitAdvParams
+
+									}
+								]
+							},
+							{
+								type : 'hbox',
+								widths : [ '45%', '35%', '20%' ],
+								children :
+								[
+									{
+										type : 'text',
+										label : editor.lang.link.name,
+										id : 'advName',
+										setup : setupAdvParams,
+										commit : commitAdvParams
+
+									},
+									{
+										type : 'text',
+										label : editor.lang.link.langCode,
+										id : 'advLangCode',
+										'default' : '',
+										setup : setupAdvParams,
+										commit : commitAdvParams
+
+									},
+									{
+										type : 'text',
+										label : editor.lang.link.tabIndex,
+										id : 'advTabIndex',
+										maxLength : 5,
+										setup : setupAdvParams,
+										commit : commitAdvParams
+
+									}
+								]
+							}
+						]
+					},
+					{
+						type : 'vbox',
+						padding : 1,
+						children :
+						[
+							{
+								type : 'hbox',
+								widths : [ '45%', '55%' ],
+								children :
+								[
+									{
+										type : 'text',
+										label : editor.lang.link.advisoryTitle,
+										'default' : '',
+										id : 'advTitle',
+										setup : setupAdvParams,
+										commit : commitAdvParams
+
+									},
+									{
+										type : 'text',
+										label : editor.lang.link.advisoryContentType,
+										'default' : '',
+										id : 'advContentType',
+										setup : setupAdvParams,
+										commit : commitAdvParams
+
+									}
+								]
+							},
+							{
+								type : 'hbox',
+								widths : [ '45%', '55%' ],
+								children :
+								[
+									{
+										type : 'text',
+										label : editor.lang.link.cssClasses,
+										'default' : '',
+										id : 'advCSSClasses',
+										setup : setupAdvParams,
+										commit : commitAdvParams
+
+									},
+									{
+										type : 'text',
+										label : editor.lang.link.charset,
+										'default' : '',
+										id : 'advCharset',
+										setup : setupAdvParams,
+										commit : commitAdvParams
+
+									}
+								]
+							},
+							{
+								type : 'hbox',
+								children :
+								[
+									{
+										type : 'text',
+										label : editor.lang.link.styles,
+										'default' : '',
+										id : 'advStyles',
+										setup : setupAdvParams,
+										commit : commitAdvParams
+
+									}
+								]
+							}
+						]
+					}
+				]
+			}
+		],
+		onShow : function()
+		{
+			this.fakeObj = false;
+
+			var editor = this.getParentEditor(),
+				selection = editor.getSelection(),
+				ranges = selection.getRanges(),
+				element = null,
+				me = this;
+			// Fill in all the relevant fields if there's already one link selected.
+			if ( ranges.length == 1 )
+			{
+
+				var rangeRoot = ranges[0].getCommonAncestor( true );
+				element = rangeRoot.getAscendant( 'a', true );
+				if ( element && element.getAttribute( 'href' ) )
+				{
+					selection.selectElement( element );
+				}
+				else
+				{
+					element = rangeRoot.getAscendant( 'img', true );
+					if ( element && element.getAttribute( '_cke_real_element_type' ) && element.getAttribute( '_cke_real_element_type' ) == 'anchor' )
+					{
+						this.fakeObj = element;
+						element = editor.restoreRealElement( this.fakeObj );
+						selection.selectElement( this.fakeObj );
+					}
+				}
+			}
+
+			this.setupContent( parseLink.apply( this, [ editor, element ] ) );
+		},
+		onOk : function()
+		{
+			var attributes = { href : 'javascript:void(0)/*' + CKEDITOR.tools.getNextNumber() + '*/' },
+				removeAttributes = [],
+				data = { href : attributes.href },
+				me = this, editor = this.getParentEditor();
+
+			this.commitContent( data );
+
+			// Compose the URL.
+			switch ( data.type || 'url' )
+			{
+				case 'url':
+					var protocol = ( data.url && data.url.protocol != undefined ) ? data.url.protocol : 'http://',
+						url = ( data.url && data.url.url ) || '';
+					attributes._cke_saved_href = ( url.indexOf( '/' ) === 0 ) ? url : protocol + url;
+					break;
+				case 'anchor':
+					var name = ( data.anchor && data.anchor.name ),
+						id = ( data.anchor && data.anchor.id );
+					attributes._cke_saved_href = '#' + ( name || id || '' );
+					break;
+				case 'email':
+					var address = ( data.email && data.email.address ),
+						subject = ( data.email && encodeURIComponent( data.email.subject || '' ) ),
+						body = ( data.email && encodeURIComponent( data.email.body || '' ) ),
+						linkList = [ 'mailto:', address ];
+					if ( subject || body )
+					{
+						var argList = [];
+						linkList.push( '?' );
+						subject && argList.push( 'subject=' + subject );
+						body && argList.push( 'body=' + body );
+						linkList.push( argList.join( '&' ) );
+					}
+					attributes._cke_saved_href = linkList.join( '' );
+					break;
+				default:
+			}
+
+			// Popups and target.
+			if ( data.target )
+			{
+				if ( data.target.type == 'popup' )
+				{
+					var onclickList = [ 'window.open(this.href, \'',
+							data.target.name || '', '\', \'' ];
+					var featureList = [ 'resizable', 'status', 'location', 'toolbar', 'menubar', 'fullscreen',
+							'scrollbars', 'dependent' ];
+					var featureLength = featureList.length;
+					var addFeature = function( featureName )
+					{
+						if ( data.target[ featureName ] )
+							featureList.push( featureName + '=' + data.target[ featureName ] );
+					};
+
+					for ( var i = 0 ; i < featureLength ; i++ )
+						featureList[i] = featureList[i] + ( data.target[ featureList[i] ] ? '=yes' : '=no' ) ;
+					addFeature( 'width' );
+					addFeature( 'left' );
+					addFeature( 'height' );
+					addFeature( 'top' );
+
+					onclickList.push( featureList.join( ',' ), '\'); return false;' );
+					attributes[ CKEDITOR.env.ie || CKEDITOR.env.webkit ? '_cke_pa_onclick' : 'onclick' ] = onclickList.join( '' );
+				}
+				else
+				{
+					if ( data.target.type != 'notSet' && data.target.name )
+						attributes.target = data.target.name;
+					removeAttributes.push( '_cke_pa_onclick', 'onclick' );
+				}
+			}
+
+			// Advanced attributes.
+			if ( data.adv )
+			{
+				var advAttr = function( inputName, attrName )
+				{
+					var value = data.adv[ inputName ];
+					if ( value )
+						attributes[attrName] = value;
+					else
+						removeAttributes.push( attrName );
+				};
+
+				if ( this._.selectedElement )
+					advAttr( 'advId', 'id' );
+				advAttr( 'advLangDir', 'dir' );
+				advAttr( 'advAccessKey', 'accessKey' );
+				advAttr( 'advName', 'name' );
+				advAttr( 'advLangCode', 'lang' );
+				advAttr( 'advTabIndex', 'tabindex' );
+				advAttr( 'advTitle', 'title' );
+				advAttr( 'advContentType', 'type' );
+				advAttr( 'advCSSClasses', 'class' );
+				advAttr( 'advCharset', 'charset' );
+				advAttr( 'advStyles', 'style' );
+			}
+
+			if ( !this._.selectedElement )
+			{
+				// Create element if current selection is collapsed.
+				var selection = editor.getSelection(),
+					ranges = selection.getRanges();
+				if ( ranges.length == 1 && ranges[0].collapsed )
+				{
+					var text = new CKEDITOR.dom.text( attributes._cke_saved_href, editor.document );
+					ranges[0].insertNode( text );
+					ranges[0].selectNodeContents( text );
+					selection.selectRanges( ranges );
+				}
+
+				// Apply style.
+				var style = new CKEDITOR.style( { element : 'a', attributes : attributes } );
+				style.type = CKEDITOR.STYLE_INLINE;		// need to override... dunno why.
+				style.apply( editor.document );
+
+				// Id. Apply only to the first link.
+				if ( data.adv && data.adv.advId )
+				{
+					var links = this.getParentEditor().document.$.getElementsByTagName( 'a' );
+					for ( i = 0 ; i < links.length ; i++ )
+					{
+						if ( links[i].href == attributes.href )
+						{
+							links[i].id = data.adv.advId;
+							break;
+						}
+					}
+				}
+			}
+			else
+			{
+				// We're only editing an existing link, so just overwrite the attributes.
+				var element = this._.selectedElement;
+
+				// IE BUG: Setting the name attribute to an existing link doesn't work.
+				// Must re-create the link from weired syntax to workaround.
+				if ( CKEDITOR.env.ie && attributes.name != element.getAttribute( 'name' ) )
+				{
+					var newElement = new CKEDITOR.dom.element( '<a name="' + CKEDITOR.tools.htmlEncode( attributes.name ) + '">',
+							editor.document );
+
+					selection = editor.getSelection();
+
+					element.moveChildren( newElement );
+					element.copyAttributes( newElement, { name : 1 } );
+					newElement.replace( element );
+					element = newElement;
+
+					selection.selectElement( element );
+				}
+
+				element.setAttributes( attributes );
+				element.removeAttributes( removeAttributes );
+
+				// Make the element display as an anchor if a name has been set.
+				if ( element.getAttribute( 'name' ) )
+					element.addClass( 'cke_anchor' );
+				else
+					element.removeClass( 'cke_anchor' );
+
+				if ( this.fakeObj )
+					editor.createFakeElement( element, 'cke_anchor', 'anchor' ).replace( this.fakeObj );
+
+				delete this._.selectedElement;
+			}
+		},
+		onLoad : function()
+		{
+			if ( !editor.config.linkShowAdvancedTab )
+				this.hidePage( 'advanced' );		//Hide Advanded tab.
+
+			if ( !editor.config.linkShowTargetTab )
+				this.hidePage( 'target' );		//Hide Target tab.
+
+		}
+	};
+} );
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/link/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/link/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/link/plugin.js	(revision 3747)
@@ -0,0 +1,188 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.plugins.add( 'link',
+{
+	init : function( editor )
+	{
+		// Add the link and unlink buttons.
+		editor.addCommand( 'link', new CKEDITOR.dialogCommand( 'link' ) );
+		editor.addCommand( 'anchor', new CKEDITOR.dialogCommand( 'anchor' ) );
+		editor.addCommand( 'unlink', new CKEDITOR.unlinkCommand() );
+		editor.ui.addButton( 'Link',
+			{
+				label : editor.lang.link.toolbar,
+				command : 'link'
+			} );
+		editor.ui.addButton( 'Unlink',
+			{
+				label : editor.lang.unlink,
+				command : 'unlink'
+			} );
+		editor.ui.addButton( 'Anchor',
+			{
+				label : editor.lang.anchor.toolbar,
+				command : 'anchor'
+			} );
+		CKEDITOR.dialog.add( 'link', this.path + 'dialogs/link.js' );
+		CKEDITOR.dialog.add( 'anchor', this.path + 'dialogs/anchor.js' );
+
+		// Add the CSS styles for anchor placeholders.
+		editor.addCss(
+			'img.cke_anchor' +
+			'{' +
+				'background-image: url(' + CKEDITOR.getUrl( this.path + 'images/anchor.gif' ) + ');' +
+				'background-position: center center;' +
+				'background-repeat: no-repeat;' +
+				'border: 1px solid #a9a9a9;' +
+				'width: 18px;' +
+				'height: 18px;' +
+			'}\n' +
+			'a.cke_anchor' +
+			'{' +
+				'background-image: url(' + CKEDITOR.getUrl( this.path + 'images/anchor.gif' ) + ');' +
+				'background-position: 0 center;' +
+				'background-repeat: no-repeat;' +
+				'border: 1px solid #a9a9a9;' +
+				'padding-left: 18px;' +
+			'}'
+		   	);
+
+		// Register selection change handler for the unlink button.
+		 editor.on( 'selectionChange', function( evt )
+			{
+				/*
+				 * Despite our initial hope, document.queryCommandEnabled() does not work
+				 * for this in Firefox. So we must detect the state by element paths.
+				 */
+				var command = editor.getCommand( 'unlink' ),
+					element = evt.data.path.lastElement.getAscendant( 'a', true );
+				if ( element && element.getName() == 'a' && element.getAttribute( 'href' ) )
+					command.setState( CKEDITOR.TRISTATE_OFF );
+				else
+					command.setState( CKEDITOR.TRISTATE_DISABLED );
+			} );
+
+		// If the "menu" plugin is loaded, register the menu items.
+		if ( editor.addMenuItems )
+		{
+			editor.addMenuItems(
+				{
+					anchor :
+					{
+						label : editor.lang.anchor.menu,
+						command : 'anchor',
+						group : 'anchor'
+					},
+
+					link :
+					{
+						label : editor.lang.link.menu,
+						command : 'link',
+						group : 'link',
+						order : 1
+					},
+
+					unlink :
+					{
+						label : editor.lang.unlink,
+						command : 'unlink',
+						group : 'link',
+						order : 5
+					}
+				});
+		}
+
+		// If the "contextmenu" plugin is loaded, register the listeners.
+		if ( editor.contextMenu )
+		{
+			editor.contextMenu.addListener( function( element, selection )
+				{
+					if ( !element )
+						return null;
+
+					var isAnchor = ( element.is( 'img' ) && element.getAttribute( '_cke_real_element_type' ) == 'anchor' );
+
+					if ( !isAnchor )
+					{
+						if ( !( element = element.getAscendant( 'a', true ) ) )
+							return null;
+
+						isAnchor = ( element.getAttribute( 'name' ) && !element.getAttribute( 'href' ) );
+					}
+
+					return isAnchor ?
+							{ anchor : CKEDITOR.TRISTATE_OFF } :
+							{ link : CKEDITOR.TRISTATE_OFF, unlink : CKEDITOR.TRISTATE_OFF };
+				});
+		}
+	},
+
+	afterInit : function( editor )
+	{
+		// Register a filter to displaying placeholders after mode change.
+
+		var dataProcessor = editor.dataProcessor,
+			dataFilter = dataProcessor && dataProcessor.dataFilter;
+
+		if ( dataFilter )
+		{
+			dataFilter.addRules(
+				{
+					elements :
+					{
+						a : function( element )
+						{
+							var attributes = element.attributes;
+							if ( attributes.name && !attributes.href )
+								return editor.createFakeParserElement( element, 'cke_anchor', 'anchor' );
+						}
+					}
+				});
+		}
+	},
+
+	requires : [ 'fakeobjects' ]
+} );
+
+CKEDITOR.unlinkCommand = function(){};
+CKEDITOR.unlinkCommand.prototype =
+{
+	/** @ignore */
+	exec : function( editor )
+	{
+		/*
+		 * execCommand( 'unlink', ... ) in Firefox leaves behind <span> tags at where
+		 * the <a> was, so again we have to remove the link ourselves. (See #430)
+		 *
+		 * TODO: Use the style system when it's complete. Let's use execCommand()
+		 * as a stopgap solution for now.
+		 */
+		var selection = editor.getSelection(),
+			bookmarks = selection.createBookmarks(),
+			ranges = selection.getRanges(),
+			rangeRoot,
+			element;
+
+		for ( var i = 0 ; i < ranges.length ; i++ )
+		{
+			rangeRoot = ranges[i].getCommonAncestor( true );
+			element = rangeRoot.getAscendant( 'a', true );
+			if ( !element )
+				continue;
+			ranges[i].selectNodeContents( element );
+		}
+
+		selection.selectRanges( ranges );
+		editor.document.$.execCommand( 'unlink', false, null );
+		selection.selectBookmarks( bookmarks );
+	}
+};
+
+CKEDITOR.tools.extend( CKEDITOR.config,
+{
+	linkShowAdvancedTab : true,
+	linkShowTargetTab : true
+} );
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/list/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/list/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/list/plugin.js	(revision 3747)
@@ -0,0 +1,536 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @file Insert and remove numbered and bulleted lists.
+ */
+
+(function()
+{
+	var listNodeNames = { ol : 1, ul : 1 },
+		emptyTextRegex = /^[\n\r\t ]*$/;
+
+	CKEDITOR.plugins.list = {
+		/*
+		 * Convert a DOM list tree into a data structure that is easier to
+		 * manipulate. This operation should be non-intrusive in the sense that it
+		 * does not change the DOM tree, with the exception that it may add some
+		 * markers to the list item nodes when database is specified.
+		 */
+		listToArray : function( listNode, database, baseArray, baseIndentLevel, grandparentNode )
+		{
+			if ( !listNodeNames[ listNode.getName() ] )
+				return [];
+
+			if ( !baseIndentLevel )
+				baseIndentLevel = 0;
+			if ( !baseArray )
+				baseArray = [];
+
+			// Iterate over all list items to get their contents and look for inner lists.
+			for ( var i = 0, count = listNode.getChildCount() ; i < count ; i++ )
+			{
+				var listItem = listNode.getChild( i );
+
+				// It may be a text node or some funny stuff.
+				if ( listItem.$.nodeName.toLowerCase() != 'li' )
+					continue;
+				var itemObj = { 'parent' : listNode, indent : baseIndentLevel, contents : [] };
+				if ( !grandparentNode )
+				{
+					itemObj.grandparent = listNode.getParent();
+					if ( itemObj.grandparent && itemObj.grandparent.$.nodeName.toLowerCase() == 'li' )
+						itemObj.grandparent = itemObj.grandparent.getParent();
+				}
+				else
+					itemObj.grandparent = grandparentNode;
+
+				if ( database )
+					CKEDITOR.dom.element.setMarker( database, listItem, 'listarray_index', baseArray.length );
+				baseArray.push( itemObj );
+
+				for ( var j = 0, itemChildCount = listItem.getChildCount() ; j < itemChildCount ; j++ )
+				{
+					var child = listItem.getChild( j );
+					if ( child.type == CKEDITOR.NODE_ELEMENT && listNodeNames[ child.getName() ] )
+						// Note the recursion here, it pushes inner list items with
+						// +1 indentation in the correct order.
+						CKEDITOR.plugins.list.listToArray( child, database, baseArray, baseIndentLevel + 1, itemObj.grandparent );
+					else
+						itemObj.contents.push( child );
+				}
+			}
+			return baseArray;
+		},
+
+		// Convert our internal representation of a list back to a DOM forest.
+		arrayToList : function( listArray, database, baseIndex, paragraphMode )
+		{
+			if ( !baseIndex )
+				baseIndex = 0;
+			if ( !listArray || listArray.length < baseIndex + 1 )
+				return null;
+			var doc = listArray[ baseIndex ].parent.getDocument(),
+				retval = new CKEDITOR.dom.documentFragment( doc ),
+				rootNode = null,
+				currentIndex = baseIndex,
+				indentLevel = Math.max( listArray[ baseIndex ].indent, 0 ),
+				currentListItem = null,
+				paragraphName = ( paragraphMode == CKEDITOR.ENTER_P ? 'p' : 'div' );
+			while ( true )
+			{
+				var item = listArray[ currentIndex ];
+				if ( item.indent == indentLevel )
+				{
+					if ( !rootNode || listArray[ currentIndex ].parent.getName() != rootNode.getName() )
+					{
+						rootNode = listArray[ currentIndex ].parent.clone( false, true );
+						retval.append( rootNode );
+					}
+					currentListItem = rootNode.append( doc.createElement( 'li' ) );
+					for ( var i = 0 ; i < item.contents.length ; i++ )
+						currentListItem.append( item.contents[i].clone( true, true ) );
+					currentIndex++;
+				}
+				else if ( item.indent == Math.max( indentLevel, 0 ) + 1 )
+				{
+					var listData = CKEDITOR.plugins.list.arrayToList( listArray, null, currentIndex, paragraphMode );
+					currentListItem.append( listData.listNode );
+					currentIndex = listData.nextIndex;
+				}
+				else if ( item.indent == -1 && !baseIndex && item.grandparent )
+				{
+					currentListItem;
+					if ( listNodeNames[ item.grandparent.getName() ] )
+						currentListItem = doc.createElement( 'li' );
+					else
+					{
+						if ( paragraphMode != CKEDITOR.ENTER_BR && item.grandparent.getName() != 'td' )
+							currentListItem = doc.createElement( paragraphName );
+						else
+							currentListItem = new CKEDITOR.dom.documentFragment( doc );
+					}
+
+					for ( i = 0 ; i < item.contents.length ; i++ )
+						currentListItem.append( item.contents[i].clone( true, true ) );
+
+					if ( currentListItem.type == CKEDITOR.NODE_DOCUMENT_FRAGMENT )
+					{
+						if ( currentListItem.getLast()
+								&& currentListItem.getLast().type == CKEDITOR.NODE_ELEMENT
+								&& currentListItem.getLast().getAttribute( 'type' ) == '_moz' )
+							currentListItem.getLast().remove();
+						currentListItem.appendBogus();
+					}
+
+					if ( currentListItem.type == CKEDITOR.NODE_ELEMENT &&
+							currentListItem.getName() == paragraphName &&
+							currentListItem.$.firstChild )
+					{
+						currentListItem.trim();
+						var firstChild = currentListItem.getFirst();
+						if ( firstChild.type == CKEDITOR.NODE_ELEMENT && firstChild.isBlockBoundary() )
+						{
+							var tmp = new CKEDITOR.dom.documentFragment( doc );
+							currentListItem.moveChildren( tmp );
+							currentListItem = tmp;
+						}
+					}
+
+					var currentListItemName = currentListItem.$.nodeName.toLowerCase();
+					if ( !CKEDITOR.env.ie && ( currentListItemName == 'div' || currentListItemName == 'p' ) )
+						currentListItem.appendBogus();
+					retval.append( currentListItem );
+					rootNode = null;
+					currentIndex++;
+				}
+				else
+					return null;
+
+				if ( listArray.length <= currentIndex || Math.max( listArray[ currentIndex ].indent, 0 ) < indentLevel )
+					break;
+			}
+
+			// Clear marker attributes for the new list tree made of cloned nodes, if any.
+			if ( database )
+			{
+				var currentNode = retval.getFirst();
+				while ( currentNode )
+				{
+					if ( currentNode.type == CKEDITOR.NODE_ELEMENT )
+						CKEDITOR.dom.element.clearMarkers( database, currentNode );
+					currentNode = currentNode.getNextSourceNode();
+				}
+			}
+
+			return { listNode : retval, nextIndex : currentIndex };
+		}
+	};
+
+	function setState( editor, state )
+	{
+		editor.getCommand( this.name ).setState( state );
+	}
+
+	function onSelectionChange( evt )
+	{
+		var elements = evt.data.path.elements;
+
+		for ( var i = 0 ; i < elements.length ; i++ )
+		{
+			if ( listNodeNames[ elements[i].getName() ] )
+			{
+				return setState.call( this, evt.editor,
+						this.type == elements[i].getName() ? CKEDITOR.TRISTATE_ON : CKEDITOR.TRISTATE_OFF );
+			}
+		}
+
+		return setState.call( this, evt.editor, CKEDITOR.TRISTATE_OFF );
+	}
+
+	function changeListType( editor, groupObj, database, listsCreated )
+	{
+		// This case is easy...
+		// 1. Convert the whole list into a one-dimensional array.
+		// 2. Change the list type by modifying the array.
+		// 3. Recreate the whole list by converting the array to a list.
+		// 4. Replace the original list with the recreated list.
+		var listArray = CKEDITOR.plugins.list.listToArray( groupObj.root, database ),
+			selectedListItems = [];
+
+		for ( var i = 0 ; i < groupObj.contents.length ; i++ )
+		{
+			var itemNode = groupObj.contents[i];
+			itemNode = itemNode.getAscendant( 'li', true );
+			if ( !itemNode || itemNode.getCustomData( 'list_item_processed' ) )
+				continue;
+			selectedListItems.push( itemNode );
+			CKEDITOR.dom.element.setMarker( database, itemNode, 'list_item_processed', true );
+		}
+
+		var fakeParent = groupObj.root.getDocument().createElement( this.type );
+		for ( i = 0 ; i < selectedListItems.length ; i++ )
+		{
+			var listIndex = selectedListItems[i].getCustomData( 'listarray_index' );
+			listArray[listIndex].parent = fakeParent;
+		}
+		var newList = CKEDITOR.plugins.list.arrayToList( listArray, database, null, editor.config.enterMode );
+		var child, length = newList.listNode.getChildCount();
+		for ( i = 0 ; i < length && ( child = newList.listNode.getChild( i ) ) ; i++ )
+		{
+			if ( child.getName() == this.type )
+				listsCreated.push( child );
+		}
+		newList.listNode.replace( groupObj.root );
+	}
+
+	function createList( editor, groupObj, listsCreated )
+	{
+		var contents = groupObj.contents,
+			doc = groupObj.root.getDocument(),
+			listContents = [];
+
+		// It is possible to have the contents returned by DomRangeIterator to be the same as the root.
+		// e.g. when we're running into table cells.
+		// In such a case, enclose the childNodes of contents[0] into a <div>.
+		if ( contents.length == 1 && contents[0].equals( groupObj.root ) )
+		{
+			var divBlock = doc.createElement( 'div' );
+			contents[0].moveChildren && contents[0].moveChildren( divBlock );
+			contents[0].append( divBlock );
+			contents[0] = divBlock;
+		}
+
+		// Calculate the common parent node of all content blocks.
+		var commonParent = groupObj.contents[0].getParent();
+		for ( var i = 0 ; i < contents.length ; i++ )
+			commonParent = commonParent.getCommonAncestor( contents[i].getParent() );
+
+		// We want to insert things that are in the same tree level only, so calculate the contents again
+		// by expanding the selected blocks to the same tree level.
+		for ( i = 0 ; i < contents.length ; i++ )
+		{
+			var contentNode = contents[i],
+				parentNode;
+			while ( ( parentNode = contentNode.getParent() ) )
+			{
+				if ( parentNode.equals( commonParent ) )
+				{
+					listContents.push( contentNode );
+					break;
+				}
+				contentNode = parentNode;
+			}
+		}
+
+		if ( listContents.length < 1 )
+			return;
+
+		// Insert the list to the DOM tree.
+		var insertAnchor = listContents[ listContents.length - 1 ].getNext(),
+			listNode = doc.createElement( this.type );
+
+		listsCreated.push( listNode );
+		while ( listContents.length )
+		{
+			var contentBlock = listContents.shift(),
+				listItem = doc.createElement( 'li' );
+			contentBlock.moveChildren( listItem );
+			contentBlock.remove();
+			listItem.appendTo( listNode );
+
+			// Append a bogus BR to force the LI to render at full height
+			if ( !CKEDITOR.env.ie )
+				listItem.appendBogus();
+		}
+		if ( insertAnchor )
+			listNode.insertBefore( insertAnchor );
+		else
+			listNode.appendTo( commonParent );
+	}
+
+	function removeList( editor, groupObj, database )
+	{
+		// This is very much like the change list type operation.
+		// Except that we're changing the selected items' indent to -1 in the list array.
+		var listArray = CKEDITOR.plugins.list.listToArray( groupObj.root, database ),
+			selectedListItems = [];
+
+		for ( var i = 0 ; i < groupObj.contents.length ; i++ )
+		{
+			var itemNode = groupObj.contents[i];
+			itemNode = itemNode.getAscendant( 'li', true );
+			if ( !itemNode || itemNode.getCustomData( 'list_item_processed' ) )
+				continue;
+			selectedListItems.push( itemNode );
+			CKEDITOR.dom.element.setMarker( database, itemNode, 'list_item_processed', true );
+		}
+
+		var lastListIndex = null;
+		for ( i = 0 ; i < selectedListItems.length ; i++ )
+		{
+			var listIndex = selectedListItems[i].getCustomData( 'listarray_index' );
+			listArray[listIndex].indent = -1;
+			lastListIndex = listIndex;
+		}
+
+		// After cutting parts of the list out with indent=-1, we still have to maintain the array list
+		// model's nextItem.indent <= currentItem.indent + 1 invariant. Otherwise the array model of the
+		// list cannot be converted back to a real DOM list.
+		for ( i = lastListIndex + 1 ; i < listArray.length ; i++ )
+		{
+			if ( listArray[i].indent > listArray[i-1].indent + 1 )
+			{
+				var indentOffset = listArray[i-1].indent + 1 - listArray[i].indent;
+				var oldIndent = listArray[i].indent;
+				while ( listArray[i] && listArray[i].indent >= oldIndent )
+				{
+					listArray[i].indent += indentOffset;
+					i++;
+				}
+				i--;
+			}
+		}
+
+		var newList = CKEDITOR.plugins.list.arrayToList( listArray, database, null, editor.config.enterMode );
+		// If groupObj.root is the last element in its parent, or its nextSibling is a <br>, then we should
+		// not add a <br> after the final item. So, check for the cases and trim the <br>.
+		if ( !groupObj.root.getNext() || groupObj.root.getNext().$.nodeName.toLowerCase() == 'br' )
+		{
+			if ( newList.listNode.getLast().$.nodeName.toLowerCase() == 'br' )
+				newList.listNode.getLast().remove();
+		}
+		newList.listNode.replace( groupObj.root );
+	}
+
+	function listCommand( name, type )
+	{
+		this.name = name;
+		this.type = type;
+	}
+
+	listCommand.prototype = {
+		exec : function( editor )
+		{
+			editor.focus();
+
+			var doc = editor.document,
+				selection = editor.getSelection(),
+				ranges = selection && selection.getRanges();
+
+			// There should be at least one selected range.
+			if ( !ranges || ranges.length < 1 )
+				return;
+
+			// Midas lists rule #1 says we can create a list even in an empty document.
+			// But DOM iterator wouldn't run if the document is really empty.
+			// So create a paragraph if the document is empty and we're going to create a list.
+			if ( this.state == CKEDITOR.TRISTATE_OFF )
+			{
+				var body = doc.getBody();
+				body.trim();
+				if ( !body.getFirst() )
+				{
+					var paragraph = doc.createElement( editor.config.enterMode == CKEDITOR.ENTER_P ? 'p' :
+							( editor.config.enterMode == CKEDITOR.ENTER_DIV ? 'div' : 'br' ) );
+					paragraph.appendTo( body );
+					ranges = [ new CKEDITOR.dom.range( doc ) ];
+					// IE exception on inserting anything when anchor inside <br>.
+					if ( paragraph.is( 'br' ) )
+					{
+						ranges[ 0 ].setStartBefore( paragraph );
+						ranges[ 0 ].setEndAfter( paragraph );
+					}
+					else
+						ranges[ 0 ].selectNodeContents( paragraph );
+					selection.selectRanges( ranges );
+				}
+			}
+
+			var bookmarks = selection.createBookmarks( true );
+
+			// Group the blocks up because there are many cases where multiple lists have to be created,
+			// or multiple lists have to be cancelled.
+			var listGroups = [],
+				database = {};
+
+			while ( ranges.length > 0 )
+			{
+				var range = ranges.shift(),
+					boundaryNodes = range.getBoundaryNodes(),
+					startNode = boundaryNodes.startNode,
+					endNode = boundaryNodes.endNode;
+				if ( startNode.type == CKEDITOR.NODE_ELEMENT && startNode.getName() == 'td' )
+					range.setStartAt( boundaryNodes.startNode, CKEDITOR.POSITION_AFTER_START );
+				if ( endNode.type == CKEDITOR.NODE_ELEMENT && endNode.getName() == 'td' )
+					range.setEndAt( boundaryNodes.endNode, CKEDITOR.POSITION_BEFORE_END );
+
+				var iterator = range.createIterator(),
+					block;
+				iterator.forceBrBreak = ( this.state == CKEDITOR.TRISTATE_OFF );
+
+				while ( ( block = iterator.getNextParagraph() ) )
+				{
+					var path = new CKEDITOR.dom.elementPath( block ),
+						listNode = null,
+						processedFlag = false,
+						blockLimit = path.blockLimit;
+
+					// First, try to group by a list ancestor.
+					for ( var i = 0 ; i < path.elements.length ; i++ )
+					{
+						var element = path.elements[i];
+						if ( listNodeNames[ element.getName() ] )
+						{
+							// If we've encountered a list inside a block limit
+							// The last group object of the block limit element should
+							// no longer be valid. Since paragraphs after the list
+							// should belong to a different group of paragraphs before
+							// the list. (Bug #1309)
+							blockLimit.removeCustomData( 'list_group_object' );
+
+							var groupObj = element.getCustomData( 'list_group_object' );
+							if ( groupObj )
+								groupObj.contents.push( block );
+							else
+							{
+								groupObj = { root : element, contents : [ block ] };
+								listGroups.push( groupObj );
+								CKEDITOR.dom.element.setMarker( database, element, 'list_group_object', groupObj );
+							}
+							processedFlag = true;
+							break;
+						}
+					}
+
+					if ( processedFlag )
+						continue;
+
+					// No list ancestor? Group by block limit.
+					var root = blockLimit;
+					if ( root.getCustomData( 'list_group_object' ) )
+						root.getCustomData( 'list_group_object' ).contents.push( block );
+					else
+					{
+						groupObj = { root : root, contents : [ block ] };
+						CKEDITOR.dom.element.setMarker( database, root, 'list_group_object', groupObj );
+						listGroups.push( groupObj );
+					}
+				}
+			}
+
+			// Now we have two kinds of list groups, groups rooted at a list, and groups rooted at a block limit element.
+			// We either have to build lists or remove lists, for removing a list does not makes sense when we are looking
+			// at the group that's not rooted at lists. So we have three cases to handle.
+			var listsCreated = [];
+			while ( listGroups.length > 0 )
+			{
+				groupObj = listGroups.shift();
+				if ( this.state == CKEDITOR.TRISTATE_OFF )
+				{
+					if ( listNodeNames[ groupObj.root.getName() ] )
+						changeListType.call( this, editor, groupObj, database, listsCreated );
+					else
+						createList.call( this, editor, groupObj, listsCreated );
+				}
+				else if ( this.state == CKEDITOR.TRISTATE_ON && listNodeNames[ groupObj.root.getName() ] )
+					removeList.call( this, editor, groupObj, database );
+			}
+
+			// For all new lists created, merge adjacent, same type lists.
+			for ( i = 0 ; i < listsCreated.length ; i++ )
+			{
+				listNode = listsCreated[i];
+				var mergeSibling, listCommand = this;
+				( mergeSibling = function( rtl ){
+
+					var sibling = listNode[ rtl ? 'getPrevious' : 'getNext' ].call( listNode, true );
+					if ( sibling && sibling.getName &&
+					     sibling.getName() == listCommand.type )
+					{
+						sibling.remove();
+						sibling.moveChildren( listNode );
+					}
+				} )();
+				mergeSibling( true );
+			}
+
+			// Clean up, restore selection and update toolbar button states.
+			CKEDITOR.dom.element.clearAllMarkers( database );
+			selection.selectBookmarks( bookmarks );
+			editor.focus();
+		}
+	};
+
+	CKEDITOR.plugins.add( 'list',
+	{
+		init : function( editor )
+		{
+			// Register commands.
+			var numberedListCommand = new listCommand( 'numberedlist', 'ol' ),
+				bulletedListCommand = new listCommand( 'bulletedlist', 'ul' );
+			editor.addCommand( 'numberedlist', numberedListCommand );
+			editor.addCommand( 'bulletedlist', bulletedListCommand );
+
+			// Register the toolbar button.
+			editor.ui.addButton( 'NumberedList',
+				{
+					label : editor.lang.numberedlist,
+					command : 'numberedlist'
+				} );
+			editor.ui.addButton( 'BulletedList',
+				{
+					label : editor.lang.bulletedlist,
+					command : 'bulletedlist'
+				} );
+
+			// Register the state changing handlers.
+			editor.on( 'selectionChange', CKEDITOR.tools.bind( onSelectionChange, numberedListCommand ) );
+			editor.on( 'selectionChange', CKEDITOR.tools.bind( onSelectionChange, bulletedListCommand ) );
+		},
+
+		requires : [ 'domiterator' ]
+	} );
+})();
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/listblock/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/listblock/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/listblock/plugin.js	(revision 3747)
@@ -0,0 +1,231 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.plugins.add( 'listblock',
+{
+	requires : [ 'panel' ],
+
+	onLoad : function()
+	{
+		CKEDITOR.ui.panel.prototype.addListBlock = function( name, multiSelect )
+		{
+			return this.addBlock( name, new CKEDITOR.ui.listBlock( this.getHolderElement(), multiSelect ) );
+		};
+
+		CKEDITOR.ui.listBlock = CKEDITOR.tools.createClass(
+			{
+				base : CKEDITOR.ui.panel.block,
+
+				$ : function( blockHolder, multiSelect )
+				{
+					// Call the base contructor.
+					this.base( blockHolder );
+
+					this.multiSelect = !!multiSelect;
+
+					var keys = this.keys;
+					keys[ 40 ]	= 'next';					// ARROW-DOWN
+					keys[ 9 ]	= 'next';					// TAB
+					keys[ 38 ]	= 'prev';					// ARROW-UP
+					keys[ CKEDITOR.SHIFT + 9 ]	= 'prev';	// SHIFT + TAB
+					keys[ 32 ]	= 'click';					// SPACE
+
+					this._.pendingHtml = [];
+					this._.items = {};
+					this._.groups = {};
+				},
+
+				_ :
+				{
+					close : function()
+					{
+						if ( this._.started )
+						{
+							this._.pendingHtml.push( '</ul>' );
+							delete this._.started;
+						}
+					},
+
+					getClick : function()
+					{
+						if ( !this._.click )
+						{
+							this._.click = CKEDITOR.tools.addFunction( function( value )
+								{
+									var marked = true;
+
+									if ( this.multiSelect )
+										marked = this.toggle( value );
+									else
+										this.mark( value );
+
+									if ( this.onClick )
+										this.onClick( value, marked );
+								},
+								this );
+						}
+						return this._.click;
+					}
+				},
+
+				proto :
+				{
+					add : function( value, html, title )
+					{
+						var pendingHtml = this._.pendingHtml,
+							id = 'cke_' + CKEDITOR.tools.getNextNumber();
+
+						if ( !this._.started )
+						{
+							pendingHtml.push( '<ul class=cke_panel_list>' );
+							this._.started = 1;
+						}
+
+						this._.items[ value ] = id;
+
+						pendingHtml.push(
+							'<li id=', id, ' class=cke_panel_listItem>' +
+								'<a _cke_focus=1 hidefocus=true' +
+									' title="', title || value, '"' +
+									' href="javascript:void(\'', value, '\')"' +
+									' onclick="CKEDITOR.tools.callFunction(', this._.getClick(), ',\'', value, '\'); return false;">',
+									html || value,
+								'</a>' +
+							'</li>' );
+					},
+
+					startGroup : function( title )
+					{
+						this._.close();
+
+						var id = 'cke_' + CKEDITOR.tools.getNextNumber();
+
+						this._.groups[ title ] = id;
+
+						this._.pendingHtml.push( '<h1 id=', id, ' class=cke_panel_grouptitle>', title, '</h1>' );
+					},
+
+					commit : function()
+					{
+						this._.close();
+						this.element.appendHtml( this._.pendingHtml.join( '' ) );
+						this._.pendingHtml = [];
+					},
+
+					toggle : function( value )
+					{
+						var isMarked = this.isMarked( value );
+
+						if ( isMarked )
+							this.unmark( value );
+						else
+							this.mark( value );
+
+						return !isMarked;
+					},
+
+					hideGroup : function( groupTitle )
+					{
+						var group = this.element.getDocument().getById( this._.groups[ groupTitle ] ),
+							list = group && group.getNext();
+
+						if ( group )
+						{
+							group.setStyle( 'display', 'none' );
+
+							if ( list && list.getName() == 'ul' )
+								list.setStyle( 'display', 'none' );
+						}
+					},
+
+					hideItem : function( value )
+					{
+						this.element.getDocument().getById( this._.items[ value ] ).setStyle( 'display', 'none' );
+					},
+
+					showAll : function()
+					{
+						var items = this._.items,
+							groups = this._.groups,
+							doc = this.element.getDocument();
+
+						for ( var value in items )
+						{
+							doc.getById( items[ value ] ).setStyle( 'display', '' );
+						}
+
+						for ( var title in groups )
+						{
+							var group = doc.getById( groups[ title ] ),
+								list = group.getNext();
+
+							group.setStyle( 'display', '' );
+
+							if ( list && list.getName() == 'ul' )
+								list.setStyle( 'display', '' );
+						}
+					},
+
+					mark : function( value )
+					{
+						if ( !this.multiSelect )
+							this.unmarkAll();
+
+						this.element.getDocument().getById( this._.items[ value ] ).addClass( 'cke_selected' );
+					},
+
+					unmark : function( value )
+					{
+						this.element.getDocument().getById( this._.items[ value ] ).removeClass( 'cke_selected' );
+					},
+
+					unmarkAll : function()
+					{
+						var items = this._.items,
+							doc = this.element.getDocument();
+
+						for ( var value in items )
+						{
+							doc.getById( items[ value ] ).removeClass( 'cke_selected' );
+						}
+					},
+
+					isMarked : function( value )
+					{
+						return this.element.getDocument().getById( this._.items[ value ] ).hasClass( 'cke_selected' );
+					},
+
+					focus : function( value )
+					{
+						this._.focusIndex = -1;
+
+						if ( value )
+						{
+							var selected = this.element.getDocument().getById( this._.items[ value ] ).getFirst();
+
+							var links = this.element.getElementsByTag( 'a' ),
+								link,
+								i = -1;
+
+							while( ( link = links.getItem( ++i ) ) )
+							{
+								if ( link.equals( selected ) )
+								{
+									this._.focusIndex = i;
+									break;
+								}
+							}
+
+							setTimeout( function()
+								{
+									selected.focus();
+								},
+								0 );
+						}
+					}
+				}
+			});
+	}
+});
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/maximize/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/maximize/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/maximize/plugin.js	(revision 3747)
@@ -0,0 +1,267 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+(function()
+{
+	function protectFormStyles( formElement )
+	{
+		if ( !formElement || formElement.type != CKEDITOR.NODE_ELEMENT || formElement.getName() != 'form' )
+			return [];
+
+		var hijackRecord = [];
+		var hijackNames = [ 'style', 'className' ];
+		for ( var i = 0 ; i < hijackNames.length ; i++ )
+		{
+			var name = hijackNames[i];
+			var $node = formElement.$.elements.namedItem( name );
+			if ( $node )
+			{
+				var hijackNode = new CKEDITOR.dom.element( $node );
+				hijackRecord.push( [ hijackNode, hijackNode.nextSibling ] );
+				hijackNode.remove();
+			}
+		}
+
+		return hijackRecord;
+	}
+
+	function restoreFormStyles( formElement, hijackRecord )
+	{
+		if ( !formElement || formElement.type != CKEDITOR.NODE_ELEMENT || formElement.getName() != 'form' )
+			return;
+
+		if ( hijackRecord.length > 0 )
+		{
+			for ( var i = hijackRecord.length - 1 ; i >= 0 ; i-- )
+			{
+				var node = hijackRecord[i][0];
+				var sibling = hijackRecord[i][1];
+				if ( sibling )
+					node.insertBefore( sibling );
+				else
+					node.appendTo( formElement );
+			}
+		}
+	}
+
+	function saveStyles( element, isInsideEditor )
+	{
+		var data = protectFormStyles( element );
+		var retval = {};
+
+		var $element = element.$;
+
+		if ( !isInsideEditor )
+		{
+			retval[ 'class' ] = $element.className || '';
+			$element.className = '';
+		}
+
+		retval.inline = $element.style.cssText || '';
+		if ( !isInsideEditor )		// Reset any external styles that might interfere. (#2474)
+			$element.style.cssText = 'position: static; overflow: visible';
+
+		restoreFormStyles( data );
+		return retval;
+	}
+
+	function restoreStyles( element, savedStyles )
+	{
+		var data = protectFormStyles( element );
+		var $element = element.$;
+		if ( 'class' in savedStyles )
+			$element.className = savedStyles[ 'class' ];
+		if ( 'inline' in savedStyles )
+			$element.style.cssText = savedStyles.inline;
+		restoreFormStyles( data );
+	}
+
+	function getResizeHandler( mainWindow, editor )
+	{
+		return function()
+		{
+			var viewPaneSize = mainWindow.getViewPaneSize();
+			editor.resize( viewPaneSize.width, viewPaneSize.height, null, true );
+		};
+	}
+
+	CKEDITOR.plugins.add( 'maximize',
+	{
+		init : function( editor )
+		{
+			var lang = editor.lang;
+			var mainDocument = CKEDITOR.document;
+			var mainWindow = mainDocument.getWindow();
+
+			// Saved selection and scroll position for the editing area.
+			var savedSelection;
+			var savedScroll;
+
+			// Saved scroll position for the outer window.
+			var outerScroll;
+
+			// Saved resize handler function.
+			var resizeHandler = getResizeHandler( mainWindow, editor );
+
+			// Retain state after mode switches.
+			var savedState = CKEDITOR.TRISTATE_OFF;
+
+			editor.addCommand( 'maximize',
+				{
+					modes : { wysiwyg : 1, source : 1 },
+
+					exec : function()
+					{
+						var container = editor.container.getChild( [ 0, 0 ] );
+						var contents = editor.getThemeSpace( 'contents' );
+
+						// Save current selection and scroll position in editing area.
+						if ( editor.mode == 'wysiwyg' )
+						{
+							savedSelection = editor.getSelection().getRanges();
+							savedScroll = mainWindow.getScrollPosition();
+						}
+						else
+						{
+							var $textarea = editor.textarea.$;
+							savedSelection = !CKEDITOR.env.ie && [ $textarea.selectionStart, $textarea.selectionEnd ];
+							savedScroll = [ $textarea.scrollLeft, $textarea.scrollTop ];
+						}
+
+						if ( this.state == CKEDITOR.TRISTATE_OFF )		// Go fullscreen if the state is off.
+						{
+							// Add event handler for resizing.
+							mainWindow.on( 'resize', resizeHandler );
+
+							// Save the scroll bar position.
+							outerScroll = mainWindow.getScrollPosition();
+
+							// Save and reset the styles for the entire node tree.
+							var currentNode = editor.container;
+							while ( ( currentNode = currentNode.getParent() ) )
+							{
+								currentNode.setCustomData( 'maximize_saved_styles', saveStyles( currentNode ) );
+								currentNode.setStyle( 'z-index', editor.config.baseFloatZIndex - 1 );
+							}
+							contents.setCustomData( 'maximize_saved_styles', saveStyles( contents, true ) );
+							container.setCustomData( 'maximize_saved_styles', saveStyles( container, true ) );
+
+							// Hide scroll bars.
+							if ( CKEDITOR.env.ie )
+							{
+								mainDocument.$.documentElement.style.overflow =
+									mainDocument.getBody().$.style.overflow = 'hidden';
+							}
+							else
+							{
+								mainDocument.getBody().setStyles(
+									{
+										overflow : 'hidden',
+										width : '0px',
+										height : '0px'
+									} );
+							}
+
+							// Scroll to the top left.
+							mainWindow.$.scrollTo( 0, 0 );
+
+							// Resize and move to top left.
+							var viewPaneSize = mainWindow.getViewPaneSize();
+							container.setStyle( 'position', 'absolute' );
+							container.$.offsetLeft;			// SAFARI BUG: See #2066.
+							container.setStyles(
+								{
+									'z-index' : editor.config.baseFloatZIndex - 1,
+									left : '0px',
+									top : '0px'
+								} );
+							editor.resize( viewPaneSize.width, viewPaneSize.height, null, true );
+
+							// Still not top left? Fix it. (Bug #174)
+							var offset = container.getDocumentPosition();
+							container.setStyles(
+								{
+									left : ( -1 * offset.x ) + 'px',
+									top : ( -1 * offset.y ) + 'px'
+								} );
+
+							// Add cke_maximized class.
+							container.addClass( 'cke_maximized' );
+						}
+						else if ( this.state == CKEDITOR.TRISTATE_ON )	// Restore from fullscreen if the state is on.
+						{
+							// Remove event handler for resizing.
+							mainWindow.removeListener( 'resize', resizeHandler );
+
+							// Restore CSS styles for the entire node tree.
+							var editorElements = [ contents, container ];
+							for ( var i = 0 ; i < editorElements.length ; i++ )
+							{
+								restoreStyles( editorElements[i], editorElements[i].getCustomData( 'maximize_saved_styles' ) );
+								editorElements[i].removeCustomData( 'maximize_saved_styles' );
+							}
+
+							currentNode = editor.container;
+							while ( ( currentNode = currentNode.getParent() ) )
+							{
+								restoreStyles( currentNode, currentNode.getCustomData( 'maximize_saved_styles' ) );
+								currentNode.removeCustomData( 'maximize_saved_styles' );
+							}
+
+							// Restore the window scroll position.
+							mainWindow.$.scrollTo( outerScroll.x, outerScroll.y );
+
+							// Remove cke_maximized class.
+							container.removeClass( 'cke_maximized' );
+
+							// Emit a resize event, because this time the size is modified in
+							// restoreStyles.
+							editor.fire( 'resize' );
+						}
+
+						this.toggleState();
+
+						// Restore selection and scroll position in editing area.
+						if ( editor.mode == 'wysiwyg' )
+						{
+							editor.getSelection().selectRanges( savedSelection );
+
+							var element = editor.getSelection().getStartElement();
+							if ( element )
+								element.scrollIntoView( true );
+							else
+								mainWindow.$.scrollTo( savedScroll.x, savedScroll.y );
+						}
+						else
+						{
+							if ( savedSelection )
+							{
+								$textarea.selectionStart = savedSelection[0];
+								$textarea.selectionEnd = savedSelection[1];
+							}
+							$textarea.scrollLeft = savedScroll[0];
+							$textarea.scrollTop = savedScroll[1];
+						}
+
+						savedSelection = savedScroll = null;
+						savedState = this.state;
+					},
+					canUndo : false
+				} );
+
+			editor.ui.addButton( 'Maximize',
+				{
+					label : lang.maximize,
+					command : 'maximize'
+				} );
+
+			// Restore the command state after mode change.
+			editor.on( 'mode', function()
+				{
+					editor.getCommand( 'maximize' ).setState( savedState );
+				}, null, null, 100 );
+		}
+	} );
+})();
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/menu/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/menu/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/menu/plugin.js	(revision 3747)
@@ -0,0 +1,351 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.plugins.add( 'menu',
+{
+	beforeInit : function( editor )
+	{
+		var groups = editor.config.menu_groups.split( ',' ),
+			groupsOrder = {};
+
+		for ( var i = 0 ; i < groups.length ; i++ )
+			groupsOrder[ groups[ i ] ] = i + 1;
+
+		editor._.menuGroups = groupsOrder;
+		editor._.menuItems = {};
+	},
+
+	requires : [ 'floatpanel' ]
+});
+
+CKEDITOR.tools.extend( CKEDITOR.editor.prototype,
+{
+	addMenuGroup : function( name, order )
+	{
+		this._.menuGroups[ name ] = order || 100;
+	},
+
+	addMenuItem : function( name, definition )
+	{
+		if ( this._.menuGroups[ definition.group ] )
+			this._.menuItems[ name ] = new CKEDITOR.menuItem( this, name, definition );
+	},
+
+	addMenuItems : function( definitions )
+	{
+		for ( var itemName in definitions )
+		{
+			this.addMenuItem( itemName, definitions[ itemName ] );
+		}
+	},
+
+	getMenuItem : function( name )
+	{
+		return this._.menuItems[ name ];
+	}
+});
+
+(function()
+{
+	CKEDITOR.menu = CKEDITOR.tools.createClass(
+	{
+		$ : function( editor, level )
+		{
+			this.id = 'cke_' + CKEDITOR.tools.getNextNumber();
+
+			this.editor = editor;
+			this.items = [];
+
+			this._.level = level || 1;
+		},
+
+		_ :
+		{
+			showSubMenu : function( index )
+			{
+				var menu = this._.subMenu,
+					item = this.items[ index ],
+					subItems = item.getItems && item.getItems();
+
+				// If this item has no subitems, we just hide the submenu, if
+				// available, and return back.
+				if ( !subItems )
+				{
+					this._.panel.hideChild();
+					return;
+				}
+
+				// Create the submenu, if not available, or clean the existing
+				// one.
+				if ( menu )
+					menu.removeAll();
+				else
+				{
+					menu = this._.subMenu = new CKEDITOR.menu( this.editor, this._.level + 1 );
+					menu.parent = this;
+					menu.onClick = CKEDITOR.tools.bind( this.onClick, this );
+				}
+
+				// Add all submenu items to the menu.
+				for ( var itemName in subItems )
+				{
+					menu.add( this.editor.getMenuItem( itemName ) );
+				}
+
+				// Get the element representing the current item.
+				var element = this._.panel.getBlock( this.id ).element.getDocument().getById( this.id + String( index ) );
+
+				// Show the submenu.
+				menu.show( element, 2 );
+			}
+		},
+
+		proto :
+		{
+			add : function( item )
+			{
+				this.items.push( item );
+			},
+
+			removeAll : function()
+			{
+				this.items = [];
+			},
+
+			show : function( offsetParent, corner, offsetX, offsetY )
+			{
+				var items = this.items,
+					editor = this.editor,
+					panel = this._.panel,
+					element = this._.element;
+
+				// Create the floating panel for this menu.
+				if ( !panel )
+				{
+					panel = this._.panel = new CKEDITOR.ui.floatPanel( this.editor, CKEDITOR.document.getBody(),
+						{
+							css : [ CKEDITOR.getUrl( editor.skinPath + 'editor.css' ) ],
+							level : this._.level - 1,
+							className : editor.skinClass + ' cke_contextmenu'
+						},
+						this._.level);
+
+					panel.onEscape = CKEDITOR.tools.bind( function()
+					{
+						this.onEscape && this.onEscape();
+						this.hide();
+					},
+					this );
+
+					panel.onHide = CKEDITOR.tools.bind( function()
+					{
+						this.onHide && this.onHide();
+					},
+					this );
+
+					// Create an autosize block inside the panel.
+					var block = panel.addBlock( this.id );
+					block.autoSize = true;
+
+					var keys = block.keys;
+					keys[ 40 ]	= 'next';					// ARROW-DOWN
+					keys[ 9 ]	= 'next';					// TAB
+					keys[ 38 ]	= 'prev';					// ARROW-UP
+					keys[ CKEDITOR.SHIFT + 9 ]	= 'prev';	// SHIFT + TAB
+					keys[ 32 ]	= 'click';					// SPACE
+					keys[ 39 ]	= 'click';					// ARROW-RIGHT
+
+					element = this._.element = block.element;
+					element.addClass( editor.skinClass );
+
+					var elementDoc = element.getDocument();
+					elementDoc.getBody().setStyle( 'overflow', 'hidden' );
+					elementDoc.getElementsByTag( 'html' ).getItem( 0 ).setStyle( 'overflow', 'hidden' );
+
+					this._.itemOverFn = CKEDITOR.tools.addFunction( function( index )
+						{
+							clearTimeout( this._.showSubTimeout );
+							this._.showSubTimeout = CKEDITOR.tools.setTimeout( this._.showSubMenu, editor.config.menu_subMenuDelay, this, [ index ] );
+						},
+						this);
+
+					this._.itemOutFn = CKEDITOR.tools.addFunction( function( index )
+						{
+							clearTimeout( this._.showSubTimeout );
+						},
+						this);
+
+					this._.itemClickFn = CKEDITOR.tools.addFunction( function( index )
+						{
+							var item = this.items[ index ];
+
+							if ( item.state == CKEDITOR.TRISTATE_DISABLED )
+							{
+								this.hide();
+								return;
+							}
+
+							if ( item.getItems )
+								this._.showSubMenu( index );
+							else
+								this.onClick && this.onClick( item );
+						},
+						this);
+				}
+
+				// Put the items in the right order.
+				sortItems( items );
+
+				// Build the HTML that composes the menu and its items.
+				var output = [ '<div class="cke_menu">' ];
+
+				var length = items.length,
+					lastGroup = length && items[ 0 ].group;
+
+				for ( var i = 0 ; i < length ; i++ )
+				{
+					var item = items[ i ];
+					if ( lastGroup != item.group )
+					{
+						output.push( '<div class="cke_menuseparator"></div>' );
+						lastGroup = item.group;
+					}
+
+					item.render( this, i, output );
+				}
+
+				output.push( '</div>' );
+
+				// Inject the HTML inside the panel.
+				element.setHtml( output.join( '' ) );
+
+				// Show the panel.
+				if ( this.parent )
+					this.parent._.panel.showAsChild( panel, this.id, offsetParent, corner, offsetX, offsetY );
+				else
+					panel.showBlock( this.id, offsetParent, corner, offsetX, offsetY );
+			},
+
+			hide : function()
+			{
+				this._.panel && this._.panel.hide();
+			}
+		}
+	});
+
+	function sortItems( items )
+	{
+		items.sort( function( itemA, itemB )
+			{
+				if ( itemA.group < itemB.group )
+					return -1;
+				else if ( itemA.group > itemB.group )
+					return 1;
+
+				return itemA.order < itemB.order ? -1 :
+					itemA.order > itemB.order ? 1 :
+					0;
+			});
+	}
+})();
+
+CKEDITOR.menuItem = CKEDITOR.tools.createClass(
+{
+	$ : function( editor, name, definition )
+	{
+		CKEDITOR.tools.extend( this, definition,
+			// Defaults
+			{
+				order : 0,
+				className : 'cke_button_' + name
+			});
+
+		// Transform the group name into its order number.
+		this.group = editor._.menuGroups[ this.group ];
+
+		this.editor = editor;
+		this.name = name;
+	},
+
+	proto :
+	{
+		render : function( menu, index, output )
+		{
+			var id = menu.id + String( index ),
+				state = ( typeof this.state == 'undefined' ) ? CKEDITOR.TRISTATE_OFF : this.state;
+
+			var classes = ' cke_' + (
+				state == CKEDITOR.TRISTATE_ON ? 'on' :
+				state == CKEDITOR.TRISTATE_DISABLED ? 'disabled' :
+				'off' );
+
+			var htmlLabel = this.label;
+			if ( state == CKEDITOR.TRISTATE_DISABLED )
+				htmlLabel = this.editor.lang.common.unavailable.replace( '%1', htmlLabel );
+
+			if ( this.className )
+				classes += ' ' + this.className;
+
+			output.push(
+				'<span class="cke_menuitem">' +
+				'<a id="', id, '"' +
+					' class="', classes, '" href="javascript:void(\'', ( this.label || '' ).replace( "'", '' ), '\')"' +
+					' title="', this.label, '"' +
+					' tabindex="-1"' +
+					'_cke_focus=1' +
+					' hidefocus="true"' );
+
+			// Some browsers don't cancel key events in the keydown but in the
+			// keypress.
+			// TODO: Check if really needed for Gecko+Mac.
+			if ( CKEDITOR.env.opera || ( CKEDITOR.env.gecko && CKEDITOR.env.mac ) )
+			{
+				output.push(
+					' onkeypress="return false;"' );
+			}
+
+			// With Firefox, we need to force the button to redraw, otherwise it
+			// will remain in the focus state.
+			if ( CKEDITOR.env.gecko )
+			{
+				output.push(
+					' onblur="this.style.cssText = this.style.cssText;"' );
+			}
+
+			var offset = ( this.iconOffset || 0 ) * -16;
+			output.push(
+//					' onkeydown="return CKEDITOR.ui.button._.keydown(', index, ', event);"' +
+					' onmouseover="CKEDITOR.tools.callFunction(', menu._.itemOverFn, ',', index, ');"' +
+					' onmouseout="CKEDITOR.tools.callFunction(', menu._.itemOutFn, ',', index, ');"' +
+					' onclick="CKEDITOR.tools.callFunction(', menu._.itemClickFn, ',', index, '); return false;"' +
+					'>' +
+						'<span class="cke_icon_wrapper"><span class="cke_icon"' +
+							( this.icon ? ' style="background-image:url(' + CKEDITOR.getUrl( this.icon ) + ');background-position:0 ' + offset + 'px;"></span>'
+							: '' ) +
+							'></span></span>' +
+						'<span class="cke_label">' );
+
+			if ( this.getItems )
+			{
+				output.push(
+							'<span class="cke_menuarrow"></span>' );
+			}
+
+			output.push(
+							htmlLabel,
+						'</span>' +
+				'</a>' +
+				'</span>' );
+		}
+	}
+});
+
+CKEDITOR.config.menu_subMenuDelay = 400;
+CKEDITOR.config.menu_groups =
+	'clipboard,' +
+	'form,' +
+	'tablecell,tablecellproperties,tablerow,tablecolumn,table,'+
+	'anchor,link,image,flash,' +
+	'checkbox,radio,textfield,hiddenfield,imagebutton,button,select,textarea';
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/menubutton/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/menubutton/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/menubutton/plugin.js	(revision 3747)
@@ -0,0 +1,93 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.plugins.add( 'menubutton',
+{
+	requires : [ 'button' ],
+	beforeInit : function( editor )
+	{
+		editor.ui.addHandler( CKEDITOR.UI_MENUBUTTON, CKEDITOR.ui.menuButton.handler );
+	}
+});
+
+/**
+ * Button UI element.
+ * @constant
+ * @example
+ */
+CKEDITOR.UI_MENUBUTTON = 5;
+
+(function()
+{
+	var clickFn = function( editor )
+	{
+		var _ = this._;
+
+		// Do nothing if this button is disabled.
+		if ( _.state === CKEDITOR.TRISTATE_DISABLED )
+			return;
+
+		_.previousState = _.state;
+
+		// Check if we already have a menu for it, otherwise just create it.
+		var menu = _.menu;
+		if ( !menu )
+		{
+			menu = _.menu = new CKEDITOR.plugins.contextMenu( editor );
+
+			menu.onHide = CKEDITOR.tools.bind( function()
+				{
+					this.setState( _.previousState );
+				},
+				this );
+
+			// Initialize the menu items at this point.
+			if ( this.onMenu )
+			{
+				menu.addListener( this.onMenu );
+			}
+		}
+
+		if ( _.on )
+		{
+			menu.hide();
+			return;
+		}
+
+		this.setState( CKEDITOR.TRISTATE_ON );
+
+		menu.show( CKEDITOR.document.getById( this._.id ), 4 );
+	};
+
+
+	CKEDITOR.ui.menuButton = CKEDITOR.tools.createClass(
+	{
+		base : CKEDITOR.ui.button,
+
+		$ : function( definition )
+		{
+			// We don't want the panel definition in this object.
+			var panelDefinition = definition.panel;
+			delete definition.panel;
+
+			this.base( definition );
+
+			this.hasArrow = true;
+
+			this.click = clickFn;
+		},
+
+		statics :
+		{
+			handler :
+			{
+				create : function( definition )
+				{
+					return new CKEDITOR.ui.menuButton( definition );
+				}
+			}
+		}
+	});
+})();
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/newpage/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/newpage/plugin.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/newpage/plugin.js	(revision 3747)
@@ -11,17 +11,45 @@
 CKEDITOR.plugins.add( 'newpage',
 {
-	init : function( editor, pluginPath )
+	init : function( editor )
 	{
 		editor.addCommand( 'newpage',
 			{
+				modes : { wysiwyg:1, source:1 },
+
 				exec : function( editor )
 				{
+					var command = this;
+					function afterCommand()
+					{
+						// Defer to happen after 'selectionChange'.
+						setTimeout( function()
+						{
+							editor.fire( 'afterCommandExec',
+							{
+								name: command.name,
+								command: command
+							} );
+						}, 500 );
+					}
+					if ( editor.mode == 'wysiwyg')
+						editor.on( 'contentDom', function( evt ){
+
+							evt.removeListener();
+	                        afterCommand();
+						} );
+
 					editor.setData( editor.config.newpage_html );
-				}
+					editor.focus();
+
+					if( editor.mode == 'source' )
+						afterCommand();
+
+				},
+				async : true
 			});
 
 		editor.ui.addButton( 'NewPage',
 			{
-				label : editor.lang.newpage,
+				label : editor.lang.newPage,
 				command : 'newpage'
 			});
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/pagebreak/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/pagebreak/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/pagebreak/plugin.js	(revision 3747)
@@ -0,0 +1,96 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @file Horizontal Page Break
+ */
+
+// Register a plugin named "pagebreak".
+CKEDITOR.plugins.add( 'pagebreak',
+{
+	init : function( editor )
+	{
+		// Register the command.
+		editor.addCommand( 'pagebreak', CKEDITOR.plugins.pagebreakCmd );
+
+		// Register the toolbar button.
+		editor.ui.addButton( 'PageBreak',
+			{
+				label : editor.lang.pagebreak,
+				command : 'pagebreak'
+			});
+
+		// Add the style that renders our placeholder.
+		editor.addCss(
+			'img.cke_pagebreak' +
+			'{' +
+				'background-image: url(' + CKEDITOR.getUrl( this.path + 'images/pagebreak.gif' ) + ');' +
+				'background-position: center center;' +
+				'background-repeat: no-repeat;' +
+				'clear: both;' +
+				'display: block;' +
+				'float: none;' +
+				'width: 100%;' +
+				'border-top: #999999 1px dotted;' +
+				'border-bottom: #999999 1px dotted;' +
+				'height: 5px;' +
+
+			'}' );
+	},
+
+	afterInit : function( editor )
+	{
+		// Register a filter to displaying placeholders after mode change.
+
+		var dataProcessor = editor.dataProcessor,
+			dataFilter = dataProcessor && dataProcessor.dataFilter;
+
+		if ( dataFilter )
+		{
+			dataFilter.addRules(
+				{
+					elements :
+					{
+						div : function( element )
+						{
+							var style = element.attributes.style,
+								child = style && element.children.length == 1 && element.children[ 0 ],
+								childStyle = child && ( child.name == 'span' ) && child.attributes.style;
+
+							if ( childStyle && ( /page-break-after\s*:\s*always/i ).test( style ) && ( /display\s*:\s*none/i ).test( childStyle ) )
+								return editor.createFakeParserElement( element, 'cke_pagebreak', 'div' );
+						}
+					}
+				});
+		}
+	},
+
+	requires : [ 'fakeobjects' ]
+});
+
+CKEDITOR.plugins.pagebreakCmd =
+{
+	exec : function( editor )
+	{
+		// Create the element that represents a print break.
+		var breakObject = CKEDITOR.dom.element.createFromHtml( '<div style="page-break-after: always;"><span style="display: none;">&nbsp;</span></div>' );
+
+		// Creates the fake image used for this element.
+		breakObject = editor.createFakeElement( breakObject, 'cke_pagebreak', 'div' );
+
+		var ranges = editor.getSelection().getRanges();
+
+		for ( var range, i = 0 ; i < ranges.length ; i++ )
+		{
+			range = ranges[ i ];
+
+			if ( i > 0 )
+				breakObject = breakObject.clone( true );
+
+			range.splitBlock( 'p' );
+			range.insertNode( breakObject );
+		}
+	}
+};
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/panel/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/panel/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/panel/plugin.js	(revision 3747)
@@ -0,0 +1,330 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.plugins.add( 'panel',
+{
+	beforeInit : function( editor )
+	{
+		editor.ui.addHandler( CKEDITOR.UI_PANEL, CKEDITOR.ui.panel.handler );
+	}
+});
+
+/**
+ * Panel UI element.
+ * @constant
+ * @example
+ */
+CKEDITOR.UI_PANEL = 2;
+
+CKEDITOR.ui.panel = function( document, definition )
+{
+	// Copy all definition properties to this object.
+	if ( definition )
+		CKEDITOR.tools.extend( this, definition );
+
+	// Set defaults.
+	CKEDITOR.tools.extend( this,
+		{
+			className : '',
+			css : []
+		});
+
+	this.id = CKEDITOR.tools.getNextNumber();
+	this.document = document;
+
+	this._ =
+	{
+		blocks : {}
+	};
+};
+
+/**
+ * Transforms a rich combo definition in a {@link CKEDITOR.ui.richCombo}
+ * instance.
+ * @type Object
+ * @example
+ */
+CKEDITOR.ui.panel.handler =
+{
+	create : function( definition )
+	{
+		return new CKEDITOR.ui.panel( definition );
+	}
+};
+
+CKEDITOR.ui.panel.prototype =
+{
+	renderHtml : function( editor )
+	{
+		var output = [];
+		this.render( editor, output );
+		return output.join( '' );
+	},
+
+	/**
+	 * Renders the combo.
+	 * @param {CKEDITOR.editor} editor The editor instance which this button is
+	 *		to be used by.
+	 * @param {Array} output The output array to which append the HTML relative
+	 *		to this button.
+	 * @example
+	 */
+	render : function( editor, output )
+	{
+		var id = 'cke_' + this.id;
+
+		output.push(
+			'<div class="', editor.skinClass ,'"' +
+				' lang="', editor.langCode, '"' +
+				' style="z-index:' + ( editor.config.baseFloatZIndex + 1 ) + '">' +
+				'<div' +
+					' id=', id,
+					' dir=', editor.lang.dir,
+					' class="cke_panel cke_', editor.lang.dir );
+
+		if ( this.className )
+			output.push( ' ', this.className );
+
+		output.push(
+				'">' );
+
+		if ( this.forceIFrame || this.css.length )
+		{
+			output.push(
+						'<iframe id="', id, '_frame"' +
+							' frameborder="0"' +
+							' src="javascript:void(' );
+
+			output.push(
+							// Support for custom document.domain in IE.
+							CKEDITOR.env.isCustomDomain() ?
+								'(function(){' +
+									'document.open();' +
+									'document.domain=\'' + document.domain + '\';' +
+									'document.close();' +
+								'})()'
+							:
+								'0' );
+
+			output.push(
+						')"></iframe>' );
+		}
+
+		output.push(
+				'</div>' +
+			'</div>' );
+
+		return id;
+	},
+
+	getHolderElement : function()
+	{
+		var holder = this._.holder;
+
+		if ( !holder )
+		{
+			if ( this.forceIFrame || this.css.length )
+			{
+				var iframe = this.document.getById( 'cke_' + this.id + '_frame' ),
+					parentDiv = iframe.getParent(),
+					dir = parentDiv.getAttribute( 'dir' ),
+					className = parentDiv.getParent().getAttribute( 'class' ),
+					langCode = parentDiv.getParent().getAttribute( 'lang' ),
+					doc = iframe.getFrameDocument();
+
+				// Initialize the IFRAME document body.
+				doc.$.open();
+
+				// Support for custom document.domain in IE.
+				if ( CKEDITOR.env.isCustomDomain() )
+					doc.$.domain = document.domain;
+
+				doc.$.write(
+					'<!DOCTYPE html>' +
+					'<html dir="' + dir + '" class="' + className + '_container" lang="' + langCode + '">' +
+						'<head>' +
+							'<style>.' + className + '_container{visibility:hidden}</style>' +
+						'</head>' +
+						'<body class="cke_' + dir + ' cke_panel_frame ' + CKEDITOR.env.cssClass + '" style="margin:0;padding:0">' +
+						'</body>' +
+						// It looks strange, but for FF2, the styles must go
+						// after <body>, so it (body) becames immediatelly
+						// available. (#3031)
+						'<link type="text/css" rel=stylesheet href="' + this.css.join( '"><link type="text/css" rel="stylesheet" href="' ) + '">' +
+					'<\/html>' );
+				doc.$.close();
+
+				var win = doc.getWindow();
+
+				// Register the CKEDITOR global.
+				win.$.CKEDITOR = CKEDITOR;
+
+				win.on( 'load', function( ev )
+					{
+						this.isLoaded = true;
+						if ( this.onLoad )
+							this.onLoad();
+					},
+					this);
+
+				doc.on( 'keydown', function( evt )
+					{
+						var keystroke = evt.data.getKeystroke();
+
+						// Delegate key processing to block.
+						if ( this._.onKeyDown && this._.onKeyDown( keystroke ) === false )
+						{
+							evt.data.preventDefault();
+							return;
+						}
+
+						if ( keystroke == 27 )		// ESC
+							this.onEscape && this.onEscape();
+					},
+					this );
+
+				holder = doc.getBody();
+			}
+			else
+				holder = this.document.getById( 'cke_' + this.id );
+
+			this._.holder = holder;
+		}
+
+		return holder;
+	},
+
+	addBlock : function( name, block )
+	{
+		block = this._.blocks[ name ] = block || new CKEDITOR.ui.panel.block( this.getHolderElement() );
+
+		if ( !this._.currentBlock )
+			this.showBlock( name );
+
+		return block;
+	},
+
+	getBlock : function( name )
+	{
+		return this._.blocks[ name ];
+	},
+
+	showBlock : function( name )
+	{
+		var blocks = this._.blocks,
+			block = blocks[ name ],
+			current = this._.currentBlock;
+
+		if ( current )
+			current.hide();
+
+		this._.currentBlock = block;
+
+		// Reset the focus index, so it will always go into the first one.
+		block._.focusIndex = -1;
+
+		this._.onKeyDown = block.onKeyDown && CKEDITOR.tools.bind( block.onKeyDown, block );
+
+		block.show();
+
+		return block;
+	}
+};
+
+CKEDITOR.ui.panel.block = CKEDITOR.tools.createClass(
+{
+	$ : function( blockHolder )
+	{
+		this.element = blockHolder.append(
+			blockHolder.getDocument().createElement( 'div',
+				{
+					attributes :
+					{
+						'class' : 'cke_panel_block'
+					},
+					styles :
+					{
+						display : 'none'
+					}
+				}) );
+
+		this.keys = {};
+
+		this._.focusIndex = -1;
+	},
+
+	_ : {},
+
+	proto :
+	{
+		show : function()
+		{
+			this.element.setStyle( 'display', '' );
+		},
+
+		hide : function()
+		{
+			if ( !this.onHide || this.onHide.call( this )  !== true )
+				this.element.setStyle( 'display', 'none' );
+		},
+
+		onKeyDown : function( keystroke )
+		{
+			var keyAction = this.keys[ keystroke ];
+			switch ( keyAction )
+			{
+				// Move forward.
+				case 'next' :
+					var index = this._.focusIndex,
+						links = this.element.getElementsByTag( 'a' ),
+						link;
+
+					while ( ( link = links.getItem( ++index ) ) )
+					{
+						// Move the focus only if the element is marked with
+						// the _cke_focus and it it's visible (check if it has
+						// width).
+						if ( link.getAttribute( '_cke_focus' ) && link.$.offsetWidth )
+						{
+							this._.focusIndex = index;
+							link.focus();
+							break;
+						}
+					}
+					return false;
+
+				// Move backward.
+				case 'prev' :
+					index = this._.focusIndex;
+					links = this.element.getElementsByTag( 'a' );
+
+					while ( index > 0 && ( link = links.getItem( --index ) ) )
+					{
+						// Move the focus only if the element is marked with
+						// the _cke_focus and it it's visible (check if it has
+						// width).
+						if ( link.getAttribute( '_cke_focus' ) && link.$.offsetWidth )
+						{
+							this._.focusIndex = index;
+							link.focus();
+							break;
+						}
+					}
+					return false;
+
+				case 'click' :
+					index = this._.focusIndex;
+					link = index >= 0 && this.element.getElementsByTag( 'a' ).getItem( index );
+
+					if ( link )
+						link.$.click ? link.$.click() : link.$.onclick();
+
+					return false;
+			}
+
+			return true;
+		}
+	}
+});
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/panelbutton/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/panelbutton/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/panelbutton/plugin.js	(revision 3747)
@@ -0,0 +1,140 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.plugins.add( 'panelbutton',
+{
+	requires : [ 'button' ],
+	beforeInit : function( editor )
+	{
+		editor.ui.addHandler( CKEDITOR.UI_PANELBUTTON, CKEDITOR.ui.panelButton.handler );
+	}
+});
+
+/**
+ * Button UI element.
+ * @constant
+ * @example
+ */
+CKEDITOR.UI_PANELBUTTON = 4;
+
+(function()
+{
+	var clickFn = function( editor )
+	{
+		var _ = this._;
+
+		if ( _.state == CKEDITOR.TRISTATE_DISABLED )
+			return;
+
+		this.createPanel( editor );
+
+		if ( _.on )
+		{
+			_.panel.hide();
+			return;
+		}
+
+		_.panel.showBlock( this._.id, this.document.getById( this._.id ), 4 );
+	};
+
+
+	CKEDITOR.ui.panelButton = CKEDITOR.tools.createClass(
+	{
+		base : CKEDITOR.ui.button,
+
+		$ : function( definition )
+		{
+			// We don't want the panel definition in this object.
+			var panelDefinition = definition.panel;
+			delete definition.panel;
+
+			this.base( definition );
+
+			this.document = ( panelDefinition
+								&& panelDefinition.parent
+								&& panelDefinition.parent.getDocument() )
+							|| CKEDITOR.document;
+
+			this.hasArrow = true;
+
+			this.click = clickFn;
+
+			this._ =
+			{
+				panelDefinition : panelDefinition
+			};
+		},
+
+		statics :
+		{
+			handler :
+			{
+				create : function( definition )
+				{
+					return new CKEDITOR.ui.panelButton( definition );
+				}
+			}
+		},
+
+		proto :
+		{
+			createPanel : function( editor )
+			{
+				var _ = this._;
+
+				if ( _.panel )
+					return;
+
+				var panelDefinition = this._.panelDefinition || {},
+					panelParentElement = panelDefinition.parent || CKEDITOR.document.getBody(),
+					panel = this._.panel = new CKEDITOR.ui.floatPanel( editor, panelParentElement, panelDefinition ),
+					me = this;
+
+				panel.onShow = function()
+					{
+						if ( me.className )
+							this.element.getFirst().addClass( me.className + '_panel' );
+
+						_.oldState = me._.state;
+						me.setState( CKEDITOR.TRISTATE_ON );
+
+						_.on = 1;
+
+						if ( me.onOpen )
+							me.onOpen();
+					};
+
+				panel.onHide = function()
+					{
+						if ( me.className )
+							this.element.getFirst().removeClass( me.className + '_panel' );
+
+						me.setState( _.oldState );
+
+						_.on = 0;
+
+						if ( me.onClose )
+							me.onClose();
+					};
+
+				panel.onEscape = function()
+					{
+						panel.hide();
+						me.document.getById( _.id ).focus();
+					};
+
+				if ( this.onBlock )
+					this.onBlock( panel, _.id );
+
+				panel.getBlock( _.id ).onHide = function()
+						{
+								_.on = 0;
+								me.setState( CKEDITOR.TRISTATE_OFF );
+						};
+			}
+		}
+	});
+
+})();
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/pastefromword/dialogs/pastefromword.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/pastefromword/dialogs/pastefromword.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/pastefromword/dialogs/pastefromword.js	(revision 3747)
@@ -0,0 +1,295 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.dialog.add( 'pastefromword', function( editor )
+{
+	return {
+		title : editor.lang.pastefromword.title,
+		minWidth : CKEDITOR.env.ie && CKEDITOR.env.quirks ? 370 : 350,
+		minHeight : CKEDITOR.env.ie && CKEDITOR.env.quirks ? 270 : 260,
+		htmlToLoad : '<!doctype html><script type="text/javascript">'
+				+ 'window.onload = function()'
+				+ '{'
+					+ 'if ( ' + CKEDITOR.env.ie + ' ) '
+						+ 'document.body.contentEditable = "true";'
+					+ 'else '
+						+ 'document.designMode = "on";'
+					+ 'var iframe = new window.parent.CKEDITOR.dom.element( frameElement );'
+					+ 'var dialog = iframe.getCustomData( "dialog" );'
+					+ 'dialog.fire( "iframeAdded", { iframe : iframe } );'
+				+ '};'
+				+ '</script><style>body { margin: 3px; height: 95%; } </style><body></body>',
+		cleanWord : function( editor, html, ignoreFont, removeStyles )
+		{
+			html = html.replace(/<o:p>\s*<\/o:p>/g, '') ;
+			html = html.replace(/<o:p>[\s\S]*?<\/o:p>/g, '&nbsp;') ;
+
+			// Remove mso-xxx styles.
+			html = html.replace( /\s*mso-[^:]+:[^;"]+;?/gi, '' ) ;
+
+			// Remove margin styles.
+			html = html.replace( /\s*MARGIN: 0cm 0cm 0pt\s*;/gi, '' ) ;
+			html = html.replace( /\s*MARGIN: 0cm 0cm 0pt\s*"/gi, "\"" ) ;
+
+			html = html.replace( /\s*TEXT-INDENT: 0cm\s*;/gi, '' ) ;
+			html = html.replace( /\s*TEXT-INDENT: 0cm\s*"/gi, "\"" ) ;
+
+			html = html.replace( /\s*TEXT-ALIGN: [^\s;]+;?"/gi, "\"" ) ;
+
+			html = html.replace( /\s*PAGE-BREAK-BEFORE: [^\s;]+;?"/gi, "\"" ) ;
+
+			html = html.replace( /\s*FONT-VARIANT: [^\s;]+;?"/gi, "\"" ) ;
+
+			html = html.replace( /\s*tab-stops:[^;"]*;?/gi, '' ) ;
+			html = html.replace( /\s*tab-stops:[^"]*/gi, '' ) ;
+
+			// Remove FONT face attributes.
+			if ( ignoreFont )
+			{
+				html = html.replace( /\s*face="[^"]*"/gi, '' ) ;
+				html = html.replace( /\s*face=[^ >]*/gi, '' ) ;
+
+				html = html.replace( /\s*FONT-FAMILY:[^;"]*;?/gi, '' ) ;
+			}
+
+			// Remove Class attributes
+			html = html.replace(/<(\w[^>]*) class=([^ |>]*)([^>]*)/gi, "<$1$3") ;
+
+			// Remove styles.
+			if ( removeStyles )
+				html = html.replace( /<(\w[^>]*) style="([^\"]*)"([^>]*)/gi, "<$1$3" ) ;
+
+			// Remove style, meta and link tags
+			html = html.replace( /<STYLE[^>]*>[\s\S]*?<\/STYLE[^>]*>/gi, '' ) ;
+			html = html.replace( /<(?:META|LINK)[^>]*>\s*/gi, '' ) ;
+
+			// Remove empty styles.
+			html =  html.replace( /\s*style="\s*"/gi, '' ) ;
+
+			html = html.replace( /<SPAN\s*[^>]*>\s*&nbsp;\s*<\/SPAN>/gi, '&nbsp;' ) ;
+
+			html = html.replace( /<SPAN\s*[^>]*><\/SPAN>/gi, '' ) ;
+
+			// Remove Lang attributes
+			html = html.replace(/<(\w[^>]*) lang=([^ |>]*)([^>]*)/gi, "<$1$3") ;
+
+			html = html.replace( /<SPAN\s*>([\s\S]*?)<\/SPAN>/gi, '$1' ) ;
+
+			html = html.replace( /<FONT\s*>([\s\S]*?)<\/FONT>/gi, '$1' ) ;
+
+			// Remove XML elements and declarations
+			html = html.replace(/<\\?\?xml[^>]*>/gi, '' ) ;
+
+			// Remove w: tags with contents.
+			html = html.replace( /<w:[^>]*>[\s\S]*?<\/w:[^>]*>/gi, '' ) ;
+
+			// Remove Tags with XML namespace declarations: <o:p><\/o:p>
+			html = html.replace(/<\/?\w+:[^>]*>/gi, '' ) ;
+
+			// Remove comments [SF BUG-1481861].
+			html = html.replace(/<\!--[\s\S]*?-->/g, '' ) ;
+
+			html = html.replace( /<(U|I|STRIKE)>&nbsp;<\/\1>/g, '&nbsp;' ) ;
+
+			html = html.replace( /<H\d>\s*<\/H\d>/gi, '' ) ;
+
+			// Remove "display:none" tags.
+			html = html.replace( /<(\w+)[^>]*\sstyle="[^"]*DISPLAY\s?:\s?none[\s\S]*?<\/\1>/ig, '' ) ;
+
+			// Remove language tags
+			html = html.replace( /<(\w[^>]*) language=([^ |>]*)([^>]*)/gi, "<$1$3") ;
+
+			// Remove onmouseover and onmouseout events (from MS Word comments effect)
+			html = html.replace( /<(\w[^>]*) onmouseover="([^\"]*)"([^>]*)/gi, "<$1$3") ;
+			html = html.replace( /<(\w[^>]*) onmouseout="([^\"]*)"([^>]*)/gi, "<$1$3") ;
+
+			if ( editor.config.pasteFromWordKeepsStructure )
+			{
+				// The original <Hn> tag send from Word is something like this: <Hn style="margin-top:0px;margin-bottom:0px">
+				html = html.replace( /<H(\d)([^>]*)>/gi, '<h$1>' ) ;
+
+				// Word likes to insert extra <font> tags, when using MSIE. (Wierd).
+				html = html.replace( /<(H\d)><FONT[^>]*>([\s\S]*?)<\/FONT><\/\1>/gi, '<$1>$2<\/$1>' );
+				html = html.replace( /<(H\d)><EM>([\s\S]*?)<\/EM><\/\1>/gi, '<$1>$2<\/$1>' );
+			}
+			else
+			{
+				html = html.replace( /<H1([^>]*)>/gi, '<div$1><b><font size="6">' ) ;
+				html = html.replace( /<H2([^>]*)>/gi, '<div$1><b><font size="5">' ) ;
+				html = html.replace( /<H3([^>]*)>/gi, '<div$1><b><font size="4">' ) ;
+				html = html.replace( /<H4([^>]*)>/gi, '<div$1><b><font size="3">' ) ;
+				html = html.replace( /<H5([^>]*)>/gi, '<div$1><b><font size="2">' ) ;
+				html = html.replace( /<H6([^>]*)>/gi, '<div$1><b><font size="1">' ) ;
+
+				html = html.replace( /<\/H\d>/gi, '<\/font><\/b><\/div>' ) ;
+
+				// Transform <P> to <DIV>
+				var re = new RegExp( '(<P)([^>]*>[\\s\\S]*?)(<\/P>)', 'gi' ) ;	// Different because of a IE 5.0 error
+				html = html.replace( re, '<div$2<\/div>' ) ;
+
+				// Remove empty tags (three times, just to be sure).
+				// This also removes any empty anchor
+				html = html.replace( /<([^\s>]+)(\s[^>]*)?>\s*<\/\1>/g, '' ) ;
+				html = html.replace( /<([^\s>]+)(\s[^>]*)?>\s*<\/\1>/g, '' ) ;
+				html = html.replace( /<([^\s>]+)(\s[^>]*)?>\s*<\/\1>/g, '' ) ;
+			}
+
+			return html ;
+		},
+		onShow : function()
+		{
+			// To avoid JAWS putting virtual cursor back to the editor document,
+			// disable main document 'contentEditable' during dialog opening.
+			if ( CKEDITOR.env.ie )
+				this.getParentEditor().document.getBody().$.contentEditable = 'false';
+
+			// FIREFOX BUG: Force the browser to render the dialog to make the to-be-
+			// inserted iframe editable. (#3366)
+			this.parts.dialog.$.offsetHeight;
+
+			var container = this.getContentElement( 'general', 'editing_area' ).getElement(),
+				iframe = CKEDITOR.dom.element.createFromHtml( '<iframe src="javascript:void(0)" frameborder="0" allowtransparency="1"></iframe>' );
+
+			var lang = this.getParentEditor().lang;
+
+			iframe.setStyles(
+				{
+					width : '346px',
+					height : '152px',
+					'background-color' : 'white',
+					border : '1px solid black'
+				} );
+			iframe.setCustomData( 'dialog', this );
+
+			var accTitle = lang.editorTitle.replace( '%1', lang.pastefromword.title );
+
+			if ( CKEDITOR.env.ie )
+				container.setHtml( '<legend style="position:absolute;top:-1000000px;left:-1000000px;">'
+						+ CKEDITOR.tools.htmlEncode( accTitle )
+						+ '</legend>' );
+			else
+			{
+				container.setHtml( '' );
+				container.setAttributes(
+					{
+						role : 'region',
+						title : accTitle
+					} );
+				iframe.setAttributes(
+					{
+						role : 'region',
+						title : ' '
+					} );
+			}
+			container.append( iframe );
+			if ( CKEDITOR.env.ie )
+				container.setStyle( 'height', ( iframe.$.offsetHeight + 2 ) + 'px' );
+
+			var isCustomDomain = CKEDITOR.env.ie && document.domain != window.location.hostname;
+			if ( isCustomDomain )
+			{
+				CKEDITOR._cke_htmlToLoad = this.definition.htmlToLoad;
+				iframe.setAttribute( 'src',
+					'javascript:void( (function(){' +
+						   'document.open();' +
+						   'document.domain="' + document.domain + '";' +
+						   'document.write( window.parent.CKEDITOR._cke_htmlToLoad );' +
+						   'delete window.parent.CKEDITOR._cke_htmlToLoad;' +
+						   'document.close();' +
+					'})() )' );
+			}
+			else
+			{
+				var doc = iframe.$.contentWindow.document;
+				doc.open();
+				doc.write( this.definition.htmlToLoad );
+				doc.close();
+			}
+		},
+		onOk : function()
+		{
+			var container = this.getContentElement( 'general', 'editing_area' ).getElement(),
+				iframe = container.getElementsByTag( 'iframe' ).getItem( 0 ),
+				editor = this.getParentEditor(),
+				html = this.definition.cleanWord( editor, iframe.$.contentWindow.document.body.innerHTML,
+						this.getValueOf( 'general', 'ignoreFontFace' ),
+						this.getValueOf( 'general', 'removeStyle' ) );
+
+				// Insertion should happen after main document design mode turned on.
+				setTimeout( function(){
+					editor.insertHtml( html );
+				}, 0 );
+		},
+		onHide : function()
+		{
+			if ( CKEDITOR.env.ie )
+				this.getParentEditor().document.getBody().$.contentEditable = 'true';
+		},
+		contents :
+		[
+			{
+				id : 'general',
+				label : editor.lang.pastefromword.title,
+				elements :
+				[
+					{
+						type : 'html',
+						style : 'white-space: normal;',
+						onShow : function()
+						{
+							/*
+							 * SAFARI BUG: The advice label would overflow if the table layout
+							 * isn't fixed.
+							 */
+							if ( CKEDITOR.env.webkit )
+								this.getElement().getAscendant( 'table' ).setStyle( 'table-layout', 'fixed' );
+						},
+						html : editor.lang.pastefromword.advice
+					},
+					{
+						type : 'html',
+						id : 'editing_area',
+						style : 'width: 100%; height: 100%;',
+						html : '<fieldset></fieldset>',
+						focus : function()
+						{
+							var div = this.getElement();
+							var iframe = div.getElementsByTag( 'iframe' );
+							if ( iframe.count() < 1 )
+								return;
+							iframe = iframe.getItem( 0 );
+
+							// #3291 : JAWS needs the 500ms delay to detect that the editor iframe
+							// iframe is no longer editable. So that it will put the focus into the
+							// Paste from Word dialog's editable area instead.
+							setTimeout( function()
+							{
+								iframe.$.contentWindow.focus();
+							}, 500 );
+						}
+					},
+					{
+						type : 'vbox',
+						padding : 0,
+						children :
+						[
+							{
+								type : 'checkbox',
+								id : 'ignoreFontFace',
+								label : editor.lang.pastefromword.ignoreFontFace,
+								'default' : true
+							},
+							{
+								type : 'checkbox',
+								id : 'removeStyle',
+								label : editor.lang.pastefromword.removeStyle
+							}
+						]
+					}
+				]
+			}
+		]
+	};
+} );
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/pastefromword/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/pastefromword/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/pastefromword/plugin.js	(revision 3747)
@@ -0,0 +1,27 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.plugins.add( 'pastefromword',
+{
+	init : function( editor )
+	{
+		// Register the command.
+		editor.addCommand( 'pastefromword', new CKEDITOR.dialogCommand( 'pastefromword' ) );
+
+		// Register the toolbar button.
+		editor.ui.addButton( 'PasteFromWord',
+			{
+				label : editor.lang.pastefromword.toolbar,
+				command : 'pastefromword'
+			} );
+
+		// Register the dialog.
+		CKEDITOR.dialog.add( 'pastefromword', this.path + 'dialogs/pastefromword.js' );
+	}
+} );
+
+CKEDITOR.config.pasteFromWordIgnoreFontFace = true;
+CKEDITOR.config.pasteFromWordRemoveStyle = false;
+CKEDITOR.config.pasteFromWordKeepsStructure = false;
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/pastetext/dialogs/pastetext.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/pastetext/dialogs/pastetext.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/pastetext/dialogs/pastetext.js	(revision 3747)
@@ -0,0 +1,65 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+(function()
+{
+	CKEDITOR.dialog.add( 'pastetext', function( editor )
+		{
+			return {
+				title : editor.lang.pasteText.title,
+
+				minWidth : CKEDITOR.env.ie && CKEDITOR.env.quirks ? 368 : 350,
+				minHeight : 240,
+
+				onShow : function()
+				{
+					// Reset the textarea value.
+					this.getContentElement( 'general', 'content' ).getInputElement().setValue( '' );
+				},
+
+				onOk : function()
+				{
+					// Get the textarea value.
+					var text = this.getContentElement( 'general', 'content' ).getInputElement().getValue();
+
+					// Inserts the text.
+					this.getParentEditor().insertText( text );
+				},
+
+				contents :
+				[
+					{
+						label : editor.lang.common.generalTab,
+						id : 'general',
+						elements :
+						[
+							{
+								type : 'html',
+								id : 'pasteMsg',
+								html : '<div style="white-space:normal;width:340px;">' + editor.lang.clipboard.pasteMsg + '</div>'
+							},
+							{
+								type : 'html',
+								id : 'content',
+								style : 'width:340px;height:170px',
+								html :
+									'<textarea style="' +
+										'width:346px;' +
+										'height:170px;' +
+										'resize: none;' +
+										'border:1px solid black;' +
+										'background-color:white">' +
+									'</textarea>',
+								focus : function()
+								{
+									this.getElement().focus();
+								}
+							}
+						]
+					}
+				]
+			};
+		});
+})();
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/pastetext/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/pastetext/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/pastetext/plugin.js	(revision 3747)
@@ -0,0 +1,130 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @file Paste as plain text plugin
+ */
+
+(function()
+{
+	// The pastetext command definition.
+	var pasteTextCmd =
+	{
+		exec : function( editor )
+		{
+			// We use getClipboardData just to test if the clipboard access has
+			// been granted by the user.
+			if ( CKEDITOR.getClipboardData() === false || !window.clipboardData )
+			{
+				editor.openDialog( 'pastetext' );
+				return;
+			}
+
+			editor.insertText( window.clipboardData.getData( 'Text' ) );
+		}
+	};
+
+	// Register the plugin.
+	CKEDITOR.plugins.add( 'pastetext',
+	{
+		init : function( editor )
+		{
+			var commandName = 'pastetext',
+				command = editor.addCommand( commandName, pasteTextCmd );
+
+			editor.ui.addButton( 'PasteText',
+				{
+					label : editor.lang.pasteText.button,
+					command : commandName
+				});
+
+			CKEDITOR.dialog.add( commandName, CKEDITOR.getUrl( this.path + 'dialogs/pastetext.js' ) );
+
+			if ( editor.config.forcePasteAsPlainText )
+			{
+				editor.on( 'beforePaste', function( event )
+					{
+						setTimeout( function() { command.exec(); }, 0 );
+						event.cancel();
+					},
+					null, null, 20 );
+			}
+		},
+		requires : [ 'clipboard' ]
+	});
+
+	var clipboardDiv;
+
+	CKEDITOR.getClipboardData = function()
+	{
+		if ( !CKEDITOR.env.ie )
+			return false;
+
+		var doc = CKEDITOR.document,
+			body = doc.getBody();
+
+		if ( !clipboardDiv )
+		{
+			clipboardDiv = doc.createElement( 'div',
+				{
+					attributes :
+						{
+							id: 'cke_hiddenDiv'
+						},
+					styles :
+						{
+							position : 'absolute',
+							visibility : 'hidden',
+							overflow : 'hidden',
+							width : '1px',
+							height : '1px'
+						}
+				});
+
+			clipboardDiv.setHtml( '' );
+
+			clipboardDiv.appendTo( body );
+		}
+
+		// The "enabled" flag is used to check whether the paste operation has
+		// been completed (the onpaste event has been fired).
+		var	enabled = false;
+		var setEnabled = function()
+		{
+			enabled = true;
+		};
+
+		body.on( 'paste', setEnabled );
+
+		// Create a text range and move it inside the div.
+		var textRange = body.$.createTextRange();
+		textRange.moveToElementText( clipboardDiv.$ );
+
+		// The execCommand in will fire the "onpaste", only if the
+		// security settings are enabled.
+		textRange.execCommand( 'Paste' );
+
+		// Get the DIV html and reset it.
+		var html = clipboardDiv.getHtml();
+		clipboardDiv.setHtml( '' );
+
+		body.removeListener( 'paste', setEnabled );
+
+		// Return the HTML or false if not enabled.
+		return enabled && html;
+	};
+})();
+
+CKEDITOR.editor.prototype.insertText = function( text )
+{
+	text = CKEDITOR.tools.htmlEncode( text );
+
+	// TODO: Replace the following with fill line break processing (see V2).
+	text = text.replace( /(?:\r\n)|\n|\r/g, '<br>' );
+
+	this.insertHtml( text );
+};
+
+CKEDITOR.config.forcePasteAsPlainText = false;
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/popup/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/popup/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/popup/plugin.js	(revision 3747)
@@ -0,0 +1,62 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.plugins.add( 'popup');
+
+CKEDITOR.tools.extend( CKEDITOR.editor.prototype,
+{
+	/**
+	 * Opens Browser in a popup. The "width" and "height" parameters accept
+	 * numbers (pixels) or percent (of screen size) values.
+	 * @param {String} url The url of the external file browser.
+	 * @param {String} width Popup window width.
+	 * @param {String} height Popup window height.
+	 */
+	popup : function( url, width, height )
+	{
+		width = width || '80%';
+		height = height || '70%';
+
+		if ( typeof width == 'string' && width.length > 1 && width.substr( width.length - 1, 1 ) == '%' )
+			width = parseInt( window.screen.width * parseInt( width, 10 ) / 100, 10 );
+
+		if ( typeof height == 'string' && height.length > 1 && height.substr( height.length - 1, 1 ) == '%' )
+			height = parseInt( window.screen.height * parseInt( height, 10 ) / 100, 10 );
+
+		if ( width < 640 )
+			width = 640;
+
+		if ( height < 420 )
+			height = 420;
+
+		var top = parseInt( ( window.screen.height - height ) / 2, 10 ),
+			left = parseInt( ( window.screen.width  - width ) / 2, 10 ),
+			options = 'location=no,menubar=no,toolbar=no,dependent=yes,minimizable=no,modal=yes,alwaysRaised=yes,resizable=yes' +
+			',width='  + width +
+			',height=' + height +
+			',top='  + top +
+			',left=' + left;
+
+		var popupWindow = window.open( '', null, options, true );
+
+		// Blocked by a popup blocker.
+		if ( !popupWindow )
+			return false;
+
+		try
+		{
+			popupWindow.moveTo( left, top );
+			popupWindow.resizeTo( width, height );
+			popupWindow.focus();
+			popupWindow.location.href = url;
+		}
+		catch (e)
+		{
+			popupWindow = window.open( url, null, options, true );
+		}
+
+		return true ;
+	}
+});
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/preview/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/preview/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/preview/plugin.js	(revision 3747)
@@ -0,0 +1,97 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @file Preview plugin.
+ */
+
+(function()
+{
+	var previewCmd =
+	{
+		modes : { wysiwyg:1, source:1 },
+		canUndo : false,
+		exec : function( editor )
+		{
+			var sHTML,
+				isCustomDomain = CKEDITOR.env.ie && document.domain != window.location.hostname;
+			if ( editor.config.fullPage )
+				sHTML = editor.getData();
+			else
+			{
+				var bodyHtml = '<body ',
+					body = CKEDITOR.document.getBody(),
+					baseTag = ( editor.config.baseHref.length > 0 ) ? '<base href="' + editor.config.baseHref + '" _cktemp="true"></base>' : '';
+
+				if ( body.getAttribute( 'id' ) )
+					bodyHtml += 'id="' + body.getAttribute( 'id' ) + '" ';
+				if ( body.getAttribute( 'class' ) )
+					bodyHtml += 'class="' + body.getAttribute( 'class' ) + '" ';
+				bodyHtml += '>';
+
+				sHTML =
+					editor.config.docType +
+					'<html dir="' + editor.config.contentsLangDirection + '">' +
+					'<head>' +
+					baseTag +
+					'<title>' + editor.lang.preview + '</title>' +
+					'<link href="' + editor.config.contentsCss + '" type="text/css" rel="stylesheet" _cktemp="true"/>' +
+					'</head>' + bodyHtml +
+					editor.getData() +
+					'</body></html>';
+			}
+
+			var iWidth	= 640,	// 800 * 0.8,
+				iHeight	= 420,	// 600 * 0.7,
+				iLeft	= 80;	// (800 - 0.8 * 800) /2 = 800 * 0.1.
+			try
+			{
+				var screen = window.screen;
+				iWidth = Math.round( screen.width * 0.8 );
+				iHeight = Math.round( screen.height * 0.7 );
+				iLeft = Math.round( screen.width * 0.1 );
+			}
+			catch ( e ){}
+
+			var sOpenUrl = '';
+			if ( isCustomDomain )
+			{
+				window._cke_htmlToLoad = sHTML;
+				sOpenUrl = 'javascript:void( (function(){' +
+					'document.open();' +
+					'document.domain="' + document.domain + '";' +
+					'document.write( window.opener._cke_htmlToLoad );' +
+					'document.close();' +
+					'window.opener._cke_htmlToLoad = null;' +
+					'})() )';
+			}
+
+			var oWindow = window.open( sOpenUrl, null, 'toolbar=yes,location=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=' +
+				iWidth + ',height=' + iHeight + ',left=' + iLeft );
+
+			if ( !isCustomDomain )
+			{
+				oWindow.document.write( sHTML );
+				oWindow.document.close();
+			}
+		}
+	};
+
+	var pluginName = 'preview';
+
+	// Register a plugin named "preview".
+	CKEDITOR.plugins.add( pluginName,
+	{
+		init : function( editor )
+		{
+			editor.addCommand( pluginName, previewCmd );
+			editor.ui.addButton( 'Preview',
+				{
+					label : editor.lang.preview,
+					command : pluginName
+				});
+		}
+	});
+})();
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/print/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/print/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/print/plugin.js	(revision 3747)
@@ -0,0 +1,41 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @file Print Plugin
+ */
+
+CKEDITOR.plugins.add( 'print',
+{
+	init : function( editor )
+	{
+		var pluginName = 'print';
+
+		// Register the command.
+		var command = editor.addCommand( pluginName, CKEDITOR.plugins.print );
+
+		// Register the toolbar button.
+		editor.ui.addButton( 'Print',
+			{
+				label : editor.lang.print,
+				command : pluginName
+			});
+	}
+} );
+
+CKEDITOR.plugins.print =
+{
+	exec : function( editor )
+	{
+		if ( CKEDITOR.env.opera )
+			return;
+		else if ( CKEDITOR.env.gecko )
+			editor.window.$.print();
+		else
+			editor.document.$.execCommand( "Print" );
+	},
+	canUndo : false,
+	modes : { wysiwyg : !( CKEDITOR.env.opera ) }		// It is imposible to print the inner document in Opera.
+};
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/removeformat/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/removeformat/plugin.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/removeformat/plugin.js	(revision 3747)
@@ -8,5 +8,5 @@
 	requires : [ 'selection' ],
 
-	init : function( editor, pluginPath )
+	init : function( editor )
 	{
 		editor.addCommand( 'removeFormat', CKEDITOR.plugins.removeformat.commands.removeformat );
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/resize/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/resize/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/resize/plugin.js	(revision 3747)
@@ -0,0 +1,76 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.plugins.add( 'resize',
+{
+	init : function( editor )
+	{
+		var config = editor.config;
+
+		if ( config.resize_enabled )
+		{
+			var container = null;
+			var origin, startSize;
+
+			function dragHandler( evt )
+			{
+				var dx = evt.data.$.screenX - origin.x;
+				var dy = evt.data.$.screenY - origin.y;
+				var internalWidth = startSize.width + dx * ( editor.lang.dir == 'rtl' ? -1 : 1 );
+				var internalHeight = startSize.height + dy;
+
+				editor.resize( Math.max( config.resize_minWidth, Math.min( internalWidth, config.resize_maxWidth ) ),
+						Math.max( config.resize_minHeight, Math.min( internalHeight, config.resize_maxHeight ) ) );
+			}
+
+			function dragEndHandler ( evt )
+			{
+				CKEDITOR.document.removeListener( 'mousemove', dragHandler );
+				CKEDITOR.document.removeListener( 'mouseup', dragEndHandler );
+
+				if ( editor.document )
+				{
+					editor.document.removeListener( 'mousemove', dragHandler );
+					editor.document.removeListener( 'mouseup', dragEndHandler );
+				}
+			}
+
+			var mouseDownFn = CKEDITOR.tools.addFunction( function( $event )
+				{
+					if ( !container )
+						container = editor.getResizable();
+
+					startSize = { width : container.$.offsetWidth || 0, height : container.$.offsetHeight || 0 };
+					origin = { x : $event.screenX, y : $event.screenY };
+
+					CKEDITOR.document.on( 'mousemove', dragHandler );
+					CKEDITOR.document.on( 'mouseup', dragEndHandler );
+
+					if ( editor.document )
+					{
+						editor.document.on( 'mousemove', dragHandler );
+						editor.document.on( 'mouseup', dragEndHandler );
+					}
+				} );
+
+			editor.on( 'themeSpace', function( event )
+				{
+					if ( event.data.space == 'bottom' )
+					{
+						event.data.html += '<div class="cke_resizer"' +
+							' title="' + CKEDITOR.tools.htmlEncode( editor.lang.resize ) + '"' +
+							' onmousedown="CKEDITOR.tools.callFunction(' + mouseDownFn + ', event)"' +
+							'></div>';
+					}
+				}, editor, null, 100 );
+		}
+	}
+} );
+
+CKEDITOR.config.resize_minWidth = 750;
+CKEDITOR.config.resize_minHeight = 250;
+CKEDITOR.config.resize_maxWidth = 3000;
+CKEDITOR.config.resize_maxHeight = 3000;
+CKEDITOR.config.resize_enabled = true;
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/richcombo/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/richcombo/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/richcombo/plugin.js	(revision 3747)
@@ -0,0 +1,357 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.plugins.add( 'richcombo',
+{
+	requires : [ 'floatpanel', 'listblock', 'button' ],
+
+	beforeInit : function( editor )
+	{
+		editor.ui.addHandler( CKEDITOR.UI_RICHCOMBO, CKEDITOR.ui.richCombo.handler );
+	}
+});
+
+/**
+ * Button UI element.
+ * @constant
+ * @example
+ */
+CKEDITOR.UI_RICHCOMBO = 3;
+
+CKEDITOR.ui.richCombo = CKEDITOR.tools.createClass(
+{
+	$ : function( definition )
+	{
+		// Copy all definition properties to this object.
+		CKEDITOR.tools.extend( this, definition,
+			// Set defaults.
+			{
+				title : definition.label,
+				modes : { wysiwyg : 1 }
+			});
+
+		// We don't want the panel definition in this object.
+		var panelDefinition = this.panel || {};
+		delete this.panel;
+
+		this.id = CKEDITOR.tools.getNextNumber();
+
+		this.document = ( panelDefinition
+							&& panelDefinition.parent
+							&& panelDefinition.parent.getDocument() )
+						|| CKEDITOR.document;
+
+		panelDefinition.className = ( panelDefinition.className || '' ) + ' cke_rcombopanel';
+
+		this._ =
+		{
+			panelDefinition : panelDefinition,
+			items : {},
+			state : CKEDITOR.TRISTATE_OFF
+		};
+	},
+
+	statics :
+	{
+		handler :
+		{
+			create : function( definition )
+			{
+				return new CKEDITOR.ui.richCombo( definition );
+			}
+		}
+	},
+
+	proto :
+	{
+		renderHtml : function( editor )
+		{
+			var output = [];
+			this.render( editor, output );
+			return output.join( '' );
+		},
+
+		/**
+		 * Renders the combo.
+		 * @param {CKEDITOR.editor} editor The editor instance which this button is
+		 *		to be used by.
+		 * @param {Array} output The output array to which append the HTML relative
+		 *		to this button.
+		 * @example
+		 */
+		render : function( editor, output )
+		{
+			var id = 'cke_' + this.id;
+			var clickFn = CKEDITOR.tools.addFunction( function( $element )
+				{
+					var _ = this._;
+
+					if ( _.state == CKEDITOR.TRISTATE_DISABLED )
+						return;
+
+					this.createPanel( editor );
+
+					if ( _.on )
+					{
+						_.panel.hide();
+						return;
+					}
+
+					if ( !_.committed )
+					{
+						_.list.commit();
+						_.committed = 1;
+					}
+
+					var value = this.getValue();
+					if ( value )
+						_.list.mark( value );
+					else
+						_.list.unmarkAll();
+
+					_.panel.showBlock( this.id, new CKEDITOR.dom.element( $element ), 4 );
+				},
+				this );
+
+			var instance = {
+				id : id,
+				combo : this,
+				focus : function()
+				{
+					var element = CKEDITOR.document.getById( id ).getChild( 1 );
+					element.focus();
+				},
+				execute : clickFn
+			};
+
+			editor.on( 'mode', function()
+				{
+					this.setState( this.modes[ editor.mode ] ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED );
+				},
+				this );
+
+			var keyDownFn = CKEDITOR.tools.addFunction( function( ev, element )
+				{
+					ev = new CKEDITOR.dom.event( ev );
+
+					var keystroke = ev.getKeystroke();
+					switch ( keystroke )
+					{
+						case 13 :	// ENTER
+						case 32 :	// SPACE
+						case 40 :	// ARROW-DOWN
+							// Show panel
+							CKEDITOR.tools.callFunction( clickFn, element );
+							break;
+						default :
+							// Delegate the default behavior to toolbar button key handling.
+							instance.onkey( instance,  keystroke );
+					}
+
+					// Avoid subsequent focus grab on editor document.
+					ev.preventDefault();
+				});
+
+			output.push(
+				'<span class="cke_rcombo">',
+				'<span id=', id );
+
+			if ( this.className )
+				output.push( ' class="', this.className, ' cke_off"');
+
+			output.push(
+				'>' +
+					'<span class=cke_label>', this.label, '</span>' +
+					'<a hidefocus=true title="', this.title, '" tabindex="-1" href="javascript:void(\'', this.label, '\')"' );
+
+			// Some browsers don't cancel key events in the keydown but in the
+			// keypress.
+			// TODO: Check if really needed for Gecko+Mac.
+			if ( CKEDITOR.env.opera || ( CKEDITOR.env.gecko && CKEDITOR.env.mac ) )
+			{
+				output.push(
+					' onkeypress="return false;"' );
+			}
+
+			// With Firefox, we need to force it to redraw, otherwise it
+			// will remain in the focus state.
+			if ( CKEDITOR.env.gecko )
+			{
+				output.push(
+					' onblur="this.style.cssText = this.style.cssText;"' );
+			}
+
+			output.push(
+					' onkeydown="CKEDITOR.tools.callFunction( ', keyDownFn, ', event, this );"' +
+					' onclick="CKEDITOR.tools.callFunction(', clickFn, ', this); return false;">' +
+						'<span>' +
+							'<span class="cke_accessibility">' + ( this.voiceLabel ? this.voiceLabel + ' ' : '' ) + '</span>' +
+							'<span id="' + id + '_text" class="cke_text cke_inline_label">' + this.label + '</span>' +
+						'</span>' +
+						'<span class=cke_openbutton></span>' +
+					'</a>' +
+				'</span>' +
+				'</span>' );
+
+			if ( this.onRender )
+				this.onRender();
+
+			return instance;
+		},
+
+		createPanel : function( editor )
+		{
+			if ( this._.panel )
+				return;
+
+			var panelDefinition = this._.panelDefinition,
+				panelParentElement = panelDefinition.parent || CKEDITOR.document.getBody(),
+				panel = new CKEDITOR.ui.floatPanel( editor, panelParentElement, panelDefinition ),
+				list = panel.addListBlock( this.id, this.multiSelect ),
+				me = this;
+
+			panel.onShow = function()
+				{
+					if ( me.className )
+						this.element.getFirst().addClass( me.className + '_panel' );
+
+					me.setState( CKEDITOR.TRISTATE_ON );
+
+					list.focus( !me.multiSelect && me.getValue() );
+
+					me._.on = 1;
+
+					if ( me.onOpen )
+						me.onOpen();
+				};
+
+			panel.onHide = function()
+				{
+					if ( me.className )
+						this.element.getFirst().removeClass( me.className + '_panel' );
+
+					me.setState( CKEDITOR.TRISTATE_OFF );
+
+					me._.on = 0;
+
+					if ( me.onClose )
+						me.onClose();
+				};
+
+			panel.onEscape = function()
+				{
+					panel.hide();
+					me.document.getById( 'cke_' + me.id ).getFirst().getNext().focus();
+				};
+
+			list.onClick = function( value, marked )
+				{
+					// Move the focus to the main windows, otherwise it will stay
+					// into the floating panel, even if invisible, and Safari and
+					// Opera will go a bit crazy.
+					me.document.getWindow().focus();
+
+					if ( me.onClick )
+						me.onClick.call( me, value, marked );
+
+					if ( marked )
+						me.setValue( value, me._.items[ value ] );
+					else
+						me.setValue( '' );
+
+					panel.hide();
+				};
+
+			this._.panel = panel;
+			this._.list = list;
+
+			panel.getBlock( this.id ).onHide = function()
+				{
+					me._.on = 0;
+					me.setState( CKEDITOR.TRISTATE_OFF );
+				};
+
+			if ( this.init )
+				this.init();
+		},
+
+		setValue : function( value, text )
+		{
+			this._.value = value;
+
+			var textElement = this.document.getById( 'cke_' + this.id + '_text' );
+
+			if ( !value )
+			{
+				text = this.label;
+				textElement.addClass( 'cke_inline_label' );
+			}
+			else
+				textElement.removeClass( 'cke_inline_label' );
+			textElement.setHtml( typeof text != 'undefined' ? text : value );
+		},
+
+		getValue : function()
+		{
+			return this._.value || '';
+		},
+
+		unmarkAll : function()
+		{
+			this._.list.unmarkAll();
+		},
+
+		mark : function( value )
+		{
+			this._.list.mark( value );
+		},
+
+		hideItem : function( value )
+		{
+			this._.list.hideItem( value );
+		},
+
+		hideGroup : function( groupTitle )
+		{
+			this._.list.hideGroup( groupTitle );
+		},
+
+		showAll : function()
+		{
+			this._.list.showAll();
+		},
+
+		add : function( value, html, text )
+		{
+			this._.items[ value ] = text || value;
+			this._.list.add( value, html, text );
+		},
+
+		startGroup : function( title )
+		{
+			this._.list.startGroup( title );
+		},
+
+		commit : function()
+		{
+			this._.list.commit();
+		},
+
+		setState : function( state )
+		{
+			if ( this._.state == state )
+				return;
+
+			this.document.getById( 'cke_' + this.id ).setState( state );
+
+			this._.state = state;
+		}
+	}
+});
+
+CKEDITOR.ui.prototype.addRichCombo = function( name, definition )
+{
+	this.add( name, CKEDITOR.UI_RICHCOMBO, definition );
+};
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/save/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/save/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/save/plugin.js	(revision 3747)
@@ -0,0 +1,55 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileSave plugin.
+ */
+
+(function()
+{
+	var saveCmd =
+	{
+		modes : { wysiwyg:1, source:1 },
+
+		exec : function( editor )
+		{
+			var $form = editor.element.$.form;
+
+			if ( $form )
+			{
+				try
+				{
+					$form.submit();
+				}
+				catch( e )
+				{
+					// If there's a button named "submit" then the form.submit
+					// function is masked and can't be called in IE/FF, so we
+					// call the click() method of that button.
+					if ( $form.submit.click )
+						$form.submit.click();
+				}
+			}
+		}
+	};
+
+	var pluginName = 'save';
+
+	// Register a plugin named "save".
+	CKEDITOR.plugins.add( pluginName,
+	{
+		init : function( editor )
+		{
+			var command = editor.addCommand( pluginName, saveCmd );
+			command.modes = { wysiwyg : !!( editor.element.$.form ) };
+
+			editor.ui.addButton( 'Save',
+				{
+					label : editor.lang.save,
+					command : pluginName
+				});
+		}
+	});
+})();
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/scayt/dialogs/options.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/scayt/dialogs/options.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/scayt/dialogs/options.js	(revision 3747)
@@ -0,0 +1,468 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.dialog.add( 'scaytcheck', function( editor )
+{
+	var firstLoad = true,
+		captions,
+		doc = CKEDITOR.document,
+		fckLang = 'en';
+	var dic_buttons = [
+		// [0] contains buttons for creating
+		"dic_create,dic_restore",
+		// [1] contains buton for manipulation
+		"dic_rename,dic_delete"
+	];
+
+	var init_with_captions = function()
+	{
+		var dialog = this,
+			lang_list = dialog.data.scayt.getLangList(),
+			buttons = [ 'dic_create','dic_delete','dic_rename','dic_restore' ],
+			labels = [ 'mixedCase','mixedWithDigits','allCaps','ignoreDomainNames' ],
+			i;
+
+		// Add buttons titles
+		for ( i in buttons )
+		{
+			var button = buttons[ i ];
+			doc.getById( button ).setHtml( '<span class="cke_dialog_ui_button">' + captions[ 'button_' + button]  +'</span>' );
+		}
+		doc.getById( 'dic_info' ).setHtml( captions[ 'dic_info' ] );
+
+		// Fill options and dictionary labels.
+		for ( i in labels )
+		{
+			var label = 'label_' + labels[ i ],
+				labelElement = doc.getById( label );
+
+			if (  'undefined' != typeof labelElement
+			   && 'undefined' != typeof captions[ label ]
+			   && 'undefined' != typeof dialog.options[labels[ i ]] )
+			{
+				labelElement.setHtml( captions[ label ] );
+				var labelParent = labelElement.getParent();
+				labelParent.$.style.display = "block";
+			}
+		}
+
+		var about = '<p>' + captions[ 'about_throwt_image' ] + '</p>'+
+					'<p>' + captions[ 'version' ]  + dialog.data.scayt.version.toString() + '</p>' +
+					'<p>' + captions[ 'about_throwt_copy' ] + '</p>';
+
+		doc.getById( 'scayt_about' ).setHtml( about );
+
+		// Create languages tab.
+		var createOption = function( option, list )
+		{
+			var label = doc.createElement( 'label' );
+			label.setAttribute( 'for', 'cke_option' + option );
+			label.setHtml( list[ option ] );
+
+			if ( dialog.sLang == option )	// Current.
+				dialog.chosed_lang = option;
+
+			var div = doc.createElement( 'div' );
+			var radio = CKEDITOR.dom.element.createFromHtml( '<input id="cke_option' +
+					option + '" type="radio" ' +
+					( dialog.sLang == option ? 'checked="checked"' : '' ) +
+					' value="' + option + '" name="scayt_lang" />' );
+
+			radio.on( 'click', function()
+				{
+					this.$.checked = true;
+					dialog.chosed_lang = option;
+				});
+
+			div.append( radio );
+			div.append( label );
+
+			return {
+				lang : list[ option ],
+				code : option,
+				radio : div
+			};
+		};
+
+		var langList = [];
+		for ( i in lang_list.rtl )
+			langList[ langList.length ] = createOption( i, lang_list.ltr );
+
+		for ( i in lang_list.ltr )
+			langList[ langList.length  ] = createOption( i, lang_list.ltr );
+
+		langList.sort( 	function( lang1, lang2 )
+			{
+				return ( lang2.lang > lang1.lang ) ? -1 : 1 ;
+			});
+
+		var fieldL = doc.getById( 'scayt_lcol' ),
+			fieldR = doc.getById( 'scayt_rcol' );
+		for ( i=0; i < langList.length; i++ )
+		{
+			var field = ( i < langList.length / 2 ) ? fieldL : fieldR;
+			field.append( langList[ i ].radio );
+		}
+
+		// user dictionary handlers
+		var dic = {};
+		dic.dic_create = function( el, dic_name , dic_buttons )
+			{
+				// comma separated button's ids include repeats if exists
+				var all_buttons = dic_buttons[0] + ',' + dic_buttons[1];
+
+				var err_massage = captions["err_dic_create"];
+				var suc_massage = captions["succ_dic_create"];
+				//console.info("--plugin ");
+
+				scayt.createUserDictionary(dic_name,
+					function(arg)
+						{
+							//console.info( "dic_create callback called with args" , arg );
+							hide_dic_buttons ( all_buttons );
+							display_dic_buttons ( dic_buttons[1] );
+							suc_massage = suc_massage.replace("%s" , arg.dname );
+							dic_success_message (suc_massage);
+						},
+					function(arg)
+						{
+							//console.info( "dic_create errorback called with args" , arg )
+							err_massage = err_massage.replace("%s" ,arg.dname );
+							dic_error_message ( err_massage + "( "+ (arg.message || "") +")");
+						});
+
+			};
+
+		dic.dic_rename = function( el, dic_name , dic_buttons )
+			{
+				//
+				// try to rename dictionary
+				// @TODO: rename dict
+				//console.info ( captions["err_dic_rename"] )
+				var err_massage = captions["err_dic_rename"] || "";
+				var suc_massage = captions["succ_dic_rename"] || "";
+				scayt.renameUserDictionary(dic_name,
+					function(arg)
+						{
+							//console.info( "dic_rename callback called with args" , arg );
+							suc_massage = suc_massage.replace("%s" , arg.dname );
+							set_dic_name( dic_name );
+							dic_success_message ( suc_massage );
+						},
+					function(arg)
+						{
+							//console.info( "dic_rename errorback called with args" , arg )
+							err_massage = err_massage.replace("%s" , arg.dname  );
+							set_dic_name( dic_name );
+							dic_error_message( err_massage + "( " + ( arg.message || "" ) + " )" );
+						});
+			};
+
+		dic.dic_delete = function ( el, dic_name , dic_buttons )
+			{
+				var all_buttons = dic_buttons[0] + ',' + dic_buttons[1];
+				var err_massage = captions["err_dic_delete"];
+				var suc_massage = captions["succ_dic_delete"];
+
+				// try to delete dictionary
+				// @TODO: delete dict
+				scayt.deleteUserDictionary(
+					function(arg)
+						{
+							//console.info( "dic_delete callback " , dic_name ,arg );
+							suc_massage = suc_massage.replace("%s" , arg.dname );
+							hide_dic_buttons ( all_buttons );
+							display_dic_buttons ( dic_buttons[0] );
+							set_dic_name( "" ); // empty input field
+							dic_success_message( suc_massage );
+						},
+					function(arg)
+						{
+							//console.info( " dic_delete errorback called with args" , arg )
+							err_massage = err_massage.replace("%s" , arg.dname );
+							dic_error_message(err_massage);
+						});
+			};
+
+		dic.dic_restore = dialog.dic_restore || function ( el, dic_name , dic_buttons )
+			{
+				// try to restore existing dictionary
+				var all_buttons = dic_buttons[0] + ',' + dic_buttons[1];
+				var err_massage = captions["err_dic_restore"];
+				var suc_massage = captions["succ_dic_restore"];
+
+				scayt.restoreUserDictionary(dic_name,
+					function(arg)
+						{
+							//console.info( "dic_restore callback called with args" , arg );
+							suc_massage = suc_massage.replace("%s" , arg.dname );
+							hide_dic_buttons ( all_buttons );
+							display_dic_buttons(dic_buttons[1]);
+							dic_success_message( suc_massage );
+						},
+					function(arg)
+						{
+							//console.info( " dic_restore errorback called with args" , arg )
+							err_massage = err_massage.replace("%s" , arg.dname );
+							dic_error_message( err_massage );
+						});
+			};
+
+		// ** bind event listeners
+		var arr_buttons = ( dic_buttons[0] + ',' + dic_buttons[1] ).split( ',' ),
+			l;
+
+		for ( i = 0, l = arr_buttons.length ; i < l ; i += 1 )
+		{
+		 	var dic_button = doc.getById(arr_buttons[i]);
+
+			dic_button.on( 'click', function ()
+				{
+					var dic_name = doc.getById('dic_name').getValue();
+					if ( !dic_name )
+					{
+						dic_error_message(" Dictionary name should not be empty. ");
+						return false;
+					}
+					//apply handler
+					dic[ this.getId() ].apply( null, [ this, dic_name, dic_buttons ] );
+
+					return true;
+				});
+		}
+	};
+	var reload = function()
+	{
+		var dialog = this;
+
+		// Animate options.
+		for ( var i in dialog.options )
+		{
+			var checkbox = doc.getById( i );
+			if ( checkbox )
+			{
+				checkbox.removeAttribute( 'checked' );
+				if ( dialog.options[ i ] == 1 )
+					checkbox.setAttribute( 'checked', 'checked' );
+
+				// Bind events. Do it only once.
+				if ( firstLoad )
+				{
+					checkbox.on( 'click', function()
+						{
+							dialog.options[ this.getId() ] = this.$.checked ? 1 : 0 ;
+						} );
+				}
+			}
+		}
+
+		// * user dictionary
+		scayt.getNameUserDictionary(
+			function( o )
+			{
+				var dic_name = o.dname;
+				if ( dic_name )
+				{
+					doc.getById( 'dic_name' ).setValue(dic_name);
+					display_dic_buttons( dic_buttons[1] );
+				}
+				else
+					display_dic_buttons( dic_buttons[0] );
+
+			},
+			function ()
+				{
+					doc.getById( 'dic_name' ).setValue("");
+				});
+
+		dic_success_message("");
+	};
+
+	function dic_error_message ( m )
+		{
+			doc.getById('dic_message').setHtml('<span style="color:red;">' + m + '</span>' );
+		}
+        function dic_success_message ( m )
+		{
+			doc.getById('dic_message').setHtml('<span style="color:blue;">' + m + '</span>') ;
+		}
+	function display_dic_buttons ( sIds )
+		{
+
+			sIds = new String( sIds );
+			var aIds = sIds.split(',');
+			for ( var i=0, l = aIds.length; i < l ; i+=1)
+			{
+				doc.getById( aIds[i] ).$.style.display = "inline";
+			}
+
+		}
+	function hide_dic_buttons ( sIds )
+		{
+			sIds = new String( sIds );
+			var aIds = sIds.split(',');
+			for ( var i = 0, l = aIds.length; i < l ; i += 1 )
+			{
+				doc.getById( aIds[i] ).$.style.display = "none";
+			}
+		}
+	function set_dic_name ( dic_name )
+		{
+			doc.getById('dic_name').$.value= dic_name;
+		}
+
+	return {
+		title : editor.lang.scayt.title,
+		minWidth : 340,
+		minHeight : 200,
+		onShow : function()
+			{
+				var dialog = this;
+				dialog.data = editor.fire( 'scaytDialog', {} );
+				dialog.options = dialog.data.scayt_control.option();
+				dialog.sLang = dialog.data.scayt_control.sLang;
+
+				if ( !dialog.data || !dialog.data.scayt || !dialog.data.scayt_control )
+				{
+					alert( 'Error loading application service' );
+					dialog.hide();
+					return;
+				}
+
+				var stop = 0;
+				if ( firstLoad )
+				{
+					dialog.data.scayt.getCaption( 'en', function( caps )
+						{
+							if ( stop++ > 0 )	// Once only
+								return;
+							captions = caps;
+							init_with_captions.apply( dialog );
+							reload.apply( dialog );
+							firstLoad = false;
+						});
+				}
+				else
+					reload.apply( dialog );
+
+				dialog.selectPage( dialog.data.tab );
+			},
+			onOk : function()
+			{
+				var scayt_control =  this.data.scayt_control,
+					o = scayt_control.option(),
+					c = 0;
+
+				// Set up options if any was set.
+				for ( var oN in this.options )
+				{
+					if (o[oN] != this.options[ oN ] && c === 0 )
+					{
+						scayt_control.option( this.options );
+						c++;
+					}
+				}
+
+				// Setup languge if it was changed.
+				var csLang = this.chosed_lang;
+				if ( csLang && this.data.sLang != csLang )
+				{
+					scayt_control.setLang( csLang );
+					c++;
+				}
+				if ( c > 0 )
+					scayt_control.refresh();
+			},
+			contents : [
+				{
+					id : 'options',
+					label : editor.lang.scayt.optionsTab,
+					elements : [
+						{
+							type : 'html',
+							id : 'options',
+							html : 	'<div class="inner_options">' +
+									'	<div class="messagebox"></div>' +
+									'	<div style="display:none;">' +
+									'		<input type="checkbox" value="0" id="allCaps" />' +
+									'		<label for="allCaps" id="label_allCaps"></label>' +
+									'	</div>' +
+									'	<div style="display:none;">' +
+									'		<input type="checkbox" value="0" id="ignoreDomainNames" />' +
+									'		<label for="ignoreDomainNames" id="label_ignoreDomainNames"></label>' +
+									'	</div>' +
+									'	<div style="display:none;">' +
+									'	<input type="checkbox" value="0" id="mixedCase" />' +
+									'		<label for="mixedCase" id="label_mixedCase"></label>' +
+									'	</div>' +
+									'	<div style="display:none;">' +
+									'		<input type="checkbox" value="0" id="mixedWithDigits" />' +
+									'		<label for="mixedWithDigits" id="label_mixedWithDigits"></label>' +
+									'	</div>' +
+									'</div>'
+						}
+					]
+				},
+				{
+					id : 'langs',
+					label : editor.lang.scayt.languagesTab,
+					elements : [
+						{
+							type : 'html',
+							id : 'langs',
+							html : 	'<div class="inner_langs">' +
+									'	<div class="messagebox"></div>	' +
+									'   <div style="float:left;width:47%;margin-left:5px;" id="scayt_lcol" ></div>' +
+									'   <div style="float:left;width:47%;margin-left:15px;" id="scayt_rcol"></div>' +
+									'</div>'
+						}
+					]
+				},
+				{
+					id : 'dictionaries',
+					label : editor.lang.scayt.dictionariesTab,
+					elements : [
+						{
+							type : 'html',
+							style: '',
+							id : 'dic',
+							html : 	'<div class="inner_dictionary" style="text-align:left; white-space:normal;">' +
+									'	<div style="margin:5px auto; width:80%;white-space:normal; overflow:hidden;" id="dic_message"> </div>' +
+									'	<div style="margin:5px auto; width:80%;white-space:normal;"> ' +
+									'       <span class="cke_dialog_ui_labeled_label" >Dictionary name</span><br>'+
+									'		<span class="cke_dialog_ui_labeled_content" >'+
+									'			<div class="cke_dialog_ui_input_text">'+
+									'				<input id="dic_name" type="text" class="cke_dialog_ui_input_text"/>'+
+									'		</div></span></div>'+
+									'		<div style="margin:5px auto; width:80%;white-space:normal;">'+
+									'			<a style="display:none;" class="cke_dialog_ui_button" href="javascript:void(0)" id="dic_create">'+
+									'				</a>' +
+									'			<a  style="display:none;" class="cke_dialog_ui_button" href="javascript:void(0)" id="dic_delete">'+
+									'				</a>' +
+									'			<a  style="display:none;" class="cke_dialog_ui_button" href="javascript:void(0)" id="dic_rename">'+
+									'				</a>' +
+									'			<a  style="display:none;" class="cke_dialog_ui_button" href="javascript:void(0)" id="dic_restore">'+
+									'				</a>' +
+									'		</div>' +
+									'	<div style="margin:5px auto; width:95%;white-space:normal;" id="dic_info"></div>' +
+									'</div>'
+						}
+					]
+				},
+				{
+					id : 'about',
+					label : editor.lang.scayt.aboutTab,
+					elements : [
+						{
+							type : 'html',
+							id : 'about',
+							style : 'margin: 10px 40px;',
+							html : '<div id="scayt_about"></div>'
+						}
+					]
+				}
+			]
+        };
+});
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/scayt/dialogs/toolbar.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/scayt/dialogs/toolbar.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/scayt/dialogs/toolbar.css	(revision 3747)
@@ -0,0 +1,71 @@
+a
+{
+	text-decoration:none;
+	padding: 2px 4px 4px 6px;
+	display : block;
+	border-width: 1px;
+	border-style: solid;
+	margin : 0px;
+}
+
+a.cke_scayt_toogle:hover,
+a.cke_scayt_toogle:focus,
+a.cke_scayt_toogle:active
+{
+	border-color: #316ac5;
+	background-color: #dff1ff;
+	color : #000;
+	cursor: pointer;
+	margin : 0px;
+}
+a.cke_scayt_toogle {
+	color : #316ac5;
+	border-color: #fff;
+}
+.scayt_enabled a.cke_scayt_item {
+	color : #316ac5;
+	border-color: #fff;
+	margin : 0px;
+}
+.scayt_disabled a.cke_scayt_item {
+	color : gray;
+	border-color : #fff;
+}
+.scayt_enabled a.cke_scayt_item:hover,
+.scayt_enabled a.cke_scayt_item:focus,
+.scayt_enabled a.cke_scayt_item:active
+{
+	border-color: #316ac5;
+	background-color: #dff1ff;
+	color : #000;
+	cursor: pointer;
+}
+.scayt_disabled a.cke_scayt_item:hover,
+.scayt_disabled a.cke_scayt_item:focus,
+.scayt_disabled a.cke_scayt_item:active
+{
+	border-color: gray;
+	background-color: #dff1ff;
+	color : gray;
+	cursor: no-drop;
+}
+.cke_scayt_set_on, .cke_scayt_set_off
+{
+	display: none;
+}
+.scayt_enabled .cke_scayt_set_on
+{
+	display: none;
+}
+.scayt_disabled .cke_scayt_set_on
+{
+	display: inline;
+}
+.scayt_disabled .cke_scayt_set_off
+{
+	display: none;
+}
+.scayt_enabled  .cke_scayt_set_off
+{
+	display: inline;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/scayt/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/scayt/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/scayt/plugin.js	(revision 3747)
@@ -0,0 +1,485 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Spell Check As You Type (SCAYT).
+ * Button name : Scayt.
+ */
+
+(function()
+{
+	var commandName 	= 'scaytcheck',
+		sc_on_cssclass 	= 'scayt_enabled',
+		sc_off_cssclass = 'scayt_disabled',
+		openPage		= '';
+
+	var onEngineLoad = function()
+	{
+		var editor = this;
+		dojo.requireLocalization( 'scayt', 'caption', '', 'ROOT' );
+
+		var createInstance = function()	// Create new instance every time Document is created.
+		{
+			// Initialise Scayt instance.
+			var oParams = CKEDITOR.config.scaytParams || {};
+			oParams.srcNodeRef = editor.document.getWindow().$.frameElement; 		// Get the iframe.
+			// syntax : AppName.AppVersion@AppRevision
+			oParams.assocApp  = "CKEDITOR." + CKEDITOR.version + "@" + CKEDITOR.revision;
+			var scayt_control = new scayt( oParams );
+
+			// Copy config.
+			var	lastInstance = plugin.instances[ editor.name ];
+			if ( lastInstance )
+			{
+				scayt_control.sLang = lastInstance.sLang;
+				scayt_control.option( lastInstance.option() );
+				scayt_control.paused = lastInstance.paused;
+			}
+
+			plugin.instances[ editor.name ] = scayt_control;
+
+			try {
+				scayt_control.setDisabled( scayt_control.paused === false );				// I really don't know why it causes JS error in IE
+			} catch (e) {}
+			editor.fire( 'showScaytState' );
+		};
+
+		editor.on( 'contentDom', createInstance );
+		editor.on( 'contentDomUnload', function()
+			{
+				// Remove scripts.
+				var scripts = CKEDITOR.document.getElementsByTag( 'script' ),
+					scaytIdRegex =  /^dojoIoScript(\d+)$/i,
+					scaytSrcRegex =  /^https?:\/\/svc\.spellchecker\.net\/spellcheck\/script\/ssrv\.cgi/i;
+
+				for ( var i=0; i < scripts.count(); i++ )
+				{
+					var script = scripts.getItem( i ),
+						id = script.getId(),
+						src = script.getAttribute( 'src' );
+
+					if ( id && src && id.match( scaytIdRegex ) && src.match( scaytSrcRegex ))
+						script.remove();
+				}
+			});
+
+		editor.on( 'beforeCommandExec', function( ev )		// Disable SCAYT before Source command execution.
+			{
+				if ( ev.data.name == 'source' && editor.mode == 'wysiwyg' )
+				{
+					var scayt = plugin.getScayt( editor );
+					if ( scayt )
+					{
+						scayt.paused = !scayt.disabled;
+						scayt.setDisabled( true );
+					}
+				}
+			});
+
+		// Listen to data manipulation to reflect scayt markup.
+		editor.on( 'afterSetData', function()
+			{
+				if ( plugin.isScaytEnabled( editor ) )
+					plugin.getScayt( editor ).refresh();
+			});
+
+		editor.on( 'scaytDialog', function( ev )	// Communication with dialog.
+			{
+				ev.data.djConfig = djConfig;
+				ev.data.scayt_control = plugin.getScayt( editor );
+				ev.data.tab = openPage;
+				ev.data.scayt = scayt;
+			});
+
+		var dataProcessor = editor.dataProcessor,
+			htmlFilter = dataProcessor && dataProcessor.htmlFilter;
+		if ( htmlFilter )
+		{
+			htmlFilter.addRules(
+				{
+					elements :
+					{
+						span : function( element )
+						{
+							if ( element.attributes.scayt_word && element.attributes.scaytid )
+							{
+								delete element.name;	// Write children, but don't write this node.
+								return element;
+							}
+						}
+					}
+				}
+			);
+		}
+
+		if ( editor.document )
+			createInstance();
+	};
+
+	CKEDITOR.plugins.scayt =
+	{
+		engineLoaded : false,
+		instances : {},
+		getScayt : function( editor )
+		{
+			var instance = this.instances[ editor.name ];
+			return instance;
+		},
+		isScaytReady : function( editor )
+		{
+			return this.engineLoaded === true &&
+				'undefined' !== typeof scayt && this.getScayt( editor );
+		},
+		isScaytEnabled : function( editor )
+		{
+			var scayt = this.getScayt( editor );
+			return ( scayt ) ? scayt.disabled === false : false;
+		},
+		loadEngine : function( editor )
+		{
+			if ( this.engineLoaded === true )
+				return onEngineLoad.apply( editor );	// Add new instance.
+			else if ( this.engineLoaded == -1 )			// We are waiting.
+				return CKEDITOR.on( 'scaytReady', function(){ onEngineLoad.apply( editor );} );	// Use function(){} to avoid rejection as duplicate.
+
+			CKEDITOR.on( 'scaytReady', onEngineLoad, editor );
+			CKEDITOR.on( 'scaytReady', function()
+				{
+					this.engineLoaded = true;
+				},
+				this,
+				null,
+				0 );	// First to run.
+
+			this.engineLoaded = -1;	// Loading in progress.
+			// assign diojo configurable vars
+			var parseUrl =  function(data)
+				{
+					var m = data.match(/(.*)[\/\\]([^\/\\]+\.\w+)$/);
+					return { path: m[1], file: m[2] };
+				};
+
+			// compose scayt url
+			var protocol = document.location.protocol;
+			var baseUrl  = "svc.spellchecker.net/spellcheck/lf/scayt/scayt.js";
+			var scaytUrl  =  editor.config.scaytParams.srcScayt ||
+				(protocol + "//" + baseUrl);
+			var scaytConfigBaseUrl = parseUrl(scaytUrl).path +  "/";
+
+			djScaytConfig =
+			{
+				baseUrl: scaytConfigBaseUrl,
+				addOnLoad:
+				[
+					function()
+					{
+						CKEDITOR.fireOnce( "scaytReady" );
+					}
+				],
+				isDebug: false
+			};
+			// Append javascript code.
+			CKEDITOR.document.getHead().append(
+				CKEDITOR.document.createElement( 'script',
+					{
+						attributes :
+							{
+								type : 'text/javascript',
+								src : scaytUrl
+							}
+					})
+			);
+
+			return null;
+		}
+	};
+
+	var plugin = CKEDITOR.plugins.scayt;
+
+	// Context menu constructing.
+	var addButtonCommand = function( editor, buttonName, buttonLabel, commandName, command, menugroup, menuOrder )
+	{
+		editor.addCommand( commandName, command );
+
+		// If the "menu" plugin is loaded, register the menu item.
+		editor.addMenuItem( commandName,
+			{
+				label : buttonLabel,
+				command : commandName,
+				group : menugroup,
+				order : menuOrder
+			});
+	};
+
+	var commandDefinition =
+	{
+		preserveState : true,
+
+		exec: function( editor )
+		{
+			if ( plugin.isScaytReady( editor ) )
+			{
+				var isEnabled = plugin.isScaytEnabled( editor );
+
+				this.setState( isEnabled ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_ON );
+
+				var scayt_control = plugin.getScayt( editor );
+				scayt_control.setDisabled( isEnabled );
+			}
+			else if ( !editor.config.scayt_autoStartup && plugin.engineLoaded >= 0 )	// Load first time
+			{
+				this.setState( CKEDITOR.TRISTATE_DISABLED );
+
+				editor.on( 'showScaytState', function()
+					{
+						this.removeListener();
+						this.setState( plugin.isScaytEnabled( editor ) ? CKEDITOR.TRISTATE_ON : CKEDITOR.TRISTATE_OFF );
+					},
+					this);
+
+				plugin.loadEngine( editor );
+			}
+		}
+	};
+
+	// Add scayt plugin.
+	CKEDITOR.plugins.add( 'scayt',
+	{
+		requires : [ 'menubutton' ],
+
+		beforeInit : function( editor )
+		{
+			// Register own rbc menu group.
+			editor.config.menu_groups = 'scayt_suggest,scayt_moresuggest,scayt_control,' + editor.config.menu_groups;
+		},
+
+		init : function( editor )
+		{
+			var moreSuggestions = {};
+			var mainSuggestions = {};
+
+			// Scayt command.
+			var command = editor.addCommand( commandName, commandDefinition );
+
+			// Add Options dialog.
+			CKEDITOR.dialog.add( commandName, CKEDITOR.getUrl( this.path + 'dialogs/options.js' ) );
+
+			var menuGroup = 'scaytButton';
+			editor.addMenuGroup( menuGroup );
+			editor.addMenuItems(
+				{
+					scaytToggle :
+					{
+						label : editor.lang.scayt.enable,
+						command : commandName,
+						group : menuGroup
+					},
+
+					scaytOptions :
+					{
+						label : editor.lang.scayt.options,
+						group : menuGroup,
+						onClick : function()
+						{
+							openPage = 'options';
+							editor.openDialog( commandName );
+						}
+					},
+
+					scaytLangs :
+					{
+						label : editor.lang.scayt.langs,
+						group : menuGroup,
+						onClick : function()
+						{
+							openPage = 'langs';
+							editor.openDialog( commandName );
+						}
+					},
+
+					scaytAbout :
+					{
+						label : editor.lang.scayt.about,
+						group : menuGroup,
+						onClick : function()
+						{
+							openPage = 'about';
+							editor.openDialog( commandName );
+						}
+					}
+				});
+
+			// Disabling it on IE for now, as it's blocking the browser (#3802).
+			if ( !CKEDITOR.env.ie )
+			{
+				editor.ui.add( 'Scayt', CKEDITOR.UI_MENUBUTTON,
+					{
+						label : editor.lang.scayt.title,
+						title : editor.lang.scayt.title,
+						className : 'cke_button_scayt',
+						onRender: function()
+						{
+							command.on( 'state', function()
+								{
+									this.setState( command.state );
+								},
+								this);
+						},
+						onMenu : function()
+						{
+							var isEnabled = plugin.isScaytEnabled( editor );
+
+							editor.getMenuItem( 'scaytToggle' ).label = editor.lang.scayt[ isEnabled ? 'disable' : 'enable' ];
+
+							return {
+								scaytToggle : CKEDITOR.TRISTATE_OFF,
+								scaytOptions : isEnabled ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED,
+								scaytLangs : isEnabled ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED,
+								scaytAbout : isEnabled ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED
+							};
+						}
+					});
+			}
+
+			// If the "contextmenu" plugin is loaded, register the listeners.
+			if ( editor.contextMenu && editor.addMenuItems )
+			{
+				editor.contextMenu.addListener( function( element, selection )
+					{
+						var scayt_control = plugin.getScayt( editor );
+						if ( !plugin.isScaytEnabled( editor ) || !element || !element.$ )
+							return null;
+
+						var word = scayt_control.getWord( element.$ );
+
+						if ( !word )
+							return null;
+
+						var sLang = scayt_control.getLang(),
+							_r = {},
+							items_suggestion = scayt.getSuggestion( word, sLang );
+						if (!items_suggestion || !items_suggestion.length )
+							return null;
+						// Remove unused commands and menuitems
+						for ( i in moreSuggestions )
+						{
+							delete editor._.menuItems[ i ];
+							delete editor._.commands[ i ];
+						}
+						for ( i in mainSuggestions )
+						{
+							delete editor._.menuItems[ i ];
+							delete editor._.commands[ i ];
+						}
+						moreSuggestions = {};		// Reset items.
+						mainSuggestions = {};
+
+						var moreSuggestionsUnable = false;
+
+						for ( var i = 0, l = items_suggestion.length; i < l; i += 1 )
+						{
+							var commandName = 'scayt_suggestion_' + items_suggestion[i].replace( ' ', '_' );
+							var exec = ( function( el, s )
+								{
+									return {
+										exec: function( editor )
+										{
+											scayt_control.replace(el, s);
+										}
+									};
+								})( element.$, items_suggestion[i] );
+
+							if ( i < editor.config.scayt_maxSuggestions )
+							{
+								addButtonCommand( editor, 'button_' + commandName, items_suggestion[i],
+									commandName, exec, 'scayt_suggest', i + 1 );
+								_r[ commandName ] = CKEDITOR.TRISTATE_OFF;
+								mainSuggestions[ commandName ] = CKEDITOR.TRISTATE_OFF;
+							}
+							else
+							{
+								addButtonCommand( editor, 'button_' + commandName, items_suggestion[i],
+									commandName, exec, 'scayt_moresuggest', i + 1 );
+								moreSuggestions[ commandName ] = CKEDITOR.TRISTATE_OFF;
+								moreSuggestionsUnable = true;
+							}
+						}
+						if ( moreSuggestionsUnable )
+							// Rgister the More suggestions group;
+							editor.addMenuItem( 'scayt_moresuggest',
+								{
+									label : editor.lang.scayt.moreSuggestions,
+									group : 'scayt_moresuggest',
+									order : 10,
+									getItems : function()
+									{
+										return moreSuggestions;
+									}
+								});
+
+
+						var ignore_command =
+						{
+							exec: function()
+							{
+								scayt_control.ignore( element.$ );
+							}
+						};
+						var ignore_all_command =
+						{
+							exec: function()
+							{
+								scayt_control.ignoreAll( element.$ );
+							}
+						};
+						var addword_command =
+						{
+							exec: function()
+							{
+								scayt.addWordToUserDictionary( element.$ );
+							}
+						};
+
+						addButtonCommand( editor, 'ignore', editor.lang.scayt.ignore,
+							'scayt_ignore', ignore_command, 'scayt_control', 1);
+						addButtonCommand( editor, 'ignore_all', editor.lang.scayt.ignoreAll,
+							'scayt_ignore_all', ignore_all_command, 'scayt_control', 2);
+						addButtonCommand( editor, 'add_word', editor.lang.scayt.addWord,
+							'scayt_add_word', addword_command, 'scayt_control', 3);
+
+						mainSuggestions[ 'scayt_moresuggest' ] = CKEDITOR.TRISTATE_OFF;
+						mainSuggestions[ 'scayt_ignore' ] = CKEDITOR.TRISTATE_OFF;
+						mainSuggestions[ 'scayt_ignore_all' ] = CKEDITOR.TRISTATE_OFF;
+						mainSuggestions[ 'scayt_add_word' ] = CKEDITOR.TRISTATE_OFF;
+
+						// ** ahow ads entry point
+						// ** hide ads listener register
+//						try{
+							//scayt_control.showBanner( editor )
+//						}catch(err){}
+
+						return mainSuggestions;
+					});
+			}
+
+			// Start plugin
+			if ( editor.config.scayt_autoStartup )
+			{
+				var showInitialState = function()
+				{
+					editor.removeListener( 'showScaytState', showInitialState );
+					command.setState( plugin.isScaytEnabled( editor ) ? CKEDITOR.TRISTATE_ON : CKEDITOR.TRISTATE_OFF );
+				};
+				editor.on( 'showScaytState', showInitialState );
+
+				plugin.loadEngine( editor );
+			}
+		}
+	});
+})();
+
+CKEDITOR.config.scaytParams = CKEDITOR.config.scaytParams || {};
+CKEDITOR.config.scayt_maxSuggestions = 5;
+CKEDITOR.config.scayt_autoStartup = false;
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/selection/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/selection/plugin.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/selection/plugin.js	(revision 3747)
@@ -11,25 +11,31 @@
 	// the current node and check it on successive requests. If there is any
 	// change on the tree, then the selectionChange event gets fired.
-	var checkSelectionChange = function()
+	function checkSelectionChange()
 	{
-		// In IE, the "selectionchange" event may still get thrown when
-		// releasing the WYSIWYG mode, so we need to check it first.
-		var sel = this.getSelection();
-		if ( !sel )
-			return;
-
-		var firstElement = sel.getStartElement();
-		var currentPath = new CKEDITOR.dom.elementPath( firstElement );
-
-		if ( !currentPath.compare( this._.selectionPreviousPath ) )
-		{
-			this._.selectionPreviousPath = currentPath;
-			this.fire( 'selectionChange', { selection : sel, path : currentPath, element : firstElement } );
+		try
+		{
+			// In IE, the "selectionchange" event may still get thrown when
+			// releasing the WYSIWYG mode, so we need to check it first.
+			var sel = this.getSelection();
+			if ( !sel )
+				return;
+
+			var firstElement = sel.getStartElement();
+			var currentPath = new CKEDITOR.dom.elementPath( firstElement );
+
+			if ( !currentPath.compare( this._.selectionPreviousPath ) )
+			{
+				this._.selectionPreviousPath = currentPath;
+				this.fire( 'selectionChange', { selection : sel, path : currentPath, element : firstElement } );
+			}
 		}
-	};
-
-	var checkSelectionChangeTimer;
-	var checkSelectionChangeTimeoutPending;
-	var checkSelectionChangeTimeout = function()
+		catch (e)
+		{}
+	}
+
+	var checkSelectionChangeTimer,
+		checkSelectionChangeTimeoutPending;
+
+	function checkSelectionChangeTimeout()
 	{
 		// Firing the "OnSelectionChange" event on every key press started to
@@ -45,7 +51,7 @@
 
 		checkSelectionChangeTimer = CKEDITOR.tools.setTimeout( checkSelectionChangeTimeoutExec, 200, this );
-	};
-
-	var checkSelectionChangeTimeoutExec = function()
+	}
+
+	function checkSelectionChangeTimeoutExec()
 	{
 		checkSelectionChangeTimer = null;
@@ -61,5 +67,5 @@
 			checkSelectionChangeTimeoutPending = false;
 		}
-	};
+	}
 
 	// #### checkSelectionChange : END
@@ -77,18 +83,132 @@
 					// TODO
 			}
-		}
+		},
+		canUndo : false
 	};
 
 	CKEDITOR.plugins.add( 'selection',
 	{
-		init : function( editor, pluginPath )
+		init : function( editor )
 		{
 			editor.on( 'contentDom', function()
 				{
+					var doc = editor.document;
+
 					if ( CKEDITOR.env.ie )
 					{
+						// Other browsers don't loose the selection if the
+						// editor document loose the focus. In IE, we don't
+						// have support for it, so we reproduce it here, other
+						// than firing the selection change event.
+
+						var savedRange,
+							saveEnabled;
+
+						// "onfocusin" is fired before "onfocus". It makes it
+						// possible to restore the selection before click
+						// events get executed.
+						doc.on( 'focusin', function()
+							{
+								// If we have saved a range, restore it at this
+								// point.
+								if ( savedRange )
+								{
+									// Well not break because of this.
+									try
+									{
+										savedRange.select();
+									}
+									catch (e)
+									{}
+
+									savedRange = null;
+								}
+							});
+
+						editor.window.on( 'focus', function()
+							{
+								// Enable selections to be saved.
+								saveEnabled = true;
+
+								saveSelection();
+							});
+
+						editor.window.on( 'blur', function()
+							{
+								// Disable selections from being saved.
+								saveEnabled = false;
+
+								// IE may leave the selection still inside the
+								// document. Let's force it to be removed.
+								// TODO: The following has effect for
+								// collapsed selections.
+								editor.document.$.execCommand( 'Unselect' );
+							});
+
+						// IE fires the "selectionchange" event when clicking
+						// inside a selection. We don't want to capture that.
+						doc.on( 'mousedown', disableSave );
+						doc.on( 'mouseup',
+							function()
+							{
+								saveEnabled = true;
+								setTimeout( function()
+									{
+										saveSelection( true );
+									},
+									0 );
+							});
+
+						doc.on( 'keydown', disableSave );
+						doc.on( 'keyup',
+							function()
+							{
+								saveEnabled = true;
+								saveSelection();
+							});
+
+
 						// IE is the only to provide the "selectionchange"
 						// event.
-						editor.document.on( 'selectionchange', checkSelectionChangeTimeout, editor );
+						doc.on( 'selectionchange', saveSelection );
+
+						function disableSave()
+						{
+							saveEnabled = false;
+						}
+
+						function saveSelection( testIt )
+						{
+							if ( saveEnabled )
+							{
+								var doc = editor.document,
+									sel = doc && doc.$.selection;
+
+								// There is a very specific case, when clicking
+								// inside a text selection. In that case, the
+								// selection collapses at the clicking point,
+								// but the selection object remains in an
+								// unknown state, making createRange return a
+								// range at the very start of the document. In
+								// such situation we have to test the range, to
+								// be sure it's valid.
+								if ( testIt && sel && sel.type == 'None' )
+								{
+									// The "InsertImage" command can be used to
+									// test whether the selection is good or not.
+									// If not, it's enough to give some time to
+									// IE to put things in order for us.
+									if ( !doc.$.queryCommandEnabled( 'InsertImage' ) )
+									{
+										CKEDITOR.tools.setTimeout( saveSelection, 50, this, true );
+										return;
+									}
+								}
+
+								savedRange = sel && sel.createRange();
+
+								checkSelectionChangeTimeout.call( editor );
+							}
+						}
 					}
 					else
@@ -98,6 +218,6 @@
 						// press.
 
-						editor.document.on( 'mouseup', checkSelectionChangeTimeout, editor );
-						editor.document.on( 'keyup', checkSelectionChangeTimeout, editor );
+						doc.on( 'mouseup', checkSelectionChangeTimeout, editor );
+						doc.on( 'keyup', checkSelectionChangeTimeout, editor );
 					}
 				});
@@ -109,93 +229,109 @@
 					command : 'selectAll'
 				});
+
+			editor.selectionChange = checkSelectionChangeTimeout;
 		}
 	});
-})();
-
-/**
- * Gets the current selection from the editing area when in WYSIWYG mode.
- * @returns {CKEDITOR.dom.selection} A selection object or null if not on
- *		WYSIWYG mode or no selection is available.
- * @example
- * var selection = CKEDITOR.instances.editor1.<b>getSelection()</b>;
- * alert( selection.getType() );
- */
-CKEDITOR.editor.prototype.getSelection = function()
-{
-	var retval = this.document ? this.document.getSelection() : null;
 
 	/**
-	 * IE BUG: The selection's document may be a different document than the
-	 * editor document. Return null if that's the case.
+	 * Gets the current selection from the editing area when in WYSIWYG mode.
+	 * @returns {CKEDITOR.dom.selection} A selection object or null if not on
+	 *		WYSIWYG mode or no selection is available.
+	 * @example
+	 * var selection = CKEDITOR.instances.editor1.<b>getSelection()</b>;
+	 * alert( selection.getType() );
 	 */
-	if ( retval && CKEDITOR.env.ie )
+	CKEDITOR.editor.prototype.getSelection = function()
 	{
-		var range = retval.getNative().createRange();
-		if ( !range )
-			return null;
-		else if ( range.item )
-			return range.item(0).ownerDocument == this.document.$ ? retval : null;
-		else
-			return range.parentElement().ownerDocument == this.document.$ ? retval : null;
-	}
-	return retval;
-};
-
-/**
- * Gets the current selection from the document.
- * @returns {CKEDITOR.dom.selection} A selection object.
- * @example
- * var selection = CKEDITOR.instances.editor1.document.<b>getSelection()</b>;
- * alert( selection.getType() );
- */
-CKEDITOR.dom.document.prototype.getSelection = function()
-{
-	return new CKEDITOR.dom.selection( this );
-};
-
-/**
- * No selection.
- * @constant
- * @example
- * if ( editor.getSelection().getType() == CKEDITOR.SELECTION_NONE )
- *     alert( 'Nothing is selected' );
- */
-CKEDITOR.SELECTION_NONE		= 1;
-
-/**
- * Text or collapsed selection.
- * @constant
- * @example
- * if ( editor.getSelection().getType() == CKEDITOR.SELECTION_TEXT )
- *     alert( 'Text is selected' );
- */
-CKEDITOR.SELECTION_TEXT		= 2;
-
-/**
- * Element selection.
- * @constant
- * @example
- * if ( editor.getSelection().getType() == CKEDITOR.SELECTION_ELEMENT )
- *     alert( 'An element is selected' );
- */
-CKEDITOR.SELECTION_ELEMENT	= 3;
-
-/**
- * Manipulates the selection in a DOM document.
- * @constructor
- * @example
- */
-CKEDITOR.dom.selection = function( document )
-{
-	this.document = document;
-	this._ =
+		return this.document && this.document.getSelection();
+	};
+
+	CKEDITOR.editor.prototype.forceNextSelectionCheck = function()
 	{
-		cache : {}
+		delete this._.selectionPreviousPath;
 	};
-};
-
-(function()
-{
-	var styleObjectElements = { img:1,hr:1,li:1,table:1,tr:1,td:1,embed:1,object:1,ol:1,ul:1 };
+
+	/**
+	 * Gets the current selection from the document.
+	 * @returns {CKEDITOR.dom.selection} A selection object.
+	 * @example
+	 * var selection = CKEDITOR.instances.editor1.document.<b>getSelection()</b>;
+	 * alert( selection.getType() );
+	 */
+	CKEDITOR.dom.document.prototype.getSelection = function()
+	{
+		var sel = new CKEDITOR.dom.selection( this );
+		return ( !sel || sel.isInvalid ) ? null : sel;
+	};
+
+	/**
+	 * No selection.
+	 * @constant
+	 * @example
+	 * if ( editor.getSelection().getType() == CKEDITOR.SELECTION_NONE )
+	 *     alert( 'Nothing is selected' );
+	 */
+	CKEDITOR.SELECTION_NONE		= 1;
+
+	/**
+	 * Text or collapsed selection.
+	 * @constant
+	 * @example
+	 * if ( editor.getSelection().getType() == CKEDITOR.SELECTION_TEXT )
+	 *     alert( 'Text is selected' );
+	 */
+	CKEDITOR.SELECTION_TEXT		= 2;
+
+	/**
+	 * Element selection.
+	 * @constant
+	 * @example
+	 * if ( editor.getSelection().getType() == CKEDITOR.SELECTION_ELEMENT )
+	 *     alert( 'An element is selected' );
+	 */
+	CKEDITOR.SELECTION_ELEMENT	= 3;
+
+	/**
+	 * Manipulates the selection in a DOM document.
+	 * @constructor
+	 * @example
+	 */
+	CKEDITOR.dom.selection = function( document )
+	{
+		var lockedSelection = document.getCustomData( 'cke_locked_selection' );
+
+		if ( lockedSelection )
+			return lockedSelection;
+
+		this.document = document;
+		this.isLocked = false;
+		this._ =
+		{
+			cache : {}
+		};
+
+		/**
+		 * IE BUG: The selection's document may be a different document than the
+		 * editor document. Return null if that's the case.
+		 */
+		if ( CKEDITOR.env.ie )
+		{
+			var range = this.getNative().createRange();
+			if ( !range
+				|| ( range.item && range.item(0).ownerDocument != this.document.$ )
+				|| ( range.parentElement && range.parentElement().ownerDocument != this.document.$ ) )
+			{
+				this.isInvalid = true;
+			}
+		}
+
+		return this;
+	};
+
+	var styleObjectElements =
+	{
+		img:1,hr:1,li:1,table:1,tr:1,td:1,embed:1,object:1,ol:1,ul:1,
+		a:1, input:1, form:1, select:1, textarea:1, button:1, fieldset:1, th:1, thead:1, tfoot:1
+	};
 
 	CKEDITOR.dom.selection.prototype =
@@ -242,6 +378,7 @@
 				function()
 				{
-					if ( this._.cache.type )
-						return this._.cache.type;
+					var cache = this._.cache;
+					if ( cache.type )
+						return cache.type;
 
 					var type = CKEDITOR.SELECTION_NONE;
@@ -267,11 +404,12 @@
 					catch(e) {}
 
-					return ( this._.cache.type = type );
+					return ( cache.type = type );
 				}
 			:
 				function()
 				{
-					if ( this._.cache.type )
-						return this._.cache.type;
+					var cache = this._.cache;
+					if ( cache.type )
+						return cache.type;
 
 					var type = CKEDITOR.SELECTION_TEXT;
@@ -298,5 +436,5 @@
 					}
 
-					return ( this._.cache.type = type );
+					return ( cache.type = type );
 				},
 
@@ -374,6 +512,7 @@
 					return function()
 					{
-						if ( this._.cache.ranges )
-							return this._.cache.ranges;
+						var cache = this._.cache;
+						if ( cache.ranges )
+							return cache.ranges;
 
 						// IE doesn't have range support (in the W3C way), so we
@@ -382,7 +521,10 @@
 
 						var sel = this.getNative(),
-							nativeRange = sel.createRange(),
+							nativeRange = sel && sel.createRange(),
 							type = this.getType(),
 							range;
+
+						if ( !sel )
+							return [];
 
 						if ( type == CKEDITOR.SELECTION_TEXT )
@@ -396,5 +538,5 @@
 							range.setEnd( new CKEDITOR.dom.node( boundaryInfo.container ), boundaryInfo.offset );
 
-							return ( this._.cache.ranges = [ range ] );
+							return ( cache.ranges = [ range ] );
 						}
 						else if ( type == CKEDITOR.SELECTION_ELEMENT )
@@ -421,5 +563,5 @@
 						}
 
-						return ( this._.cache.ranges = [] );
+						return ( cache.ranges = [] );
 					};
 				})()
@@ -427,6 +569,7 @@
 				function()
 				{
-					if ( this._.cache.ranges )
-						return this._.cache.ranges;
+					var cache = this._.cache;
+					if ( cache.ranges )
+						return cache.ranges;
 
 					// On browsers implementing the W3C range, we simply
@@ -436,4 +579,7 @@
 					var ranges = [];
 					var sel = this.getNative();
+
+					if ( !sel )
+						return [];
 
 					for ( var i = 0 ; i < sel.rangeCount ; i++ )
@@ -447,5 +593,5 @@
 					}
 
-					return ( this._.cache.ranges = ranges );
+					return ( cache.ranges = ranges );
 				},
 
@@ -460,4 +606,8 @@
 		getStartElement : function()
 		{
+			var cache = this._.cache;
+			if ( cache.startElement !== undefined )
+				return cache.startElement;
+
 			var node,
 				sel = this.getNative();
@@ -477,4 +627,17 @@
 						{
 							range.optimize();
+
+							// Decrease the range content to exclude particial
+							// selected node on the start which doesn't have
+							// visual impact. ( #3231 )
+							while( true )
+							{
+								var startContainer = range.startContainer,
+									startOffset = range.startOffset;
+								if ( startOffset == ( startContainer.getChildCount ?
+									startContainer.getChildCount() : startContainer.getLength() ) )
+									range.setStartAfter( startContainer );
+								else break;
+							}
 
 							node = range.startContainer;
@@ -515,5 +678,5 @@
 			}
 
-			return ( node ? new CKEDITOR.dom.element( node ) : null );
+			return cache.startElement = ( node ? new CKEDITOR.dom.element( node ) : null );
 		},
 
@@ -529,4 +692,8 @@
 		getSelectedElement : function()
 		{
+			var cache = this._.cache;
+			if ( cache.selectedElement !== undefined )
+				return cache.selectedElement;
+
 			var node;
 
@@ -550,5 +717,54 @@
 			}
 
-			return ( node ? new CKEDITOR.dom.element( node ) : null );
+			return cache.selectedElement = ( node ? new CKEDITOR.dom.element( node ) : null );
+		},
+
+		lock : function()
+		{
+			// Call all cacheable function.
+			this.getRanges();
+			this.getStartElement();
+			this.getSelectedElement();
+
+			// The native selection is not available when locked.
+			this._.cache.nativeSel = {};
+
+			this.isLocked = true;
+
+			// Save this selection inside the DOM document.
+			this.document.setCustomData( 'cke_locked_selection', this );
+		},
+
+		unlock : function( restore )
+		{
+			var doc = this.document,
+				lockedSelection = doc.getCustomData( 'cke_locked_selection' );
+
+			if ( lockedSelection )
+			{
+				doc.setCustomData( 'cke_locked_selection', null );
+
+				if ( restore )
+				{
+					var selectedElement = lockedSelection.getSelectedElement(),
+						ranges = !selectedElement && lockedSelection.getRanges();
+
+					this.isLocked = false;
+					this.reset();
+
+					doc.getBody().focus();
+
+					if ( selectedElement )
+						this.selectElement( selectedElement );
+					else
+						this.selectRanges( ranges );
+				}
+			}
+
+			if  ( !lockedSelection || !restore )
+			{
+				this.isLocked = false;
+				this.reset();
+			}
 		},
 
@@ -558,73 +774,138 @@
 		},
 
-		selectElement :
-			CKEDITOR.env.ie ?
-				function( element )
-				{
-					this.getNative().empty();
-
-					var range;
-					try
-					{
-						// Try to select the node as a control.
-						range = this.document.$.body.createControlRange();
-						range.addElement( element.$ );
-					}
-					catch(e)
-					{
-						// If failed, select it as a text range.
-						range = this.document.$.body.createTextRange();
-						range.moveToElementText( element.$ );
-					}
-
+		selectElement : function( element )
+		{
+			if ( this.isLocked )
+			{
+				var range = new CKEDITOR.dom.range();
+				range.setStartBefore( element );
+				range.setEndAfter( element );
+
+				this._.cache.selectedElement = element;
+				this._.cache.startElement = element;
+				this._.cache.ranges = [ range ];
+				this._.cache.type = CKEDITOR.SELECTION_ELEMENT;
+
+				return;
+			}
+
+			if ( CKEDITOR.env.ie )
+			{
+				this.getNative().empty();
+
+				try
+				{
+					// Try to select the node as a control.
+					range = this.document.$.body.createControlRange();
+					range.addElement( element.$ );
 					range.select();
 				}
-			:
-				function( element )
-				{
-					// Create the range for the element.
-					var range = this.document.$.createRange();
-					range.selectNode( element.$ );
+				catch(e)
+				{
+					// If failed, select it as a text range.
+					range = this.document.$.body.createTextRange();
+					range.moveToElementText( element.$ );
+					range.select();
+				}
+
+				this.reset();
+			}
+			else
+			{
+				// Create the range for the element.
+				range = this.document.$.createRange();
+				range.selectNode( element.$ );
+
+				// Select the range.
+				var sel = this.getNative();
+				sel.removeAllRanges();
+				sel.addRange( range );
+
+				this.reset();
+			}
+		},
+
+		selectRanges : function( ranges )
+		{
+			if ( this.isLocked )
+			{
+				this._.cache.selectedElement = null;
+				this._.cache.startElement = ranges[ 0 ].getTouchedStartNode();
+				this._.cache.ranges = ranges;
+				this._.cache.type = CKEDITOR.SELECTION_TEXT;
+
+				return;
+			}
+
+			if ( CKEDITOR.env.ie )
+			{
+				// IE doesn't accept multiple ranges selection, so we just
+				// select the first one.
+				if ( ranges[ 0 ] )
+					ranges[ 0 ].select();
+
+				this.reset();
+			}
+			else
+			{
+				var sel = this.getNative();
+				sel.removeAllRanges();
+
+				for ( var i = 0 ; i < ranges.length ; i++ )
+				{
+					var range = ranges[ i ];
+					var nativeRange = this.document.$.createRange();
+					nativeRange.setStart( range.startContainer.$, range.startOffset );
+					nativeRange.setEnd( range.endContainer.$, range.endOffset );
 
 					// Select the range.
-					var sel = this.getNative();
-					sel.removeAllRanges();
-					sel.addRange( range );
-				},
-
-		selectRanges :
-			CKEDITOR.env.ie ?
-				function( ranges )
-				{
-					// IE doesn't accept multiple ranges selection, so we just
-					// select the first one.
-					if ( ranges[ 0 ] )
-						ranges[ 0 ].select();
+					sel.addRange( nativeRange );
 				}
-			:
-				function( ranges )
-				{
-					var sel = this.getNative();
-					sel.removeAllRanges();
-
-					for ( var i = 0 ; i < ranges.length ; i++ )
-					{
-						var range = ranges[ i ];
-						var nativeRange = this.document.$.createRange();
-						nativeRange.setStart( range.startContainer.$, range.startOffset );
-						nativeRange.setEnd( range.endContainer.$, range.endOffset );
-
-						// Select the range.
-						sel.addRange( nativeRange );
-					}
-				},
-
-		createBookmarks : function()
+
+				this.reset();
+			}
+		},
+
+		createBookmarks : function( serializable )
 		{
 			var retval = [],
+				ranges = this.getRanges(),
+				length = ranges.length,
+				bookmark;
+			for ( var i = 0; i < length ; i++ )
+			{
+			    retval.push( bookmark = ranges[ i ].createBookmark( serializable, true ) );
+
+				serializable = bookmark.serializable;
+
+				var bookmarkStart = serializable ? this.document.getById( bookmark.startNode ) : bookmark.startNode,
+					bookmarkEnd = serializable ? this.document.getById( bookmark.endNode ) : bookmark.endNode;
+
+			    // Updating the offset values for rest of ranges which have been mangled(#3256).
+			    for ( var j = i + 1 ; j < length ; j++ )
+			    {
+			        var dirtyRange = ranges[ j ],
+			               rangeStart = dirtyRange.startContainer,
+			               rangeEnd = dirtyRange.endContainer;
+
+			       rangeStart.equals( bookmarkStart.getParent() ) && dirtyRange.startOffset++;
+			       rangeStart.equals( bookmarkEnd.getParent() ) && dirtyRange.startOffset++;
+			       rangeEnd.equals( bookmarkStart.getParent() ) && dirtyRange.endOffset++;
+			       rangeEnd.equals( bookmarkEnd.getParent() ) && dirtyRange.endOffset++;
+			    }
+			}
+
+			return retval;
+		},
+
+		createBookmarks2 : function( normalized )
+		{
+			var bookmarks = [],
 				ranges = this.getRanges();
+
 			for ( var i = 0 ; i < ranges.length ; i++ )
-				retval.push( ranges[i].createBookmark() );
-			return retval;
+				bookmarks.push( ranges[i].createBookmark2( normalized ) );
+
+			return bookmarks;
 		},
 
@@ -683,6 +964,17 @@
 			else
 			{
-				isStartMakerAlone = ( !startNode.hasPrevious() || ( startNode.getPrevious().is && startNode.getPrevious().is( 'br' ) ) )
-					&& !startNode.hasNext();
+// The isStartMakerAlone logic comes from V2. It guarantees that the lines
+// will expand and that the cursor will be blinking on the right place.
+// Actually, we are using this flag just to avoid using this hack in all
+// situations, but just on those needed.
+
+// But, in V3, somehow it is not interested on working whe hitting SHIFT+ENTER
+// inside text. So, let's jsut leave the hack happen always.
+
+// I'm still leaving the code here just in case. We may find some other IE
+// weirdness and uncommenting this stuff may be useful.
+
+//				isStartMakerAlone = ( !startNode.hasPrevious() || ( startNode.getPrevious().is && startNode.getPrevious().is( 'br' ) ) )
+//					&& !startNode.hasNext();
 
 				// Append a temporary <span>&#65279;</span> before the selection.
@@ -695,12 +987,12 @@
 				dummySpan.insertBefore( startNode );
 
-				if ( isStartMakerAlone )
-				{
+//				if ( isStartMakerAlone )
+//				{
 					// To expand empty blocks or line spaces after <br>, we need
 					// instead to have any char, which will be later deleted using the
 					// selection.
-					// \ufeff = Zero Width No-Break Space (U+FEFF). See #1359.
+					// \ufeff = Zero Width No-Break Space (U+FEFF). (#1359)
 					this.document.createText( '\ufeff' ).insertBefore( startNode );
-				}
+//				}
 			}
 
@@ -711,16 +1003,16 @@
 			if ( collapsed )
 			{
-				if ( isStartMakerAlone )
-				{
-					// Move the selection start to include the temporary &#65279;.
-					//ieRange.moveStart( 'character', -1 );
+//				if ( isStartMakerAlone )
+//				{
+					// Move the selection start to include the temporary \ufeff.
+					ieRange.moveStart( 'character', -1 );
 
 					ieRange.select();
 
 					// Remove our temporary stuff.
-//					this.document.$.selection.clear();
-				}
-				else
-					ieRange.select();
+					this.document.$.selection.clear();
+//				}
+//				else
+//					ieRange.select();
 
 				dummySpan.remove();
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/showblocks/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/showblocks/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/showblocks/plugin.js	(revision 3747)
@@ -0,0 +1,145 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview The "showblocks" plugin. Enable it will make all block level
+ *               elements being decorated with a border and the element name
+ *               displayed on the left-right corner.
+ */
+
+(function()
+{
+	var cssTemplate = '.%2 p,'+
+		'.%2 div,'+
+		'.%2 pre,'+
+		'.%2 address,'+
+		'.%2 blockquote,'+
+		'.%2 h1,'+
+		'.%2 h2,'+
+		'.%2 h3,'+
+		'.%2 h4,'+
+		'.%2 h5,'+
+		'.%2 h6'+
+		'{'+
+			'background-repeat: no-repeat;'+
+			'border: 1px dotted gray;'+
+			'padding-top: 8px;'+
+			'padding-left: 8px;'+
+		'}'+
+
+		'.%2 p'+
+		'{'+
+			'%1p.png);'+
+		'}'+
+
+		'.%2 div'+
+		'{'+
+			'%1div.png);'+
+		'}'+
+
+		'.%2 pre'+
+		'{'+
+			'%1pre.png);'+
+		'}'+
+
+		'.%2 address'+
+		'{'+
+			'%1address.png);'+
+		'}'+
+
+		'.%2 blockquote'+
+		'{'+
+			'%1blockquote.png);'+
+		'}'+
+
+		'.%2 h1'+
+		'{'+
+			'%1h1.png);'+
+		'}'+
+
+		'.%2 h2'+
+		'{'+
+			'%1h2.png);'+
+		'}'+
+
+		'.%2 h3'+
+		'{'+
+			'%1h3.png);'+
+		'}'+
+
+		'.%2 h4'+
+		'{'+
+			'%1h4.png);'+
+		'}'+
+
+		'.%2 h5'+
+		'{'+
+			'%1h5.png);'+
+		'}'+
+
+		'.%2 h6'+
+		'{'+
+			'%1h6.png);'+
+		'}';
+
+	var cssTemplateRegex = /%1/g, cssClassRegex = /%2/g;
+
+	var commandDefinition =
+	{
+		preserveState : true,
+
+		exec : function ( editor )
+		{
+			this.toggleState();
+			this.refresh( editor );
+		},
+
+		refresh : function( editor )
+		{
+			var funcName = ( this.state == CKEDITOR.TRISTATE_ON ) ? 'addClass' : 'removeClass';
+			editor.document.getBody()[ funcName ]( 'cke_show_blocks' );
+		}
+	};
+
+	CKEDITOR.plugins.add( 'showblocks',
+	{
+		requires : [ 'wysiwygarea' ],
+
+		init : function( editor )
+		{
+			var command = editor.addCommand( 'showblocks', commandDefinition );
+			command.canUndo = false;
+
+			if ( editor.config.startupOutlineBlocks )
+				command.setState( CKEDITOR.TRISTATE_ON );
+
+			editor.addCss( cssTemplate
+				.replace( cssTemplateRegex, 'background-image: url(' + CKEDITOR.getUrl( this.path ) + 'images/block_' )
+				.replace( cssClassRegex, 'cke_show_blocks ' ) );
+
+			editor.ui.addButton( 'ShowBlocks',
+				{
+					label : editor.lang.showBlocks,
+					command : 'showblocks'
+				});
+
+			// Refresh the command on setData.
+			editor.on( 'mode', function()
+				{
+					if ( command.state != CKEDITOR.TRISTATE_DISABLED )
+						command.refresh( editor );
+				});
+
+			// Refresh the command on setData.
+			editor.on( 'contentDom', function()
+				{
+					if ( command.state != CKEDITOR.TRISTATE_DISABLED )
+						command.refresh( editor );
+				});
+		}
+	});
+} )();
+
+CKEDITOR.config.startupOutlineBlocks = false;
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/smiley/dialogs/smiley.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/smiley/dialogs/smiley.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/smiley/dialogs/smiley.js	(revision 3747)
@@ -11,6 +11,144 @@
 		i;
 
+	/**
+	 * Simulate "this" of a dialog for non-dialog events.
+	 * @type {CKEDITOR.dialog}
+	 */
+	var dialog;
+	var onClick = function( evt )
+	{
+		var target = evt.data.getTarget(),
+			targetName = target.getName();
+
+		if ( targetName == 'td' )
+			target = target.getChild( [ 0, 0 ] );
+		else if ( targetName == 'a' )
+			target = target.getChild( 0 );
+		else if ( targetName != 'img' )
+			return;
+
+		var src = target.getAttribute( 'cke_src' ),
+			title = target.getAttribute( 'title' );
+
+		var img = editor.document.createElement( 'img',
+			{
+				attributes :
+				{
+					src : src,
+					_cke_saved_src : src,
+					title : title,
+					alt : title
+				}
+			});
+
+		editor.insertElement( img );
+
+		dialog.hide();
+	};
+
+	var onKeydown = CKEDITOR.tools.addFunction( function( ev, element )
+	{
+		ev = new CKEDITOR.dom.event( ev );
+		element = new CKEDITOR.dom.element( element );
+		var relative, nodeToMove;
+
+		var keystroke = ev.getKeystroke();
+		switch ( keystroke )
+		{
+			// RIGHT-ARROW
+			case 39 :
+				// relative is TD
+				if ( ( relative = element.getParent().getNext() ) )
+				{
+					nodeToMove = relative.getChild( 0 );
+					nodeToMove.focus();
+				}
+				ev.preventDefault();
+				break;
+			// LEFT-ARROW
+			case 37 :
+				// relative is TD
+				if ( ( relative = element.getParent().getPrevious() ) )
+				{
+					nodeToMove = relative.getChild( 0 );
+					nodeToMove.focus();
+				}
+				ev.preventDefault();
+				break;
+			// UP-ARROW
+			case 38 :
+				// relative is TR
+				if ( ( relative = element.getParent().getParent().getPrevious() ) )
+				{
+					nodeToMove = relative.getChild( [element.getParent().getIndex(), 0] );
+					nodeToMove.focus();
+				}
+				ev.preventDefault();
+				break;
+			// DOWN-ARROW
+			case 40 :
+				// relative is TR
+				if ( ( relative = element.getParent().getParent().getNext() ) )
+				{
+					nodeToMove = relative.getChild( [element.getParent().getIndex(), 0] );
+					if ( nodeToMove )
+						nodeToMove.focus();
+				}
+				ev.preventDefault();
+				break;
+			// ENTER
+			// SPACE
+			case 32 :
+				onClick( { data: ev } );
+				ev.preventDefault();
+				break;
+			// TAB
+			case 9 :
+				// relative is TD
+				if ( ( relative = element.getParent().getNext() ) )
+				{
+					nodeToMove = relative.getChild( 0 );
+					nodeToMove.focus();
+					ev.preventDefault(true);
+				}
+				// relative is TR
+				else if ( ( relative = element.getParent().getParent().getNext() ) )
+				{
+					nodeToMove = relative.getChild( [0, 0] );
+					if ( nodeToMove )
+						nodeToMove.focus();
+					ev.preventDefault(true);
+				}
+				break;
+			// SHIFT + TAB
+			case CKEDITOR.SHIFT + 9 :
+				// relative is TD
+				if ( ( relative = element.getParent().getPrevious() ) )
+				{
+					nodeToMove = relative.getChild( 0 );
+					nodeToMove.focus();
+					ev.preventDefault(true);
+				}
+				// relative is TR
+				else if ( ( relative = element.getParent().getParent().getPrevious() ) )
+				{
+					nodeToMove = relative.getLast().getChild( 0 );
+					nodeToMove.focus();
+					ev.preventDefault(true);
+				}
+				break;
+			default :
+				// Do not stop not handled events.
+				return;
+		}
+	});
+
 	// Build the HTML for the smiley images table.
-	var html = [ '<table cellspacing="2" cellpadding="2"><tbody>' ];
+	var html =
+	[
+		'<table cellspacing="2" cellpadding="2"',
+		CKEDITOR.env.ie && CKEDITOR.env.quirks ? ' style="position:absolute;"' : '',
+		'><tbody>'
+	];
 
 	for ( i = 0 ; i < images.length ; i++ )
@@ -20,11 +158,14 @@
 
 		html.push(
-			'<td class="dark_background hand centered" style="vertical-align: middle;">' +
-				'<img border="0" class="hand" title="', config.smiley_descriptions[i], '"' +
-					' src="', CKEDITOR.tools.htmlEncode( config.smiley_path + images[ i ] ), '"',
-					// IE BUG: Below is a workaround to an IE image loading bug to ensure the image sizes are correct.
-					( CKEDITOR.env.ie ? ' onload="this.setAttribute(\'width\', 2); this.removeAttribute(\'width\');" ' : '' ),
-				'>' +
-			'</td>' );
+			'<td class="cke_dark_background cke_hand cke_centered" style="vertical-align: middle;">' +
+				'<a href="javascript:void(0)" class="cke_smile" tabindex="-1" onkeydown="CKEDITOR.tools.callFunction( ', onKeydown, ', event, this );">',
+					'<img class="hand" title="', config.smiley_descriptions[i], '"' +
+						' cke_src="', CKEDITOR.tools.htmlEncode( config.smiley_path + images[ i ] ), '" alt="', config.smiley_descriptions[i], '"',
+						' src="', CKEDITOR.tools.htmlEncode( config.smiley_path + images[ i ] ), '"',
+						// IE BUG: Below is a workaround to an IE image loading bug to ensure the image sizes are correct.
+						( CKEDITOR.env.ie ? ' onload="this.setAttribute(\'width\', 2); this.removeAttribute(\'width\');" ' : '' ),
+					'>' +
+				'</a>',
+ 			'</td>' );
 
 		if ( i % columns == columns - 1 )
@@ -45,34 +186,14 @@
 		type : 'html',
 		html : html.join( '' ),
-		onClick : function( evt )
+		onLoad : function( event )
 		{
-			var target = evt.data.getTarget(),
-				targetName = target.getName();
-
-			if ( targetName == 'td' )
-				target = target.getChild(0);
-			else if ( targetName != 'img' )
-				return;
-
-			this.getDialog().restoreSelection();
-
-			var src = target.getAttribute( 'src' ),
-				title = target.getAttribute( 'title' );
-
-			var img = editor.document.createElement( 'img',
-				{
-					attributes :
-					{
-						src : src,
-						_cke_saved_src : src,
-						title : title,
-						alt : title
-					}
-				});
-
-			editor.insertElement( img );
-
-			this.getDialog().hide();
+			dialog = event.sender;
 		},
+		focus : function()
+ 		{
+			var firstSmile = this.getElement().getChild( [0, 0, 0, 0] );
+			firstSmile.focus();
+ 		},
+		onClick : onClick,
 		style : 'width: 100%; height: 100%; border-collapse: separate;'
 	};
@@ -80,6 +201,6 @@
 	return {
 		title : editor.lang.smiley.title,
-		minWidth : 320,
-		minHeight : 210,
+		minWidth : 270,
+		minHeight : 120,
 		contents : [
 			{
@@ -88,4 +209,5 @@
 				title : '',
 				expand : true,
+				padding : 0,
 				elements : [
 						smileySelector
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/smiley/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/smiley/plugin.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/smiley/plugin.js	(revision 3747)
@@ -8,5 +8,5 @@
 	requires : [ 'dialog' ],
 
-	init : function( editor, pluginPath )
+	init : function( editor )
 	{
 		editor.addCommand( 'smiley', new CKEDITOR.dialogCommand( 'smiley' ) );
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/sourcearea/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/sourcearea/plugin.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/sourcearea/plugin.js	(revision 3747)
@@ -13,5 +13,5 @@
 	requires : [ 'editingblock' ],
 
-	init : function( editor, pluginPath )
+	init : function( editor )
 	{
 		var sourcearea = CKEDITOR.plugins.sourcearea;
@@ -19,5 +19,6 @@
 		editor.on( 'editingBlockReady', function()
 			{
-				var textarea;
+				var textarea,
+					onResize;
 
 				editor.addMode( 'source',
@@ -25,14 +26,24 @@
 						load : function( holderElement, data )
 						{
+							if ( CKEDITOR.env.ie && CKEDITOR.env.version < 8 )
+								holderElement.setStyle( 'position', 'relative' );
+
 							// Create the source area <textarea>.
-							textarea = new CKEDITOR.dom.element( 'textarea' );
-							textarea.setAttribute( 'dir', 'ltr' );
+							editor.textarea = textarea = new CKEDITOR.dom.element( 'textarea' );
+							textarea.setAttributes(
+								{
+									dir : 'ltr',
+									tabIndex : -1
+								});
 							textarea.addClass( 'cke_source' );
-							textarea.setStyles({
+
+							var styles =
+							{
 								width	: '100%',
 								height	: '100%',
 								resize	: 'none',
 								outline	: 'none',
-								'text-align' : 'left' });
+								'text-align' : 'left'
+							};
 
 							// The textarea height/width='100%' doesn't
@@ -40,15 +51,25 @@
 							if ( CKEDITOR.env.ie )
 							{
-								textarea.setStyles({
-									height : holderElement.$.clientHeight + 'px',
-									width : holderElement.$.clientWidth + 'px' });
+								if ( !CKEDITOR.env.ie8Compat )
+								{
+									onResize = function()
+										{
+											// Holder rectange size is stretched by textarea,
+											// so hide it just for a moment.
+											textarea.hide();
+											textarea.setStyle( 'height', holderElement.$.clientHeight + 'px' );
+											// When we have proper holder size, show textarea again.
+											textarea.show();
+										};
+									editor.on( 'resize', onResize );
+									styles.height = holderElement.$.clientHeight + 'px';
+								}
 							}
-
-							// By some yet unknown reason, we must stop the
-							// mousedown propagation for the textarea,
-							// otherwise it's not possible to place the caret
-							// inside of it (non IE).
-							if ( !CKEDITOR.env.ie )
+							else
 							{
+								// By some yet unknown reason, we must stop the
+								// mousedown propagation for the textarea,
+								// otherwise it's not possible to place the caret
+								// inside of it (non IE).
 								textarea.on( 'mousedown', function( evt )
 									{
@@ -63,4 +84,5 @@
 							holderElement.setHtml( '' );
 							holderElement.append( textarea );
+							textarea.setStyles( styles );
 
 							// The editor data "may be dirty" after this point.
@@ -70,6 +92,14 @@
 							this.loadData( data );
 
-							editor.mode = 'source';
-							editor.fire( 'mode' );
+							var keystrokeHandler = editor.keystrokeHandler;
+							if ( keystrokeHandler )
+								keystrokeHandler.attach( textarea );
+
+							setTimeout( function()
+							{
+								editor.mode = 'source';
+								editor.fire( 'mode' );
+							},
+							( CKEDITOR.env.gecko || CKEDITOR.env.webkit ) ? 100 : 0 );
 						},
 
@@ -91,5 +121,8 @@
 						unload : function( holderElement )
 						{
-							textarea = null;
+							editor.textarea = textarea = null;
+
+							if ( onResize )
+								editor.removeListener( 'resize', onResize );
 						},
 
@@ -114,7 +147,8 @@
 		editor.on( 'mode', function()
 			{
-				var command = editor.getCommand( 'source' );
-				command.state = ( editor.mode == 'source' ? CKEDITOR.TRISTATE_ON : CKEDITOR.TRISTATE_OFF );
-				command.fire( 'state' );
+				editor.getCommand( 'source' ).setState(
+					editor.mode == 'source' ?
+						CKEDITOR.TRISTATE_ON :
+						CKEDITOR.TRISTATE_OFF );
 			});
 	}
@@ -132,8 +166,15 @@
 		source :
 		{
+			modes : { wysiwyg:1, source:1 },
+
 			exec : function( editor )
 			{
+				if ( editor.mode == 'wysiwyg' )
+					editor.fire( 'saveSnapshot' );
+				editor.getCommand( 'source' ).setState( CKEDITOR.TRISTATE_DISABLED );
 				editor.setMode( editor.mode == 'source' ? 'wysiwyg' : 'source' );
-			}
+			},
+
+			canUndo : false
 		}
 	}
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/specialchar/dialogs/specialchar.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/specialchar/dialogs/specialchar.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/specialchar/dialogs/specialchar.js	(revision 3747)
@@ -6,8 +6,206 @@
 CKEDITOR.dialog.add( 'specialchar', function( editor )
 {
+	/**
+	 * Simulate "this" of a dialog for non-dialog events.
+	 * @type {CKEDITOR.dialog}
+	 */
+	var dialog;
+	var onChoice = function( evt )
+	{
+		var target, value;
+		if ( evt.data )
+			target = evt.data.getTarget();
+		else
+			target = new CKEDITOR.dom.element( evt );
+
+		if ( target.getName() == 'a' && ( value = target.getChild( 0 ).getHtml() ) )
+		{
+			target.removeClass( "cke_light_background" );
+			dialog.hide();
+			editor.insertHtml( value );
+		}
+	};
+
+	var onClick = CKEDITOR.tools.addFunction( onChoice );
+
+	var focusedNode;
+
+	var onFocus = function( evt, target )
+	{
+		var value;
+		target = target || evt.data.getTarget();
+
+		if ( target.getName() == 'span' )
+			target = target.getParent();
+
+		if ( target.getName() == 'a' && ( value = target.getChild( 0 ).getHtml() ) )
+		{
+			// Trigger blur manually if there is focused node.
+			if ( focusedNode )
+				onBlur( null, focusedNode );
+
+			var htmlPreview = dialog.getContentElement( 'info', 'htmlPreview' ).getElement();
+
+			dialog.getContentElement( 'info', 'charPreview' ).getElement().setHtml( value );
+			htmlPreview.setHtml( CKEDITOR.tools.htmlEncode( value ) );
+			target.getParent().addClass( "cke_light_background" );
+
+			// Memorize focused node.
+			focusedNode = target;
+		}
+	};
+
+	var onBlur = function( evt, target )
+	{
+		target = target || evt.data.getTarget();
+
+		if ( target.getName() == 'span' )
+			target = target.getParent();
+
+		if ( target.getName() == 'a' )
+		{
+			dialog.getContentElement( 'info', 'charPreview' ).getElement().setHtml( '&nbsp;' );
+			dialog.getContentElement( 'info', 'htmlPreview' ).getElement().setHtml( '&nbsp;' );
+			target.getParent().removeClass( "cke_light_background" );
+
+			focusedNode = undefined;
+		}
+	};
+
+	var onKeydown = CKEDITOR.tools.addFunction( function( ev )
+	{
+		ev = new CKEDITOR.dom.event( ev );
+
+		// Get an Anchor element.
+		var element = ev.getTarget();
+		var relative, nodeToMove;
+		var keystroke = ev.getKeystroke();
+
+		switch ( keystroke )
+		{
+			// RIGHT-ARROW
+			case 39 :
+				// relative is TD
+				if ( ( relative = element.getParent().getNext() ) )
+				{
+					nodeToMove = relative.getChild( 0 );
+					if ( nodeToMove.type == 1 )
+					{
+						nodeToMove.focus();
+						onBlur( null, element );
+						onFocus( null, nodeToMove );
+					}
+				}
+				ev.preventDefault();
+				break;
+			// LEFT-ARROW
+			case 37 :
+				// relative is TD
+				if ( ( relative = element.getParent().getPrevious() ) )
+				{
+					nodeToMove = relative.getChild( 0 );
+					nodeToMove.focus();
+					onBlur( null, element );
+					onFocus( null, nodeToMove );
+				}
+				ev.preventDefault();
+				break;
+			// UP-ARROW
+			case 38 :
+				// relative is TR
+				if ( ( relative = element.getParent().getParent().getPrevious() ) )
+				{
+					nodeToMove = relative.getChild( [element.getParent().getIndex(), 0] );
+					nodeToMove.focus();
+					onBlur( null, element );
+					onFocus( null, nodeToMove );
+				}
+				ev.preventDefault();
+				break;
+			// DOWN-ARROW
+			case 40 :
+				// relative is TR
+				if ( ( relative = element.getParent().getParent().getNext() ) )
+				{
+					nodeToMove = relative.getChild( [ element.getParent().getIndex(), 0 ] );
+					if ( nodeToMove && nodeToMove.type == 1 )
+					{
+						nodeToMove.focus();
+						onBlur( null, element );
+						onFocus( null, nodeToMove );
+					}
+				}
+				ev.preventDefault();
+				break;
+			// SPACE
+			// ENTER is already handled as onClick
+			case 32 :
+				onChoice( { data: ev } );
+				ev.preventDefault();
+				break;
+			// TAB
+			case 9 :
+				// relative is TD
+				if ( ( relative = element.getParent().getNext() ) )
+				{
+					nodeToMove = relative.getChild( 0 );
+					if ( nodeToMove.type == 1 )
+					{
+						nodeToMove.focus();
+						onBlur( null, element );
+						onFocus( null, nodeToMove );
+						ev.preventDefault( true );
+					}
+					else
+						onBlur( null, element );
+				}
+				// relative is TR
+				else if ( ( relative = element.getParent().getParent().getNext() ) )
+				{
+					nodeToMove = relative.getChild( [ 0, 0 ] );
+					if ( nodeToMove && nodeToMove.type == 1 )
+					{
+						nodeToMove.focus();
+						onBlur( null, element );
+						onFocus( null, nodeToMove );
+						ev.preventDefault( true );
+					}
+					else
+						onBlur( null, element );
+				}
+				break;
+			// SHIFT + TAB
+			case CKEDITOR.SHIFT + 9 :
+				// relative is TD
+				if ( ( relative = element.getParent().getPrevious() ) )
+				{
+					nodeToMove = relative.getChild( 0 );
+					nodeToMove.focus();
+					onBlur( null, element );
+					onFocus( null, nodeToMove );
+					ev.preventDefault( true );
+				}
+				// relative is TR
+				else if ( ( relative = element.getParent().getParent().getPrevious() ) )
+				{
+					nodeToMove = relative.getLast().getChild( 0 );
+					nodeToMove.focus();
+					onBlur( null, element );
+					onFocus( null, nodeToMove );
+					ev.preventDefault( true );
+				}
+				else
+					onBlur( null, element );
+				break;
+			default :
+				// Do not stop not handled events.
+				return;
+		}
+	});
+
 	return {
 		title : editor.lang.specialChar.title,
-		minWidth : 450,
-		minHeight : 350,
+		minWidth : 430,
+		minHeight : 280,
 		buttons : [ CKEDITOR.dialog.cancelButton ],
 		charColumns : 17,
@@ -60,12 +258,15 @@
 					{
 						html.push(
-							'<td width="1%"' +
-							' title="', chars[i].replace( /&/g, '&amp;' ), '"' +
-							' value="', chars[i].replace( /&/g, "&amp;" ), '"' +
-							' class="DarkBackground Hand">');
-						html.push( chars[i] );
+							'<td class="cke_dark_background">' +
+							'<a href="javascript: void(0);" style="display: block; height: 1.25em; margin-top: 0.25em; text-align: center;" title="', chars[i].replace( /&/g, '&amp;' ), '"' +
+							' onkeydown="CKEDITOR.tools.callFunction( ' + onKeydown + ', event, this )"' +
+							' onclick="CKEDITOR.tools.callFunction(' + onClick + ', this); return false;"' +
+							' tabindex="-1">' +
+							'<span style="margin: 0 auto;">' +
+							chars[i] +
+							'</span></a>');
 					}
 					else
-						html.push( '<td class="DarkBackground">&nbsp;' );
+						html.push( '<td class="cke_dark_background">&nbsp;' );
 
 					html.push( '</td>' );
@@ -83,93 +284,71 @@
 				label : editor.lang.common.generalTab,
 				title : editor.lang.common.generalTab,
+				padding : 0,
+				align : 'top',
 				elements : [
 					{
 						type : 'hbox',
 						align : 'top',
-						widths : [ '300px', '90px' ],
+						widths : [ '320px', '90px' ],
 						children :
 						[
 							{
+								type : 'html',
+								id : 'charContainer',
+								html : '',
+								onMouseover : onFocus,
+								onMouseout : onBlur,
+								focus : function()
+								{
+									var firstChar = this.getElement().getChild( [0, 0, 0, 0, 0] );
+									setTimeout(function()
+									{
+										firstChar.focus();
+										onFocus( null, firstChar );
+									});
+								},
+								// Needed only for webkit.
+								onShow : function()
+								{
+									var firstChar = this.getElement().getChild( [0, 0, 0, 0, 0] );
+									setTimeout(function()
+									{
+										firstChar.focus();
+										onFocus( null, firstChar );
+									});
+								},
+								onLoad : function( event )
+								{
+									dialog = event.sender;
+								}
+							},
+							{
 								type : 'hbox',
 								align : 'top',
-								padding : 0,
-								widths : [ '350px' ],
+								widths : [ '100%' ],
 								children :
 								[
 									{
-										type : 'html',
-										id : 'charContainer',
-										html : '',
-										onMouseover : function( evt )
-										{
-											var target = evt.data.getTarget(),
-												targetName = target.getName(),
-												value;
-
-											if ( targetName == 'td' && ( value = target.getAttribute( 'value' ) ) )
+										type : 'vbox',
+										align : 'top',
+										children :
+										[
 											{
-												var dialog = this.getDialog(),
-													preview = dialog.getContentElement( 'info', 'charPreview' ).getElement(),
-													htmlPreview = dialog.getContentElement( 'info', 'htmlPreview' ).getElement();
-
-												preview.setHtml( value );
-												htmlPreview.setHtml( CKEDITOR.tools.htmlEncode( value ) );
-												target.addClass( "LightBackground" );
+												type : 'html',
+												html : '<div></div>'
+											},
+											{
+												type : 'html',
+												id : 'charPreview',
+												style : 'border:1px solid #eeeeee;background-color:#EAEAD1;font-size:28px;height:40px;width:70px;padding-top:9px;font-family:\'Microsoft Sans Serif\',Arial,Helvetica,Verdana;text-align:center;',
+												html : '<div>&nbsp;</div>'
+											},
+											{
+												type : 'html',
+												id : 'htmlPreview',
+												style : 'border:1px solid #eeeeee;background-color:#EAEAD1;font-size:14px;height:20px;width:70px;padding-top:2px;font-family:\'Microsoft Sans Serif\',Arial,Helvetica,Verdana;text-align:center;',
+												html : '<div>&nbsp;</div>'
 											}
-										},
-										onMouseout : function( evt )
-										{
-											var dialog = this.getDialog();
-											var preview = dialog.getContentElement( 'info', 'charPreview' ).getElement();
-											var htmlPreview = dialog.getContentElement( 'info', 'htmlPreview' ).getElement();
-											var target = evt.data.getTarget();
-											var targetName = target.getName();
-											preview.setHtml( '&nbsp;' );
-											htmlPreview.setHtml( '&nbsp;' );
-
-											if ( targetName == 'td' )
-												target.removeClass( "LightBackground" );
-										},
-										onClick : function( evt )
-										{
-											var target = evt.data.getTarget();
-											var targetName = target.getName();
-											var editor = this.getDialog().getParentEditor();
-											var value;
-
-											if ( targetName == 'td' )
-											{
-												target = target.$;
-												if ( ( value = target.getAttribute( 'value' ) ) )
-												{
-													this.getDialog().restoreSelection();
-													editor.insertHtml( value );
-													this.getDialog().hide();
-												}
-											}
-										}
-									}
-								]
-							},
-							{
-								type : 'vbox',
-								align : 'top',
-								children :
-								[
-									{
-										type : 'html',
-										html : '<div></div>'
-									},
-									{
-										type : 'html',
-										id : 'charPreview',
-										style : 'border:1px solid #eeeeee;background-color:#EAEAD1;font-size:28px;height:40px;padding-top:9px;font-family:\'Microsoft Sans Serif\',Arial,Helvetica,Verdana;text-align:center;',
-										html : '<div>&nbsp;</div>'
-									},
-									{
-										type : 'html',
-										id : 'htmlPreview',
-										style : 'border:1px solid #eeeeee;background-color:#EAEAD1;font-size:14px;height:20px;padding-top:2px;font-family:\'Microsoft Sans Serif\',Arial,Helvetica,Verdana;text-align:center;',
-										html : '<div>&nbsp;</div>'
+										]
 									}
 								]
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/specialchar/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/specialchar/plugin.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/specialchar/plugin.js	(revision 3747)
@@ -10,5 +10,5 @@
 CKEDITOR.plugins.add( 'specialchar',
 {
-	init : function( editor, pluginPath )
+	init : function( editor )
 	{
 		var pluginName = 'specialchar';
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/styles/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/styles/plugin.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/styles/plugin.js	(revision 3747)
@@ -1,3 +1,3 @@
-﻿/*
+/*
 Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.html or http://ckeditor.com/license
@@ -16,5 +16,5 @@
  * @param {Function} The function to be called when the style state changes.
  * @example
- * // Create a style object for the <b> element.
+ * // Create a style object for the &lt;b&gt; element.
  * var style = new CKEDITOR.style( { element : 'b' } );
  * var editor = CKEDITOR.instances.editor1;
@@ -81,6 +81,16 @@
 	var objectElements	= { a:1,embed:1,hr:1,img:1,li:1,object:1,ol:1,table:1,td:1,tr:1,ul:1 };
 
-	CKEDITOR.style = function( styleDefinition )
-	{
+	var semicolonFixRegex = /\s*(?:;\s*|$)/;
+
+	CKEDITOR.style = function( styleDefinition, variablesValues )
+	{
+		if ( variablesValues )
+		{
+			styleDefinition = CKEDITOR.tools.clone( styleDefinition );
+
+			replaceVariables( styleDefinition.attributes, variablesValues );
+			replaceVariables( styleDefinition.styles, variablesValues );
+		}
+
 		var element = this.element = ( styleDefinition.element || '*' ).toLowerCase();
 
@@ -103,14 +113,10 @@
 		apply : function( document )
 		{
-			// Get all ranges from the selection.
-			var selection = document.getSelection();
-			var ranges = selection.getRanges();
-
-			// Apply the style to the ranges.
-			for ( var i = 0 ; i < ranges.length ; i++ )
-				this.applyToRange( ranges[ i ] );
-
-			// Select the ranges again.
-			selection.selectRanges( ranges );
+			applyStyle.call( this, document, false );
+		},
+
+		remove : function( document )
+		{
+			applyStyle.call( this, document, true );
 		},
 
@@ -125,4 +131,17 @@
 		},
 
+		removeFromRange : function( range )
+		{
+			return ( this.removeFromRange =
+						this.type == CKEDITOR.STYLE_INLINE ?
+							removeInlineStyle
+						: null ).call( this, range );
+		},
+
+		applyToObject : function( element )
+		{
+			setupElement( element, this );
+		},
+
 		/**
 		 * Get the style state inside an element path. Returns "true" if the
@@ -158,42 +177,103 @@
 		checkElementRemovable : function( element, fullMatch )
 		{
-			if ( !element || element.getName() != this.element )
-				return false ;
-
-			var def = this._.definition;
-			var attribs = def.attributes;
-			var styles = def.styles;
-
-			// If no attributes are defined in the element.
-			if ( !fullMatch && !element.hasAttributes() )
-				return true ;
-
-			for ( var attName in attribs )
-			{
-				if ( element.getAttribute( attName ) == attribs[ attName ] )
-				{
-					if ( !fullMatch )
+			if ( !element )
+				return false;
+
+			var def = this._.definition,
+				attribs;
+
+			// If the element name is the same as the style name.
+			if ( element.getName() == this.element )
+			{
+				// If no attributes are defined in the element.
+				if ( !fullMatch && !element.hasAttributes() )
+					return true;
+
+				attribs = getAttributesForComparison( def );
+
+				if ( attribs._length )
+				{
+					for ( var attName in attribs )
+					{
+						if ( attName == '_length' )
+							continue;
+						if ( attribs[attName] == element.getAttribute( attName ) )
+						{
+							if ( !fullMatch )
+								return true;
+						}
+						else if ( fullMatch )
+								return false;
+					}
+					if( fullMatch )
 						return true;
 				}
-				else if ( fullMatch )
-					return false;
-			}
-
-			return true;
-		},
-
-		/**
-		 * Sets the value of a variable attribute or style, to be used when
-		 * appliying the style. This function must be called before using any
-		 * other function in this object.
-		 */
-		setVariable : function( name, value )
-		{
-			var variables = this._.variables || ( this._variables = {} );
-			variables[ name ] = value;
+				else
+					return true;
+			}
+
+			// Check if the element can be somehow overriden.
+			var override = getOverrides( this )[ element.getName() ] ;
+			if ( override )
+			{
+				// If no attributes have been defined, remove the element.
+				if ( !( attribs = override.attributes ) )
+					return true;
+
+				for ( var i = 0 ; i < attribs.length ; i++ )
+				{
+					attName = attribs[i][0];
+					var actualAttrValue = element.getAttribute( attName );
+					if ( actualAttrValue )
+					{
+						var attValue = attribs[i][1];
+
+						// Remove the attribute if:
+						//    - The override definition value is null;
+						//    - The override definition value is a string that
+						//      matches the attribute value exactly.
+						//    - The override definition value is a regex that
+						//      has matches in the attribute value.
+						if ( attValue === null ||
+								( typeof attValue == 'string' && actualAttrValue == attValue ) ||
+								attValue.test( actualAttrValue ) )
+							return true;
+					}
+				}
+			}
+			return false;
 		}
 	};
 
-	var applyInlineStyle = function( range )
+	// Build the cssText based on the styles definition.
+	CKEDITOR.style.getStyleText = function( styleDefinition )
+	{
+		// If we have already computed it, just return it.
+		var stylesDef = styleDefinition._ST;
+		if ( stylesDef )
+			return stylesDef;
+
+		stylesDef = styleDefinition.styles;
+
+		// Builds the StyleText.
+
+		var stylesText = ( styleDefinition.attributes && styleDefinition.attributes[ 'style' ] ) || '';
+
+		if ( stylesText.length )
+			stylesText = stylesText.replace( semicolonFixRegex, ';' );
+
+		for ( var style in stylesDef )
+			stylesText += style + ':' + stylesDef[ style ] + ';';
+
+		// Browsers make some changes to the style when applying them. So, here
+		// we normalize it to the browser format.
+		if ( stylesText.length )
+			stylesText = normalizeCssText( stylesText );
+
+		// Return it, saving it to the next request.
+		return ( styleDefinition._ST = stylesText );
+	};
+
+	function applyInlineStyle( range )
 	{
 		var document = range.document;
@@ -229,6 +309,36 @@
 		// Get the first node to be processed and the last, which concludes the
 		// processing.
-		var firstNode = range.startContainer.getChild( range.startOffset ) || range.startContainer.getNextSourceNode();
-		var lastNode = range.endContainer.getChild( range.endOffset ) || ( range.endOffset ? range.endContainer.getNextSourceNode() : range.endContainer );
+		var boundaryNodes = range.getBoundaryNodes();
+		var firstNode = boundaryNodes.startNode;
+		var lastNode = boundaryNodes.endNode.getNextSourceNode( true );
+
+		// Probably the document end is reached, we need a marker node.
+		if ( !lastNode )
+		{
+				lastNode = document.createText( '' );
+				lastNode.insertAfter( range.endContainer );
+		}
+		// The detection algorithm below skips the contents inside bookmark nodes, so
+		// we'll need to make sure lastNode isn't the &nbsp; inside a bookmark node.
+		var lastParent = lastNode.getParent();
+		if ( lastParent && lastParent.getAttribute( '_fck_bookmark' ) )
+			lastNode = lastParent;
+
+		if ( lastNode.equals( firstNode ) )
+		{
+			// If the last node is the same as the the first one, we must move
+			// it to the next one, otherwise the first one will not be
+			// processed.
+			lastNode = lastNode.getNextSourceNode( true );
+
+			// It may happen that there are no more nodes after it (the end of
+			// the document), so we must add something there to make our code
+			// simpler.
+			if ( !lastNode )
+			{
+				lastNode = document.createText( '' );
+				lastNode.insertAfter( firstNode );
+			}
+		}
 
 		var currentNode = firstNode;
@@ -281,5 +391,5 @@
 						// Non element nodes, or empty elements can be added
 						// completely to the range.
-						if ( nodeType == CKEDITOR.NODE_TEXT || ( nodeType == CKEDITOR.NODE_ELEMENT && !currentNode.getChildCount() && currentNode.$.offsetWidth ) )
+						if ( nodeType == CKEDITOR.NODE_TEXT || ( nodeType == CKEDITOR.NODE_ELEMENT && !currentNode.getChildCount() ) )
 						{
 							var includedNode = currentNode;
@@ -325,6 +435,9 @@
 				var styleNode = getElement( this, document );
 
+				// Get the element that holds the entire range.
 				var parent = styleRange.getCommonAncestor();
 
+				// Loop through the parents, removing the redundant attributes
+				// from the element to be applied.
 				while ( styleNode && parent )
 				{
@@ -360,5 +473,5 @@
 					// Here we do some cleanup, removing all duplicated
 					// elements from the style element.
-					removeFromElement( this, styleNode );
+					removeFromInsideElement( this, styleNode );
 
 					// Insert it into the range position (it is collapsed after
@@ -388,43 +501,318 @@
 
 		range.moveToBookmark( bookmark );
-	};
-
-	var applyBlockStyle = function( range )
-	{
-	};
+	}
+
+	function removeInlineStyle( range )
+	{
+		/*
+		 * Make sure our range has included all "collpased" parent inline nodes so
+		 * that our operation logic can be simpler.
+		 */
+		range.enlarge( CKEDITOR.ENLARGE_ELEMENT );
+
+		var bookmark = range.createBookmark(),
+			startNode = bookmark.startNode;
+
+		if ( range.collapsed )
+		{
+
+			var startPath = new CKEDITOR.dom.elementPath( startNode.getParent() ),
+				// The topmost element in elementspatch which we should jump out of.
+				boundaryElement;
+
+
+			for ( var i = 0, element ; i < startPath.elements.length
+					&& ( element = startPath.elements[i] ) ; i++ )
+			{
+				/*
+				 * 1. If it's collaped inside text nodes, try to remove the style from the whole element.
+				 *
+				 * 2. Otherwise if it's collapsed on element boundaries, moving the selection
+				 *  outside the styles instead of removing the whole tag,
+				 *  also make sure other inner styles were well preserverd.(#3309)
+				 */
+				if ( element == startPath.block || element == startPath.blockLimit )
+					break;
+
+				if ( this.checkElementRemovable( element ) )
+				{
+					var endOfElement = range.checkBoundaryOfElement( element, CKEDITOR.END ),
+							startOfElement = !endOfElement && range.checkBoundaryOfElement( element, CKEDITOR.START );
+					if ( startOfElement || endOfElement )
+					{
+						boundaryElement = element;
+						boundaryElement.match = startOfElement ? 'start' : 'end';
+					}
+					else
+					{
+						/*
+						 * Before removing the style node, there may be a sibling to the style node
+						 * that's exactly the same to the one to be removed. To the user, it makes
+						 * no difference that they're separate entities in the DOM tree. So, merge
+						 * them before removal.
+						 */
+						mergeSiblings( element );
+						removeFromElement( this, element );
+
+					}
+				}
+			}
+
+			// Re-create the style tree after/before the boundary element,
+			// the replication start from bookmark start node to define the
+			// new range.
+			if ( boundaryElement )
+			{
+				var clonedElement = startNode;
+				for ( i = 0 ;; i++ )
+				{
+					var newElement = startPath.elements[ i ];
+					if ( newElement.equals( boundaryElement ) )
+						break;
+					// Avoid copying any matched element.
+					else if( newElement.match )
+						continue;
+					else
+						newElement = newElement.clone();
+					newElement.append( clonedElement );
+					clonedElement = newElement;
+				}
+				clonedElement[ boundaryElement.match == 'start' ?
+							'insertBefore' : 'insertAfter' ]( boundaryElement );
+			}
+		}
+		else
+		{
+			/*
+			 * Now our range isn't collapsed. Lets walk from the start node to the end
+			 * node via DFS and remove the styles one-by-one.
+			 */
+			var endNode = bookmark.endNode,
+				me = this;
+
+			/*
+			 * Find out the style ancestor that needs to be broken down at startNode
+			 * and endNode.
+			 */
+			function breakNodes()
+			{
+				var startPath = new CKEDITOR.dom.elementPath( startNode.getParent() ),
+					endPath = new CKEDITOR.dom.elementPath( endNode.getParent() ),
+					breakStart = null,
+					breakEnd = null;
+				for ( var i = 0 ; i < startPath.elements.length ; i++ )
+				{
+					var element = startPath.elements[ i ];
+
+					if ( element == startPath.block || element == startPath.blockLimit )
+						break;
+
+					if ( me.checkElementRemovable( element ) )
+						breakStart = element;
+				}
+				for ( i = 0 ; i < endPath.elements.length ; i++ )
+				{
+					element = endPath.elements[ i ];
+
+					if ( element == endPath.block || element == endPath.blockLimit )
+						break;
+
+					if ( me.checkElementRemovable( element ) )
+						breakEnd = element;
+				}
+
+				if ( breakEnd )
+					endNode.breakParent( breakEnd );
+				if ( breakStart )
+					startNode.breakParent( breakStart );
+			}
+			breakNodes();
+
+			// Now, do the DFS walk.
+			var currentNode = startNode.getNext();
+			while ( !currentNode.equals( endNode ) )
+			{
+				/*
+				 * Need to get the next node first because removeFromElement() can remove
+				 * the current node from DOM tree.
+				 */
+				var nextNode = currentNode.getNextSourceNode();
+				if ( currentNode.type == CKEDITOR.NODE_ELEMENT && this.checkElementRemovable( currentNode ) )
+				{
+					// Remove style from element or overriding element.
+					if( currentNode.getName() == this.element )
+						removeFromElement( this, currentNode );
+					else
+						removeOverrides( currentNode, getOverrides( this )[ currentNode.getName() ] );
+
+					/*
+					 * removeFromElement() may have merged the next node with something before
+					 * the startNode via mergeSiblings(). In that case, the nextNode would
+					 * contain startNode and we'll have to call breakNodes() again and also
+					 * reassign the nextNode to something after startNode.
+					 */
+					if ( nextNode.type == CKEDITOR.NODE_ELEMENT && nextNode.contains( startNode ) )
+					{
+						breakNodes();
+						nextNode = startNode.getNext();
+					}
+				}
+				currentNode = nextNode;
+			}
+		}
+
+		range.moveToBookmark( bookmark );
+	}
+
+	function applyBlockStyle( range )
+	{
+		// Bookmark the range so we can re-select it after processing.
+		var bookmark = range.createBookmark();
+
+		var iterator = range.createIterator();
+		iterator.enforceRealBlocks = true;
+
+		var block;
+		var doc = range.document;
+		var previousPreBlock;
+
+		while( ( block = iterator.getNextParagraph() ) )		// Only one =
+		{
+			// Create the new node right before the current one.
+			var newBlock = getElement( this, doc );
+
+			// Check if we are changing from/to <pre>.
+//			var newBlockIsPre	= newBlock.nodeName.IEquals( 'pre' );
+//			var blockIsPre		= block.nodeName.IEquals( 'pre' );
+
+//			var toPre	= newBlockIsPre && !blockIsPre;
+//			var fromPre	= !newBlockIsPre && blockIsPre;
+
+			// Move everything from the current node to the new one.
+//			if ( toPre )
+//				newBlock = this._ToPre( doc, block, newBlock );
+//			else if ( fromPre )
+//				newBlock = this._FromPre( doc, block, newBlock );
+//			else	// Convering from a regular block to another regular block.
+				block.moveChildren( newBlock );
+
+			// Replace the current block.
+			newBlock.insertBefore( block );
+			block.remove();
+
+			// Complete other tasks after inserting the node in the DOM.
+//			if ( newBlockIsPre )
+//			{
+//				if ( previousPreBlock )
+//					this._CheckAndMergePre( previousPreBlock, newBlock ) ;	// Merge successive <pre> blocks.
+//				previousPreBlock = newBlock;
+//			}
+//			else if ( fromPre )
+//				this._CheckAndSplitPre( newBlock ) ;	// Split <br><br> in successive <pre>s.
+		}
+
+		range.moveToBookmark( bookmark );
+	}
+
+	// Removes a style from an element itself, don't care about its subtree.
+	function removeFromElement( style, element )
+	{
+		var def = style._.definition,
+			attributes = def.attributes,
+			styles = def.styles,
+			overrides = getOverrides( style );
+
+		function removeAttrs()
+		{
+			for ( var attName in attributes )
+			{
+				// The 'class' element value must match (#1318).
+				if ( attName == 'class' && element.getAttribute( attName ) != attributes[ attName ] )
+					continue;
+				element.removeAttribute( attName );
+			}
+		}
+
+		// Remove definition attributes/style from the elemnt.
+		removeAttrs();
+		for ( var styleName in styles )
+			element.removeStyle( styleName );
+
+		// Now remove override styles on the element.
+		attributes = overrides[ element.getName() ];
+		if( attributes )
+			removeAttrs();
+		removeNoAttribsElement( element );
+	}
 
 	// Removes a style from inside an element.
-	var removeFromElement = function( style, element )
-	{
-		var def = style._.definition;
-		var attribs = def.attributes;
-		var styles = def.styles;
+	function removeFromInsideElement( style, element )
+	{
+		var def = style._.definition,
+			attribs = def.attributes,
+			styles = def.styles,
+			overrides = getOverrides( style );
 
 		var innerElements = element.getElementsByTag( style.element );
 
-		for ( var i = innerElements.count() ; --i >= 0 ; )
-		{
-			var innerElement = innerElements.getItem( i );
-
-			for ( var attName in attribs )
-			{
-				// The 'class' element value must match (#1318).
-				if ( attName == 'class' && innerElement.getAttribute( 'class' ) != attribs[ attName ] )
-					continue;
-
-				innerElement.removeAttribute( attName );
-			}
-
-			for ( var styleName in styles )
-			{
-				innerElement.removeStyle( styleName );
-			}
-
-			removeNoAttribsElement( innerElement );
-		}
-	};
+		for ( var i = innerElements.count(); --i >= 0 ; )
+			removeFromElement( style,  innerElements.getItem( i ) );
+
+		// Now remove any other element with different name that is
+		// defined to be overriden.
+		for ( var overrideElement in overrides )
+		{
+			if ( overrideElement != style.element )
+			{
+				innerElements = element.getElementsByTag( overrideElement ) ;
+				for ( i = innerElements.count() - 1 ; i >= 0 ; i-- )
+				{
+					var innerElement = innerElements.getItem( i );
+					removeOverrides( innerElement, overrides[ overrideElement ] ) ;
+				}
+			}
+		}
+
+	}
+
+	/**
+	 *  Remove overriding styles/attributes from the specific element.
+	 *  Note: Remove the element if no attributes remain.
+	 * @param {Object} element
+	 * @param {Object} overrides
+	 */
+	function removeOverrides( element, overrides )
+	{
+		var attributes = overrides && overrides.attributes ;
+
+		if ( attributes )
+		{
+			for ( var i = 0 ; i < attributes.length ; i++ )
+			{
+				var attName = attributes[i][0], actualAttrValue ;
+
+				if ( ( actualAttrValue = element.getAttribute( attName ) ) )
+				{
+					var attValue = attributes[i][1] ;
+
+					// Remove the attribute if:
+					//    - The override definition value is null ;
+					//    - The override definition valie is a string that
+					//      matches the attribute value exactly.
+					//    - The override definition value is a regex that
+					//      has matches in the attribute value.
+					if ( attValue === null ||
+							( attValue.test && attValue.test( actualAttrValue ) ) ||
+							( typeof attValue == 'string' && actualAttrValue == attValue ) )
+						element.removeAttribute( attName ) ;
+				}
+			}
+		}
+
+		removeNoAttribsElement( element );
+	}
 
 	// If the element has no more attributes, remove it.
-	var removeNoAttribsElement = function( element )
+	function removeNoAttribsElement( element )
 	{
 		// If no more attributes remained in the element, remove it,
@@ -448,44 +836,7 @@
 			}
 		}
-	};
-
-	// Get the the collection used to compare the attributes defined in this
-	// style with attributes in an element. All information in it is lowercased.
-	// V2
-//	var getAttribsForComparison = function( style )
-//	{
-//		// If we have already computed it, just return it.
-//		var attribs = style._.attribsForComparison;
-//		if ( attribs )
-//			return attribs;
-
-//		attribs = {};
-
-//		var def = style._.definition;
-
-//		// Loop through all defined attributes.
-//		var styleAttribs = def.attributes;
-//		if ( styleAttribs )
-//		{
-//			for ( var styleAtt in styleAttribs )
-//			{
-//				attribs[ styleAtt.toLowerCase() ] = styleAttribs[ styleAtt ].toLowerCase();
-//			}
-//		}
-
-//		// Includes the style definitions.
-//		if ( this._GetStyleText().length > 0 )
-//		{
-//			attribs['style'] = this._GetStyleText().toLowerCase();
-//		}
-
-//		// Appends the "length" information to the object.
-//		FCKTools.AppendLengthProperty( attribs, '_length' );
-
-//		// Return it, saving it to the next request.
-//		return ( this._GetAttribsForComparison_$ = attribs );
-//	},
-
-	var mergeSiblings = function( element )
+	}
+
+	function mergeSiblings( element )
 	{
 		if ( !element || element.type != CKEDITOR.NODE_ELEMENT || !CKEDITOR.dtd.$removeEmpty[ element.getName() ] )
@@ -494,7 +845,7 @@
 		mergeElements( element, element.getNext(), true );
 		mergeElements( element, element.getPrevious() );
-	};
-
-	var mergeElements = function( element, sibling, isNext )
+	}
+
+	function mergeElements( element, sibling, isNext )
 	{
 		if ( sibling && sibling.type == CKEDITOR.NODE_ELEMENT )
@@ -505,5 +856,5 @@
 				sibling = isNext ? sibling.getNext() : sibling.getPrevious();
 
-			if ( sibling && sibling.type == CKEDITOR.NODE_ELEMENT && sibling.getName() == element.getName() )
+			if ( sibling && sibling.type == CKEDITOR.NODE_ELEMENT && element.isIdentical( sibling ) )
 			{
 				// Save the last child to be checked too, to merge things like
@@ -522,23 +873,13 @@
 			}
 		}
-	};
-
-	// Regex used to match all variables defined in an attribute or style
-	// value. The variable name is returned with $2.
-	var styleVariableAttNameRegex = /#\(\s*("|')(.+?)\1[^\)]*\s*\)/g;
-
-	var getElement = function( style, targetDocument )
-	{
-		var el = style._.element;
-
-		if ( el )
-			return el.clone();
+	}
+
+	function getElement( style, targetDocument )
+	{
+		var el;
 
 		var def = style._.definition;
-		var variables = style._.variables;
 
 		var elementName = style.element;
-		var attributes = def.attributes;
-		var styles = def.styles;
 
 		// The "*" element name will always be a span for this function.
@@ -549,4 +890,13 @@
 		el = new CKEDITOR.dom.element( elementName, targetDocument );
 
+		return setupElement( el, style );
+	}
+
+	function setupElement( el, style )
+	{
+		var def = style._.definition;
+		var attributes = def.attributes;
+		var styles = CKEDITOR.style.getStyleText( def );
+
 		// Assign all defined attributes.
 		if ( attributes )
@@ -554,14 +904,5 @@
 			for ( var att in attributes )
 			{
-				var attValue = attributes[ att ];
-				if ( attValue && variables )
-				{
-					attValue = attValue.replace( styleVariableAttNameRegex, function()
-						{
-							// The second group in the regex is the variable name.
-							return variables[ arguments[2] ] || arguments[0];
-						});
-				}
-				el.setAttribute( att, attValue );
+				el.setAttribute( att, attributes[ att ] );
 			}
 		}
@@ -569,22 +910,150 @@
 		// Assign all defined styles.
 		if ( styles )
-		{
-			for ( var styleName in styles )
-				el.setStyle( styleName, styles[ styleName ] );
-
-			if ( variables )
-			{
-				attValue = el.getAttribute( 'style' ).replace( styleVariableAttNameRegex, function()
+			el.setAttribute( 'style', styles );
+
+		return el;
+	}
+
+	var varRegex = /#\((.+?)\)/g;
+	function replaceVariables( list, variablesValues )
+	{
+		for ( var item in list )
+		{
+			list[ item ] = list[ item ].replace( varRegex, function( match, varName )
+				{
+					return variablesValues[ varName ];
+				});
+		}
+	}
+
+
+	// Returns an object that can be used for style matching comparison.
+	// Attributes names and values are all lowercased, and the styles get
+	// merged with the style attribute.
+	function getAttributesForComparison( styleDefinition )
+	{
+		// If we have already computed it, just return it.
+		var attribs = styleDefinition._AC;
+		if ( attribs )
+			return attribs;
+
+		attribs = {};
+
+		var length = 0;
+
+		// Loop through all defined attributes.
+		var styleAttribs = styleDefinition.attributes;
+		if ( styleAttribs )
+		{
+			for ( var styleAtt in styleAttribs )
+			{
+				length++;
+				attribs[ styleAtt ] = styleAttribs[ styleAtt ];
+			}
+		}
+
+		// Includes the style definitions.
+		var styleText = CKEDITOR.style.getStyleText( styleDefinition );
+		if ( styleText )
+		{
+			if ( !attribs[ 'style' ] )
+				length++;
+			attribs[ 'style' ] = styleText;
+		}
+
+		// Appends the "length" information to the object.
+		attribs._length = length;
+
+		// Return it, saving it to the next request.
+		return ( styleDefinition._AC = attribs );
+	}
+
+	/**
+	 * Get the the collection used to compare the elements and attributes,
+	 * defined in this style overrides, with other element. All information in
+	 * it is lowercased.
+	 * @param {CKEDITOR.style} style
+	 */
+	function getOverrides( style )
+	{
+		if( style._.overrides )
+			return style._.overrides;
+
+		var overrides = ( style._.overrides = {} ),
+			definition = style._.definition.overrides;
+
+		if ( definition )
+		{
+			// The override description can be a string, object or array.
+			// Internally, well handle arrays only, so transform it if needed.
+			if ( !CKEDITOR.tools.isArray( definition ) )
+				definition = [ definition ];
+
+			// Loop through all override definitions.
+			for ( var i = 0 ; i < definition.length ; i++ )
+			{
+				var override = definition[i];
+				var elementName;
+				var overrideEl;
+				var attrs;
+
+				// If can be a string with the element name.
+				if ( typeof override == 'string' )
+					elementName = override.toLowerCase();
+				// Or an object.
+				else
+				{
+					elementName = override.element ? override.element.toLowerCase() : style.element;
+					attrs = override.attributes;
+				}
+
+				// We can have more than one override definition for the same
+				// element name, so we attempt to simply append information to
+				// it if it already exists.
+				overrideEl = overrides[ elementName ] || ( overrides[ elementName ] = {} );
+
+				if ( attrs )
+				{
+					// The returning attributes list is an array, because we
+					// could have different override definitions for the same
+					// attribute name.
+					var overrideAttrs = ( overrideEl.attributes = overrideEl.attributes || new Array() );
+					for ( var attName in attrs )
 					{
-						// The second group in the regex is the variable name.
-						return variables[ arguments[2] ] || arguments[0];
-					});
-				el.setAttribute( 'style', attValue );
-			}
-		}
-
-		// Save the created element. It will be reused on future calls.
-		return ( style._.element = el );
-	};
+						// Each item in the attributes array is also an array,
+						// where [0] is the attribute name and [1] is the
+						// override value.
+						overrideAttrs.push( [ attName.toLowerCase(), attrs[ attName ] ] );
+					}
+				}
+			}
+		}
+
+		return overrides;
+	}
+
+	function normalizeCssText( unparsedCssText )
+	{
+		// Injects the style in a temporary span object, so the browser parses it,
+		// retrieving its final format.
+		var temp = new CKEDITOR.dom.element( 'span' );
+		temp.setAttribute( 'style', unparsedCssText );
+		return temp.getAttribute( 'style' );
+	}
+
+	function applyStyle( document, remove )
+	{
+		// Get all ranges from the selection.
+		var selection = document.getSelection();
+		var ranges = selection.getRanges();
+		var func = remove ? this.removeFromRange : this.applyToRange;
+
+		// Apply the style to the ranges.
+		for ( var i = 0 ; i < ranges.length ; i++ )
+			func.call( this, ranges[ i ] );
+
+		// Select the ranges again.
+		selection.selectRanges( ranges );
+	}
 })();
 
@@ -601,5 +1070,10 @@
 
 	if ( doc )
-		this.style.apply( doc );
+	{
+		if ( this.state == CKEDITOR.TRISTATE_OFF )
+			this.style.apply( doc );
+		else if ( this.state == CKEDITOR.TRISTATE_ON )
+			this.style.remove( doc );
+	}
 
 	return !!doc;
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/stylescombo/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/stylescombo/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/stylescombo/plugin.js	(revision 3747)
@@ -0,0 +1,275 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+(function()
+{
+	CKEDITOR.plugins.add( 'stylescombo',
+	{
+		requires : [ 'richcombo', 'styles' ],
+
+		init : function( editor )
+		{
+			var config = editor.config,
+				lang = editor.lang.stylesCombo,
+				pluginPath = this.path,
+				styles;
+
+			editor.ui.addRichCombo( 'Styles',
+				{
+					label : lang.label,
+					title : lang.panelTitle,
+					voiceLabel : lang.voiceLabel,
+					className : 'cke_styles',
+					multiSelect : true,
+
+					panel :
+					{
+						css : [ config.contentsCss, CKEDITOR.getUrl( editor.skinPath + 'editor.css' ) ],
+						voiceLabel : lang.panelVoiceLabel
+					},
+
+					init : function()
+					{
+						var combo = this,
+							stylesSet = config.stylesCombo_stylesSet.split( ':', 2 ),
+							stylesSetPath = stylesSet[ 1 ] || CKEDITOR.getUrl( pluginPath + 'styles/' + stylesSet[ 0 ] + '.js' ) ;
+
+						stylesSet = stylesSet[ 0 ];
+
+						CKEDITOR.loadStylesSet( stylesSet, stylesSetPath, function( stylesDefinitions )
+							{
+								var style,
+									styleName,
+									stylesList = [];
+
+								styles = {};
+
+								// Put all styles into an Array.
+								for ( var i = 0 ; i < stylesDefinitions.length ; i++ )
+								{
+									var styleDefinition = stylesDefinitions[ i ];
+
+									styleName = styleDefinition.name;
+
+									style = styles[ styleName ] = new CKEDITOR.style( styleDefinition );
+									style._name = styleName;
+
+									stylesList.push( style );
+								}
+
+								// Sorts the Array, so the styles get grouped
+								// by type.
+								stylesList.sort( sortStyles );
+
+								// Loop over the Array, adding all items to the
+								// combo.
+								var lastType;
+								for ( i = 0 ; i < stylesList.length ; i++ )
+								{
+									style = stylesList[ i ];
+									styleName = style._name;
+
+									var type = style.type;
+
+									if ( type != lastType )
+									{
+										combo.startGroup( lang[ 'panelTitle' + String( type ) ] );
+										lastType = type;
+									}
+
+									combo.add(
+										styleName,
+										style.type == CKEDITOR.STYLE_OBJECT ? styleName : buildPreview( style._.definition ),
+										styleName );
+								}
+
+								combo.commit();
+
+								combo.onOpen();
+							});
+					},
+
+					onClick : function( value )
+					{
+						editor.focus();
+						editor.fire( 'saveSnapshot' );
+
+						var style = styles[ value ],
+							selection = editor.getSelection();
+
+						if ( style.type == CKEDITOR.STYLE_OBJECT )
+						{
+							var element = selection.getSelectedElement();
+							if ( element )
+								style.applyToObject( element );
+
+							return;
+						}
+
+						var elementPath = new CKEDITOR.dom.elementPath( selection.getStartElement() );
+
+						if ( style.type == CKEDITOR.STYLE_INLINE && style.checkActive( elementPath ) )
+							style.remove( editor.document );
+						else
+							style.apply( editor.document );
+
+						editor.fire( 'saveSnapshot' );
+					},
+
+					onRender : function()
+					{
+						editor.on( 'selectionChange', function( ev )
+							{
+								var currentValue = this.getValue();
+
+								var elementPath = ev.data.path,
+									elements = elementPath.elements;
+
+								// For each element into the elements path.
+								for ( var i = 0, element ; i < elements.length ; i++ )
+								{
+									element = elements[i];
+
+									// Check if the element is removable by any of
+									// the styles.
+									for ( var value in styles )
+									{
+										if ( styles[ value ].checkElementRemovable( element, true ) )
+										{
+											if ( value != currentValue )
+												this.setValue( value );
+											return;
+										}
+									}
+								}
+
+								// If no styles match, just empty it.
+								this.setValue( '' );
+							},
+							this);
+					},
+
+					onOpen : function()
+					{
+						if ( CKEDITOR.env.ie )
+							editor.focus();
+
+						var selection = editor.getSelection();
+
+						var element = selection.getSelectedElement(),
+							elementName = element && element.getName(),
+							elementPath = new CKEDITOR.dom.elementPath( element || selection.getStartElement() );
+
+						var counter = [ 0, 0, 0, 0 ];
+						this.showAll();
+						this.unmarkAll();
+						for ( var name in styles )
+						{
+							var style = styles[ name ],
+								type = style.type;
+
+							if ( type == CKEDITOR.STYLE_OBJECT )
+							{
+								if ( element && style.element == elementName )
+								{
+									if ( style.checkElementRemovable( element, true ) )
+										this.mark( name );
+
+									counter[ type ]++;
+								}
+								else
+									this.hideItem( name );
+							}
+							else
+							{
+								if ( style.checkActive( elementPath ) )
+									this.mark( name );
+
+								counter[ type ]++;
+							}
+						}
+
+						if ( !counter[ CKEDITOR.STYLE_BLOCK ] )
+							this.hideGroup( lang[ 'panelTitle' + String( CKEDITOR.STYLE_BLOCK ) ] );
+
+						if ( !counter[ CKEDITOR.STYLE_INLINE ] )
+							this.hideGroup( lang[ 'panelTitle' + String( CKEDITOR.STYLE_INLINE ) ] );
+
+						if ( !counter[ CKEDITOR.STYLE_OBJECT ] )
+							this.hideGroup( lang[ 'panelTitle' + String( CKEDITOR.STYLE_OBJECT ) ] );
+					}
+				});
+		}
+	});
+
+	var stylesSets = {};
+
+	CKEDITOR.addStylesSet = function( name, styles )
+	{
+		stylesSets[ name ] = styles;
+	};
+
+	CKEDITOR.loadStylesSet = function( name, url, callback )
+	{
+		var stylesSet = stylesSets[ name ];
+
+		if ( stylesSet )
+		{
+			callback( stylesSet );
+			return ;
+		}
+
+		CKEDITOR.scriptLoader.load( url, function()
+			{
+				callback( stylesSets[ name ] );
+			});
+	};
+
+	function buildPreview( styleDefinition )
+	{
+		var html = [];
+
+		var elementName = styleDefinition.element;
+
+		// Avoid <bdo> in the preview.
+		if ( elementName == 'bdo' )
+			elementName = 'span';
+
+		html = [ '<', elementName ];
+
+		// Assign all defined attributes.
+		var attribs	= styleDefinition.attributes;
+		if ( attribs )
+		{
+			for ( var att in attribs )
+			{
+				html.push( ' ', att, '="', attribs[ att ], '"' );
+			}
+		}
+
+		// Assign the style attribute.
+		var cssStyle = CKEDITOR.style.getStyleText( styleDefinition );
+		if ( cssStyle )
+			html.push( ' style="', cssStyle, '"' );
+
+		html.push( '>', styleDefinition.name, '</', elementName, '>' );
+
+		return html.join( '' );
+	}
+
+	function sortStyles( styleA, styleB )
+	{
+		var typeA = styleA.type,
+			typeB = styleB.type;
+
+		return typeA == typeB ? 0 :
+			typeA == CKEDITOR.STYLE_OBJECT ? -1 :
+			typeB == CKEDITOR.STYLE_OBJECT ? 1 :
+			typeB == CKEDITOR.STYLE_BLOCK ? 1 :
+			-1;
+	}
+})();
+
+CKEDITOR.config.stylesCombo_stylesSet = 'default';
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/stylescombo/styles/default.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/stylescombo/styles/default.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/stylescombo/styles/default.js	(revision 3747)
@@ -0,0 +1,85 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.addStylesSet( 'default',
+[
+	/* Block Styles */
+
+	// These styles are already available in the "Format" combo, so they are
+	// not needed here by default. You may enable them to avoid placing the
+	// "Format" combo in the toolbar, maintaining the same features.
+	/*
+	{ name : 'Paragraph'		, element : 'p' },
+	{ name : 'Heading 1'		, element : 'h1' },
+	{ name : 'Heading 2'		, element : 'h2' },
+	{ name : 'Heading 3'		, element : 'h3' },
+	{ name : 'Heading 4'		, element : 'h4' },
+	{ name : 'Heading 5'		, element : 'h5' },
+	{ name : 'Heading 6'		, element : 'h6' },
+	{ name : 'Preformatted Text', element : 'pre' },
+	{ name : 'Address'			, element : 'address' },
+	*/
+
+	{ name : 'Blue Title'		, element : 'h3', styles : { 'color' : 'Blue' } },
+	{ name : 'Red Title'		, element : 'h3', styles : { 'color' : 'Red' } },
+
+	/* Inline Styles */
+
+	// These are core styles available as toolbar buttons. You may opt enabling
+	// some of them in the Styles combo, removing them from the toolbar.
+	/*
+	{ name : 'Strong'			, element : 'strong', overrides : 'b' },
+	{ name : 'Emphasis'			, element : 'em'	, overrides : 'i' },
+	{ name : 'Underline'		, element : 'u' },
+	{ name : 'Strikethrough'	, element : 'strike' },
+	{ name : 'Subscript'		, element : 'sub' },
+	{ name : 'Superscript'		, element : 'sup' },
+	*/
+
+	{ name : 'Marker: Yellow'	, element : 'span', styles : { 'background-color' : 'Yellow' } },
+	{ name : 'Marker: Green'	, element : 'span', styles : { 'background-color' : 'Lime' } },
+
+	{ name : 'Big'				, element : 'big' },
+	{ name : 'Small'			, element : 'small' },
+	{ name : 'Typewriter'		, element : 'tt' },
+
+	{ name : 'Computer Code'	, element : 'code' },
+	{ name : 'Keyboard Phrase'	, element : 'kbd' },
+	{ name : 'Sample Text'		, element : 'samp' },
+	{ name : 'Variable'			, element : 'var' },
+
+	{ name : 'Deleted Text'		, element : 'del' },
+	{ name : 'Inserted Text'	, element : 'ins' },
+
+	{ name : 'Cited Work'		, element : 'cite' },
+	{ name : 'Inline Quotation'	, element : 'q' },
+
+	{ name : 'Language: RTL'	, element : 'span', attributes : { 'dir' : 'rtl' } },
+	{ name : 'Language: LTR'	, element : 'span', attributes : { 'dir' : 'ltr' } },
+
+	/* Object Styles */
+
+	{
+		name : 'Image on Left',
+		element : 'img',
+		attributes :
+		{
+			'style' : 'padding: 5px; margin-right: 5px',
+			'border' : '2',
+			'align' : 'left'
+		}
+	},
+
+	{
+		name : 'Image on Right',
+		element : 'img',
+		attributes :
+		{
+			'style' : 'padding: 5px; margin-left: 5px',
+			'border' : '2',
+			'align' : 'right'
+		}
+	}
+]);
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/tab/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/tab/plugin.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/tab/plugin.js	(revision 3747)
@@ -6,39 +6,9 @@
 (function()
 {
-	var blurInternal = function( editor, previous )
-	{
-		var hasContainer = editor.container;
-
-		if ( hasContainer )
-		{
-			// We need an empty element after the container, so the focus don't go to a container child.
-			var tempSpan = new CKEDITOR.dom.element( 'span' );
-			tempSpan.setAttribute( 'tabindex', editor.container.getTabIndex() );
-			tempSpan.hide();
-
-			// Insert the temp element and set the focus.
-			if ( previous )
-			{
-				tempSpan.insertBefore( editor.container );
-				tempSpan.focusPrevious();
-			}
-			else
-			{
-				tempSpan.insertAfter( editor.container );
-				tempSpan.focusNext();
-			}
-
-			// Remove the temporary node.
-			tempSpan.remove();
-		}
-
-		return hasContainer;
-	};
-
 	var blurCommand =
 		{
 			exec : function( editor )
 			{
-				return blurInternal( editor );
+				editor.container.focusNext( true );
 			}
 		};
@@ -48,5 +18,5 @@
 			exec : function( editor )
 			{
-				return blurInternal( editor, true );
+				editor.container.focusPrevious( true );
 			}
 		};
@@ -56,5 +26,5 @@
 		requires : [ 'keystrokes' ],
 
-		init : function( editor, pluginPath )
+		init : function( editor )
 		{
 			// Register the keystrokes.
@@ -79,8 +49,5 @@
 						{
 							if ( tabText.length > 0 )
-							{
-								// TODO
-								/*jsl:pass*/
-							}
+								editor.insertHtml( tabText );
 							else
 							{
@@ -123,53 +90,62 @@
  * element.focusNext();
  */
-CKEDITOR.dom.element.prototype.focusNext = function()
+CKEDITOR.dom.element.prototype.focusNext = function( ignoreChildren )
 {
 	var $ = this.$,
 		curTabIndex = this.getTabIndex(),
-		passedCurrent = false,
-		elected,
-		electedTabIndex;
-
-	var all = document.body.all || document.body.getElementsByTagName( '*' );
+		passedCurrent, enteredCurrent,
+		elected, electedTabIndex,
+		element, elementTabIndex;
 
 	if ( curTabIndex <= 0 )
 	{
-		for ( var i = 0, element ; element = all[ i ] ; i++ )
-		{
-			if ( !passedCurrent )
-			{
-				if ( element == $ )
-					passedCurrent = true;
-				continue;
-			}
-
-			element = new CKEDITOR.dom.element( element );
-
-			if ( element.getComputedStyle( 'display' ) == 'none' || element.getComputedStyle( 'visibility' ) == 'hidden' )
-				continue;
-
-			if ( element.getTabIndex() === 0 )
-			{
-				elected = element;
-				break;
-			}
+		// If this element has tabindex <= 0 then we must simply look for any
+		// element following it containing tabindex=0.
+
+		element = this.getNextSourceNode( ignoreChildren, CKEDITOR.NODE_ELEMENT );
+
+		while( element )
+		{
+			if ( element.isVisible() && element.getTabIndex() === 0 )
+			{
+				elected = element;
+				break;
+			}
+
+			element = element.getNextSourceNode( false, CKEDITOR.NODE_ELEMENT );
 		}
 	}
 	else
 	{
-		for ( i = 0, element ; element = all[ i ] ; i++ )
-		{
-			if ( !passedCurrent && element == $ )
-			{
-				passedCurrent = true;
+		// If this element has tabindex > 0 then we must look for:
+		//		1. An element following this element with the same tabindex.
+		//		2. The first element in source other with the lowest tabindex
+		//		   that is higher than this element tabindex.
+		//		3. The first element with tabindex=0.
+
+		element = this.getDocument().getBody().getFirst();
+
+		while( ( element = element.getNextSourceNode( false, CKEDITOR.NODE_ELEMENT ) ) )
+		{
+			if ( !passedCurrent )
+			{
+				if ( !enteredCurrent && element.equals( this ) )
+				{
+					enteredCurrent = true;
+
+					// Ignore this element, if required.
+					if ( ignoreChildren )
+					{
+						if ( !( element = element.getNextSourceNode( true, CKEDITOR.NODE_ELEMENT ) ) )
+							break;
+						passedCurrent = 1;
+					}
+				}
+				else if ( enteredCurrent && !this.contains( element ) )
+					passedCurrent = 1;
+			}
+
+			if ( !element.isVisible() || ( elementTabIndex = element.getTabIndex() ) < 0 )
 				continue;
-			}
-
-			element = new CKEDITOR.dom.element( element );
-
-			if ( element.getComputedStyle( 'display' ) == 'none' || element.getComputedStyle( 'visibility' ) == 'hidden' )
-				continue;
-
-			var elementTabIndex = element.getTabIndex();
 
 			if ( passedCurrent && elementTabIndex == curTabIndex )
@@ -178,5 +154,6 @@
 				break;
 			}
-			else if ( elementTabIndex > curTabIndex && ( !elected || electedTabIndex > elementTabIndex || electedTabIndex === 0 ) )
+
+			if ( elementTabIndex > curTabIndex && ( !elected || !electedTabIndex || elementTabIndex < electedTabIndex ) )
 			{
 				elected = element;
@@ -201,67 +178,73 @@
  * element.focusPrevious();
  */
-CKEDITOR.dom.element.prototype.focusPrevious = function()
+CKEDITOR.dom.element.prototype.focusPrevious = function( ignoreChildren )
 {
 	var $ = this.$,
 		curTabIndex = this.getTabIndex(),
-		passedCurrent = false,
+		passedCurrent, enteredCurrent,
 		elected,
-		electedTabIndex;
-
-	var all = document.body.all || document.body.getElementsByTagName( '*' );
-
-	if ( curTabIndex <= 0 )
-	{
-		for ( var i = 0, element ; element = all[ i ] ; i++ )
-		{
-			if ( !passedCurrent && element == $ )
-			{
-				if ( elected && electedTabIndex === 0 )
-					break;
-
-				passedCurrent = true;
-				continue;
-			}
-
-			element = new CKEDITOR.dom.element( element );
-
-			if ( element.getComputedStyle( 'display' ) == 'none' || element.getComputedStyle( 'visibility' ) == 'hidden' )
-				continue;
-
-			var elementTabIndex = element.getTabIndex();
-
-			if ( ( !passedCurrent && elementTabIndex === 0 )
-				|| ( elementTabIndex > 0 && ( !elected || ( electedTabIndex > 0 && electedTabIndex <= elementTabIndex ) ) ) )
-			{
-				elected = element;
-				electedTabIndex = elementTabIndex;
-			}
-		}
-	}
-	else
-	{
-		for ( i = 0, element ; element = all[ i ] ; i++ )
-		{
-			if ( !passedCurrent && element == $ )
-			{
-				if ( elected && electedTabIndex == curTabIndex )
-					break;
-
-				passedCurrent = true;
-				continue;
-			}
-
-			element = new CKEDITOR.dom.element( element );
-
-			elementTabIndex = element.getTabIndex();
-
-			if ( elementTabIndex > 0 )
-			{
-				if ( ( !passedCurrent && elementTabIndex == curTabIndex )
-					|| ( elementTabIndex < curTabIndex && ( !elected || electedTabIndex <= elementTabIndex ) ) )
-				{
-					elected = element;
-					electedTabIndex = elementTabIndex;
+		electedTabIndex = 0,
+		elementTabIndex;
+
+	var element = this.getDocument().getBody().getLast();
+
+	while( ( element = element.getPreviousSourceNode( false, CKEDITOR.NODE_ELEMENT ) ) )
+	{
+		if ( !passedCurrent )
+		{
+			if ( !enteredCurrent && element.equals( this ) )
+			{
+				enteredCurrent = true;
+
+				// Ignore this element, if required.
+				if ( ignoreChildren )
+				{
+					if ( !( element = element.getPreviousSourceNode( true, CKEDITOR.NODE_ELEMENT ) ) )
+						break;
+					passedCurrent = 1;
 				}
+			}
+			else if ( enteredCurrent && !this.contains( element ) )
+				passedCurrent = 1;
+		}
+
+		if ( !element.isVisible() || ( elementTabIndex = element.getTabIndex() ) < 0 )
+			continue;
+
+		if ( curTabIndex <= 0 )
+		{
+			// If this element has tabindex <= 0 then we must look for:
+			//		1. An element before this one containing tabindex=0.
+			//		2. The last element with the highest tabindex.
+
+			if ( passedCurrent && elementTabIndex === 0 )
+			{
+				elected = element;
+				break;
+			}
+
+			if ( elementTabIndex > electedTabIndex )
+			{
+				elected = element;
+				electedTabIndex = elementTabIndex;
+			}
+		}
+		else
+		{
+			// If this element has tabindex > 0 we must look for:
+			//		1. An element preceeding this one, with the same tabindex.
+			//		2. The last element in source other with the highest tabindex
+			//		   that is lower than this element tabindex.
+
+			if ( passedCurrent && elementTabIndex == curTabIndex )
+			{
+				elected = element;
+				break;
+			}
+
+			if ( elementTabIndex < curTabIndex && ( !elected || elementTabIndex > electedTabIndex ) )
+			{
+				elected = element;
+				electedTabIndex = elementTabIndex;
 			}
 		}
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/table/dialogs/table.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/table/dialogs/table.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/table/dialogs/table.js	(revision 3747)
@@ -0,0 +1,550 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+(function()
+{
+	var widthPattern = /^(\d+(?:\.\d+)?)(px|%)$/,
+		heightPattern = /^(\d+(?:\.\d+)?)px$/;
+
+	var commitValue = function( data )
+	{
+		var id = this.id;
+		if ( !data.info )
+			data.info = {};
+		data.info[id] = this.getValue();
+	};
+
+	function tableDialog( editor, command )
+	{
+		var makeElement = function( name ){ return new CKEDITOR.dom.element( name, editor.document ); };
+
+		return {
+			title : editor.lang.table.title,
+			minWidth : 310,
+			minHeight : CKEDITOR.env.ie ? 310 : 280,
+			onShow : function()
+			{
+				// Detect if there's a selected table.
+				var selection = editor.getSelection(),
+					ranges = selection.getRanges(),
+					selectedTable = null;
+
+				var rowsInput = this.getContentElement( 'info', 'txtRows' ),
+					colsInput = this.getContentElement( 'info', 'txtCols' ),
+					widthInput = this.getContentElement( 'info', 'txtWidth' );
+				if ( command == 'tableProperties' )
+				{
+					if ( ( selectedTable = editor.getSelection().getSelectedElement() ) )
+					{
+						if ( selectedTable.getName() != 'table' )
+							selectedTable = null;
+					}
+					else if ( ranges.length > 0 )
+					{
+						var rangeRoot = ranges[0].getCommonAncestor( true );
+						selectedTable = rangeRoot.getAscendant( 'table', true );
+					}
+
+					// Save a reference to the selected table, and push a new set of default values.
+					this._.selectedElement = selectedTable;
+				}
+
+				// Enable, disable and select the row, cols, width fields.
+				if ( selectedTable )
+				{
+					this.setupContent( selectedTable );
+					rowsInput && rowsInput.disable();
+					colsInput && colsInput.disable();
+					widthInput && widthInput.select();
+				}
+				else
+				{
+					rowsInput && rowsInput.enable();
+					colsInput && colsInput.enable();
+					rowsInput && rowsInput.select();
+				}
+			},
+			onOk : function()
+			{
+				var table = this._.selectedElement || makeElement( 'table' ),
+					me = this,
+					data = {};
+
+				this.commitContent( data, table );
+
+				if ( data.info )
+				{
+					var info = data.info;
+
+					// Generate the rows and cols.
+					if ( !this._.selectedElement )
+					{
+						var tbody = table.append( makeElement( 'tbody' ) ),
+							rows = parseInt( info.txtRows, 10 ) || 0,
+							cols = parseInt( info.txtCols, 10 ) || 0;
+
+						for ( var i = 0 ; i < rows ; i++ )
+						{
+							var row = tbody.append( makeElement( 'tr' ) );
+							for ( var j = 0 ; j < cols ; j++ )
+							{
+								var cell = row.append( makeElement( 'td' ) );
+								if ( !CKEDITOR.env.ie )
+									cell.append( makeElement( 'br' ) );
+							}
+						}
+					}
+
+					// Modify the table headers. Depends on havint rows and cols generated
+					// correctly so it can't be done in commit functions.
+
+					// Should we make a <thead>?
+					var headers = info.selHeaders;
+					if ( !table.$.tHead && ( headers == 'row' || headers == 'both' ) )
+					{
+						var thead = new CKEDITOR.dom.element( table.$.createTHead() );
+						tbody = table.getElementsByTag( 'tbody' ).getItem( 0 );
+						var theRow = tbody.getElementsByTag( 'tr' ).getItem( 0 );
+
+						// Change TD to TH:
+						for ( i = 0 ; i < theRow.getChildCount() ; i++ )
+						{
+							var th = theRow.getChild( i );
+							if ( th.type == CKEDITOR.NODE_ELEMENT )
+							{
+								th.renameNode( 'th' );
+								if ( !i )
+									th.setAttribute( 'scope', 'col' );
+							}
+						}
+						thead.append( theRow.remove() );
+					}
+
+					if ( table.$.tHead !== null && !( headers == 'row' || headers == 'both' ) )
+					{
+						// Move the row out of the THead and put it in the TBody:
+						thead = new CKEDITOR.dom.element( table.$.tHead );
+						tbody = table.getElementsByTag( 'tbody' ).getItem( 0 );
+
+						var previousFirstRow = tbody.getFirst();
+						while ( thead.getChildCount() > 0 )
+						{
+							theRow = thead.getFirst();
+							for ( i = 0; i < theRow.getChildCount() ; i++ )
+							{
+								var newCell = theRow.getChild( i );
+								if ( newCell.type == CKEDITOR.NODE_ELEMENT )
+								{
+									newCell.renameNode( 'td' );
+									newCell.removeAttribute( 'scope' );
+								}
+							}
+							theRow.insertBefore( previousFirstRow );
+						}
+						thead.remove();
+					}
+
+					// Should we make all first cells in a row TH?
+					if ( !this.hasColumnHeaders && ( headers == 'col' || headers == 'both' ) )
+					{
+						for( row = 0 ; row < table.$.rows.length ; row++ )
+						{
+							newCell = new CKEDITOR.dom.element( table.$.rows[ row ].cells[ 0 ] );
+							newCell.renameNode( 'th' );
+							newCell.setAttribute( 'scope', 'col' );
+						}
+					}
+
+					// Should we make all first TH-cells in a row make TD? If 'yes' we do it the other way round :-)
+					if ( ( this.hasColumnHeaders ) && !( headers == 'col' || headers == 'both' ) )
+					{
+						for( i = 0 ; i < table.$.rows.length ; i++ )
+						{
+							row = new CKEDITOR.dom.element( table.$.rows[i] );
+							if ( row.getParent().getName() == 'tbody' )
+							{
+								newCell = new CKEDITOR.dom.element( row.$.cells[0] );
+								newCell.renameNode( 'td');
+								newCell.removeAttribute( 'scope' );
+							}
+						}
+					}
+
+					// Set the width and height.
+					var styles = [];
+					if ( info.txtHeight )
+						styles.push( 'height:' + info.txtHeight + 'px' );
+					if ( info.txtWidth )
+					{
+						var type = info.cmbWidthType || 'pixels';
+						styles.push( 'width:' + info.txtWidth + ( type == 'pixels' ? 'px' : '%' ) );
+					}
+					styles = styles.join( ';' );
+					if ( styles )
+						table.$.style.cssText = styles;
+					else
+						table.removeAttribute( 'style' );
+				}
+
+				// Insert the table element if we're creating one.
+				if ( !this._.selectedElement )
+					editor.insertElement( table );
+
+				return true;
+			},
+			contents : [
+				{
+					id : 'info',
+					label : editor.lang.table.title,
+					elements :
+					[
+						{
+							type : 'hbox',
+							widths : [ null, null ],
+							styles : [ 'vertical-align:top' ],
+							children :
+							[
+								{
+									type : 'vbox',
+									padding : 0,
+									children :
+									[
+										{
+											type : 'text',
+											id : 'txtRows',
+											'default' : 3,
+											label : editor.lang.table.rows,
+											style : 'width:5em',
+											validate : function()
+											{
+												var pass = true,
+													value = this.getValue();
+												pass = pass && CKEDITOR.dialog.validate.integer()( value )
+													&& value > 0;
+												if ( !pass )
+												{
+													alert( editor.lang.table.invalidRows );
+													this.select();
+												}
+												return pass;
+											},
+											setup : function( selectedElement )
+											{
+												this.setValue( selectedElement.$.rows.length );
+											},
+											commit : commitValue
+										},
+										{
+											type : 'text',
+											id : 'txtCols',
+											'default' : 2,
+											label : editor.lang.table.columns,
+											style : 'width:5em',
+											validate : function()
+											{
+												var pass = true,
+													value = this.getValue();
+												pass = pass && CKEDITOR.dialog.validate.integer()( value )
+													&& value > 0;
+												if ( !pass )
+												{
+													alert( editor.lang.table.invalidCols );
+													this.select();
+												}
+												return pass;
+											},
+											setup : function( selectedTable )
+											{
+												this.setValue( selectedTable.$.rows[0].cells.length);
+											},
+											commit : commitValue
+										},
+										{
+											type : 'html',
+											html : '&nbsp;'
+										},
+										{
+											type : 'select',
+											id : 'selHeaders',
+											'default' : '',
+											label : editor.lang.table.headers,
+											items :
+											[
+												[ editor.lang.table.headersNone, '' ],
+												[ editor.lang.table.headersRow, 'row' ],
+												[ editor.lang.table.headersColumn, 'col' ],
+												[ editor.lang.table.headersBoth, 'both' ]
+											],
+											setup : function( selectedTable )
+											{
+												// Fill in the headers field.
+												var dialog = this.getDialog();
+												dialog.hasColumnHeaders = true;
+
+												// Check if all the first cells in every row are TH
+												for ( var row = 0 ; row < selectedTable.$.rows.length ; row++ )
+												{
+													// If just one cell isn't a TH then it isn't a header column
+													if ( selectedTable.$.rows[row].cells[0].nodeName.toLowerCase() != 'th' )
+													{
+														dialog.hasColumnHeaders = false;
+														break;
+													}
+												}
+
+												// Check if the table contains <thead>.
+												if ( ( selectedTable.$.tHead !== null) )
+													this.setValue( dialog.hasColumnHeaders ? 'both' : 'row' );
+												else
+													this.setValue( dialog.hasColumnHeaders ? 'col' : '' );
+											},
+											commit : commitValue
+										},
+										{
+											type : 'text',
+											id : 'txtBorder',
+											'default' : 1,
+											label : editor.lang.table.border,
+											style : 'width:3em',
+											validate : CKEDITOR.dialog.validate['number']( editor.lang.table.invalidBorder ),
+											setup : function( selectedTable )
+											{
+												this.setValue( selectedTable.getAttribute( 'border' ) || '' );
+											},
+											commit : function( data, selectedTable )
+											{
+												if ( this.getValue() )
+													selectedTable.setAttribute( 'border', this.getValue() );
+												else
+													selectedTable.removeAttribute( 'border' );
+											}
+										},
+										{
+											id : 'cmbAlign',
+											type : 'select',
+											'default' : '',
+											label : editor.lang.table.align,
+											items :
+											[
+												[ editor.lang.table.alignNotSet , ''],
+												[ editor.lang.table.alignLeft , 'left'],
+												[ editor.lang.table.alignCenter , 'center'],
+												[ editor.lang.table.alignRight , 'right']
+											],
+											setup : function( selectedTable )
+											{
+												this.setValue( selectedTable.getAttribute( 'align' ) || '' );
+											},
+											commit : function( data, selectedTable )
+											{
+												if ( this.getValue() )
+													selectedTable.setAttribute( 'align', this.getValue() );
+												else
+													selectedTable.removeAttribute( 'align' );
+											}
+										}
+									]
+								},
+								{
+									type : 'vbox',
+									padding : 0,
+									children :
+									[
+										{
+											type : 'hbox',
+											widths : [ '5em' ],
+											children :
+											[
+												{
+													type : 'text',
+													id : 'txtWidth',
+													style : 'width:5em',
+													label : editor.lang.table.width,
+													'default' : 200,
+													validate : CKEDITOR.dialog.validate['number']( editor.lang.table.invalidWidth ),
+													setup : function( selectedTable )
+													{
+														var widthMatch = widthPattern.exec( selectedTable.$.style.width );
+														if ( widthMatch )
+															this.setValue( widthMatch[1] );
+													},
+													commit : commitValue
+												},
+												{
+													id : 'cmbWidthType',
+													type : 'select',
+													label : '&nbsp;',
+													'default' : 'pixels',
+													items :
+													[
+														[ editor.lang.table.widthPx , 'pixels'],
+														[ editor.lang.table.widthPc , 'percents']
+													],
+													setup : function( selectedTable )
+													{
+														var widthMatch = widthPattern.exec( selectedTable.$.style.width );
+														if ( widthMatch )
+															this.setValue( widthMatch[2] == 'px' ? 'pixels' : 'percents' );
+													},
+													commit : commitValue
+												}
+											]
+										},
+										{
+											type : 'hbox',
+											widths : [ '5em' ],
+											children :
+											[
+												{
+													type : 'text',
+													id : 'txtHeight',
+													style : 'width:5em',
+													label : editor.lang.table.height,
+													'default' : '',
+													validate : CKEDITOR.dialog.validate['number']( editor.lang.table.invalidHeight ),
+													setup : function( selectedTable )
+													{
+														var heightMatch = heightPattern.exec( selectedTable.$.style.height );
+														if ( heightMatch )
+															this.setValue( heightMatch[1] );
+													},
+													commit : commitValue
+												},
+												{
+													type : 'html',
+													html : '<br />' + editor.lang.table.widthPx
+												}
+											]
+										},
+										{
+											type : 'html',
+											html : '&nbsp;'
+										},
+										{
+											type : 'text',
+											id : 'txtCellSpace',
+											style : 'width:3em',
+											label : editor.lang.table.cellSpace,
+											'default' : 1,
+											validate : CKEDITOR.dialog.validate['number']( editor.lang.table.invalidCellSpacing ),
+											setup : function( selectedTable )
+											{
+												this.setValue( selectedTable.getAttribute( 'cellSpacing' ) || '' );
+											},
+											commit : function( data, selectedTable )
+											{
+												if ( this.getValue() )
+													selectedTable.setAttribute( 'cellSpacing', this.getValue() );
+												else
+													selectedTable.removeAttribute( 'cellSpacing' );
+											}
+										},
+										{
+											type : 'text',
+											id : 'txtCellPad',
+											style : 'width:3em',
+											label : editor.lang.table.cellPad,
+											'default' : 1,
+											validate : CKEDITOR.dialog.validate['number']( editor.lang.table.invalidCellPadding ),
+											setup : function( selectedTable )
+											{
+												this.setValue( selectedTable.getAttribute( 'cellPadding' ) || '' );
+											},
+											commit : function( data, selectedTable )
+											{
+												if ( this.getValue() )
+													selectedTable.setAttribute( 'cellPadding', this.getValue() );
+												else
+													selectedTable.removeAttribute( 'cellPadding' );
+											}
+										}
+									]
+								}
+							]
+						},
+						{
+							type : 'html',
+							align : 'right',
+							html : ''
+						},
+						{
+							type : 'vbox',
+							padding : 0,
+							children :
+							[
+								{
+									type : 'text',
+									id : 'txtCaption',
+									label : editor.lang.table.caption,
+									setup : function( selectedTable )
+									{
+										var nodeList = selectedTable.getElementsByTag( 'caption' );
+										if ( nodeList.count() > 0 )
+										{
+											var caption = nodeList.getItem( 0 );
+											caption = ( caption.getChild( 0 ) && caption.getChild( 0 ).getText() ) || '';
+											caption = CKEDITOR.tools.trim( caption );
+											this.setValue( caption );
+										}
+									},
+									commit : function( data, table )
+									{
+										var caption = this.getValue(),
+											captionElement = table.getElementsByTag( 'caption' );
+										if ( caption )
+										{
+											if ( captionElement.count() > 0 )
+											{
+												captionElement = captionElement.getItem( 0 );
+												captionElement.setHtml( '' );
+											}
+											else
+											{
+												captionElement = new CKEDITOR.dom.element( 'caption', editor.document );
+												if ( table.getChildCount() )
+													captionElement.insertBefore( table.getFirst() );
+												else
+													captionElement.appendTo( table );
+											}
+											captionElement.append( new CKEDITOR.dom.text( caption, editor.document ) );
+										}
+										else if ( captionElement.count() > 0 )
+										{
+											for ( var i = captionElement.count() - 1 ; i >= 0 ; i-- )
+												captionElement.getItem( i ).remove();
+										}
+									}
+								},
+								{
+									type : 'text',
+									id : 'txtSummary',
+									label : editor.lang.table.summary,
+									setup : function( selectedTable )
+									{
+										this.setValue( selectedTable.getAttribute( 'summary' ) || '' );
+									},
+									commit : function( data, selectedTable )
+									{
+										if ( this.getValue() )
+											selectedTable.setAttribute( 'summary', this.getValue() );
+									}
+								}
+							]
+						}
+					]
+				}
+			]
+		};
+	}
+
+	CKEDITOR.dialog.add( 'table', function( editor )
+		{
+			return tableDialog( editor, 'table' );
+		} );
+	CKEDITOR.dialog.add( 'tableProperties', function( editor )
+		{
+			return tableDialog( editor, 'tableProperties' );
+		} );
+})();
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/table/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/table/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/table/plugin.js	(revision 3747)
@@ -0,0 +1,70 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.plugins.add( 'table',
+{
+	init : function( editor )
+	{
+		var table = CKEDITOR.plugins.table,
+			lang = editor.lang.table;
+
+		editor.addCommand( 'table', new CKEDITOR.dialogCommand( 'table' ) );
+		editor.addCommand( 'tableProperties', new CKEDITOR.dialogCommand( 'tableProperties' ) );
+
+		editor.ui.addButton( 'Table',
+			{
+				label : lang.toolbar,
+				command : 'table'
+			});
+
+		CKEDITOR.dialog.add( 'table', this.path + 'dialogs/table.js' );
+		CKEDITOR.dialog.add( 'tableProperties', this.path + 'dialogs/table.js' );
+
+		// If the "menu" plugin is loaded, register the menu items.
+		if ( editor.addMenuItems )
+		{
+			editor.addMenuItems(
+				{
+					table :
+					{
+						label : lang.menu,
+						command : 'tableProperties',
+						group : 'table',
+						order : 5
+					},
+
+					tabledelete :
+					{
+						label : lang.deleteTable,
+						command : 'tableDelete',
+						group : 'table',
+						order : 1
+					}
+				} );
+		}
+
+		// If the "contextmenu" plugin is loaded, register the listeners.
+		if ( editor.contextMenu )
+		{
+			editor.contextMenu.addListener( function( element, selection )
+				{
+					if ( !element )
+						return null;
+
+					var isTable	= element.is( 'table' ) || element.hasAscendant( 'table' );
+
+					if ( isTable )
+					{
+						return {
+							tabledelete : CKEDITOR.TRISTATE_OFF,
+							table : CKEDITOR.TRISTATE_OFF
+						};
+					}
+
+					return null;
+				} );
+		}
+	}
+} );
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/tabletools/dialogs/tableCell.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/tabletools/dialogs/tableCell.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/tabletools/dialogs/tableCell.js	(revision 3747)
@@ -0,0 +1,330 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.dialog.add( 'cellProperties', function( editor )
+	{
+		var langTable = editor.lang.table;
+		var langCell = langTable.cell;
+		var langCommon = editor.lang.common;
+		var validate = CKEDITOR.dialog.validate;
+		var widthPattern = /^(\d+(?:\.\d+)?)(px|%)$/,
+			heightPattern = /^(\d+(?:\.\d+)?)px$/;
+		var bind = CKEDITOR.tools.bind;
+
+		function spacer()
+		{
+			return { type : 'html', html : '&nbsp;' };
+		}
+
+		return {
+			title : langCell.title,
+			minWidth : 480,
+			minHeight : 140,
+			contents : [
+				{
+					id : 'info',
+					label : langCell.title,
+					accessKey : 'I',
+					elements :
+					[
+						{
+							type : 'hbox',
+							widths : [ '45%', '10%', '45%' ],
+							children :
+							[
+								{
+									type : 'vbox',
+									padding : 0,
+									children :
+									[
+										{
+											type : 'hbox',
+											widths : [ '70%', '30%' ],
+											children :
+											[
+												{
+													type : 'text',
+													id : 'width',
+													label : langTable.width,
+													widths : [ '71%', '29%' ],
+													labelLayout : 'horizontal',
+													validate : validate[ 'number' ]( langCell.invalidWidth ),
+													setup : function( selectedCell )
+													{
+														var widthMatch = widthPattern.exec( selectedCell.$.style.width );
+														if ( widthMatch )
+															this.setValue( widthMatch[1] );
+													},
+													commit : function( selectedCell )
+													{
+														var unit = this.getDialog().getValueOf( 'info', 'widthType' );
+														if ( this.getValue() !== '' )
+															selectedCell.$.style.width = this.getValue() + unit;
+														else
+															selectedCell.$.style.width = '';
+													},
+													'default' : ''
+												},
+												{
+													type : 'select',
+													id : 'widthType',
+													labelLayout : 'horizontal',
+													widths : [ '0%', '100%' ],
+													label : '',
+													'default' : 'px',
+													items :
+													[
+														[ langTable.widthPx, 'px' ],
+														[ langTable.widthPc, '%' ]
+													],
+													setup : function( selectedCell )
+													{
+														var widthMatch = widthPattern.exec( selectedCell.$.style.width );
+														if ( widthMatch )
+															this.setValue( widthMatch[2] );
+													}
+												}
+											]
+										},
+										{
+											type : 'hbox',
+											widths : [ '70%', '30%' ],
+											children :
+											[
+												{
+													type : 'text',
+													id : 'height',
+													label : langTable.height,
+													'default' : '',
+													widths : [ '71%', '29%' ],
+													labelLayout : 'horizontal',
+													validate : validate[ 'number' ]( langCell.invalidHeight ),
+													setup : function( selectedCell )
+													{
+														var heightMatch = heightPattern.exec( selectedCell.$.style.height );
+														if ( heightMatch )
+															this.setValue( heightMatch[1] );
+													},
+													commit : function( selectedCell )
+													{
+														if ( this.getValue() !== '' )
+															selectedCell.$.style.height = this.getValue() + 'px';
+														else
+															selectedCell.$.style.height = '';
+													}
+												},
+												{
+													type : 'html',
+													html : langTable.widthPx
+												}
+											]
+										},
+										spacer(),
+										{
+											type : 'select',
+											id : 'wordWrap',
+											labelLayout : 'horizontal',
+											label : langCell.wordWrap,
+											widths : [ '50%', '50%' ],
+											'default' : 'yes',
+											items :
+											[
+												[ langCell.yes, 'yes' ],
+												[ langCell.no, 'no' ]
+											],
+											commit : function( selectedCell )
+											{
+												if ( this.getValue() == 'no' )
+													selectedCell.setAttribute( 'noWrap', 'nowrap' );
+												else
+													selectedCell.removeAttribute( 'noWrap' );
+											}
+										},
+										spacer(),
+										{
+											type : 'select',
+											id : 'hAlign',
+											labelLayout : 'horizontal',
+											label : langCell.hAlign,
+											widths : [ '50%', '50%' ],
+											'default' : '',
+											items :
+											[
+												[ langCommon.notSet, '' ],
+												[ langTable.alignLeft, 'left' ],
+												[ langTable.alignCenter, 'center' ],
+												[ langTable.alignRight, 'right' ]
+											],
+											setup : function( selectedCell )
+											{
+												this.setValue( selectedCell.getAttribute( 'align' ) || '' );
+											},
+											commit : function( selectedCell )
+											{
+												if ( this.getValue() )
+													selectedCell.setAttribute( 'align', this.getValue() );
+												else
+													selectedCell.removeAttribute( 'align' );
+											}
+										},
+										{
+											type : 'select',
+											id : 'vAlign',
+											labelLayout : 'horizontal',
+											label : langCell.vAlign,
+											widths : [ '50%', '50%' ],
+											'default' : '',
+											items :
+											[
+												[ langCommon.notSet, '' ],
+												[ langCell.alignTop, 'top' ],
+												[ langCell.alignMiddle, 'middle' ],
+												[ langCell.alignBottom, 'bottom' ],
+												[ langCell.alignBaseline, 'baseline' ]
+											],
+											setup : function( selectedCell )
+											{
+												this.setValue( selectedCell.getAttribute( 'vAlign' ) || '' );
+											},
+											commit : function( selectedCell )
+											{
+												if ( this.getValue() )
+													selectedCell.setAttribute( 'vAlign', this.getValue() );
+												else
+													selectedCell.removeAttribute( 'vAlign' );
+											}
+										}
+									]
+								},
+								spacer(),
+								{
+									type : 'vbox',
+									padding : 0,
+									children :
+									[
+										{
+											type : 'select',
+											id : 'cellType',
+											label : langCell.cellType,
+											labelLayout : 'horizontal',
+											widths : [ '50%', '50%' ],
+											'default' : 'td',
+											items :
+											[
+												[ langCell.data, 'td' ],
+												[ langCell.header, 'th' ]
+											],
+											setup : function( selectedCell )
+											{
+												this.setValue( selectedCell.getName() );
+											},
+											commit : function( selectedCell )
+											{
+												selectedCell.renameNode( this.getValue() );
+											}
+										},
+										spacer(),
+										{
+											type : 'text',
+											id : 'rowSpan',
+											label : langCell.rowSpan,
+											labelLayout : 'horizontal',
+											widths : [ '50%', '50%' ],
+											'default' : '',
+											validate : validate.integer( langCell.invalidRowSpan ),
+											setup : function( selectedCell )
+											{
+												this.setValue( selectedCell.getAttribute( 'rowSpan' ) || '' );
+											},
+											commit : function( selectedCell )
+											{
+												if ( this.getValue() )
+													selectedCell.setAttribute( 'rowSpan', this.getValue() );
+												else
+													selectedCell.removeAttribute( 'rowSpan' );
+											}
+										},
+										{
+											type : 'text',
+											id : 'colSpan',
+											label : langCell.colSpan,
+											labelLayout : 'horizontal',
+											widths : [ '50%', '50%' ],
+											'default' : '',
+											validate : validate.integer( langCell.invalidColSpan ),
+											setup : function( selectedCell )
+											{
+												this.setValue( selectedCell.getAttribute( 'colSpan' ) || '' );
+											},
+											commit : function( selectedCell )
+											{
+												if ( this.getValue() )
+													selectedCell.setAttribute( 'colSpan', this.getValue() );
+												else
+													selectedCell.removeAttribute( 'colSpan' );
+											}
+										},
+										spacer(),
+										{
+											type : 'text',
+											id : 'bgColor',
+											label : langCell.bgColor,
+											labelLayout : 'horizontal',
+											widths : [ '50%', '50%' ],
+											'default' : '',
+											setup : function( selectedCell )
+											{
+												this.setValue( selectedCell.getAttribute( 'bgColor' ) || '' );
+											},
+											commit : function( selectedCell )
+											{
+												if ( this.getValue() )
+													selectedCell.setAttribute( 'bgColor', this.getValue() );
+												else
+													selectedCell.removeAttribute( 'bgColor' );
+											}
+										},
+										{
+											type : 'text',
+											id : 'borderColor',
+											label : langCell.borderColor,
+											labelLayout : 'horizontal',
+											widths : [ '50%', '50%' ],
+											'default' : '',
+											setup : function( selectedCell )
+											{
+												this.setValue( selectedCell.getAttribute( 'borderColor' ) || '' );
+											},
+											commit : function( selectedCell )
+											{
+												if ( this.getValue() )
+													selectedCell.setAttribute( 'borderColor', this.getValue() );
+												else
+													selectedCell.removeAttribute( 'borderColor' );
+											}
+										}
+									]
+								}
+							]
+						}
+					]
+				}
+			],
+			onShow : function()
+			{
+				// Get the selected table cell.
+				var startElement = editor.getSelection().getStartElement();
+				this.cell = startElement.getAscendant( 'td', true ) || startElement.getAscendant( 'th', true );
+
+				// Call setupContent().
+				this.setupContent( this.cell );
+			},
+			onOk : function()
+			{
+				// Call commitContent().
+				this.commitContent( this.cell );
+			}
+		};
+	} );
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/tabletools/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/tabletools/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/tabletools/plugin.js	(revision 3747)
@@ -0,0 +1,693 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+(function()
+{
+	function removeRawAttribute( $node, attr )
+	{
+		if ( CKEDITOR.env.ie )
+			$node.removeAttribute( attr );
+		else
+			delete $node[ attr ];
+	}
+
+	var cellNodeRegex = /^(?:td|th)$/;
+
+	function getSelectedCells( selection )
+	{
+		// Walker will try to split text nodes, which will make the current selection
+		// invalid. So save bookmarks before doing anything.
+		var bookmarks = selection.createBookmarks();
+
+		var ranges = selection.getRanges();
+		var retval = [];
+		var database = {};
+
+		function moveOutOfCellGuard( node )
+		{
+			// Apply to the first cell only.
+			if ( retval.length > 0 )
+				return;
+
+			// If we are exiting from the first </td>, then the td should definitely be
+			// included.
+			if ( node.type == CKEDITOR.NODE_ELEMENT && cellNodeRegex.test( node.getName() )
+					&& !node.getCustomData( 'selected_cell' ) )
+			{
+				CKEDITOR.dom.element.setMarker( database, node, 'selected_cell', true );
+				retval.push( node );
+			}
+		}
+
+		for ( var i = 0 ; i < ranges.length ; i++ )
+		{
+			var range = ranges[ i ];
+
+			if ( range.collapsed )
+			{
+				// Walker does not handle collapsed ranges yet - fall back to old API.
+				var startNode = range.getCommonAncestor();
+				var nearestCell = startNode.getAscendant( 'td', true ) || startNode.getAscendant( 'th', true );
+				if ( nearestCell )
+					retval.push( nearestCell );
+			}
+			else
+			{
+				var walker = new CKEDITOR.dom.walker( range );
+				var node;
+				walker.guard = moveOutOfCellGuard;
+
+				while ( ( node = walker.next() ) )
+				{
+					// If may be possible for us to have a range like this:
+					// <td>^1</td><td>^2</td>
+					// The 2nd td shouldn't be included.
+					//
+					// So we have to take care to include a td we've entered only when we've
+					// walked into its children.
+
+					var parent = node.getParent();
+					if ( parent && cellNodeRegex.test( parent.getName() ) && !parent.getCustomData( 'selected_cell' ) )
+					{
+						CKEDITOR.dom.element.setMarker( database, parent, 'selected_cell', true );
+						retval.push( parent );
+					}
+				}
+			}
+		}
+
+		CKEDITOR.dom.element.clearAllMarkers( database );
+
+		// Restore selection position.
+		selection.selectBookmarks( bookmarks );
+
+		return retval;
+	}
+
+	function createTableMap( $refCell )
+	{
+		var refCell = new CKEDITOR.dom.element( $refCell );
+		var $table = ( refCell.getName() == 'table' ? $refCell : refCell.getAscendant( 'table' ) ).$;
+		var $rows = $table.rows;
+
+		// Row and column counters.
+		var r = -1;
+		var map = [];
+		for ( var i = 0 ; i < $rows.length ; i++ )
+		{
+			r++;
+			if ( !map[ r ] )
+				map[ r ] = [];
+
+			var c = -1;
+
+			for ( var j = 0 ; j < $rows[ i ].cells.length ; j++ )
+			{
+				var $cell = $rows[ i ].cells[ j ];
+
+				c++;
+				while ( map[ r ][ c ] )
+					c++;
+
+				var colSpan = isNaN( $cell.colSpan ) ? 1 : $cell.colSpan;
+				var rowSpan = isNaN( $cell.rowSpan ) ? 1 : $cell.rowSpan;
+
+				for ( var rs = 0 ; rs < rowSpan ; rs++ )
+				{
+					if ( !map[ r + rs ] )
+						map[ r + rs ] = [];
+
+					for ( var cs = 0 ; cs < colSpan ; cs++ )
+						map [ r + rs ][ c + cs ] = $rows[ i ].cells[ j ];
+				}
+
+				c += colSpan - 1;
+			}
+		}
+
+		return map;
+	}
+
+	function installTableMap( tableMap, $table )
+	{
+		/*
+		 * IE BUG: rowSpan is always 1 in IE if the cell isn't attached to a row. So
+		 * store is separately in another attribute. (#1917)
+		 */
+		var rowSpanAttr = CKEDITOR.env.ie ? '_cke_rowspan' : 'rowSpan';
+
+		/*
+		 * Disconnect all the cells in tableMap from their parents, set all colSpan
+		 * and rowSpan attributes to 1.
+		 */
+		for ( var i = 0 ; i < tableMap.length ; i++ )
+		{
+			for ( var j = 0 ; j < tableMap[ i ].length ; j++ )
+			{
+				var $cell = tableMap[ i ][ j ];
+				if ( $cell.parentNode )
+					$cell.parentNode.removeChild( $cell );
+				$cell.colSpan = $cell[ rowSpanAttr ] = 1;
+			}
+		}
+
+		// Scan by rows and set colSpan.
+		var maxCol = 0;
+		for ( i = 0 ; i < tableMap.length ; i++ )
+		{
+			for ( j = 0 ; j < tableMap[ i ].length ; j++ )
+			{
+				$cell = tableMap[ i ][ j ];
+				if ( !$cell )
+					continue;
+				if ( j > maxCol )
+					maxCol = j;
+				if ( $cell[ '_cke_colScanned' ] )
+					continue;
+				if ( tableMap[ i ][ j - 1 ] == $cell )
+					$cell.colSpan++;
+				if ( tableMap[ i ][ j + 1 ] != $cell )
+					$cell[ '_cke_colScanned' ] = 1;
+			}
+		}
+
+		// Scan by columns and set rowSpan.
+		for ( i = 0 ; i <= maxCol ; i++ )
+		{
+			for ( j = 0 ; j < tableMap.length ; j++ )
+			{
+				if ( !tableMap[ j ] )
+					continue;
+				$cell = tableMap[ j ][ i ];
+				if ( !$cell || $cell[ '_cke_rowScanned' ] )
+					continue;
+				if ( tableMap[ j - 1 ] && tableMap[ j - 1 ][ i ] == $cell )
+					$cell[ rowSpanAttr ]++;
+				if ( !tableMap[ j + 1 ] || tableMap[ j + 1 ][ i ] != $cell  )
+					$cell[ '_cke_rowScanned' ] = 1;
+			}
+		}
+
+		// Clear all temporary flags.
+		for ( i = 0 ; i < tableMap.length ; i++ )
+		{
+			for ( j = 0 ; j < tableMap[ i ].length ; j++ )
+			{
+				$cell = tableMap[ i ][ j ];
+				removeRawAttribute( $cell, '_cke_colScanned' );
+				removeRawAttribute( $cell, '_cke_rowScanned' );
+			}
+		}
+
+		// Insert physical rows and columns to table.
+		for ( i = 0 ; i < tableMap.length ; i++ )
+		{
+			var $row = $table.ownerDocument.createElement( 'tr' );
+			for ( j = 0 ; j < tableMap[ i ].length ; )
+			{
+				$cell = tableMap[ i ][ j ];
+				if ( tableMap[ i - 1 ] && tableMap[ i - 1 ][ j ] == $cell )
+				{
+					j += $cell.colSpan;
+					continue;
+				}
+				$row.appendChild( $cell );
+				if ( rowSpanAttr != 'rowSpan' )
+				{
+					$cell.rowSpan = $cell[ rowSpanAttr ];
+					$cell.removeAttribute( rowSpanAttr );
+				}
+				j += $cell.colSpan;
+				if ( $cell.colSpan == 1 )
+					$cell.removeAttribute( 'colSpan' );
+				if ( $cell.rowSpan == 1 )
+					$cell.removeAttribute( 'rowSpan' );
+			}
+
+			if ( CKEDITOR.env.ie )
+				$table.rows[ i ].replaceNode( $row );
+			else
+			{
+				var dest = new CKEDITOR.dom.element( $table.rows[ i ] );
+				var src = new CKEDITOR.dom.element( $row );
+				dest.setHtml( '' );
+				src.moveChildren( dest );
+			}
+		}
+	}
+
+	function clearRow( $tr )
+	{
+		// Get the array of row's cells.
+		var $cells = $tr.cells;
+
+		// Empty all cells.
+		for ( var i = 0 ; i < $cells.length ; i++ )
+		{
+			$cells[ i ].innerHTML = '';
+
+			if ( !CKEDITOR.env.ie )
+				( new CKEDITOR.dom.element( $cells[ i ] ) ).appendBogus();
+		}
+	}
+
+	function insertRow( selection, insertBefore )
+	{
+		// Get the row where the selection is placed in.
+		var row = selection.getStartElement().getAscendant( 'tr' );
+		if ( !row )
+			return;
+
+		// Create a clone of the row.
+		var newRow = row.clone( true );
+
+		// Insert the new row before of it.
+		newRow.insertBefore( row );
+
+		// Clean one of the rows to produce the illusion of inserting an empty row
+		// before or after.
+		clearRow( insertBefore ? newRow.$ : row.$ );
+	}
+
+	function deleteRows( selectionOrRow )
+	{
+		if ( selectionOrRow instanceof CKEDITOR.dom.selection )
+		{
+			var cells = getSelectedCells( selectionOrRow );
+			var rowsToDelete = [];
+
+			// Queue up the rows - it's possible and likely that we have duplicates.
+			for ( var i = 0 ; i < cells.length ; i++ )
+			{
+				var row = cells[ i ].getParent();
+				rowsToDelete[ row.$.rowIndex ] = row;
+			}
+
+			for ( i = rowsToDelete.length ; i >= 0 ; i-- )
+			{
+				if ( rowsToDelete[ i ] )
+					deleteRows( rowsToDelete[ i ] );
+			}
+		}
+		else if ( selectionOrRow instanceof CKEDITOR.dom.element )
+		{
+			var table = selectionOrRow.getAscendant( 'table' );
+
+			if ( table.$.rows.length == 1 )
+				table.remove();
+			else
+				selectionOrRow.remove();
+		}
+	}
+
+	function insertColumn( selection, insertBefore )
+	{
+		// Get the cell where the selection is placed in.
+		var startElement = selection.getStartElement();
+		var cell = startElement.getAscendant( 'td', true ) || startElement.getAscendant( 'th', true );
+
+		if ( !cell )
+			return;
+
+		// Get the cell's table.
+		var table = cell.getAscendant( 'table' );
+		var cellIndex = cell.$.cellIndex;
+
+		// Loop through all rows available in the table.
+		for ( var i = 0 ; i < table.$.rows.length ; i++ )
+		{
+			var $row = table.$.rows[ i ];
+
+			// If the row doesn't have enough cells, ignore it.
+			if ( $row.cells.length < ( cellIndex + 1 ) )
+				continue;
+
+			cell = new CKEDITOR.dom.element( $row.cells[ cellIndex ].cloneNode( false ) );
+
+			if ( !CKEDITOR.env.ie )
+				cell.appendBogus();
+
+			// Get back the currently selected cell.
+			var baseCell = new CKEDITOR.dom.element( $row.cells[ cellIndex ] );
+			if ( insertBefore )
+				cell.insertBefore( baseCell );
+			else
+				cell.insertAfter( baseCell );
+		}
+	}
+
+	function deleteColumns( selectionOrCell )
+	{
+		if ( selectionOrCell instanceof CKEDITOR.dom.selection )
+		{
+			var colsToDelete = getSelectedCells( selectionOrCell );
+			for ( var i = colsToDelete.length ; i >= 0 ; i-- )
+			{
+				if ( colsToDelete[ i ] )
+					deleteColumns( colsToDelete[ i ] );
+			}
+		}
+		else if ( selectionOrCell instanceof CKEDITOR.dom.element )
+		{
+			// Get the cell's table.
+			var table = selectionOrCell.getAscendant( 'table' );
+
+			// Get the cell index.
+			var cellIndex = selectionOrCell.$.cellIndex;
+
+			/*
+			 * Loop through all rows from down to up, coz it's possible that some rows
+			 * will be deleted.
+			 */
+			for ( i = table.$.rows.length - 1 ; i >= 0 ; i-- )
+			{
+				// Get the row.
+				var row = new CKEDITOR.dom.element( table.$.rows[ i ] );
+
+				// If the cell to be removed is the first one and the row has just one cell.
+				if ( !cellIndex && row.$.cells.length == 1 )
+				{
+					deleteRows( row );
+					continue;
+				}
+
+				// Else, just delete the cell.
+				if ( row.$.cells[ cellIndex ] )
+					row.$.removeChild( row.$.cells[ cellIndex ] );
+			}
+		}
+	}
+
+	function insertCell( selection, insertBefore )
+	{
+		var startElement = selection.getStartElement();
+		var cell = startElement.getAscendant( 'td', true ) || startElement.getAscendant( 'th', true );
+
+		if ( !cell )
+			return;
+
+		// Create the new cell element to be added.
+		var newCell = cell.clone();
+		if ( !CKEDITOR.env.ie )
+			newCell.appendBogus();
+
+		if ( insertBefore )
+			newCell.insertBefore( cell );
+		else
+			newCell.insertAfter( cell );
+	}
+
+	function deleteCells( selectionOrCell )
+	{
+		if ( selectionOrCell instanceof CKEDITOR.dom.selection )
+		{
+			var cellsToDelete = getSelectedCells( selectionOrCell );
+			for ( var i = cellsToDelete.length - 1 ; i >= 0 ; i-- )
+				deleteCells( cellsToDelete[ i ] );
+		}
+		else if ( selectionOrCell instanceof CKEDITOR.dom.element )
+		{
+			if ( selectionOrCell.getParent().getChildCount() == 1 )
+				selectionOrCell.getParent().remove();
+			else
+				selectionOrCell.remove();
+		}
+	}
+
+	CKEDITOR.plugins.add( 'tabletools',
+	{
+		init : function( editor )
+		{
+			var lang = editor.lang.table;
+
+			editor.addCommand( 'cellProperties', new CKEDITOR.dialogCommand( 'cellProperties' ) );
+			CKEDITOR.dialog.add( 'cellProperties', this.path + 'dialogs/tableCell.js' );
+
+			editor.addCommand( 'tableDelete',
+				{
+					exec : function( editor )
+					{
+						var selection = editor.getSelection();
+						var startElement = selection && selection.getStartElement();
+						var table = startElement && startElement.getAscendant( 'table', true );
+
+						if ( !table )
+							return;
+
+						// Maintain the selection point at where the table was deleted.
+						selection.selectElement( table );
+						var range = selection.getRanges()[0];
+						range.collapse();
+						selection.selectRanges( [ range ] );
+
+						// If the table's parent has only one child, remove it as well.
+						if ( table.getParent().getChildCount() == 1 )
+							table.getParent().remove();
+						else
+							table.remove();
+					}
+				} );
+
+			editor.addCommand( 'rowDelete',
+				{
+					exec : function( editor )
+					{
+						var selection = editor.getSelection();
+						deleteRows( selection );
+					}
+				} );
+
+			editor.addCommand( 'rowInsertBefore',
+				{
+					exec : function( editor )
+					{
+						var selection = editor.getSelection();
+						insertRow( selection, true );
+					}
+				} );
+
+			editor.addCommand( 'rowInsertAfter',
+				{
+					exec : function( editor )
+					{
+						var selection = editor.getSelection();
+						insertRow( selection );
+					}
+				} );
+
+			editor.addCommand( 'columnDelete',
+				{
+					exec : function( editor )
+					{
+						var selection = editor.getSelection();
+						deleteColumns( selection );
+					}
+				} );
+
+			editor.addCommand( 'columnInsertBefore',
+				{
+					exec : function( editor )
+					{
+						var selection = editor.getSelection();
+						insertColumn( selection, true );
+					}
+				} );
+
+			editor.addCommand( 'columnInsertAfter',
+				{
+					exec : function( editor )
+					{
+						var selection = editor.getSelection();
+						insertColumn( selection );
+					}
+				} );
+
+			editor.addCommand( 'cellDelete',
+				{
+					exec : function( editor )
+					{
+						var selection = editor.getSelection();
+						deleteCells( selection );
+					}
+				} );
+
+			editor.addCommand( 'cellInsertBefore',
+				{
+					exec : function( editor )
+					{
+						var selection = editor.getSelection();
+						insertCell( selection, true );
+					}
+				} );
+
+			editor.addCommand( 'cellInsertAfter',
+				{
+					exec : function( editor )
+					{
+						var selection = editor.getSelection();
+						insertCell( selection );
+					}
+				} );
+
+			// If the "menu" plugin is loaded, register the menu items.
+			if ( editor.addMenuItems )
+			{
+				editor.addMenuItems(
+					{
+						tablecell :
+						{
+							label : lang.cell.menu,
+							group : 'tablecell',
+							order : 1,
+							getItems : function()
+							{
+								var cells = getSelectedCells( editor.getSelection() );
+
+								return {
+									tablecell_insertBefore : CKEDITOR.TRISTATE_OFF,
+									tablecell_insertAfter : CKEDITOR.TRISTATE_OFF,
+									tablecell_delete : CKEDITOR.TRISTATE_OFF,
+									tablecell_properties : cells.length == 1 ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED
+								};
+							}
+						},
+
+						tablecell_insertBefore :
+						{
+							label : lang.cell.insertBefore,
+							group : 'tablecell',
+							command : 'cellInsertBefore',
+							order : 5
+						},
+
+						tablecell_insertAfter :
+						{
+							label : lang.cell.insertAfter,
+							group : 'tablecell',
+							command : 'cellInsertAfter',
+							order : 10
+						},
+
+						tablecell_delete :
+						{
+							label : lang.cell.deleteCell,
+							group : 'tablecell',
+							command : 'cellDelete',
+							order : 15
+						},
+
+						tablecell_properties :
+						{
+							label : lang.cell.title,
+							group : 'tablecellproperties',
+							command : 'cellProperties',
+							order : 20
+						},
+
+						tablerow :
+						{
+							label : lang.row.menu,
+							group : 'tablerow',
+							order : 1,
+							getItems : function()
+							{
+								return {
+									tablerow_insertBefore : CKEDITOR.TRISTATE_OFF,
+									tablerow_insertAfter : CKEDITOR.TRISTATE_OFF,
+									tablerow_delete : CKEDITOR.TRISTATE_OFF
+								};
+							}
+						},
+
+						tablerow_insertBefore :
+						{
+							label : lang.row.insertBefore,
+							group : 'tablerow',
+							command : 'rowInsertBefore',
+							order : 5
+						},
+
+						tablerow_insertAfter :
+						{
+							label : lang.row.insertAfter,
+							group : 'tablerow',
+							command : 'rowInsertAfter',
+							order : 10
+						},
+
+						tablerow_delete :
+						{
+							label : lang.row.deleteRow,
+							group : 'tablerow',
+							command : 'rowDelete',
+							order : 15
+						},
+
+						tablecolumn :
+						{
+							label : lang.column.menu,
+							group : 'tablecolumn',
+							order : 1,
+							getItems : function()
+							{
+								return {
+									tablecolumn_insertBefore : CKEDITOR.TRISTATE_OFF,
+									tablecolumn_insertAfter : CKEDITOR.TRISTATE_OFF,
+									tablecolumn_delete : CKEDITOR.TRISTATE_OFF
+								};
+							}
+						},
+
+						tablecolumn_insertBefore :
+						{
+							label : lang.column.insertBefore,
+							group : 'tablecolumn',
+							command : 'columnInsertBefore',
+							order : 5
+						},
+
+						tablecolumn_insertAfter :
+						{
+							label : lang.column.insertAfter,
+							group : 'tablecolumn',
+							command : 'columnInsertAfter',
+							order : 10
+						},
+
+						tablecolumn_delete :
+						{
+							label : lang.column.deleteColumn,
+							group : 'tablecolumn',
+							command : 'columnDelete',
+							order : 15
+						}
+					});
+			}
+
+			// If the "contextmenu" plugin is laoded, register the listeners.
+			if ( editor.contextMenu )
+			{
+				editor.contextMenu.addListener( function( element, selection )
+					{
+						if ( !element )
+							return null;
+
+							var isCell	= !element.is( 'table' ) && element.hasAscendant( 'table' ) ;
+
+							if ( isCell )
+							{
+								return {
+									tablecell : CKEDITOR.TRISTATE_OFF,
+									tablerow : CKEDITOR.TRISTATE_OFF,
+									tablecolumn : CKEDITOR.TRISTATE_OFF
+								};
+							}
+
+							return null;
+					} );
+			}
+		}
+	} );
+})();
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/templates/dialogs/templates.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/templates/dialogs/templates.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/templates/dialogs/templates.js	(revision 3747)
@@ -0,0 +1,170 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+(function()
+{
+	var doc = CKEDITOR.document;
+
+	var listId = 'cke' + CKEDITOR.tools.getNextNumber();
+
+	// Constructs the HTML view of the specified templates data.
+	function renderTemplatesList( editor, templatesDefinitions )
+	{
+		var listDiv = doc.getById( listId );
+
+		// clear loading wait text.
+		listDiv.setHtml( '' );
+
+		for ( var i = 0 ; i < templatesDefinitions.length ; i++ )
+		{
+			var definition = CKEDITOR.getTemplates( templatesDefinitions[ i ] ),
+				imagesPath = definition.imagesPath,
+				templates = definition.templates;
+
+			for ( var j = 0 ; j < templates.length ; j++ )
+			{
+				var template = templates[ j ];
+				listDiv.append( createTemplateItem( editor, template, imagesPath ) );
+			}
+		}
+	}
+
+	function createTemplateItem( editor, template, imagesPath )
+	{
+		var div = doc.createElement( 'div' );
+		div.setAttribute( 'class', 'cke_tpl_item' );
+
+		// Build the inner HTML of our new item DIV.
+		var html = '<table style="width:350px;" class="cke_tpl_preview"><tr>';
+
+		if( template.image && imagesPath )
+			html += '<td class="cke_tpl_preview_img"><img src="' + CKEDITOR.getUrl( imagesPath + template.image ) + '"></td>';
+
+		html += '<td style="white-space:normal;"><span class="cke_tpl_title">' + template.title + '</span><br/>';
+
+		if( template.description )
+			html += '<span>' + template.description + '</span>';
+
+		html += '</td></tr></table>';
+
+		div.setHtml( html );
+
+		div.on( 'mouseover', function()
+			{
+				div.addClass( 'cke_tpl_hover' );
+			});
+
+		div.on( 'mouseout', function()
+			{
+				div.removeClass( 'cke_tpl_hover' );
+			});
+
+		div.on( 'click', function()
+			{
+				insertTemplate( editor, template.html );
+			});
+
+		return div;
+	}
+
+	/**
+	 * Insert the specified template content
+	 * to document.
+	 * @param {Number} index
+	 */
+	function insertTemplate( editor, html )
+	{
+		var dialog = CKEDITOR.dialog.getCurrent(),
+			isInsert = dialog.getValueOf( 'selectTpl', 'chkInsertOpt' );
+
+		if( isInsert )
+		{
+			editor.setData( html );
+		}
+		else
+		{
+			editor.insertHtml( html );
+		}
+
+		dialog.hide();
+	}
+
+	CKEDITOR.dialog.add( 'templates', function( editor )
+		{
+			// Load skin at first.
+			CKEDITOR.skins.load( editor, 'templates' );
+
+			/**
+			 * Load templates once.
+			 */
+			var isLoaded = false;
+
+			return {
+				title :editor.lang.templates.title,
+
+				minWidth : CKEDITOR.env.ie ? 440 : 400,
+				minHeight : 340,
+
+				contents :
+				[
+					{
+						id :'selectTpl',
+						label : editor.lang.templates.title,
+						elements :
+						[
+							{
+								type : 'vbox',
+								padding : 5,
+								children :
+								[
+									{
+										type : 'html',
+										html :
+											'<span>'  +
+												editor.lang.templates.selectPromptMsg +
+											'</span>'
+									},
+									{
+										type : 'html',
+										html :
+											'<div id="' + listId + '" class="cke_tpl_list">' +
+												'<div class="cke_tpl_loading"><span></span></div>' +
+											'</div>'
+									},
+									{
+										id : 'chkInsertOpt',
+										type : 'checkbox',
+										label : editor.lang.templates.insertOption,
+										'default' : editor.config.templates_replaceContent
+									}
+								]
+							}
+						]
+					}
+				],
+
+				buttons : [ CKEDITOR.dialog.cancelButton ],
+
+				onShow : function()
+				{
+					CKEDITOR.loadTemplates( editor.config.templates_files, function()
+						{
+							var templates = editor.config.templates.split( ',' );
+
+							if ( templates.length )
+								renderTemplatesList( editor, templates );
+							else
+							{
+								var listCtEl = doc.getById( listId );
+								listCtEl.setHtml(
+									'<div class="cke_tpl_empty">' +
+										'<span>' + editor.lang.templates.emptyListMsg + '</span>' +
+									'</div>' );
+							}
+						});
+				}
+			};
+		});
+})();
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/templates/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/templates/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/templates/plugin.js	(revision 3747)
@@ -0,0 +1,89 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+(function()
+{
+	CKEDITOR.plugins.add( 'templates',
+		{
+			requires : [ 'dialog' ],
+
+			init : function( editor )
+			{
+				CKEDITOR.dialog.add( 'templates', CKEDITOR.getUrl( this.path + 'dialogs/templates.js' ) );
+
+				editor.addCommand( 'templates', new CKEDITOR.dialogCommand( 'templates' ) );
+
+				editor.ui.addButton( 'Templates',
+					{
+						label : editor.lang.templates.button,
+						command : 'templates'
+					});
+			}
+		});
+
+	var templates = {},
+		loadedTemplatesFiles = {};
+
+	CKEDITOR.addTemplates = function( name, definition )
+	{
+		templates[ name ] = definition;
+	};
+
+	CKEDITOR.getTemplates = function( name )
+	{
+		return templates[ name ];
+	};
+
+	CKEDITOR.loadTemplates = function( templateFiles, callback )
+	{
+		// Holds the templates files to be loaded.
+		var toLoad = [];
+
+		// Look for pending template files to get loaded.
+		for ( var i = 0 ; i < templateFiles.length ; i++ )
+		{
+			if ( !loadedTemplatesFiles[ templateFiles[ i ] ] )
+			{
+				toLoad.push( templateFiles[ i ] );
+				loadedTemplatesFiles[ templateFiles[ i ] ] = 1;
+			}
+		}
+
+		if ( toLoad.length > 0 )
+			CKEDITOR.scriptLoader.load( toLoad, callback );
+		else
+			setTimeout( callback, 0 );
+	};
+})();
+
+
+
+/**
+ * The templates definition set to use. It accepts a list of names separated by
+ * comma. It must match definitions loaded with the templates_files setting.
+ * @type String
+ * @default 'default'
+ */
+CKEDITOR.config.templates = 'default';
+
+/**
+ * The list of templates definition files to load.
+ * @type (String) Array
+ * @default [ 'plugins/templates/templates/default.js' ]
+ */
+CKEDITOR.config.templates_files =
+	[
+		CKEDITOR.getUrl(
+			'_source/' + // %REMOVE_LINE%
+			'plugins/templates/templates/default.js' )
+	];
+
+/**
+ * Whether replace the current document content OR insert current
+ * editing position.
+ * @type Boolean
+ * @default true
+ */
+CKEDITOR.config.templates_replaceContent = true;
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/templates/templates/default.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/templates/templates/default.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/templates/templates/default.js	(revision 3747)
@@ -0,0 +1,94 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+// Register a templates definition set named "default".
+CKEDITOR.addTemplates( 'default',
+{
+	// The name of sub folder which hold the shortcut preview images of the
+	// templates.
+	imagesPath : CKEDITOR.getUrl( CKEDITOR.plugins.getPath( 'templates' ) + 'templates/images/' ),
+
+	// The templates definitions.
+	templates :
+		[
+			{
+				title: 'Image and Title',
+				image: 'template1.gif',
+				description: 'One main image with a title and text that surround the image.',
+				html:
+					'<h3>' +
+						'<img style="margin-right: 10px" height="100" alt="" width="100" align="left"/>' +
+						'Type the title here'+
+					'</h3>' +
+					'<p>' +
+						'Type the text here' +
+					'</p>'
+			},
+			{
+				title: 'Strange Template',
+				image: 'template2.gif',
+				description: 'A template that defines two colums, each one with a title, and some text.',
+				html:
+					'<table cellspacing="0" cellpadding="0" width="100%" border="0">' +
+						'<tr>' +
+							'<td width="50%">' +
+								'<h3>Title 1</h3>' +
+							'</td>' +
+							'<td></td>' +
+							'<td width="50%">' +
+								'<h3>Title 2</h3>' +
+							'</td>' +
+						'</tr>' +
+						'<tr>' +
+							'<td>' +
+								'Text 1' +
+							'</td>' +
+							'<td></td>' +
+							'<td>' +
+								'Text 2' +
+							'</td>' +
+						'</tr>' +
+					'</table>' +
+					'<p>' +
+						'More text goes here.' +
+					'</p>'
+			},
+			{
+				title: 'Text and Table',
+				image: 'template3.gif',
+				description: 'A title with some text and a table.',
+				html:
+					'<div style="width: 80%">' +
+						'<h3>' +
+							'Title goes here' +
+						'</h3>' +
+						'<table style="float: right" cellspacing="0" cellpadding="0" width="150" border="1">' +
+							'<caption style="border:solid 1px black">' +
+								'<strong>Table title</strong>' +
+							'</caption>' +
+							'</tr>' +
+							'<tr>' +
+								'<td>&nbsp;</td>' +
+								'<td>&nbsp;</td>' +
+								'<td>&nbsp;</td>' +
+							'</tr>' +
+							'<tr>' +
+								'<td>&nbsp;</td>' +
+								'<td>&nbsp;</td>' +
+								'<td>&nbsp;</td>' +
+							'</tr>' +
+							'<tr>' +
+								'<td>&nbsp;</td>' +
+								'<td>&nbsp;</td>' +
+								'<td>&nbsp;</td>' +
+							'</tr>' +
+						'</table>' +
+						'<p>' +
+							'Type the text here' +
+						'</p>' +
+					'</div>'
+			}
+		]
+});
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/toolbar/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/toolbar/plugin.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/toolbar/plugin.js	(revision 3747)
@@ -14,4 +14,5 @@
 	{
 		this.toolbars = [];
+		this.focusCommandExecuted = false;
 	};
 
@@ -35,8 +36,18 @@
 		toolbarFocus :
 		{
+			modes : { wysiwyg : 1, source : 1 },
+
 			exec : function( editor )
 			{
 				if ( editor.toolbox )
-					editor.toolbox.focus();
+				{
+					editor.toolbox.focusCommandExecuted = true;
+
+					// Make the first button focus accessible. (#3417)
+					if ( CKEDITOR.env.ie )
+						setTimeout( function(){ editor.toolbox.focus(); }, 100 );
+					else
+						editor.toolbox.focus();
+				}
 			}
 		}
@@ -45,5 +56,5 @@
 	CKEDITOR.plugins.add( 'toolbar',
 	{
-		init : function( editor, pluginPath )
+		init : function( editor )
 		{
 			var itemKeystroke = function( item, keystroke )
@@ -102,8 +113,16 @@
 						editor.toolbox = new toolbox();
 
-						var output = [ '<div class="cke_toolbox">' ];
+						var output = [ '<div class="cke_toolbox"' ],
+							expanded =  editor.config.toolbarStartupExpanded,
+							groupStarted;
+
+						output.push( expanded ? '>' : ' style="display:none">' );
 
 						var toolbars = editor.toolbox.toolbars,
-							toolbar = editor.config.toolbar;
+							toolbar =
+									( editor.config.toolbar instanceof Array ) ?
+										editor.config.toolbar
+									:
+										editor.config[ 'toolbar_' + editor.config.toolbar ];
 
 						for ( var r = 0 ; r < toolbar.length ; r++ )
@@ -113,5 +132,17 @@
 								toolbarObj = { id : toolbarId, items : [] };
 
-							output.push( '<div id="', toolbarId, '" class="cke_toolbar">' );
+							if ( groupStarted )
+							{
+								output.push( '</div>' );
+								groupStarted = 0;
+							}
+
+							if ( row === '/' )
+							{
+								output.push( '<div class="cke_break"></div>' );
+								continue;
+							}
+
+							output.push( '<span id="', toolbarId, '" class="cke_toolbar"><span class="cke_toolbar_start"></span>' );
 
 							// Add the toolbar to the "editor.toolbox.toolbars"
@@ -135,8 +166,22 @@
 									item = CKEDITOR.ui.separator;
 								else
-									item = editor.ui.get( itemName );
+									item = editor.ui.create( itemName );
 
 								if ( item )
 								{
+									if ( item.canGroup )
+									{
+										if ( !groupStarted )
+										{
+											output.push( '<span class="cke_toolgroup">' );
+											groupStarted = 1;
+										}
+									}
+									else if ( groupStarted )
+									{
+										output.push( '</span>' );
+										groupStarted = 0;
+									}
+
 									var itemObj = item.render( editor, output );
 									index = toolbarObj.items.push( itemObj ) - 1;
@@ -150,11 +195,74 @@
 									itemObj.toolbar = toolbarObj;
 									itemObj.onkey = itemKeystroke;
+
+									/*
+									 * Fix for #3052:
+									 * Prevent JAWS from focusing the toolbar after document load.
+									 */
+									itemObj.onfocus = function()
+									{
+										if ( !editor.toolbox.focusCommandExecuted )
+											editor.focus();
+									};
 								}
 							}
 
-							output.push( '</div>' );
+							if ( groupStarted )
+							{
+								output.push( '</span>' );
+								groupStarted = 0;
+							}
+
+							output.push( '<span class="cke_toolbar_end"></span></span>' );
 						}
 
 						output.push( '</div>' );
+
+						if ( editor.config.toolbarCanCollapse )
+						{
+							var collapserFn = CKEDITOR.tools.addFunction(
+								function()
+								{
+									editor.execCommand( 'toolbarCollapse' );
+								} );
+
+							var collapserId = 'cke_' + CKEDITOR.tools.getNextNumber();
+
+							editor.addCommand( 'toolbarCollapse',
+								{
+									exec : function( editor )
+									{
+										var collapser = CKEDITOR.document.getById( collapserId );
+										var toolbox = collapser.getPrevious();
+										var contents = editor.getThemeSpace( 'contents' );
+										var toolboxContainer = toolbox.getParent();
+										var contentHeight = parseInt( contents.$.style.height, 10 );
+										var previousHeight = toolboxContainer.$.offsetHeight;
+
+										if ( toolbox.isVisible() )
+										{
+											toolbox.hide();
+											collapser.addClass( 'cke_toolbox_collapser_min' );
+										}
+										else
+										{
+											toolbox.show();
+											collapser.removeClass( 'cke_toolbox_collapser_min' );
+										}
+
+										var dy = toolboxContainer.$.offsetHeight - previousHeight;
+										contents.setStyle( 'height', ( contentHeight - dy ) + 'px' );
+									},
+
+									modes : { wysiwyg : 1, source : 1 }
+								} );
+
+							output.push( '<a id="' + collapserId + '" class="cke_toolbox_collapser' );
+
+							if ( !expanded )
+								output.push( ' cke_toolbox_collapser_min' );
+
+							output.push( '" onclick="CKEDITOR.tools.callFunction(' + collapserFn + ')"></a>' );
+						}
 
 						event.data.html += output.join( '' );
@@ -193,7 +301,41 @@
 
 /**
- * The toolbox (alias toolbar) definition. It is an array of toolbars (strips),
+ * The toolbar definition. It is an array of toolbars (strips),
  * each one being also an array, containing a list of UI items.
  * @type Array
+ * @example
+ * // Defines a toolbar with only one strip containing the "Source" button, a
+ * // separator and the "Bold" and "Italic" buttons.
+ * <b>CKEDITOR.config.toolbar_Basic =
+ * [
+ *     [ 'Source', '-', 'Bold', 'Italic' ]
+ * ]</b>;
+ */
+CKEDITOR.config.toolbar_Basic =
+[
+	['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink','-','About']
+];
+
+CKEDITOR.config.toolbar_Full =
+[
+	['Source','-','Save','NewPage','Preview','-','Templates'],
+	['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'],
+	['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
+	['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField'],
+	'/',
+	['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],
+	['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'],
+	['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
+	['Link','Unlink','Anchor'],	['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'],
+	'/',
+	['Styles','Format','Font','FontSize'],
+	['TextColor','BGColor'],
+	['Maximize', 'ShowBlocks','-','About']
+];
+
+/**
+ * The toolbox (alias toolbar) definition. It is a toolbar name or an array of toolbars (strips),
+ * each one being also an array, containing a list of UI items.
+ * @type Array or String
  * @example
  * // Defines a toolbar with only one strip containing the "Source" button, a
@@ -203,14 +345,9 @@
  *     [ 'Source', '-', 'Bold', 'Italic' ]
  * ]</b>;
- */
-CKEDITOR.config.toolbar =
-[
-	[
-		'Source', '-',
-		'NewPage', '-',
-		'Bold', 'Italic', 'Underline', 'Strike', '-',
-		'Subscript', 'Superscript', '-',
-		'SelectAll', 'RemoveFormat', '-',
-		'Smiley', 'HorizontalRule', 'SpecialChar'
-	]
-];
+ * // Load toolbar_Name where Name = Basic.
+ * <b>CKEDITOR.config.toolbar = 'Basic';
+ */
+CKEDITOR.config.toolbar = 'Full';
+
+CKEDITOR.config.toolbarCanCollapse = true;
+CKEDITOR.config.toolbarStartupExpanded = true;
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/uicolor/dialogs/uicolor.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/uicolor/dialogs/uicolor.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/uicolor/dialogs/uicolor.js	(revision 3747)
@@ -0,0 +1,200 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.dialog.add( 'uicolor', function( editor )
+{
+	var dialog, picker, pickerContents,
+		// Actual UI color value.
+		uiColor = editor.getUiColor();
+
+	function setNewPickerColor( color )
+	{
+		// Convert HEX representation to RGB, stripping # char.
+		if ( /^#/.test( color ) )
+			color = YAHOO.util.Color.hex2rgb( color.substr( 1 ) );
+		picker.setValue( color, true );
+		// Refresh picker UI.
+		picker.refresh( 'cke_uicolor_picker' );
+	}
+
+	function setNewUiColor( color, force )
+	{
+		if ( force || dialog._.contents.tab1.livePeview.getValue() )
+			editor.setUiColor( color );
+		// Write new config string into textbox.
+		dialog._.contents.tab1.configBox.setValue(
+			'config.uiColor = "#' + picker.get( "hex" ) + '"'
+		);
+	}
+
+	pickerContents =
+	{
+		id : 'yuiColorPicker',
+		type : 'html',
+		html : "<div id='cke_uicolor_picker' style='width: 360px; height: 200px; position: relative;'></div>",
+		onLoad : function( event )
+		{
+			var url = CKEDITOR.getUrl(
+					'_source/' + // %REMOVE_LINE%
+					'plugins/uicolor/yui/'
+				);
+
+			// Create new color picker widget.
+			picker = new YAHOO.widget.ColorPicker( "cke_uicolor_picker",
+				{
+					showhsvcontrols : true,
+					showhexcontrols : true,
+					images :
+					{
+						PICKER_THUMB : url + "assets/picker_thumb.png",
+						HUE_THUMB : url + "assets/hue_thumb.png"
+					}
+				});
+
+			// Set actual UI color to the picker.
+			if ( uiColor )
+				setNewPickerColor( uiColor );
+
+			// Subscribe to the rgbChange event.
+			picker.on( "rgbChange", function()
+				{
+					// Reset predefined box.
+					dialog._.contents.tab1.predefined.setValue( '' );
+					setNewUiColor( '#' + picker.get( 'hex' ) );
+				});
+
+			// Fix input class names.
+			var inputs = new CKEDITOR.dom.nodeList( picker.getElementsByTagName( 'input' ) );
+			for ( var i = 0; i < inputs.count() ; i++ )
+				inputs.getItem( i ).addClass( 'cke_dialog_ui_input_text' );
+		}
+	};
+
+	var skipPreviewChange = true;
+
+	return {
+		title : editor.lang.uicolor.title,
+		minWidth : 360,
+		minHeight : 320,
+		onLoad : function()
+		{
+			dialog = this;
+			this.setupContent();
+		},
+		contents : [
+			{
+				id : 'tab1',
+				label : '',
+				title : '',
+				expand : true,
+				padding : 0,
+				elements : [
+						pickerContents,
+						{
+							id : 'tab1',
+							type : 'vbox',
+							children :
+							[
+								{
+									id : 'livePeview',
+									type : 'checkbox',
+									label : editor.lang.uicolor.preview,
+									'default' : 1,
+									onLoad : function()
+									{
+										skipPreviewChange = true;
+									},
+									onChange : function()
+									{
+										if ( skipPreviewChange )
+											return;
+										var on = this.getValue(),
+											color = on ? '#' + picker.get( 'hex' ) : uiColor;
+										setNewUiColor( color, true );
+									}
+								},
+								{
+									type : 'hbox',
+									children :
+									[
+										{
+											id : 'predefined',
+											type : 'select',
+											'default' : '',
+											label : editor.lang.uicolor.predefined,
+											items :
+											[
+												[ '' ],
+												[ 'Light blue', '#9AB8F3' ],
+												[ 'Sand', '#D2B48C' ],
+												[ 'Metallic', '#949AAA' ],
+												[ 'Purple', '#C2A3C7' ],
+												[ 'Olive', '#A2C980' ],
+												[ 'Happy green', '#9BD446' ],
+												[ 'Jezebel Blue', '#14B8C4' ],
+												[ 'Burn', '#FF893A' ],
+												[ 'Easy red', '#FF6969' ],
+												[ 'Pisces 3', '#48B4F2' ],
+												[ 'Aquarius 5', '#487ED4' ],
+												[ 'Absinthe', '#A8CF76' ],
+												[ 'Scrambled Egg', '#C7A622' ],
+												[ 'Hello monday', '#8E8D80' ],
+												[ 'Lovely sunshine', '#F1E8B1' ],
+												[ 'Recycled air', '#B3C593' ],
+												[ 'Down', '#BCBCA4' ],
+												[ 'Mark Twain', '#CFE91D' ],
+												[ 'Specks of dust', '#D1B596' ],
+												[ 'Lollipop', '#F6CE23' ]
+											],
+											onChange : function()
+											{
+												var color = this.getValue();
+												if ( color )
+												{
+													setNewPickerColor( color );
+													setNewUiColor( color );
+													// Refresh predefined preview box.
+													CKEDITOR.document.getById( 'predefinedPreview' ).setStyle( 'background', color );
+												}
+												else
+													CKEDITOR.document.getById( 'predefinedPreview' ).setStyle( 'background', '' );
+											},
+											onShow : function()
+											{
+												var color = editor.getUiColor();
+												if ( color )
+													this.setValue( color );
+											}
+										},
+										{
+											id : 'predefinedPreview',
+											type : 'html',
+											html : '<div id="cke_uicolor_preview" style="border: 1px solid black; padding: 3px; width: 30px;">' +
+													'<div id="predefinedPreview" style="width: 30px; height: 30px;">&nbsp;</div>' +
+												'</div>'
+										}
+									]
+								},
+								{
+									id : 'configBox',
+									type : 'text',
+									label : editor.lang.uicolor.config,
+									onShow : function()
+									{
+										var color = editor.getUiColor();
+										if ( color )
+											this.setValue(
+												'config.uiColor = "' + color + '"'
+											);
+									}
+								}
+							]
+						}
+					]
+			}
+		],
+		buttons : [ CKEDITOR.dialog.okButton ]
+	};
+} );
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/uicolor/lang/en.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/uicolor/lang/en.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/uicolor/lang/en.js	(revision 3747)
@@ -0,0 +1,15 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.plugins.setLang( 'uicolor', 'en',
+{
+	uicolor :
+	{
+		title : 'UI Color Picker',
+		preview : 'Live preview',
+		config : 'Paste this string into your config.js file',
+		predefined : 'Predefined color sets'
+	}
+});
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/uicolor/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/uicolor/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/uicolor/plugin.js	(revision 3747)
@@ -0,0 +1,37 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.plugins.add( 'uicolor',
+{
+	requires : [ 'dialog' ],
+	lang : [ 'en' ],
+
+	init : function( editor )
+	{
+		if ( CKEDITOR.env.ie6Compat )
+			return;
+
+		editor.addCommand( 'uicolor', new CKEDITOR.dialogCommand( 'uicolor' ) );
+		editor.ui.addButton( 'UIColor',
+			{
+				label : editor.lang.uicolor.title,
+				command : 'uicolor',
+				icon : this.path + 'uicolor.gif'
+			});
+		CKEDITOR.dialog.add( 'uicolor', this.path + 'dialogs/uicolor.js' );
+
+		// Load YUI js files.
+		CKEDITOR.scriptLoader.load( CKEDITOR.getUrl(
+			'_source/' + // %REMOVE_LINE%
+			'plugins/uicolor/yui/yui.js'
+		));
+
+		// Load YUI css files.
+		editor.element.getDocument().appendStyleSheet( CKEDITOR.getUrl(
+				'_source/' + // %REMOVE_LINE%
+				'plugins/uicolor/yui/assets/yui.css'
+		));
+	}
+} );
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/uicolor/yui/assets/yui.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/uicolor/yui/assets/yui.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/uicolor/yui/assets/yui.css	(revision 3747)
@@ -0,0 +1,15 @@
+/*
+Copyright (c) 2009, Yahoo! Inc. All rights reserved.
+Code licensed under the BSD License:
+http://developer.yahoo.net/yui/license.txt
+version: 2.7.0
+*/
+.yui-h-slider,.yui-v-slider{position:relative;}.yui-h-slider .yui-slider-thumb,.yui-v-slider .yui-slider-thumb{position:absolute;cursor:default;}.yui-skin-sam .yui-h-slider{background:url(bg-h.gif) no-repeat 5px 0;height:28px;width:228px;}.yui-skin-sam .yui-h-slider .yui-slider-thumb{top:4px;}.yui-skin-sam .yui-v-slider{background:url(bg-v.gif) no-repeat 12px 0;height:228px;width:48px;}
+
+/*
+Copyright (c) 2009, Yahoo! Inc. All rights reserved.
+Code licensed under the BSD License:
+http://developer.yahoo.net/yui/license.txt
+version: 2.7.0
+*/
+#cke_uicolor_picker .yui-picker-panel{background:#e3e3e3;border-color:#888;}#cke_uicolor_picker .yui-picker-panel .hd{background-color:#ccc;font-size:100%;line-height:100%;border:1px solid #e3e3e3;font-weight:bold;overflow:hidden;padding:6px;color:#000;}#cke_uicolor_picker .yui-picker-panel .bd{background:#e8e8e8;margin:1px;height:200px;}#cke_uicolor_picker .yui-picker-panel .ft{background:#e8e8e8;margin:1px;padding:1px;}#cke_uicolor_picker .yui-picker{position:relative;}#cke_uicolor_picker .yui-picker-hue-thumb{cursor:default;width:18px;height:18px;top:-8px;left:-2px;z-index:9;position:absolute;}#cke_uicolor_picker .yui-picker-hue-bg{-moz-outline:none;outline:0 none;position:absolute;left:200px;height:183px;width:14px;background:url(hue_bg.png) no-repeat;top:4px;}#cke_uicolor_picker .yui-picker-bg{-moz-outline:none;outline:0 none;position:absolute;top:4px;left:4px;height:182px;width:182px;background-color:#F00;background-image:url(picker_mask.png);}*html #cke_uicolor_picker .yui-picker-bg{background-image:none;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='picker_mask.png',sizingMethod='scale');}#cke_uicolor_picker .yui-picker-mask{position:absolute;z-index:1;top:0;left:0;}#cke_uicolor_picker .yui-picker-thumb{cursor:default;width:11px;height:11px;z-index:9;position:absolute;top:-4px;left:-4px;}#cke_uicolor_picker .yui-picker-swatch{position:absolute;left:240px;top:4px;height:60px;width:55px;border:1px solid #888;}#cke_uicolor_picker .yui-picker-websafe-swatch{position:absolute;left:304px;top:4px;height:24px;width:24px;border:1px solid #888;}#cke_uicolor_picker .yui-picker-controls{position:absolute;top:72px;left:226px;font:1em monospace;}#cke_uicolor_picker .yui-picker-controls .hd{background:transparent;border-width:0!important;}#cke_uicolor_picker .yui-picker-controls .bd{height:100px;border-width:0!important;}#cke_uicolor_picker .yui-picker-controls ul{float:left;padding:0 2px 0 0;margin:0;}#cke_uicolor_picker .yui-picker-controls li{padding:2px;list-style:none;margin:0;}#cke_uicolor_picker .yui-picker-controls input{font-size:.85em;width:2.4em;}#cke_uicolor_picker .yui-picker-hex-controls{clear:both;padding:2px;}#cke_uicolor_picker .yui-picker-hex-controls input{width:4.6em;}#cke_uicolor_picker .yui-picker-controls a{font:1em arial,helvetica,clean,sans-serif;display:block;*display:inline-block;padding:0;color:#000;}
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/uicolor/yui/yui.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/uicolor/yui/yui.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/uicolor/yui/yui.js	(revision 3747)
@@ -0,0 +1,71 @@
+/*jsl:ignoreall*/
+/*
+Copyright (c) 2009, Yahoo! Inc. All rights reserved.
+Code licensed under the BSD License:
+http://developer.yahoo.net/yui/license.txt
+version: 2.7.0
+*/
+if(typeof YAHOO=="undefined"||!YAHOO){var YAHOO={};}YAHOO.namespace=function(){var A=arguments,E=null,C,B,D;for(C=0;C<A.length;C=C+1){D=(""+A[C]).split(".");E=YAHOO;for(B=(D[0]=="YAHOO")?1:0;B<D.length;B=B+1){E[D[B]]=E[D[B]]||{};E=E[D[B]];}}return E;};YAHOO.log=function(D,A,C){var B=YAHOO.widget.Logger;if(B&&B.log){return B.log(D,A,C);}else{return false;}};YAHOO.register=function(A,E,D){var I=YAHOO.env.modules,B,H,G,F,C;if(!I[A]){I[A]={versions:[],builds:[]};}B=I[A];H=D.version;G=D.build;F=YAHOO.env.listeners;B.name=A;B.version=H;B.build=G;B.versions.push(H);B.builds.push(G);B.mainClass=E;for(C=0;C<F.length;C=C+1){F[C](B);}if(E){E.VERSION=H;E.BUILD=G;}else{YAHOO.log("mainClass is undefined for module "+A,"warn");}};YAHOO.env=YAHOO.env||{modules:[],listeners:[]};YAHOO.env.getVersion=function(A){return YAHOO.env.modules[A]||null;};YAHOO.env.ua=function(){var C={ie:0,opera:0,gecko:0,webkit:0,mobile:null,air:0,caja:0},B=navigator.userAgent,A;if((/KHTML/).test(B)){C.webkit=1;}A=B.match(/AppleWebKit\/([^\s]*)/);if(A&&A[1]){C.webkit=parseFloat(A[1]);if(/ Mobile\//.test(B)){C.mobile="Apple";}else{A=B.match(/NokiaN[^\/]*/);if(A){C.mobile=A[0];}}A=B.match(/AdobeAIR\/([^\s]*)/);if(A){C.air=A[0];}}if(!C.webkit){A=B.match(/Opera[\s\/]([^\s]*)/);if(A&&A[1]){C.opera=parseFloat(A[1]);A=B.match(/Opera Mini[^;]*/);if(A){C.mobile=A[0];}}else{A=B.match(/MSIE\s([^;]*)/);if(A&&A[1]){C.ie=parseFloat(A[1]);}else{A=B.match(/Gecko\/([^\s]*)/);if(A){C.gecko=1;A=B.match(/rv:([^\s\)]*)/);if(A&&A[1]){C.gecko=parseFloat(A[1]);}}}}}A=B.match(/Caja\/([^\s]*)/);if(A&&A[1]){C.caja=parseFloat(A[1]);}return C;}();(function(){YAHOO.namespace("util","widget","example");if("undefined"!==typeof YAHOO_config){var B=YAHOO_config.listener,A=YAHOO.env.listeners,D=true,C;if(B){for(C=0;C<A.length;C=C+1){if(A[C]==B){D=false;break;}}if(D){A.push(B);}}}})();YAHOO.lang=YAHOO.lang||{};(function(){var B=YAHOO.lang,F="[object Array]",C="[object Function]",A=Object.prototype,E=["toString","valueOf"],D={isArray:function(G){return A.toString.apply(G)===F;},isBoolean:function(G){return typeof G==="boolean";},isFunction:function(G){return A.toString.apply(G)===C;},isNull:function(G){return G===null;},isNumber:function(G){return typeof G==="number"&&isFinite(G);},isObject:function(G){return(G&&(typeof G==="object"||B.isFunction(G)))||false;},isString:function(G){return typeof G==="string";},isUndefined:function(G){return typeof G==="undefined";},_IEEnumFix:(YAHOO.env.ua.ie)?function(I,H){var G,K,J;for(G=0;G<E.length;G=G+1){K=E[G];J=H[K];if(B.isFunction(J)&&J!=A[K]){I[K]=J;}}}:function(){},extend:function(J,K,I){if(!K||!J){throw new Error("extend failed, please check that "+"all dependencies are included.");}var H=function(){},G;H.prototype=K.prototype;J.prototype=new H();J.prototype.constructor=J;J.superclass=K.prototype;if(K.prototype.constructor==A.constructor){K.prototype.constructor=K;}if(I){for(G in I){if(B.hasOwnProperty(I,G)){J.prototype[G]=I[G];}}B._IEEnumFix(J.prototype,I);}},augmentObject:function(K,J){if(!J||!K){throw new Error("Absorb failed, verify dependencies.");}var G=arguments,I,L,H=G[2];if(H&&H!==true){for(I=2;I<G.length;I=I+1){K[G[I]]=J[G[I]];}}else{for(L in J){if(H||!(L in K)){K[L]=J[L];}}B._IEEnumFix(K,J);}},augmentProto:function(J,I){if(!I||!J){throw new Error("Augment failed, verify dependencies.");}var G=[J.prototype,I.prototype],H;for(H=2;H<arguments.length;H=H+1){G.push(arguments[H]);}B.augmentObject.apply(this,G);},dump:function(G,L){var I,K,N=[],O="{...}",H="f(){...}",M=", ",J=" => ";if(!B.isObject(G)){return G+"";}else{if(G instanceof Date||("nodeType" in G&&"tagName" in G)){return G;}else{if(B.isFunction(G)){return H;}}}L=(B.isNumber(L))?L:3;if(B.isArray(G)){N.push("[");for(I=0,K=G.length;I<K;I=I+1){if(B.isObject(G[I])){N.push((L>0)?B.dump(G[I],L-1):O);}else{N.push(G[I]);}N.push(M);}if(N.length>1){N.pop();}N.push("]");}else{N.push("{");for(I in G){if(B.hasOwnProperty(G,I)){N.push(I+J);if(B.isObject(G[I])){N.push((L>0)?B.dump(G[I],L-1):O);}else{N.push(G[I]);}N.push(M);}}if(N.length>1){N.pop();}N.push("}");}return N.join("");},substitute:function(V,H,O){var L,K,J,R,S,U,Q=[],I,M="dump",P=" ",G="{",T="}",N;for(;;){L=V.lastIndexOf(G);if(L<0){break;}K=V.indexOf(T,L);if(L+1>=K){break;}I=V.substring(L+1,K);R=I;U=null;J=R.indexOf(P);if(J>-1){U=R.substring(J+1);R=R.substring(0,J);}S=H[R];if(O){S=O(R,S,U);}if(B.isObject(S)){if(B.isArray(S)){S=B.dump(S,parseInt(U,10));}else{U=U||"";N=U.indexOf(M);if(N>-1){U=U.substring(4);}if(S.toString===A.toString||N>-1){S=B.dump(S,parseInt(U,10));}else{S=S.toString();}}}else{if(!B.isString(S)&&!B.isNumber(S)){S="~-"+Q.length+"-~";Q[Q.length]=I;}}V=V.substring(0,L)+S+V.substring(K+1);}for(L=Q.length-1;L>=0;L=L-1){V=V.replace(new RegExp("~-"+L+"-~"),"{"+Q[L]+"}","g");}return V;},trim:function(G){try{return G.replace(/^\s+|\s+$/g,"");}catch(H){return G;}},merge:function(){var J={},H=arguments,G=H.length,I;for(I=0;I<G;I=I+1){B.augmentObject(J,H[I],true);}return J;},later:function(N,H,O,J,K){N=N||0;H=H||{};var I=O,M=J,L,G;if(B.isString(O)){I=H[O];}if(!I){throw new TypeError("method undefined");}if(!B.isArray(M)){M=[J];}L=function(){I.apply(H,M);};G=(K)?setInterval(L,N):setTimeout(L,N);return{interval:K,cancel:function(){if(this.interval){clearInterval(G);}else{clearTimeout(G);}}};},isValue:function(G){return(B.isObject(G)||B.isString(G)||B.isNumber(G)||B.isBoolean(G));}};B.hasOwnProperty=(A.hasOwnProperty)?function(G,H){return G&&G.hasOwnProperty(H);}:function(G,H){return !B.isUndefined(G[H])&&G.constructor.prototype[H]!==G[H];};D.augmentObject(B,D,true);YAHOO.util.Lang=B;B.augment=B.augmentProto;YAHOO.augment=B.augmentProto;YAHOO.extend=B.extend;})();YAHOO.register("yahoo",YAHOO,{version:"2.7.0",build:"1796"});(function(){YAHOO.env._id_counter=YAHOO.env._id_counter||0;var E=YAHOO.util,L=YAHOO.lang,m=YAHOO.env.ua,A=YAHOO.lang.trim,d={},h={},N=/^t(?:able|d|h)$/i,X=/color$/i,K=window.document,W=K.documentElement,e="ownerDocument",n="defaultView",v="documentElement",t="compatMode",b="offsetLeft",P="offsetTop",u="offsetParent",Z="parentNode",l="nodeType",C="tagName",O="scrollLeft",i="scrollTop",Q="getBoundingClientRect",w="getComputedStyle",a="currentStyle",M="CSS1Compat",c="BackCompat",g="class",F="className",J="",B=" ",s="(?:^|\\s)",k="(?= |$)",U="g",p="position",f="fixed",V="relative",j="left",o="top",r="medium",q="borderLeftWidth",R="borderTopWidth",D=m.opera,I=m.webkit,H=m.gecko,T=m.ie;E.Dom={CUSTOM_ATTRIBUTES:(!W.hasAttribute)?{"for":"htmlFor","class":F}:{"htmlFor":"for","className":g},get:function(y){var AA,Y,z,x,G;if(y){if(y[l]||y.item){return y;}if(typeof y==="string"){AA=y;y=K.getElementById(y);if(y&&y.id===AA){return y;}else{if(y&&K.all){y=null;Y=K.all[AA];for(x=0,G=Y.length;x<G;++x){if(Y[x].id===AA){return Y[x];}}}}return y;}if(y.DOM_EVENTS){y=y.get("element");}if("length" in y){z=[];for(x=0,G=y.length;x<G;++x){z[z.length]=E.Dom.get(y[x]);}return z;}return y;}return null;},getComputedStyle:function(G,Y){if(window[w]){return G[e][n][w](G,null)[Y];}else{if(G[a]){return E.Dom.IE_ComputedStyle.get(G,Y);}}},getStyle:function(G,Y){return E.Dom.batch(G,E.Dom._getStyle,Y);},_getStyle:function(){if(window[w]){return function(G,y){y=(y==="float")?y="cssFloat":E.Dom._toCamel(y);var x=G.style[y],Y;if(!x){Y=G[e][n][w](G,null);if(Y){x=Y[y];}}return x;};}else{if(W[a]){return function(G,y){var x;switch(y){case"opacity":x=100;try{x=G.filters["DXImageTransform.Microsoft.Alpha"].opacity;}catch(z){try{x=G.filters("alpha").opacity;}catch(Y){}}return x/100;case"float":y="styleFloat";default:y=E.Dom._toCamel(y);x=G[a]?G[a][y]:null;return(G.style[y]||x);}};}}}(),setStyle:function(G,Y,x){E.Dom.batch(G,E.Dom._setStyle,{prop:Y,val:x});},_setStyle:function(){if(T){return function(Y,G){var x=E.Dom._toCamel(G.prop),y=G.val;if(Y){switch(x){case"opacity":if(L.isString(Y.style.filter)){Y.style.filter="alpha(opacity="+y*100+")";if(!Y[a]||!Y[a].hasLayout){Y.style.zoom=1;}}break;case"float":x="styleFloat";default:Y.style[x]=y;}}else{}};}else{return function(Y,G){var x=E.Dom._toCamel(G.prop),y=G.val;if(Y){if(x=="float"){x="cssFloat";}Y.style[x]=y;}else{}};}}(),getXY:function(G){return E.Dom.batch(G,E.Dom._getXY);},_canPosition:function(G){return(E.Dom._getStyle(G,"display")!=="none"&&E.Dom._inDoc(G));},_getXY:function(){if(K[v][Q]){return function(y){var z,Y,AA,AF,AE,AD,AC,G,x,AB=Math.floor,AG=false;if(E.Dom._canPosition(y)){AA=y[Q]();AF=y[e];z=E.Dom.getDocumentScrollLeft(AF);Y=E.Dom.getDocumentScrollTop(AF);AG=[AB(AA[j]),AB(AA[o])];if(T&&m.ie<8){AE=2;AD=2;AC=AF[t];G=S(AF[v],q);x=S(AF[v],R);if(m.ie===6){if(AC!==c){AE=0;AD=0;}}if((AC==c)){if(G!==r){AE=parseInt(G,10);}if(x!==r){AD=parseInt(x,10);}}AG[0]-=AE;AG[1]-=AD;}if((Y||z)){AG[0]+=z;AG[1]+=Y;}AG[0]=AB(AG[0]);AG[1]=AB(AG[1]);}else{}return AG;};}else{return function(y){var x,Y,AA,AB,AC,z=false,G=y;if(E.Dom._canPosition(y)){z=[y[b],y[P]];x=E.Dom.getDocumentScrollLeft(y[e]);Y=E.Dom.getDocumentScrollTop(y[e]);AC=((H||m.webkit>519)?true:false);while((G=G[u])){z[0]+=G[b];z[1]+=G[P];if(AC){z=E.Dom._calcBorders(G,z);}}if(E.Dom._getStyle(y,p)!==f){G=y;while((G=G[Z])&&G[C]){AA=G[i];AB=G[O];if(H&&(E.Dom._getStyle(G,"overflow")!=="visible")){z=E.Dom._calcBorders(G,z);}if(AA||AB){z[0]-=AB;z[1]-=AA;}}z[0]+=x;z[1]+=Y;}else{if(D){z[0]-=x;z[1]-=Y;}else{if(I||H){z[0]+=x;z[1]+=Y;}}}z[0]=Math.floor(z[0]);z[1]=Math.floor(z[1]);}else{}return z;};}}(),getX:function(G){var Y=function(x){return E.Dom.getXY(x)[0];};return E.Dom.batch(G,Y,E.Dom,true);},getY:function(G){var Y=function(x){return E.Dom.getXY(x)[1];};return E.Dom.batch(G,Y,E.Dom,true);},setXY:function(G,x,Y){E.Dom.batch(G,E.Dom._setXY,{pos:x,noRetry:Y});},_setXY:function(G,z){var AA=E.Dom._getStyle(G,p),y=E.Dom.setStyle,AD=z.pos,Y=z.noRetry,AB=[parseInt(E.Dom.getComputedStyle(G,j),10),parseInt(E.Dom.getComputedStyle(G,o),10)],AC,x;if(AA=="static"){AA=V;y(G,p,AA);}AC=E.Dom._getXY(G);if(!AD||AC===false){return false;}if(isNaN(AB[0])){AB[0]=(AA==V)?0:G[b];}if(isNaN(AB[1])){AB[1]=(AA==V)?0:G[P];}if(AD[0]!==null){y(G,j,AD[0]-AC[0]+AB[0]+"px");}if(AD[1]!==null){y(G,o,AD[1]-AC[1]+AB[1]+"px");}if(!Y){x=E.Dom._getXY(G);if((AD[0]!==null&&x[0]!=AD[0])||(AD[1]!==null&&x[1]!=AD[1])){E.Dom._setXY(G,{pos:AD,noRetry:true});}}},setX:function(Y,G){E.Dom.setXY(Y,[G,null]);},setY:function(G,Y){E.Dom.setXY(G,[null,Y]);},getRegion:function(G){var Y=function(x){var y=false;if(E.Dom._canPosition(x)){y=E.Region.getRegion(x);}else{}return y;};return E.Dom.batch(G,Y,E.Dom,true);},getClientWidth:function(){return E.Dom.getViewportWidth();},getClientHeight:function(){return E.Dom.getViewportHeight();},getElementsByClassName:function(AB,AF,AC,AE,x,AD){AB=L.trim(AB);AF=AF||"*";AC=(AC)?E.Dom.get(AC):null||K;if(!AC){return[];}var Y=[],G=AC.getElementsByTagName(AF),z=E.Dom.hasClass;for(var y=0,AA=G.length;y<AA;++y){if(z(G[y],AB)){Y[Y.length]=G[y];}}if(AE){E.Dom.batch(Y,AE,x,AD);}return Y;},hasClass:function(Y,G){return E.Dom.batch(Y,E.Dom._hasClass,G);},_hasClass:function(x,Y){var G=false,y;if(x&&Y){y=E.Dom.getAttribute(x,F)||J;if(Y.exec){G=Y.test(y);}else{G=Y&&(B+y+B).indexOf(B+Y+B)>-1;}}else{}return G;},addClass:function(Y,G){return E.Dom.batch(Y,E.Dom._addClass,G);},_addClass:function(x,Y){var G=false,y;if(x&&Y){y=E.Dom.getAttribute(x,F)||J;if(!E.Dom._hasClass(x,Y)){E.Dom.setAttribute(x,F,A(y+B+Y));G=true;}}else{}return G;},removeClass:function(Y,G){return E.Dom.batch(Y,E.Dom._removeClass,G);},_removeClass:function(y,x){var Y=false,AA,z,G;if(y&&x){AA=E.Dom.getAttribute(y,F)||J;E.Dom.setAttribute(y,F,AA.replace(E.Dom._getClassRegex(x),J));z=E.Dom.getAttribute(y,F);if(AA!==z){E.Dom.setAttribute(y,F,A(z));Y=true;if(E.Dom.getAttribute(y,F)===""){G=(y.hasAttribute&&y.hasAttribute(g))?g:F;y.removeAttribute(G);}}}else{}return Y;},replaceClass:function(x,Y,G){return E.Dom.batch(x,E.Dom._replaceClass,{from:Y,to:G});
+},_replaceClass:function(y,x){var Y,AB,AA,G=false,z;if(y&&x){AB=x.from;AA=x.to;if(!AA){G=false;}else{if(!AB){G=E.Dom._addClass(y,x.to);}else{if(AB!==AA){z=E.Dom.getAttribute(y,F)||J;Y=(B+z.replace(E.Dom._getClassRegex(AB),B+AA)).split(E.Dom._getClassRegex(AA));Y.splice(1,0,B+AA);E.Dom.setAttribute(y,F,A(Y.join(J)));G=true;}}}}else{}return G;},generateId:function(G,x){x=x||"yui-gen";var Y=function(y){if(y&&y.id){return y.id;}var z=x+YAHOO.env._id_counter++;if(y){if(y[e].getElementById(z)){return E.Dom.generateId(y,z+x);}y.id=z;}return z;};return E.Dom.batch(G,Y,E.Dom,true)||Y.apply(E.Dom,arguments);},isAncestor:function(Y,x){Y=E.Dom.get(Y);x=E.Dom.get(x);var G=false;if((Y&&x)&&(Y[l]&&x[l])){if(Y.contains&&Y!==x){G=Y.contains(x);}else{if(Y.compareDocumentPosition){G=!!(Y.compareDocumentPosition(x)&16);}}}else{}return G;},inDocument:function(G,Y){return E.Dom._inDoc(E.Dom.get(G),Y);},_inDoc:function(Y,x){var G=false;if(Y&&Y[C]){x=x||Y[e];G=E.Dom.isAncestor(x[v],Y);}else{}return G;},getElementsBy:function(Y,AF,AB,AD,y,AC,AE){AF=AF||"*";AB=(AB)?E.Dom.get(AB):null||K;if(!AB){return[];}var x=[],G=AB.getElementsByTagName(AF);for(var z=0,AA=G.length;z<AA;++z){if(Y(G[z])){if(AE){x=G[z];break;}else{x[x.length]=G[z];}}}if(AD){E.Dom.batch(x,AD,y,AC);}return x;},getElementBy:function(x,G,Y){return E.Dom.getElementsBy(x,G,Y,null,null,null,true);},batch:function(x,AB,AA,z){var y=[],Y=(z)?AA:window;x=(x&&(x[C]||x.item))?x:E.Dom.get(x);if(x&&AB){if(x[C]||x.length===undefined){return AB.call(Y,x,AA);}for(var G=0;G<x.length;++G){y[y.length]=AB.call(Y,x[G],AA);}}else{return false;}return y;},getDocumentHeight:function(){var Y=(K[t]!=M||I)?K.body.scrollHeight:W.scrollHeight,G=Math.max(Y,E.Dom.getViewportHeight());return G;},getDocumentWidth:function(){var Y=(K[t]!=M||I)?K.body.scrollWidth:W.scrollWidth,G=Math.max(Y,E.Dom.getViewportWidth());return G;},getViewportHeight:function(){var G=self.innerHeight,Y=K[t];if((Y||T)&&!D){G=(Y==M)?W.clientHeight:K.body.clientHeight;}return G;},getViewportWidth:function(){var G=self.innerWidth,Y=K[t];if(Y||T){G=(Y==M)?W.clientWidth:K.body.clientWidth;}return G;},getAncestorBy:function(G,Y){while((G=G[Z])){if(E.Dom._testElement(G,Y)){return G;}}return null;},getAncestorByClassName:function(Y,G){Y=E.Dom.get(Y);if(!Y){return null;}var x=function(y){return E.Dom.hasClass(y,G);};return E.Dom.getAncestorBy(Y,x);},getAncestorByTagName:function(Y,G){Y=E.Dom.get(Y);if(!Y){return null;}var x=function(y){return y[C]&&y[C].toUpperCase()==G.toUpperCase();};return E.Dom.getAncestorBy(Y,x);},getPreviousSiblingBy:function(G,Y){while(G){G=G.previousSibling;if(E.Dom._testElement(G,Y)){return G;}}return null;},getPreviousSibling:function(G){G=E.Dom.get(G);if(!G){return null;}return E.Dom.getPreviousSiblingBy(G);},getNextSiblingBy:function(G,Y){while(G){G=G.nextSibling;if(E.Dom._testElement(G,Y)){return G;}}return null;},getNextSibling:function(G){G=E.Dom.get(G);if(!G){return null;}return E.Dom.getNextSiblingBy(G);},getFirstChildBy:function(G,x){var Y=(E.Dom._testElement(G.firstChild,x))?G.firstChild:null;return Y||E.Dom.getNextSiblingBy(G.firstChild,x);},getFirstChild:function(G,Y){G=E.Dom.get(G);if(!G){return null;}return E.Dom.getFirstChildBy(G);},getLastChildBy:function(G,x){if(!G){return null;}var Y=(E.Dom._testElement(G.lastChild,x))?G.lastChild:null;return Y||E.Dom.getPreviousSiblingBy(G.lastChild,x);},getLastChild:function(G){G=E.Dom.get(G);return E.Dom.getLastChildBy(G);},getChildrenBy:function(Y,y){var x=E.Dom.getFirstChildBy(Y,y),G=x?[x]:[];E.Dom.getNextSiblingBy(x,function(z){if(!y||y(z)){G[G.length]=z;}return false;});return G;},getChildren:function(G){G=E.Dom.get(G);if(!G){}return E.Dom.getChildrenBy(G);},getDocumentScrollLeft:function(G){G=G||K;return Math.max(G[v].scrollLeft,G.body.scrollLeft);},getDocumentScrollTop:function(G){G=G||K;return Math.max(G[v].scrollTop,G.body.scrollTop);},insertBefore:function(Y,G){Y=E.Dom.get(Y);G=E.Dom.get(G);if(!Y||!G||!G[Z]){return null;}return G[Z].insertBefore(Y,G);},insertAfter:function(Y,G){Y=E.Dom.get(Y);G=E.Dom.get(G);if(!Y||!G||!G[Z]){return null;}if(G.nextSibling){return G[Z].insertBefore(Y,G.nextSibling);}else{return G[Z].appendChild(Y);}},getClientRegion:function(){var x=E.Dom.getDocumentScrollTop(),Y=E.Dom.getDocumentScrollLeft(),y=E.Dom.getViewportWidth()+Y,G=E.Dom.getViewportHeight()+x;return new E.Region(x,y,G,Y);},setAttribute:function(Y,G,x){G=E.Dom.CUSTOM_ATTRIBUTES[G]||G;Y.setAttribute(G,x);},getAttribute:function(Y,G){G=E.Dom.CUSTOM_ATTRIBUTES[G]||G;return Y.getAttribute(G);},_toCamel:function(Y){var x=d;function G(y,z){return z.toUpperCase();}return x[Y]||(x[Y]=Y.indexOf("-")===-1?Y:Y.replace(/-([a-z])/gi,G));},_getClassRegex:function(Y){var G;if(Y!==undefined){if(Y.exec){G=Y;}else{G=h[Y];if(!G){Y=Y.replace(E.Dom._patterns.CLASS_RE_TOKENS,"\\$1");G=h[Y]=new RegExp(s+Y+k,U);}}}return G;},_patterns:{ROOT_TAG:/^body|html$/i,CLASS_RE_TOKENS:/([\.\(\)\^\$\*\+\?\|\[\]\{\}])/g},_testElement:function(G,Y){return G&&G[l]==1&&(!Y||Y(G));},_calcBorders:function(x,y){var Y=parseInt(E.Dom[w](x,R),10)||0,G=parseInt(E.Dom[w](x,q),10)||0;if(H){if(N.test(x[C])){Y=0;G=0;}}y[0]+=G;y[1]+=Y;return y;}};var S=E.Dom[w];if(m.opera){E.Dom[w]=function(Y,G){var x=S(Y,G);if(X.test(G)){x=E.Dom.Color.toRGB(x);}return x;};}if(m.webkit){E.Dom[w]=function(Y,G){var x=S(Y,G);if(x==="rgba(0, 0, 0, 0)"){x="transparent";}return x;};}})();YAHOO.util.Region=function(C,D,A,B){this.top=C;this.y=C;this[1]=C;this.right=D;this.bottom=A;this.left=B;this.x=B;this[0]=B;this.width=this.right-this.left;this.height=this.bottom-this.top;};YAHOO.util.Region.prototype.contains=function(A){return(A.left>=this.left&&A.right<=this.right&&A.top>=this.top&&A.bottom<=this.bottom);};YAHOO.util.Region.prototype.getArea=function(){return((this.bottom-this.top)*(this.right-this.left));};YAHOO.util.Region.prototype.intersect=function(E){var C=Math.max(this.top,E.top),D=Math.min(this.right,E.right),A=Math.min(this.bottom,E.bottom),B=Math.max(this.left,E.left);if(A>=C&&D>=B){return new YAHOO.util.Region(C,D,A,B);
+}else{return null;}};YAHOO.util.Region.prototype.union=function(E){var C=Math.min(this.top,E.top),D=Math.max(this.right,E.right),A=Math.max(this.bottom,E.bottom),B=Math.min(this.left,E.left);return new YAHOO.util.Region(C,D,A,B);};YAHOO.util.Region.prototype.toString=function(){return("Region {"+"top: "+this.top+", right: "+this.right+", bottom: "+this.bottom+", left: "+this.left+", height: "+this.height+", width: "+this.width+"}");};YAHOO.util.Region.getRegion=function(D){var F=YAHOO.util.Dom.getXY(D),C=F[1],E=F[0]+D.offsetWidth,A=F[1]+D.offsetHeight,B=F[0];return new YAHOO.util.Region(C,E,A,B);};YAHOO.util.Point=function(A,B){if(YAHOO.lang.isArray(A)){B=A[1];A=A[0];}YAHOO.util.Point.superclass.constructor.call(this,B,A,B,A);};YAHOO.extend(YAHOO.util.Point,YAHOO.util.Region);(function(){var B=YAHOO.util,A="clientTop",F="clientLeft",J="parentNode",K="right",W="hasLayout",I="px",U="opacity",L="auto",D="borderLeftWidth",G="borderTopWidth",P="borderRightWidth",V="borderBottomWidth",S="visible",Q="transparent",N="height",E="width",H="style",T="currentStyle",R=/^width|height$/,O=/^(\d[.\d]*)+(em|ex|px|gd|rem|vw|vh|vm|ch|mm|cm|in|pt|pc|deg|rad|ms|s|hz|khz|%){1}?/i,M={get:function(X,Z){var Y="",a=X[T][Z];if(Z===U){Y=B.Dom.getStyle(X,U);}else{if(!a||(a.indexOf&&a.indexOf(I)>-1)){Y=a;}else{if(B.Dom.IE_COMPUTED[Z]){Y=B.Dom.IE_COMPUTED[Z](X,Z);}else{if(O.test(a)){Y=B.Dom.IE.ComputedStyle.getPixel(X,Z);}else{Y=a;}}}}return Y;},getOffset:function(Z,e){var b=Z[T][e],X=e.charAt(0).toUpperCase()+e.substr(1),c="offset"+X,Y="pixel"+X,a="",d;if(b==L){d=Z[c];if(d===undefined){a=0;}a=d;if(R.test(e)){Z[H][e]=d;if(Z[c]>d){a=d-(Z[c]-d);}Z[H][e]=L;}}else{if(!Z[H][Y]&&!Z[H][e]){Z[H][e]=b;}a=Z[H][Y];}return a+I;},getBorderWidth:function(X,Z){var Y=null;if(!X[T][W]){X[H].zoom=1;}switch(Z){case G:Y=X[A];break;case V:Y=X.offsetHeight-X.clientHeight-X[A];break;case D:Y=X[F];break;case P:Y=X.offsetWidth-X.clientWidth-X[F];break;}return Y+I;},getPixel:function(Y,X){var a=null,b=Y[T][K],Z=Y[T][X];Y[H][K]=Z;a=Y[H].pixelRight;Y[H][K]=b;return a+I;},getMargin:function(Y,X){var Z;if(Y[T][X]==L){Z=0+I;}else{Z=B.Dom.IE.ComputedStyle.getPixel(Y,X);}return Z;},getVisibility:function(Y,X){var Z;while((Z=Y[T])&&Z[X]=="inherit"){Y=Y[J];}return(Z)?Z[X]:S;},getColor:function(Y,X){return B.Dom.Color.toRGB(Y[T][X])||Q;},getBorderColor:function(Y,X){var Z=Y[T],a=Z[X]||Z.color;return B.Dom.Color.toRGB(B.Dom.Color.toHex(a));}},C={};C.top=C.right=C.bottom=C.left=C[E]=C[N]=M.getOffset;C.color=M.getColor;C[G]=C[P]=C[V]=C[D]=M.getBorderWidth;C.marginTop=C.marginRight=C.marginBottom=C.marginLeft=M.getMargin;C.visibility=M.getVisibility;C.borderColor=C.borderTopColor=C.borderRightColor=C.borderBottomColor=C.borderLeftColor=M.getBorderColor;B.Dom.IE_COMPUTED=C;B.Dom.IE_ComputedStyle=M;})();(function(){var C="toString",A=parseInt,B=RegExp,D=YAHOO.util;D.Dom.Color={KEYWORDS:{black:"000",silver:"c0c0c0",gray:"808080",white:"fff",maroon:"800000",red:"f00",purple:"800080",fuchsia:"f0f",green:"008000",lime:"0f0",olive:"808000",yellow:"ff0",navy:"000080",blue:"00f",teal:"008080",aqua:"0ff"},re_RGB:/^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i,re_hex:/^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i,re_hex3:/([0-9A-F])/gi,toRGB:function(E){if(!D.Dom.Color.re_RGB.test(E)){E=D.Dom.Color.toHex(E);}if(D.Dom.Color.re_hex.exec(E)){E="rgb("+[A(B.$1,16),A(B.$2,16),A(B.$3,16)].join(", ")+")";}return E;},toHex:function(H){H=D.Dom.Color.KEYWORDS[H]||H;if(D.Dom.Color.re_RGB.exec(H)){var G=(B.$1.length===1)?"0"+B.$1:Number(B.$1),F=(B.$2.length===1)?"0"+B.$2:Number(B.$2),E=(B.$3.length===1)?"0"+B.$3:Number(B.$3);H=[G[C](16),F[C](16),E[C](16)].join("");}if(H.length<6){H=H.replace(D.Dom.Color.re_hex3,"$1$1");}if(H!=="transparent"&&H.indexOf("#")<0){H="#"+H;}return H.toLowerCase();}};}());YAHOO.register("dom",YAHOO.util.Dom,{version:"2.7.0",build:"1796"});YAHOO.util.CustomEvent=function(D,C,B,A){this.type=D;this.scope=C||window;this.silent=B;this.signature=A||YAHOO.util.CustomEvent.LIST;this.subscribers=[];if(!this.silent){}var E="_YUICEOnSubscribe";if(D!==E){this.subscribeEvent=new YAHOO.util.CustomEvent(E,this,true);}this.lastError=null;};YAHOO.util.CustomEvent.LIST=0;YAHOO.util.CustomEvent.FLAT=1;YAHOO.util.CustomEvent.prototype={subscribe:function(A,B,C){if(!A){throw new Error("Invalid callback for subscriber to '"+this.type+"'");}if(this.subscribeEvent){this.subscribeEvent.fire(A,B,C);}this.subscribers.push(new YAHOO.util.Subscriber(A,B,C));},unsubscribe:function(D,F){if(!D){return this.unsubscribeAll();}var E=false;for(var B=0,A=this.subscribers.length;B<A;++B){var C=this.subscribers[B];if(C&&C.contains(D,F)){this._delete(B);E=true;}}return E;},fire:function(){this.lastError=null;var K=[],E=this.subscribers.length;if(!E&&this.silent){return true;}var I=[].slice.call(arguments,0),G=true,D,J=false;if(!this.silent){}var C=this.subscribers.slice(),A=YAHOO.util.Event.throwErrors;for(D=0;D<E;++D){var M=C[D];if(!M){J=true;}else{if(!this.silent){}var L=M.getScope(this.scope);if(this.signature==YAHOO.util.CustomEvent.FLAT){var B=null;if(I.length>0){B=I[0];}try{G=M.fn.call(L,B,M.obj);}catch(F){this.lastError=F;if(A){throw F;}}}else{try{G=M.fn.call(L,this.type,I,M.obj);}catch(H){this.lastError=H;if(A){throw H;}}}if(false===G){if(!this.silent){}break;}}}return(G!==false);},unsubscribeAll:function(){var A=this.subscribers.length,B;for(B=A-1;B>-1;B--){this._delete(B);}this.subscribers=[];return A;},_delete:function(A){var B=this.subscribers[A];if(B){delete B.fn;delete B.obj;}this.subscribers.splice(A,1);},toString:function(){return"CustomEvent: "+"'"+this.type+"', "+"context: "+this.scope;}};YAHOO.util.Subscriber=function(A,B,C){this.fn=A;this.obj=YAHOO.lang.isUndefined(B)?null:B;this.overrideContext=C;};YAHOO.util.Subscriber.prototype.getScope=function(A){if(this.overrideContext){if(this.overrideContext===true){return this.obj;}else{return this.overrideContext;}}return A;};YAHOO.util.Subscriber.prototype.contains=function(A,B){if(B){return(this.fn==A&&this.obj==B);}else{return(this.fn==A);}};YAHOO.util.Subscriber.prototype.toString=function(){return"Subscriber { obj: "+this.obj+", overrideContext: "+(this.overrideContext||"no")+" }";};if(!YAHOO.util.Event){YAHOO.util.Event=function(){var H=false;var I=[];var J=[];var G=[];var E=[];var C=0;var F=[];var B=[];var A=0;var D={63232:38,63233:40,63234:37,63235:39,63276:33,63277:34,25:9};var K=YAHOO.env.ua.ie?"focusin":"focus";var L=YAHOO.env.ua.ie?"focusout":"blur";return{POLL_RETRYS:2000,POLL_INTERVAL:20,EL:0,TYPE:1,FN:2,WFN:3,UNLOAD_OBJ:3,ADJ_SCOPE:4,OBJ:5,OVERRIDE:6,lastError:null,isSafari:YAHOO.env.ua.webkit,webkit:YAHOO.env.ua.webkit,isIE:YAHOO.env.ua.ie,_interval:null,_dri:null,DOMReady:false,throwErrors:false,startInterval:function(){if(!this._interval){var M=this;var N=function(){M._tryPreloadAttach();};this._interval=setInterval(N,this.POLL_INTERVAL);}},onAvailable:function(S,O,Q,R,P){var M=(YAHOO.lang.isString(S))?[S]:S;for(var N=0;N<M.length;N=N+1){F.push({id:M[N],fn:O,obj:Q,overrideContext:R,checkReady:P});}C=this.POLL_RETRYS;this.startInterval();},onContentReady:function(P,M,N,O){this.onAvailable(P,M,N,O,true);},onDOMReady:function(M,N,O){if(this.DOMReady){setTimeout(function(){var P=window;if(O){if(O===true){P=N;}else{P=O;}}M.call(P,"DOMReady",[],N);},0);}else{this.DOMReadyEvent.subscribe(M,N,O);}},_addListener:function(O,M,Y,S,W,b){if(!Y||!Y.call){return false;}if(this._isValidCollection(O)){var Z=true;for(var T=0,V=O.length;T<V;++T){Z=this.on(O[T],M,Y,S,W)&&Z;}return Z;}else{if(YAHOO.lang.isString(O)){var R=this.getEl(O);if(R){O=R;}else{this.onAvailable(O,function(){YAHOO.util.Event.on(O,M,Y,S,W);});return true;}}}if(!O){return false;}if("unload"==M&&S!==this){J[J.length]=[O,M,Y,S,W];return true;}var N=O;if(W){if(W===true){N=S;}else{N=W;}}var P=function(c){return Y.call(N,YAHOO.util.Event.getEvent(c,O),S);};var a=[O,M,Y,P,N,S,W];var U=I.length;I[U]=a;if(this.useLegacyEvent(O,M)){var Q=this.getLegacyIndex(O,M);if(Q==-1||O!=G[Q][0]){Q=G.length;B[O.id+M]=Q;G[Q]=[O,M,O["on"+M]];E[Q]=[];O["on"+M]=function(c){YAHOO.util.Event.fireLegacyEvent(YAHOO.util.Event.getEvent(c),Q);};}E[Q].push(a);}else{try{this._simpleAdd(O,M,P,b);}catch(X){this.lastError=X;this.removeListener(O,M,Y);return false;}}return true;},addListener:function(N,Q,M,O,P){return this._addListener(N,Q,M,O,P,false);},addFocusListener:function(N,M,O,P){return this._addListener(N,K,M,O,P,true);},removeFocusListener:function(N,M){return this.removeListener(N,K,M);},addBlurListener:function(N,M,O,P){return this._addListener(N,L,M,O,P,true);},removeBlurListener:function(N,M){return this.removeListener(N,L,M);},fireLegacyEvent:function(R,P){var T=true,M,V,U,N,S;V=E[P].slice();for(var O=0,Q=V.length;O<Q;++O){U=V[O];if(U&&U[this.WFN]){N=U[this.ADJ_SCOPE];S=U[this.WFN].call(N,R);T=(T&&S);}}M=G[P];if(M&&M[2]){M[2](R);}return T;},getLegacyIndex:function(N,O){var M=this.generateId(N)+O;if(typeof B[M]=="undefined"){return -1;}else{return B[M];}},useLegacyEvent:function(M,N){return(this.webkit&&this.webkit<419&&("click"==N||"dblclick"==N));},removeListener:function(N,M,V){var Q,T,X;if(typeof N=="string"){N=this.getEl(N);}else{if(this._isValidCollection(N)){var W=true;for(Q=N.length-1;Q>-1;Q--){W=(this.removeListener(N[Q],M,V)&&W);}return W;}}if(!V||!V.call){return this.purgeElement(N,false,M);}if("unload"==M){for(Q=J.length-1;Q>-1;Q--){X=J[Q];if(X&&X[0]==N&&X[1]==M&&X[2]==V){J.splice(Q,1);return true;}}return false;}var R=null;var S=arguments[3];if("undefined"===typeof S){S=this._getCacheIndex(N,M,V);}if(S>=0){R=I[S];}if(!N||!R){return false;}if(this.useLegacyEvent(N,M)){var P=this.getLegacyIndex(N,M);var O=E[P];if(O){for(Q=0,T=O.length;Q<T;++Q){X=O[Q];if(X&&X[this.EL]==N&&X[this.TYPE]==M&&X[this.FN]==V){O.splice(Q,1);break;}}}}else{try{this._simpleRemove(N,M,R[this.WFN],false);}catch(U){this.lastError=U;return false;}}delete I[S][this.WFN];delete I[S][this.FN];
+I.splice(S,1);return true;},getTarget:function(O,N){var M=O.target||O.srcElement;return this.resolveTextNode(M);},resolveTextNode:function(N){try{if(N&&3==N.nodeType){return N.parentNode;}}catch(M){}return N;},getPageX:function(N){var M=N.pageX;if(!M&&0!==M){M=N.clientX||0;if(this.isIE){M+=this._getScrollLeft();}}return M;},getPageY:function(M){var N=M.pageY;if(!N&&0!==N){N=M.clientY||0;if(this.isIE){N+=this._getScrollTop();}}return N;},getXY:function(M){return[this.getPageX(M),this.getPageY(M)];},getRelatedTarget:function(N){var M=N.relatedTarget;if(!M){if(N.type=="mouseout"){M=N.toElement;}else{if(N.type=="mouseover"){M=N.fromElement;}}}return this.resolveTextNode(M);},getTime:function(O){if(!O.time){var N=new Date().getTime();try{O.time=N;}catch(M){this.lastError=M;return N;}}return O.time;},stopEvent:function(M){this.stopPropagation(M);this.preventDefault(M);},stopPropagation:function(M){if(M.stopPropagation){M.stopPropagation();}else{M.cancelBubble=true;}},preventDefault:function(M){if(M.preventDefault){M.preventDefault();}else{M.returnValue=false;}},getEvent:function(O,M){var N=O||window.event;if(!N){var P=this.getEvent.caller;while(P){N=P.arguments[0];if(N&&Event==N.constructor){break;}P=P.caller;}}return N;},getCharCode:function(N){var M=N.keyCode||N.charCode||0;if(YAHOO.env.ua.webkit&&(M in D)){M=D[M];}return M;},_getCacheIndex:function(Q,R,P){for(var O=0,N=I.length;O<N;O=O+1){var M=I[O];if(M&&M[this.FN]==P&&M[this.EL]==Q&&M[this.TYPE]==R){return O;}}return -1;},generateId:function(M){var N=M.id;if(!N){N="yuievtautoid-"+A;++A;M.id=N;}return N;},_isValidCollection:function(N){try{return(N&&typeof N!=="string"&&N.length&&!N.tagName&&!N.alert&&typeof N[0]!=="undefined");}catch(M){return false;}},elCache:{},getEl:function(M){return(typeof M==="string")?document.getElementById(M):M;},clearCache:function(){},DOMReadyEvent:new YAHOO.util.CustomEvent("DOMReady",this),_load:function(N){if(!H){H=true;var M=YAHOO.util.Event;M._ready();M._tryPreloadAttach();}},_ready:function(N){var M=YAHOO.util.Event;if(!M.DOMReady){M.DOMReady=true;M.DOMReadyEvent.fire();M._simpleRemove(document,"DOMContentLoaded",M._ready);}},_tryPreloadAttach:function(){if(F.length===0){C=0;if(this._interval){clearInterval(this._interval);this._interval=null;}return;}if(this.locked){return;}if(this.isIE){if(!this.DOMReady){this.startInterval();return;}}this.locked=true;var S=!H;if(!S){S=(C>0&&F.length>0);}var R=[];var T=function(V,W){var U=V;if(W.overrideContext){if(W.overrideContext===true){U=W.obj;}else{U=W.overrideContext;}}W.fn.call(U,W.obj);};var N,M,Q,P,O=[];for(N=0,M=F.length;N<M;N=N+1){Q=F[N];if(Q){P=this.getEl(Q.id);if(P){if(Q.checkReady){if(H||P.nextSibling||!S){O.push(Q);F[N]=null;}}else{T(P,Q);F[N]=null;}}else{R.push(Q);}}}for(N=0,M=O.length;N<M;N=N+1){Q=O[N];T(this.getEl(Q.id),Q);}C--;if(S){for(N=F.length-1;N>-1;N--){Q=F[N];if(!Q||!Q.id){F.splice(N,1);}}this.startInterval();}else{if(this._interval){clearInterval(this._interval);this._interval=null;}}this.locked=false;},purgeElement:function(Q,R,T){var O=(YAHOO.lang.isString(Q))?this.getEl(Q):Q;var S=this.getListeners(O,T),P,M;if(S){for(P=S.length-1;P>-1;P--){var N=S[P];this.removeListener(O,N.type,N.fn);}}if(R&&O&&O.childNodes){for(P=0,M=O.childNodes.length;P<M;++P){this.purgeElement(O.childNodes[P],R,T);}}},getListeners:function(O,M){var R=[],N;if(!M){N=[I,J];}else{if(M==="unload"){N=[J];}else{N=[I];}}var T=(YAHOO.lang.isString(O))?this.getEl(O):O;for(var Q=0;Q<N.length;Q=Q+1){var V=N[Q];if(V){for(var S=0,U=V.length;S<U;++S){var P=V[S];if(P&&P[this.EL]===T&&(!M||M===P[this.TYPE])){R.push({type:P[this.TYPE],fn:P[this.FN],obj:P[this.OBJ],adjust:P[this.OVERRIDE],scope:P[this.ADJ_SCOPE],index:S});}}}}return(R.length)?R:null;},_unload:function(T){var N=YAHOO.util.Event,Q,P,O,S,R,U=J.slice(),M;for(Q=0,S=J.length;Q<S;++Q){O=U[Q];if(O){M=window;if(O[N.ADJ_SCOPE]){if(O[N.ADJ_SCOPE]===true){M=O[N.UNLOAD_OBJ];}else{M=O[N.ADJ_SCOPE];}}O[N.FN].call(M,N.getEvent(T,O[N.EL]),O[N.UNLOAD_OBJ]);U[Q]=null;}}O=null;M=null;J=null;if(I){for(P=I.length-1;P>-1;P--){O=I[P];if(O){N.removeListener(O[N.EL],O[N.TYPE],O[N.FN],P);}}O=null;}G=null;N._simpleRemove(window,"unload",N._unload);},_getScrollLeft:function(){return this._getScroll()[1];},_getScrollTop:function(){return this._getScroll()[0];},_getScroll:function(){var M=document.documentElement,N=document.body;if(M&&(M.scrollTop||M.scrollLeft)){return[M.scrollTop,M.scrollLeft];}else{if(N){return[N.scrollTop,N.scrollLeft];}else{return[0,0];}}},regCE:function(){},_simpleAdd:function(){if(window.addEventListener){return function(O,P,N,M){O.addEventListener(P,N,(M));};}else{if(window.attachEvent){return function(O,P,N,M){O.attachEvent("on"+P,N);};}else{return function(){};}}}(),_simpleRemove:function(){if(window.removeEventListener){return function(O,P,N,M){O.removeEventListener(P,N,(M));};}else{if(window.detachEvent){return function(N,O,M){N.detachEvent("on"+O,M);};}else{return function(){};}}}()};}();(function(){var EU=YAHOO.util.Event;EU.on=EU.addListener;EU.onFocus=EU.addFocusListener;EU.onBlur=EU.addBlurListener;
+/* DOMReady: based on work by: Dean Edwards/John Resig/Matthias Miller */
+if(EU.isIE){YAHOO.util.Event.onDOMReady(YAHOO.util.Event._tryPreloadAttach,YAHOO.util.Event,true);var n=document.createElement("p");EU._dri=setInterval(function(){try{n.doScroll("left");clearInterval(EU._dri);EU._dri=null;EU._ready();n=null;}catch(ex){}},EU.POLL_INTERVAL);}else{if(EU.webkit&&EU.webkit<525){EU._dri=setInterval(function(){var rs=document.readyState;if("loaded"==rs||"complete"==rs){clearInterval(EU._dri);EU._dri=null;EU._ready();}},EU.POLL_INTERVAL);}else{EU._simpleAdd(document,"DOMContentLoaded",EU._ready);}}EU._simpleAdd(window,"load",EU._load);EU._simpleAdd(window,"unload",EU._unload);EU._tryPreloadAttach();})();}YAHOO.util.EventProvider=function(){};YAHOO.util.EventProvider.prototype={__yui_events:null,__yui_subscribers:null,subscribe:function(A,C,F,E){this.__yui_events=this.__yui_events||{};var D=this.__yui_events[A];if(D){D.subscribe(C,F,E);
+}else{this.__yui_subscribers=this.__yui_subscribers||{};var B=this.__yui_subscribers;if(!B[A]){B[A]=[];}B[A].push({fn:C,obj:F,overrideContext:E});}},unsubscribe:function(C,E,G){this.__yui_events=this.__yui_events||{};var A=this.__yui_events;if(C){var F=A[C];if(F){return F.unsubscribe(E,G);}}else{var B=true;for(var D in A){if(YAHOO.lang.hasOwnProperty(A,D)){B=B&&A[D].unsubscribe(E,G);}}return B;}return false;},unsubscribeAll:function(A){return this.unsubscribe(A);},createEvent:function(G,D){this.__yui_events=this.__yui_events||{};var A=D||{};var I=this.__yui_events;if(I[G]){}else{var H=A.scope||this;var E=(A.silent);var B=new YAHOO.util.CustomEvent(G,H,E,YAHOO.util.CustomEvent.FLAT);I[G]=B;if(A.onSubscribeCallback){B.subscribeEvent.subscribe(A.onSubscribeCallback);}this.__yui_subscribers=this.__yui_subscribers||{};var F=this.__yui_subscribers[G];if(F){for(var C=0;C<F.length;++C){B.subscribe(F[C].fn,F[C].obj,F[C].overrideContext);}}}return I[G];},fireEvent:function(E,D,A,C){this.__yui_events=this.__yui_events||{};var G=this.__yui_events[E];if(!G){return null;}var B=[];for(var F=1;F<arguments.length;++F){B.push(arguments[F]);}return G.fire.apply(G,B);},hasEvent:function(A){if(this.__yui_events){if(this.__yui_events[A]){return true;}}return false;}};(function(){var A=YAHOO.util.Event,C=YAHOO.lang;YAHOO.util.KeyListener=function(D,I,E,F){if(!D){}else{if(!I){}else{if(!E){}}}if(!F){F=YAHOO.util.KeyListener.KEYDOWN;}var G=new YAHOO.util.CustomEvent("keyPressed");this.enabledEvent=new YAHOO.util.CustomEvent("enabled");this.disabledEvent=new YAHOO.util.CustomEvent("disabled");if(C.isString(D)){D=document.getElementById(D);}if(C.isFunction(E)){G.subscribe(E);}else{G.subscribe(E.fn,E.scope,E.correctScope);}function H(O,N){if(!I.shift){I.shift=false;}if(!I.alt){I.alt=false;}if(!I.ctrl){I.ctrl=false;}if(O.shiftKey==I.shift&&O.altKey==I.alt&&O.ctrlKey==I.ctrl){var J,M=I.keys,L;if(YAHOO.lang.isArray(M)){for(var K=0;K<M.length;K++){J=M[K];L=A.getCharCode(O);if(J==L){G.fire(L,O);break;}}}else{L=A.getCharCode(O);if(M==L){G.fire(L,O);}}}}this.enable=function(){if(!this.enabled){A.on(D,F,H);this.enabledEvent.fire(I);}this.enabled=true;};this.disable=function(){if(this.enabled){A.removeListener(D,F,H);this.disabledEvent.fire(I);}this.enabled=false;};this.toString=function(){return"KeyListener ["+I.keys+"] "+D.tagName+(D.id?"["+D.id+"]":"");};};var B=YAHOO.util.KeyListener;B.KEYDOWN="keydown";B.KEYUP="keyup";B.KEY={ALT:18,BACK_SPACE:8,CAPS_LOCK:20,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,META:224,NUM_LOCK:144,PAGE_DOWN:34,PAGE_UP:33,PAUSE:19,PRINTSCREEN:44,RIGHT:39,SCROLL_LOCK:145,SHIFT:16,SPACE:32,TAB:9,UP:38};})();YAHOO.register("event",YAHOO.util.Event,{version:"2.7.0",build:"1796"});YAHOO.register("yahoo-dom-event", YAHOO, {version: "2.7.0", build: "1796"});
+/*
+Copyright (c) 2009, Yahoo! Inc. All rights reserved.
+Code licensed under the BSD License:
+http://developer.yahoo.net/yui/license.txt
+version: 2.7.0
+*/
+if(!YAHOO.util.DragDropMgr){YAHOO.util.DragDropMgr=function(){var A=YAHOO.util.Event,B=YAHOO.util.Dom;return{useShim:false,_shimActive:false,_shimState:false,_debugShim:false,_createShim:function(){var C=document.createElement("div");C.id="yui-ddm-shim";if(document.body.firstChild){document.body.insertBefore(C,document.body.firstChild);}else{document.body.appendChild(C);}C.style.display="none";C.style.backgroundColor="red";C.style.position="absolute";C.style.zIndex="99999";B.setStyle(C,"opacity","0");this._shim=C;A.on(C,"mouseup",this.handleMouseUp,this,true);A.on(C,"mousemove",this.handleMouseMove,this,true);A.on(window,"scroll",this._sizeShim,this,true);},_sizeShim:function(){if(this._shimActive){var C=this._shim;C.style.height=B.getDocumentHeight()+"px";C.style.width=B.getDocumentWidth()+"px";C.style.top="0";C.style.left="0";}},_activateShim:function(){if(this.useShim){if(!this._shim){this._createShim();}this._shimActive=true;var C=this._shim,D="0";if(this._debugShim){D=".5";}B.setStyle(C,"opacity",D);this._sizeShim();C.style.display="block";}},_deactivateShim:function(){this._shim.style.display="none";this._shimActive=false;},_shim:null,ids:{},handleIds:{},dragCurrent:null,dragOvers:{},deltaX:0,deltaY:0,preventDefault:true,stopPropagation:true,initialized:false,locked:false,interactionInfo:null,init:function(){this.initialized=true;},POINT:0,INTERSECT:1,STRICT_INTERSECT:2,mode:0,_execOnAll:function(E,D){for(var F in this.ids){for(var C in this.ids[F]){var G=this.ids[F][C];if(!this.isTypeOfDD(G)){continue;}G[E].apply(G,D);}}},_onLoad:function(){this.init();A.on(document,"mouseup",this.handleMouseUp,this,true);A.on(document,"mousemove",this.handleMouseMove,this,true);A.on(window,"unload",this._onUnload,this,true);A.on(window,"resize",this._onResize,this,true);},_onResize:function(C){this._execOnAll("resetConstraints",[]);},lock:function(){this.locked=true;},unlock:function(){this.locked=false;},isLocked:function(){return this.locked;},locationCache:{},useCache:true,clickPixelThresh:3,clickTimeThresh:1000,dragThreshMet:false,clickTimeout:null,startX:0,startY:0,fromTimeout:false,regDragDrop:function(D,C){if(!this.initialized){this.init();}if(!this.ids[C]){this.ids[C]={};}this.ids[C][D.id]=D;},removeDDFromGroup:function(E,C){if(!this.ids[C]){this.ids[C]={};}var D=this.ids[C];if(D&&D[E.id]){delete D[E.id];}},_remove:function(E){for(var D in E.groups){if(D){var C=this.ids[D];if(C&&C[E.id]){delete C[E.id];}}}delete this.handleIds[E.id];},regHandle:function(D,C){if(!this.handleIds[D]){this.handleIds[D]={};}this.handleIds[D][C]=C;},isDragDrop:function(C){return(this.getDDById(C))?true:false;},getRelated:function(H,D){var G=[];for(var F in H.groups){for(var E in this.ids[F]){var C=this.ids[F][E];if(!this.isTypeOfDD(C)){continue;}if(!D||C.isTarget){G[G.length]=C;}}}return G;},isLegalTarget:function(G,F){var D=this.getRelated(G,true);for(var E=0,C=D.length;E<C;++E){if(D[E].id==F.id){return true;}}return false;},isTypeOfDD:function(C){return(C&&C.__ygDragDrop);},isHandle:function(D,C){return(this.handleIds[D]&&this.handleIds[D][C]);},getDDById:function(D){for(var C in this.ids){if(this.ids[C][D]){return this.ids[C][D];}}return null;},handleMouseDown:function(E,D){this.currentTarget=YAHOO.util.Event.getTarget(E);this.dragCurrent=D;var C=D.getEl();this.startX=YAHOO.util.Event.getPageX(E);this.startY=YAHOO.util.Event.getPageY(E);this.deltaX=this.startX-C.offsetLeft;this.deltaY=this.startY-C.offsetTop;this.dragThreshMet=false;this.clickTimeout=setTimeout(function(){var F=YAHOO.util.DDM;F.startDrag(F.startX,F.startY);F.fromTimeout=true;},this.clickTimeThresh);},startDrag:function(C,E){if(this.dragCurrent&&this.dragCurrent.useShim){this._shimState=this.useShim;this.useShim=true;}this._activateShim();clearTimeout(this.clickTimeout);var D=this.dragCurrent;if(D&&D.events.b4StartDrag){D.b4StartDrag(C,E);D.fireEvent("b4StartDragEvent",{x:C,y:E});}if(D&&D.events.startDrag){D.startDrag(C,E);D.fireEvent("startDragEvent",{x:C,y:E});}this.dragThreshMet=true;},handleMouseUp:function(C){if(this.dragCurrent){clearTimeout(this.clickTimeout);if(this.dragThreshMet){if(this.fromTimeout){this.fromTimeout=false;this.handleMouseMove(C);}this.fromTimeout=false;this.fireEvents(C,true);}else{}this.stopDrag(C);this.stopEvent(C);}},stopEvent:function(C){if(this.stopPropagation){YAHOO.util.Event.stopPropagation(C);}if(this.preventDefault){YAHOO.util.Event.preventDefault(C);}},stopDrag:function(E,D){var C=this.dragCurrent;if(C&&!D){if(this.dragThreshMet){if(C.events.b4EndDrag){C.b4EndDrag(E);C.fireEvent("b4EndDragEvent",{e:E});}if(C.events.endDrag){C.endDrag(E);C.fireEvent("endDragEvent",{e:E});}}if(C.events.mouseUp){C.onMouseUp(E);C.fireEvent("mouseUpEvent",{e:E});}}if(this._shimActive){this._deactivateShim();if(this.dragCurrent&&this.dragCurrent.useShim){this.useShim=this._shimState;this._shimState=false;}}this.dragCurrent=null;this.dragOvers={};},handleMouseMove:function(F){var C=this.dragCurrent;if(C){if(YAHOO.util.Event.isIE&&!F.button){this.stopEvent(F);return this.handleMouseUp(F);}else{if(F.clientX<0||F.clientY<0){}}if(!this.dragThreshMet){var E=Math.abs(this.startX-YAHOO.util.Event.getPageX(F));var D=Math.abs(this.startY-YAHOO.util.Event.getPageY(F));if(E>this.clickPixelThresh||D>this.clickPixelThresh){this.startDrag(this.startX,this.startY);}}if(this.dragThreshMet){if(C&&C.events.b4Drag){C.b4Drag(F);C.fireEvent("b4DragEvent",{e:F});}if(C&&C.events.drag){C.onDrag(F);C.fireEvent("dragEvent",{e:F});}if(C){this.fireEvents(F,false);}}this.stopEvent(F);}},fireEvents:function(V,L){var a=this.dragCurrent;if(!a||a.isLocked()||a.dragOnly){return;}var N=YAHOO.util.Event.getPageX(V),M=YAHOO.util.Event.getPageY(V),P=new YAHOO.util.Point(N,M),K=a.getTargetCoord(P.x,P.y),F=a.getDragEl(),E=["out","over","drop","enter"],U=new YAHOO.util.Region(K.y,K.x+F.offsetWidth,K.y+F.offsetHeight,K.x),I=[],D={},Q=[],c={outEvts:[],overEvts:[],dropEvts:[],enterEvts:[]};for(var S in this.dragOvers){var d=this.dragOvers[S];if(!this.isTypeOfDD(d)){continue;
+}if(!this.isOverTarget(P,d,this.mode,U)){c.outEvts.push(d);}I[S]=true;delete this.dragOvers[S];}for(var R in a.groups){if("string"!=typeof R){continue;}for(S in this.ids[R]){var G=this.ids[R][S];if(!this.isTypeOfDD(G)){continue;}if(G.isTarget&&!G.isLocked()&&G!=a){if(this.isOverTarget(P,G,this.mode,U)){D[R]=true;if(L){c.dropEvts.push(G);}else{if(!I[G.id]){c.enterEvts.push(G);}else{c.overEvts.push(G);}this.dragOvers[G.id]=G;}}}}}this.interactionInfo={out:c.outEvts,enter:c.enterEvts,over:c.overEvts,drop:c.dropEvts,point:P,draggedRegion:U,sourceRegion:this.locationCache[a.id],validDrop:L};for(var C in D){Q.push(C);}if(L&&!c.dropEvts.length){this.interactionInfo.validDrop=false;if(a.events.invalidDrop){a.onInvalidDrop(V);a.fireEvent("invalidDropEvent",{e:V});}}for(S=0;S<E.length;S++){var Y=null;if(c[E[S]+"Evts"]){Y=c[E[S]+"Evts"];}if(Y&&Y.length){var H=E[S].charAt(0).toUpperCase()+E[S].substr(1),X="onDrag"+H,J="b4Drag"+H,O="drag"+H+"Event",W="drag"+H;if(this.mode){if(a.events[J]){a[J](V,Y,Q);a.fireEvent(J+"Event",{event:V,info:Y,group:Q});}if(a.events[W]){a[X](V,Y,Q);a.fireEvent(O,{event:V,info:Y,group:Q});}}else{for(var Z=0,T=Y.length;Z<T;++Z){if(a.events[J]){a[J](V,Y[Z].id,Q[0]);a.fireEvent(J+"Event",{event:V,info:Y[Z].id,group:Q[0]});}if(a.events[W]){a[X](V,Y[Z].id,Q[0]);a.fireEvent(O,{event:V,info:Y[Z].id,group:Q[0]});}}}}}},getBestMatch:function(E){var G=null;var D=E.length;if(D==1){G=E[0];}else{for(var F=0;F<D;++F){var C=E[F];if(this.mode==this.INTERSECT&&C.cursorIsOver){G=C;break;}else{if(!G||!G.overlap||(C.overlap&&G.overlap.getArea()<C.overlap.getArea())){G=C;}}}}return G;},refreshCache:function(D){var F=D||this.ids;for(var C in F){if("string"!=typeof C){continue;}for(var E in this.ids[C]){var G=this.ids[C][E];if(this.isTypeOfDD(G)){var H=this.getLocation(G);if(H){this.locationCache[G.id]=H;}else{delete this.locationCache[G.id];}}}}},verifyEl:function(D){try{if(D){var C=D.offsetParent;if(C){return true;}}}catch(E){}return false;},getLocation:function(H){if(!this.isTypeOfDD(H)){return null;}var F=H.getEl(),K,E,D,M,L,N,C,J,G;try{K=YAHOO.util.Dom.getXY(F);}catch(I){}if(!K){return null;}E=K[0];D=E+F.offsetWidth;M=K[1];L=M+F.offsetHeight;N=M-H.padding[0];C=D+H.padding[1];J=L+H.padding[2];G=E-H.padding[3];return new YAHOO.util.Region(N,C,J,G);},isOverTarget:function(K,C,E,F){var G=this.locationCache[C.id];if(!G||!this.useCache){G=this.getLocation(C);this.locationCache[C.id]=G;}if(!G){return false;}C.cursorIsOver=G.contains(K);var J=this.dragCurrent;if(!J||(!E&&!J.constrainX&&!J.constrainY)){return C.cursorIsOver;}C.overlap=null;if(!F){var H=J.getTargetCoord(K.x,K.y);var D=J.getDragEl();F=new YAHOO.util.Region(H.y,H.x+D.offsetWidth,H.y+D.offsetHeight,H.x);}var I=F.intersect(G);if(I){C.overlap=I;return(E)?true:C.cursorIsOver;}else{return false;}},_onUnload:function(D,C){this.unregAll();},unregAll:function(){if(this.dragCurrent){this.stopDrag();this.dragCurrent=null;}this._execOnAll("unreg",[]);this.ids={};},elementCache:{},getElWrapper:function(D){var C=this.elementCache[D];if(!C||!C.el){C=this.elementCache[D]=new this.ElementWrapper(YAHOO.util.Dom.get(D));}return C;},getElement:function(C){return YAHOO.util.Dom.get(C);},getCss:function(D){var C=YAHOO.util.Dom.get(D);return(C)?C.style:null;},ElementWrapper:function(C){this.el=C||null;this.id=this.el&&C.id;this.css=this.el&&C.style;},getPosX:function(C){return YAHOO.util.Dom.getX(C);},getPosY:function(C){return YAHOO.util.Dom.getY(C);},swapNode:function(E,C){if(E.swapNode){E.swapNode(C);}else{var F=C.parentNode;var D=C.nextSibling;if(D==E){F.insertBefore(E,C);}else{if(C==E.nextSibling){F.insertBefore(C,E);}else{E.parentNode.replaceChild(C,E);F.insertBefore(E,D);}}}},getScroll:function(){var E,C,F=document.documentElement,D=document.body;if(F&&(F.scrollTop||F.scrollLeft)){E=F.scrollTop;C=F.scrollLeft;}else{if(D){E=D.scrollTop;C=D.scrollLeft;}else{}}return{top:E,left:C};},getStyle:function(D,C){return YAHOO.util.Dom.getStyle(D,C);},getScrollTop:function(){return this.getScroll().top;},getScrollLeft:function(){return this.getScroll().left;},moveToEl:function(C,E){var D=YAHOO.util.Dom.getXY(E);YAHOO.util.Dom.setXY(C,D);},getClientHeight:function(){return YAHOO.util.Dom.getViewportHeight();},getClientWidth:function(){return YAHOO.util.Dom.getViewportWidth();},numericSort:function(D,C){return(D-C);},_timeoutCount:0,_addListeners:function(){var C=YAHOO.util.DDM;if(YAHOO.util.Event&&document){C._onLoad();}else{if(C._timeoutCount>2000){}else{setTimeout(C._addListeners,10);if(document&&document.body){C._timeoutCount+=1;}}}},handleWasClicked:function(C,E){if(this.isHandle(E,C.id)){return true;}else{var D=C.parentNode;while(D){if(this.isHandle(E,D.id)){return true;}else{D=D.parentNode;}}}return false;}};}();YAHOO.util.DDM=YAHOO.util.DragDropMgr;YAHOO.util.DDM._addListeners();}(function(){var A=YAHOO.util.Event;var B=YAHOO.util.Dom;YAHOO.util.DragDrop=function(E,C,D){if(E){this.init(E,C,D);}};YAHOO.util.DragDrop.prototype={events:null,on:function(){this.subscribe.apply(this,arguments);},id:null,config:null,dragElId:null,handleElId:null,invalidHandleTypes:null,invalidHandleIds:null,invalidHandleClasses:null,startPageX:0,startPageY:0,groups:null,locked:false,lock:function(){this.locked=true;},unlock:function(){this.locked=false;},isTarget:true,padding:null,dragOnly:false,useShim:false,_domRef:null,__ygDragDrop:true,constrainX:false,constrainY:false,minX:0,maxX:0,minY:0,maxY:0,deltaX:0,deltaY:0,maintainOffset:false,xTicks:null,yTicks:null,primaryButtonOnly:true,available:false,hasOuterHandles:false,cursorIsOver:false,overlap:null,b4StartDrag:function(C,D){},startDrag:function(C,D){},b4Drag:function(C){},onDrag:function(C){},onDragEnter:function(C,D){},b4DragOver:function(C){},onDragOver:function(C,D){},b4DragOut:function(C){},onDragOut:function(C,D){},b4DragDrop:function(C){},onDragDrop:function(C,D){},onInvalidDrop:function(C){},b4EndDrag:function(C){},endDrag:function(C){},b4MouseDown:function(C){},onMouseDown:function(C){},onMouseUp:function(C){},onAvailable:function(){},getEl:function(){if(!this._domRef){this._domRef=B.get(this.id);
+}return this._domRef;},getDragEl:function(){return B.get(this.dragElId);},init:function(F,C,D){this.initTarget(F,C,D);A.on(this._domRef||this.id,"mousedown",this.handleMouseDown,this,true);for(var E in this.events){this.createEvent(E+"Event");}},initTarget:function(E,C,D){this.config=D||{};this.events={};this.DDM=YAHOO.util.DDM;this.groups={};if(typeof E!=="string"){this._domRef=E;E=B.generateId(E);}this.id=E;this.addToGroup((C)?C:"default");this.handleElId=E;A.onAvailable(E,this.handleOnAvailable,this,true);this.setDragElId(E);this.invalidHandleTypes={A:"A"};this.invalidHandleIds={};this.invalidHandleClasses=[];this.applyConfig();},applyConfig:function(){this.events={mouseDown:true,b4MouseDown:true,mouseUp:true,b4StartDrag:true,startDrag:true,b4EndDrag:true,endDrag:true,drag:true,b4Drag:true,invalidDrop:true,b4DragOut:true,dragOut:true,dragEnter:true,b4DragOver:true,dragOver:true,b4DragDrop:true,dragDrop:true};if(this.config.events){for(var C in this.config.events){if(this.config.events[C]===false){this.events[C]=false;}}}this.padding=this.config.padding||[0,0,0,0];this.isTarget=(this.config.isTarget!==false);this.maintainOffset=(this.config.maintainOffset);this.primaryButtonOnly=(this.config.primaryButtonOnly!==false);this.dragOnly=((this.config.dragOnly===true)?true:false);this.useShim=((this.config.useShim===true)?true:false);},handleOnAvailable:function(){this.available=true;this.resetConstraints();this.onAvailable();},setPadding:function(E,C,F,D){if(!C&&0!==C){this.padding=[E,E,E,E];}else{if(!F&&0!==F){this.padding=[E,C,E,C];}else{this.padding=[E,C,F,D];}}},setInitPosition:function(F,E){var G=this.getEl();if(!this.DDM.verifyEl(G)){if(G&&G.style&&(G.style.display=="none")){}else{}return;}var D=F||0;var C=E||0;var H=B.getXY(G);this.initPageX=H[0]-D;this.initPageY=H[1]-C;this.lastPageX=H[0];this.lastPageY=H[1];this.setStartPosition(H);},setStartPosition:function(D){var C=D||B.getXY(this.getEl());this.deltaSetXY=null;this.startPageX=C[0];this.startPageY=C[1];},addToGroup:function(C){this.groups[C]=true;this.DDM.regDragDrop(this,C);},removeFromGroup:function(C){if(this.groups[C]){delete this.groups[C];}this.DDM.removeDDFromGroup(this,C);},setDragElId:function(C){this.dragElId=C;},setHandleElId:function(C){if(typeof C!=="string"){C=B.generateId(C);}this.handleElId=C;this.DDM.regHandle(this.id,C);},setOuterHandleElId:function(C){if(typeof C!=="string"){C=B.generateId(C);}A.on(C,"mousedown",this.handleMouseDown,this,true);this.setHandleElId(C);this.hasOuterHandles=true;},unreg:function(){A.removeListener(this.id,"mousedown",this.handleMouseDown);this._domRef=null;this.DDM._remove(this);},isLocked:function(){return(this.DDM.isLocked()||this.locked);},handleMouseDown:function(J,I){var D=J.which||J.button;if(this.primaryButtonOnly&&D>1){return;}if(this.isLocked()){return;}var C=this.b4MouseDown(J),F=true;if(this.events.b4MouseDown){F=this.fireEvent("b4MouseDownEvent",J);}var E=this.onMouseDown(J),H=true;if(this.events.mouseDown){H=this.fireEvent("mouseDownEvent",J);}if((C===false)||(E===false)||(F===false)||(H===false)){return;}this.DDM.refreshCache(this.groups);var G=new YAHOO.util.Point(A.getPageX(J),A.getPageY(J));if(!this.hasOuterHandles&&!this.DDM.isOverTarget(G,this)){}else{if(this.clickValidator(J)){this.setStartPosition();this.DDM.handleMouseDown(J,this);this.DDM.stopEvent(J);}else{}}},clickValidator:function(D){var C=YAHOO.util.Event.getTarget(D);return(this.isValidHandleChild(C)&&(this.id==this.handleElId||this.DDM.handleWasClicked(C,this.id)));},getTargetCoord:function(E,D){var C=E-this.deltaX;var F=D-this.deltaY;if(this.constrainX){if(C<this.minX){C=this.minX;}if(C>this.maxX){C=this.maxX;}}if(this.constrainY){if(F<this.minY){F=this.minY;}if(F>this.maxY){F=this.maxY;}}C=this.getTick(C,this.xTicks);F=this.getTick(F,this.yTicks);return{x:C,y:F};},addInvalidHandleType:function(C){var D=C.toUpperCase();this.invalidHandleTypes[D]=D;},addInvalidHandleId:function(C){if(typeof C!=="string"){C=B.generateId(C);}this.invalidHandleIds[C]=C;},addInvalidHandleClass:function(C){this.invalidHandleClasses.push(C);},removeInvalidHandleType:function(C){var D=C.toUpperCase();delete this.invalidHandleTypes[D];},removeInvalidHandleId:function(C){if(typeof C!=="string"){C=B.generateId(C);}delete this.invalidHandleIds[C];},removeInvalidHandleClass:function(D){for(var E=0,C=this.invalidHandleClasses.length;E<C;++E){if(this.invalidHandleClasses[E]==D){delete this.invalidHandleClasses[E];}}},isValidHandleChild:function(F){var E=true;var H;try{H=F.nodeName.toUpperCase();}catch(G){H=F.nodeName;}E=E&&!this.invalidHandleTypes[H];E=E&&!this.invalidHandleIds[F.id];for(var D=0,C=this.invalidHandleClasses.length;E&&D<C;++D){E=!B.hasClass(F,this.invalidHandleClasses[D]);}return E;},setXTicks:function(F,C){this.xTicks=[];this.xTickSize=C;var E={};for(var D=this.initPageX;D>=this.minX;D=D-C){if(!E[D]){this.xTicks[this.xTicks.length]=D;E[D]=true;}}for(D=this.initPageX;D<=this.maxX;D=D+C){if(!E[D]){this.xTicks[this.xTicks.length]=D;E[D]=true;}}this.xTicks.sort(this.DDM.numericSort);},setYTicks:function(F,C){this.yTicks=[];this.yTickSize=C;var E={};for(var D=this.initPageY;D>=this.minY;D=D-C){if(!E[D]){this.yTicks[this.yTicks.length]=D;E[D]=true;}}for(D=this.initPageY;D<=this.maxY;D=D+C){if(!E[D]){this.yTicks[this.yTicks.length]=D;E[D]=true;}}this.yTicks.sort(this.DDM.numericSort);},setXConstraint:function(E,D,C){this.leftConstraint=parseInt(E,10);this.rightConstraint=parseInt(D,10);this.minX=this.initPageX-this.leftConstraint;this.maxX=this.initPageX+this.rightConstraint;if(C){this.setXTicks(this.initPageX,C);}this.constrainX=true;},clearConstraints:function(){this.constrainX=false;this.constrainY=false;this.clearTicks();},clearTicks:function(){this.xTicks=null;this.yTicks=null;this.xTickSize=0;this.yTickSize=0;},setYConstraint:function(C,E,D){this.topConstraint=parseInt(C,10);this.bottomConstraint=parseInt(E,10);this.minY=this.initPageY-this.topConstraint;this.maxY=this.initPageY+this.bottomConstraint;if(D){this.setYTicks(this.initPageY,D);
+}this.constrainY=true;},resetConstraints:function(){if(this.initPageX||this.initPageX===0){var D=(this.maintainOffset)?this.lastPageX-this.initPageX:0;var C=(this.maintainOffset)?this.lastPageY-this.initPageY:0;this.setInitPosition(D,C);}else{this.setInitPosition();}if(this.constrainX){this.setXConstraint(this.leftConstraint,this.rightConstraint,this.xTickSize);}if(this.constrainY){this.setYConstraint(this.topConstraint,this.bottomConstraint,this.yTickSize);}},getTick:function(I,F){if(!F){return I;}else{if(F[0]>=I){return F[0];}else{for(var D=0,C=F.length;D<C;++D){var E=D+1;if(F[E]&&F[E]>=I){var H=I-F[D];var G=F[E]-I;return(G>H)?F[D]:F[E];}}return F[F.length-1];}}},toString:function(){return("DragDrop "+this.id);}};YAHOO.augment(YAHOO.util.DragDrop,YAHOO.util.EventProvider);})();YAHOO.util.DD=function(C,A,B){if(C){this.init(C,A,B);}};YAHOO.extend(YAHOO.util.DD,YAHOO.util.DragDrop,{scroll:true,autoOffset:function(C,B){var A=C-this.startPageX;var D=B-this.startPageY;this.setDelta(A,D);},setDelta:function(B,A){this.deltaX=B;this.deltaY=A;},setDragElPos:function(C,B){var A=this.getDragEl();this.alignElWithMouse(A,C,B);},alignElWithMouse:function(C,G,F){var E=this.getTargetCoord(G,F);if(!this.deltaSetXY){var H=[E.x,E.y];YAHOO.util.Dom.setXY(C,H);var D=parseInt(YAHOO.util.Dom.getStyle(C,"left"),10);var B=parseInt(YAHOO.util.Dom.getStyle(C,"top"),10);this.deltaSetXY=[D-E.x,B-E.y];}else{YAHOO.util.Dom.setStyle(C,"left",(E.x+this.deltaSetXY[0])+"px");YAHOO.util.Dom.setStyle(C,"top",(E.y+this.deltaSetXY[1])+"px");}this.cachePosition(E.x,E.y);var A=this;setTimeout(function(){A.autoScroll.call(A,E.x,E.y,C.offsetHeight,C.offsetWidth);},0);},cachePosition:function(B,A){if(B){this.lastPageX=B;this.lastPageY=A;}else{var C=YAHOO.util.Dom.getXY(this.getEl());this.lastPageX=C[0];this.lastPageY=C[1];}},autoScroll:function(J,I,E,K){if(this.scroll){var L=this.DDM.getClientHeight();var B=this.DDM.getClientWidth();var N=this.DDM.getScrollTop();var D=this.DDM.getScrollLeft();var H=E+I;var M=K+J;var G=(L+N-I-this.deltaY);var F=(B+D-J-this.deltaX);var C=40;var A=(document.all)?80:30;if(H>L&&G<C){window.scrollTo(D,N+A);}if(I<N&&N>0&&I-N<C){window.scrollTo(D,N-A);}if(M>B&&F<C){window.scrollTo(D+A,N);}if(J<D&&D>0&&J-D<C){window.scrollTo(D-A,N);}}},applyConfig:function(){YAHOO.util.DD.superclass.applyConfig.call(this);this.scroll=(this.config.scroll!==false);},b4MouseDown:function(A){this.setStartPosition();this.autoOffset(YAHOO.util.Event.getPageX(A),YAHOO.util.Event.getPageY(A));},b4Drag:function(A){this.setDragElPos(YAHOO.util.Event.getPageX(A),YAHOO.util.Event.getPageY(A));},toString:function(){return("DD "+this.id);}});YAHOO.util.DDProxy=function(C,A,B){if(C){this.init(C,A,B);this.initFrame();}};YAHOO.util.DDProxy.dragElId="ygddfdiv";YAHOO.extend(YAHOO.util.DDProxy,YAHOO.util.DD,{resizeFrame:true,centerFrame:false,createFrame:function(){var B=this,A=document.body;if(!A||!A.firstChild){setTimeout(function(){B.createFrame();},50);return;}var F=this.getDragEl(),E=YAHOO.util.Dom;if(!F){F=document.createElement("div");F.id=this.dragElId;var D=F.style;D.position="absolute";D.visibility="hidden";D.cursor="move";D.border="2px solid #aaa";D.zIndex=999;D.height="25px";D.width="25px";var C=document.createElement("div");E.setStyle(C,"height","100%");E.setStyle(C,"width","100%");E.setStyle(C,"background-color","#ccc");E.setStyle(C,"opacity","0");F.appendChild(C);A.insertBefore(F,A.firstChild);}},initFrame:function(){this.createFrame();},applyConfig:function(){YAHOO.util.DDProxy.superclass.applyConfig.call(this);this.resizeFrame=(this.config.resizeFrame!==false);this.centerFrame=(this.config.centerFrame);this.setDragElId(this.config.dragElId||YAHOO.util.DDProxy.dragElId);},showFrame:function(E,D){var C=this.getEl();var A=this.getDragEl();var B=A.style;this._resizeProxy();if(this.centerFrame){this.setDelta(Math.round(parseInt(B.width,10)/2),Math.round(parseInt(B.height,10)/2));}this.setDragElPos(E,D);YAHOO.util.Dom.setStyle(A,"visibility","visible");},_resizeProxy:function(){if(this.resizeFrame){var H=YAHOO.util.Dom;var B=this.getEl();var C=this.getDragEl();var G=parseInt(H.getStyle(C,"borderTopWidth"),10);var I=parseInt(H.getStyle(C,"borderRightWidth"),10);var F=parseInt(H.getStyle(C,"borderBottomWidth"),10);var D=parseInt(H.getStyle(C,"borderLeftWidth"),10);if(isNaN(G)){G=0;}if(isNaN(I)){I=0;}if(isNaN(F)){F=0;}if(isNaN(D)){D=0;}var E=Math.max(0,B.offsetWidth-I-D);var A=Math.max(0,B.offsetHeight-G-F);H.setStyle(C,"width",E+"px");H.setStyle(C,"height",A+"px");}},b4MouseDown:function(B){this.setStartPosition();var A=YAHOO.util.Event.getPageX(B);var C=YAHOO.util.Event.getPageY(B);this.autoOffset(A,C);},b4StartDrag:function(A,B){this.showFrame(A,B);},b4EndDrag:function(A){YAHOO.util.Dom.setStyle(this.getDragEl(),"visibility","hidden");},endDrag:function(D){var C=YAHOO.util.Dom;var B=this.getEl();var A=this.getDragEl();C.setStyle(A,"visibility","");C.setStyle(B,"visibility","hidden");YAHOO.util.DDM.moveToEl(B,A);C.setStyle(A,"visibility","hidden");C.setStyle(B,"visibility","");},toString:function(){return("DDProxy "+this.id);}});YAHOO.util.DDTarget=function(C,A,B){if(C){this.initTarget(C,A,B);}};YAHOO.extend(YAHOO.util.DDTarget,YAHOO.util.DragDrop,{toString:function(){return("DDTarget "+this.id);}});YAHOO.register("dragdrop",YAHOO.util.DragDropMgr,{version:"2.7.0",build:"1796"});/*
+Copyright (c) 2009, Yahoo! Inc. All rights reserved.
+Code licensed under the BSD License:
+http://developer.yahoo.net/yui/license.txt
+version: 2.7.0
+*/
+(function(){var B=YAHOO.util.Dom.getXY,A=YAHOO.util.Event,D=Array.prototype.slice;function C(G,E,F,H){C.ANIM_AVAIL=(!YAHOO.lang.isUndefined(YAHOO.util.Anim));if(G){this.init(G,E,true);this.initSlider(H);this.initThumb(F);}}YAHOO.lang.augmentObject(C,{getHorizSlider:function(F,G,I,H,E){return new C(F,F,new YAHOO.widget.SliderThumb(G,F,I,H,0,0,E),"horiz");},getVertSlider:function(G,H,E,I,F){return new C(G,G,new YAHOO.widget.SliderThumb(H,G,0,0,E,I,F),"vert");},getSliderRegion:function(G,H,J,I,E,K,F){return new C(G,G,new YAHOO.widget.SliderThumb(H,G,J,I,E,K,F),"region");},SOURCE_UI_EVENT:1,SOURCE_SET_VALUE:2,SOURCE_KEY_EVENT:3,ANIM_AVAIL:false},true);YAHOO.extend(C,YAHOO.util.DragDrop,{_mouseDown:false,dragOnly:true,initSlider:function(E){this.type=E;this.createEvent("change",this);this.createEvent("slideStart",this);this.createEvent("slideEnd",this);this.isTarget=false;this.animate=C.ANIM_AVAIL;this.backgroundEnabled=true;this.tickPause=40;this.enableKeys=true;this.keyIncrement=20;this.moveComplete=true;this.animationDuration=0.2;this.SOURCE_UI_EVENT=1;this.SOURCE_SET_VALUE=2;this.valueChangeSource=0;this._silent=false;this.lastOffset=[0,0];},initThumb:function(F){var E=this;this.thumb=F;F.cacheBetweenDrags=true;if(F._isHoriz&&F.xTicks&&F.xTicks.length){this.tickPause=Math.round(360/F.xTicks.length);}else{if(F.yTicks&&F.yTicks.length){this.tickPause=Math.round(360/F.yTicks.length);}}F.onAvailable=function(){return E.setStartSliderState();};F.onMouseDown=function(){E._mouseDown=true;return E.focus();};F.startDrag=function(){E._slideStart();};F.onDrag=function(){E.fireEvents(true);};F.onMouseUp=function(){E.thumbMouseUp();};},onAvailable:function(){this._bindKeyEvents();},_bindKeyEvents:function(){A.on(this.id,"keydown",this.handleKeyDown,this,true);A.on(this.id,"keypress",this.handleKeyPress,this,true);},handleKeyPress:function(F){if(this.enableKeys){var E=A.getCharCode(F);switch(E){case 37:case 38:case 39:case 40:case 36:case 35:A.preventDefault(F);break;default:}}},handleKeyDown:function(J){if(this.enableKeys){var G=A.getCharCode(J),F=this.thumb,H=this.getXValue(),E=this.getYValue(),I=true;switch(G){case 37:H-=this.keyIncrement;break;case 38:E-=this.keyIncrement;break;case 39:H+=this.keyIncrement;break;case 40:E+=this.keyIncrement;break;case 36:H=F.leftConstraint;E=F.topConstraint;break;case 35:H=F.rightConstraint;E=F.bottomConstraint;break;default:I=false;}if(I){if(F._isRegion){this._setRegionValue(C.SOURCE_KEY_EVENT,H,E,true);}else{this._setValue(C.SOURCE_KEY_EVENT,(F._isHoriz?H:E),true);}A.stopEvent(J);}}},setStartSliderState:function(){this.setThumbCenterPoint();this.baselinePos=B(this.getEl());this.thumb.startOffset=this.thumb.getOffsetFromParent(this.baselinePos);if(this.thumb._isRegion){if(this.deferredSetRegionValue){this._setRegionValue.apply(this,this.deferredSetRegionValue);this.deferredSetRegionValue=null;}else{this.setRegionValue(0,0,true,true,true);}}else{if(this.deferredSetValue){this._setValue.apply(this,this.deferredSetValue);this.deferredSetValue=null;}else{this.setValue(0,true,true,true);}}},setThumbCenterPoint:function(){var E=this.thumb.getEl();if(E){this.thumbCenterPoint={x:parseInt(E.offsetWidth/2,10),y:parseInt(E.offsetHeight/2,10)};}},lock:function(){this.thumb.lock();this.locked=true;},unlock:function(){this.thumb.unlock();this.locked=false;},thumbMouseUp:function(){this._mouseDown=false;if(!this.isLocked()&&!this.moveComplete){this.endMove();}},onMouseUp:function(){this._mouseDown=false;if(this.backgroundEnabled&&!this.isLocked()&&!this.moveComplete){this.endMove();}},getThumb:function(){return this.thumb;},focus:function(){this.valueChangeSource=C.SOURCE_UI_EVENT;var E=this.getEl();if(E.focus){try{E.focus();}catch(F){}}this.verifyOffset();return !this.isLocked();},onChange:function(E,F){},onSlideStart:function(){},onSlideEnd:function(){},getValue:function(){return this.thumb.getValue();},getXValue:function(){return this.thumb.getXValue();},getYValue:function(){return this.thumb.getYValue();},setValue:function(){var E=D.call(arguments);E.unshift(C.SOURCE_SET_VALUE);return this._setValue.apply(this,E);},_setValue:function(I,L,G,H,E){var F=this.thumb,K,J;if(!F.available){this.deferredSetValue=arguments;return false;}if(this.isLocked()&&!H){return false;}if(isNaN(L)){return false;}if(F._isRegion){return false;}this._silent=E;this.valueChangeSource=I||C.SOURCE_SET_VALUE;F.lastOffset=[L,L];this.verifyOffset(true);this._slideStart();if(F._isHoriz){K=F.initPageX+L+this.thumbCenterPoint.x;this.moveThumb(K,F.initPageY,G);}else{J=F.initPageY+L+this.thumbCenterPoint.y;this.moveThumb(F.initPageX,J,G);}return true;},setRegionValue:function(){var E=D.call(arguments);E.unshift(C.SOURCE_SET_VALUE);return this._setRegionValue.apply(this,E);},_setRegionValue:function(F,J,H,I,G,K){var L=this.thumb,E,M;if(!L.available){this.deferredSetRegionValue=arguments;return false;}if(this.isLocked()&&!G){return false;}if(isNaN(J)){return false;}if(!L._isRegion){return false;}this._silent=K;this.valueChangeSource=F||C.SOURCE_SET_VALUE;L.lastOffset=[J,H];this.verifyOffset(true);this._slideStart();E=L.initPageX+J+this.thumbCenterPoint.x;M=L.initPageY+H+this.thumbCenterPoint.y;this.moveThumb(E,M,I);return true;},verifyOffset:function(F){var G=B(this.getEl()),E=this.thumb;if(!this.thumbCenterPoint||!this.thumbCenterPoint.x){this.setThumbCenterPoint();}if(G){if(G[0]!=this.baselinePos[0]||G[1]!=this.baselinePos[1]){this.setInitPosition();this.baselinePos=G;E.initPageX=this.initPageX+E.startOffset[0];E.initPageY=this.initPageY+E.startOffset[1];E.deltaSetXY=null;this.resetThumbConstraints();return false;}}return true;},moveThumb:function(K,J,I,G){var L=this.thumb,M=this,F,E,H;if(!L.available){return;}L.setDelta(this.thumbCenterPoint.x,this.thumbCenterPoint.y);E=L.getTargetCoord(K,J);F=[Math.round(E.x),Math.round(E.y)];if(this.animate&&L._graduated&&!I){this.lock();this.curCoord=B(this.thumb.getEl());this.curCoord=[Math.round(this.curCoord[0]),Math.round(this.curCoord[1])];setTimeout(function(){M.moveOneTick(F);
+},this.tickPause);}else{if(this.animate&&C.ANIM_AVAIL&&!I){this.lock();H=new YAHOO.util.Motion(L.id,{points:{to:F}},this.animationDuration,YAHOO.util.Easing.easeOut);H.onComplete.subscribe(function(){M.unlock();if(!M._mouseDown){M.endMove();}});H.animate();}else{L.setDragElPos(K,J);if(!G&&!this._mouseDown){this.endMove();}}}},_slideStart:function(){if(!this._sliding){if(!this._silent){this.onSlideStart();this.fireEvent("slideStart");}this._sliding=true;}},_slideEnd:function(){if(this._sliding&&this.moveComplete){var E=this._silent;this._sliding=false;this._silent=false;this.moveComplete=false;if(!E){this.onSlideEnd();this.fireEvent("slideEnd");}}},moveOneTick:function(F){var H=this.thumb,G=this,I=null,E,J;if(H._isRegion){I=this._getNextX(this.curCoord,F);E=(I!==null)?I[0]:this.curCoord[0];I=this._getNextY(this.curCoord,F);J=(I!==null)?I[1]:this.curCoord[1];I=E!==this.curCoord[0]||J!==this.curCoord[1]?[E,J]:null;}else{if(H._isHoriz){I=this._getNextX(this.curCoord,F);}else{I=this._getNextY(this.curCoord,F);}}if(I){this.curCoord=I;this.thumb.alignElWithMouse(H.getEl(),I[0]+this.thumbCenterPoint.x,I[1]+this.thumbCenterPoint.y);if(!(I[0]==F[0]&&I[1]==F[1])){setTimeout(function(){G.moveOneTick(F);},this.tickPause);}else{this.unlock();if(!this._mouseDown){this.endMove();}}}else{this.unlock();if(!this._mouseDown){this.endMove();}}},_getNextX:function(E,F){var H=this.thumb,J,G=[],I=null;if(E[0]>F[0]){J=H.tickSize-this.thumbCenterPoint.x;G=H.getTargetCoord(E[0]-J,E[1]);I=[G.x,G.y];}else{if(E[0]<F[0]){J=H.tickSize+this.thumbCenterPoint.x;G=H.getTargetCoord(E[0]+J,E[1]);I=[G.x,G.y];}else{}}return I;},_getNextY:function(E,F){var H=this.thumb,J,G=[],I=null;if(E[1]>F[1]){J=H.tickSize-this.thumbCenterPoint.y;G=H.getTargetCoord(E[0],E[1]-J);I=[G.x,G.y];}else{if(E[1]<F[1]){J=H.tickSize+this.thumbCenterPoint.y;G=H.getTargetCoord(E[0],E[1]+J);I=[G.x,G.y];}else{}}return I;},b4MouseDown:function(E){if(!this.backgroundEnabled){return false;}this.thumb.autoOffset();this.resetThumbConstraints();},onMouseDown:function(F){if(!this.backgroundEnabled||this.isLocked()){return false;}this._mouseDown=true;var E=A.getPageX(F),G=A.getPageY(F);this.focus();this._slideStart();this.moveThumb(E,G);},onDrag:function(F){if(this.backgroundEnabled&&!this.isLocked()){var E=A.getPageX(F),G=A.getPageY(F);this.moveThumb(E,G,true,true);this.fireEvents();}},endMove:function(){this.unlock();this.fireEvents();this.moveComplete=true;this._slideEnd();},resetThumbConstraints:function(){var E=this.thumb;E.setXConstraint(E.leftConstraint,E.rightConstraint,E.xTickSize);E.setYConstraint(E.topConstraint,E.bottomConstraint,E.xTickSize);},fireEvents:function(G){var F=this.thumb,I,H,E;if(!G){F.cachePosition();}if(!this.isLocked()){if(F._isRegion){I=F.getXValue();H=F.getYValue();if(I!=this.previousX||H!=this.previousY){if(!this._silent){this.onChange(I,H);this.fireEvent("change",{x:I,y:H});}}this.previousX=I;this.previousY=H;}else{E=F.getValue();if(E!=this.previousVal){if(!this._silent){this.onChange(E);this.fireEvent("change",E);}}this.previousVal=E;}}},toString:function(){return("Slider ("+this.type+") "+this.id);}});YAHOO.lang.augmentProto(C,YAHOO.util.EventProvider);YAHOO.widget.Slider=C;})();YAHOO.widget.SliderThumb=function(G,B,E,D,A,F,C){if(G){YAHOO.widget.SliderThumb.superclass.constructor.call(this,G,B);this.parentElId=B;}this.isTarget=false;this.tickSize=C;this.maintainOffset=true;this.initSlider(E,D,A,F,C);this.scroll=false;};YAHOO.extend(YAHOO.widget.SliderThumb,YAHOO.util.DD,{startOffset:null,dragOnly:true,_isHoriz:false,_prevVal:0,_graduated:false,getOffsetFromParent0:function(C){var A=YAHOO.util.Dom.getXY(this.getEl()),B=C||YAHOO.util.Dom.getXY(this.parentElId);return[(A[0]-B[0]),(A[1]-B[1])];},getOffsetFromParent:function(H){var A=this.getEl(),E,I,F,B,K,D,C,J,G;if(!this.deltaOffset){I=YAHOO.util.Dom.getXY(A);F=H||YAHOO.util.Dom.getXY(this.parentElId);E=[(I[0]-F[0]),(I[1]-F[1])];B=parseInt(YAHOO.util.Dom.getStyle(A,"left"),10);K=parseInt(YAHOO.util.Dom.getStyle(A,"top"),10);D=B-E[0];C=K-E[1];if(isNaN(D)||isNaN(C)){}else{this.deltaOffset=[D,C];}}else{J=parseInt(YAHOO.util.Dom.getStyle(A,"left"),10);G=parseInt(YAHOO.util.Dom.getStyle(A,"top"),10);E=[J+this.deltaOffset[0],G+this.deltaOffset[1]];}return E;},initSlider:function(D,C,A,E,B){this.initLeft=D;this.initRight=C;this.initUp=A;this.initDown=E;this.setXConstraint(D,C,B);this.setYConstraint(A,E,B);if(B&&B>1){this._graduated=true;}this._isHoriz=(D||C);this._isVert=(A||E);this._isRegion=(this._isHoriz&&this._isVert);},clearTicks:function(){YAHOO.widget.SliderThumb.superclass.clearTicks.call(this);this.tickSize=0;this._graduated=false;},getValue:function(){return(this._isHoriz)?this.getXValue():this.getYValue();},getXValue:function(){if(!this.available){return 0;}var A=this.getOffsetFromParent();if(YAHOO.lang.isNumber(A[0])){this.lastOffset=A;return(A[0]-this.startOffset[0]);}else{return(this.lastOffset[0]-this.startOffset[0]);}},getYValue:function(){if(!this.available){return 0;}var A=this.getOffsetFromParent();if(YAHOO.lang.isNumber(A[1])){this.lastOffset=A;return(A[1]-this.startOffset[1]);}else{return(this.lastOffset[1]-this.startOffset[1]);}},toString:function(){return"SliderThumb "+this.id;},onChange:function(A,B){}});(function(){var A=YAHOO.util.Event,B=YAHOO.widget;function C(I,F,H,D){var G=this,J={min:false,max:false},E,K;this.minSlider=I;this.maxSlider=F;this.activeSlider=I;this.isHoriz=I.thumb._isHoriz;E=this.minSlider.thumb.onMouseDown;K=this.maxSlider.thumb.onMouseDown;this.minSlider.thumb.onMouseDown=function(){G.activeSlider=G.minSlider;E.apply(this,arguments);};this.maxSlider.thumb.onMouseDown=function(){G.activeSlider=G.maxSlider;K.apply(this,arguments);};this.minSlider.thumb.onAvailable=function(){I.setStartSliderState();J.min=true;if(J.max){G.fireEvent("ready",G);}};this.maxSlider.thumb.onAvailable=function(){F.setStartSliderState();J.max=true;if(J.min){G.fireEvent("ready",G);}};I.onMouseDown=F.onMouseDown=function(L){return this.backgroundEnabled&&G._handleMouseDown(L);
+};I.onDrag=F.onDrag=function(L){G._handleDrag(L);};I.onMouseUp=F.onMouseUp=function(L){G._handleMouseUp(L);};I._bindKeyEvents=function(){G._bindKeyEvents(this);};F._bindKeyEvents=function(){};I.subscribe("change",this._handleMinChange,I,this);I.subscribe("slideStart",this._handleSlideStart,I,this);I.subscribe("slideEnd",this._handleSlideEnd,I,this);F.subscribe("change",this._handleMaxChange,F,this);F.subscribe("slideStart",this._handleSlideStart,F,this);F.subscribe("slideEnd",this._handleSlideEnd,F,this);this.createEvent("ready",this);this.createEvent("change",this);this.createEvent("slideStart",this);this.createEvent("slideEnd",this);D=YAHOO.lang.isArray(D)?D:[0,H];D[0]=Math.min(Math.max(parseInt(D[0],10)|0,0),H);D[1]=Math.max(Math.min(parseInt(D[1],10)|0,H),0);if(D[0]>D[1]){D.splice(0,2,D[1],D[0]);}this.minVal=D[0];this.maxVal=D[1];this.minSlider.setValue(this.minVal,true,true,true);this.maxSlider.setValue(this.maxVal,true,true,true);}C.prototype={minVal:-1,maxVal:-1,minRange:0,_handleSlideStart:function(E,D){this.fireEvent("slideStart",D);},_handleSlideEnd:function(E,D){this.fireEvent("slideEnd",D);},_handleDrag:function(D){B.Slider.prototype.onDrag.call(this.activeSlider,D);},_handleMinChange:function(){this.activeSlider=this.minSlider;this.updateValue();},_handleMaxChange:function(){this.activeSlider=this.maxSlider;this.updateValue();},_bindKeyEvents:function(D){A.on(D.id,"keydown",this._handleKeyDown,this,true);A.on(D.id,"keypress",this._handleKeyPress,this,true);},_handleKeyDown:function(D){this.activeSlider.handleKeyDown.apply(this.activeSlider,arguments);},_handleKeyPress:function(D){this.activeSlider.handleKeyPress.apply(this.activeSlider,arguments);},setValues:function(H,K,I,E,J){var F=this.minSlider,M=this.maxSlider,D=F.thumb,L=M.thumb,N=this,G={min:false,max:false};if(D._isHoriz){D.setXConstraint(D.leftConstraint,L.rightConstraint,D.tickSize);L.setXConstraint(D.leftConstraint,L.rightConstraint,L.tickSize);}else{D.setYConstraint(D.topConstraint,L.bottomConstraint,D.tickSize);L.setYConstraint(D.topConstraint,L.bottomConstraint,L.tickSize);}this._oneTimeCallback(F,"slideEnd",function(){G.min=true;if(G.max){N.updateValue(J);setTimeout(function(){N._cleanEvent(F,"slideEnd");N._cleanEvent(M,"slideEnd");},0);}});this._oneTimeCallback(M,"slideEnd",function(){G.max=true;if(G.min){N.updateValue(J);setTimeout(function(){N._cleanEvent(F,"slideEnd");N._cleanEvent(M,"slideEnd");},0);}});F.setValue(H,I,E,false);M.setValue(K,I,E,false);},setMinValue:function(F,H,I,E){var G=this.minSlider,D=this;this.activeSlider=G;D=this;this._oneTimeCallback(G,"slideEnd",function(){D.updateValue(E);setTimeout(function(){D._cleanEvent(G,"slideEnd");},0);});G.setValue(F,H,I);},setMaxValue:function(D,H,I,F){var G=this.maxSlider,E=this;this.activeSlider=G;this._oneTimeCallback(G,"slideEnd",function(){E.updateValue(F);setTimeout(function(){E._cleanEvent(G,"slideEnd");},0);});G.setValue(D,H,I);},updateValue:function(J){var E=this.minSlider.getValue(),K=this.maxSlider.getValue(),F=false,D,M,H,I,L,G;if(E!=this.minVal||K!=this.maxVal){F=true;D=this.minSlider.thumb;M=this.maxSlider.thumb;H=this.isHoriz?"x":"y";G=this.minSlider.thumbCenterPoint[H]+this.maxSlider.thumbCenterPoint[H];I=Math.max(K-G-this.minRange,0);L=Math.min(-E-G-this.minRange,0);if(this.isHoriz){I=Math.min(I,M.rightConstraint);D.setXConstraint(D.leftConstraint,I,D.tickSize);M.setXConstraint(L,M.rightConstraint,M.tickSize);}else{I=Math.min(I,M.bottomConstraint);D.setYConstraint(D.leftConstraint,I,D.tickSize);M.setYConstraint(L,M.bottomConstraint,M.tickSize);}}this.minVal=E;this.maxVal=K;if(F&&!J){this.fireEvent("change",this);}},selectActiveSlider:function(H){var E=this.minSlider,D=this.maxSlider,J=E.isLocked()||!E.backgroundEnabled,G=D.isLocked()||!E.backgroundEnabled,F=YAHOO.util.Event,I;if(J||G){this.activeSlider=J?D:E;}else{if(this.isHoriz){I=F.getPageX(H)-E.thumb.initPageX-E.thumbCenterPoint.x;}else{I=F.getPageY(H)-E.thumb.initPageY-E.thumbCenterPoint.y;}this.activeSlider=I*2>D.getValue()+E.getValue()?D:E;}},_handleMouseDown:function(D){if(!D._handled){D._handled=true;this.selectActiveSlider(D);return B.Slider.prototype.onMouseDown.call(this.activeSlider,D);}else{return false;}},_handleMouseUp:function(D){B.Slider.prototype.onMouseUp.apply(this.activeSlider,arguments);},_oneTimeCallback:function(F,D,E){F.subscribe(D,function(){F.unsubscribe(D,arguments.callee);E.apply({},[].slice.apply(arguments));});},_cleanEvent:function(K,E){var J,I,D,G,H,F;if(K.__yui_events&&K.events[E]){for(I=K.__yui_events.length;I>=0;--I){if(K.__yui_events[I].type===E){J=K.__yui_events[I];break;}}if(J){H=J.subscribers;F=[];G=0;for(I=0,D=H.length;I<D;++I){if(H[I]){F[G++]=H[I];}}J.subscribers=F;}}}};YAHOO.lang.augmentProto(C,YAHOO.util.EventProvider);B.Slider.getHorizDualSlider=function(H,J,K,G,F,D){var I=new B.SliderThumb(J,H,0,G,0,0,F),E=new B.SliderThumb(K,H,0,G,0,0,F);return new C(new B.Slider(H,H,I,"horiz"),new B.Slider(H,H,E,"horiz"),G,D);};B.Slider.getVertDualSlider=function(H,J,K,G,F,D){var I=new B.SliderThumb(J,H,0,0,0,G,F),E=new B.SliderThumb(K,H,0,0,0,G,F);return new B.DualSlider(new B.Slider(H,H,I,"vert"),new B.Slider(H,H,E,"vert"),G,D);};YAHOO.widget.DualSlider=C;})();YAHOO.register("slider",YAHOO.widget.Slider,{version:"2.7.0",build:"1796"});/*
+Copyright (c) 2009, Yahoo! Inc. All rights reserved.
+Code licensed under the BSD License:
+http://developer.yahoo.net/yui/license.txt
+version: 2.7.0
+*/
+YAHOO.util.Attribute=function(B,A){if(A){this.owner=A;this.configure(B,true);}};YAHOO.util.Attribute.prototype={name:undefined,value:null,owner:null,readOnly:false,writeOnce:false,_initialConfig:null,_written:false,method:null,setter:null,getter:null,validator:null,getValue:function(){var A=this.value;if(this.getter){A=this.getter.call(this.owner,this.name);}return A;},setValue:function(F,B){var E,A=this.owner,C=this.name;var D={type:C,prevValue:this.getValue(),newValue:F};if(this.readOnly||(this.writeOnce&&this._written)){return false;}if(this.validator&&!this.validator.call(A,F)){return false;}if(!B){E=A.fireBeforeChangeEvent(D);if(E===false){return false;}}if(this.setter){F=this.setter.call(A,F,this.name);if(F===undefined){}}if(this.method){this.method.call(A,F,this.name);}this.value=F;this._written=true;D.type=C;if(!B){this.owner.fireChangeEvent(D);}return true;},configure:function(B,C){B=B||{};if(C){this._written=false;}this._initialConfig=this._initialConfig||{};for(var A in B){if(B.hasOwnProperty(A)){this[A]=B[A];if(C){this._initialConfig[A]=B[A];}}}},resetValue:function(){return this.setValue(this._initialConfig.value);},resetConfig:function(){this.configure(this._initialConfig,true);},refresh:function(A){this.setValue(this.value,A);}};(function(){var A=YAHOO.util.Lang;YAHOO.util.AttributeProvider=function(){};YAHOO.util.AttributeProvider.prototype={_configs:null,get:function(C){this._configs=this._configs||{};var B=this._configs[C];if(!B||!this._configs.hasOwnProperty(C)){return null;}return B.getValue();},set:function(D,E,B){this._configs=this._configs||{};var C=this._configs[D];if(!C){return false;}return C.setValue(E,B);},getAttributeKeys:function(){this._configs=this._configs;var C=[],B;for(B in this._configs){if(A.hasOwnProperty(this._configs,B)&&!A.isUndefined(this._configs[B])){C[C.length]=B;}}return C;},setAttributes:function(D,B){for(var C in D){if(A.hasOwnProperty(D,C)){this.set(C,D[C],B);}}},resetValue:function(C,B){this._configs=this._configs||{};if(this._configs[C]){this.set(C,this._configs[C]._initialConfig.value,B);return true;}return false;},refresh:function(E,C){this._configs=this._configs||{};var F=this._configs;E=((A.isString(E))?[E]:E)||this.getAttributeKeys();for(var D=0,B=E.length;D<B;++D){if(F.hasOwnProperty(E[D])){this._configs[E[D]].refresh(C);}}},register:function(B,C){this.setAttributeConfig(B,C);},getAttributeConfig:function(C){this._configs=this._configs||{};var B=this._configs[C]||{};var D={};for(C in B){if(A.hasOwnProperty(B,C)){D[C]=B[C];}}return D;},setAttributeConfig:function(B,C,D){this._configs=this._configs||{};C=C||{};if(!this._configs[B]){C.name=B;this._configs[B]=this.createAttribute(C);}else{this._configs[B].configure(C,D);}},configureAttribute:function(B,C,D){this.setAttributeConfig(B,C,D);},resetAttributeConfig:function(B){this._configs=this._configs||{};this._configs[B].resetConfig();},subscribe:function(B,C){this._events=this._events||{};if(!(B in this._events)){this._events[B]=this.createEvent(B);}YAHOO.util.EventProvider.prototype.subscribe.apply(this,arguments);},on:function(){this.subscribe.apply(this,arguments);},addListener:function(){this.subscribe.apply(this,arguments);},fireBeforeChangeEvent:function(C){var B="before";B+=C.type.charAt(0).toUpperCase()+C.type.substr(1)+"Change";C.type=B;return this.fireEvent(C.type,C);},fireChangeEvent:function(B){B.type+="Change";return this.fireEvent(B.type,B);},createAttribute:function(B){return new YAHOO.util.Attribute(B,this);}};YAHOO.augment(YAHOO.util.AttributeProvider,YAHOO.util.EventProvider);})();(function(){var B=YAHOO.util.Dom,C=YAHOO.util.AttributeProvider;var A=function(D,E){this.init.apply(this,arguments);};A.DOM_EVENTS={"click":true,"dblclick":true,"keydown":true,"keypress":true,"keyup":true,"mousedown":true,"mousemove":true,"mouseout":true,"mouseover":true,"mouseup":true,"focus":true,"blur":true,"submit":true,"change":true};A.prototype={DOM_EVENTS:null,DEFAULT_HTML_SETTER:function(F,D){var E=this.get("element");if(E){E[D]=F;}},DEFAULT_HTML_GETTER:function(D){var E=this.get("element"),F;if(E){F=E[D];}return F;},appendChild:function(D){D=D.get?D.get("element"):D;return this.get("element").appendChild(D);},getElementsByTagName:function(D){return this.get("element").getElementsByTagName(D);},hasChildNodes:function(){return this.get("element").hasChildNodes();},insertBefore:function(D,E){D=D.get?D.get("element"):D;E=(E&&E.get)?E.get("element"):E;return this.get("element").insertBefore(D,E);},removeChild:function(D){D=D.get?D.get("element"):D;return this.get("element").removeChild(D);},replaceChild:function(D,E){D=D.get?D.get("element"):D;E=E.get?E.get("element"):E;return this.get("element").replaceChild(D,E);},initAttributes:function(D){},addListener:function(H,G,I,F){var E=this.get("element")||this.get("id");F=F||this;var D=this;if(!this._events[H]){if(E&&this.DOM_EVENTS[H]){YAHOO.util.Event.addListener(E,H,function(J){if(J.srcElement&&!J.target){J.target=J.srcElement;}D.fireEvent(H,J);},I,F);}this.createEvent(H,this);}return YAHOO.util.EventProvider.prototype.subscribe.apply(this,arguments);},on:function(){return this.addListener.apply(this,arguments);},subscribe:function(){return this.addListener.apply(this,arguments);},removeListener:function(E,D){return this.unsubscribe.apply(this,arguments);},addClass:function(D){B.addClass(this.get("element"),D);},getElementsByClassName:function(E,D){return B.getElementsByClassName(E,D,this.get("element"));},hasClass:function(D){return B.hasClass(this.get("element"),D);},removeClass:function(D){return B.removeClass(this.get("element"),D);},replaceClass:function(E,D){return B.replaceClass(this.get("element"),E,D);},setStyle:function(E,D){return B.setStyle(this.get("element"),E,D);},getStyle:function(D){return B.getStyle(this.get("element"),D);},fireQueue:function(){var E=this._queue;for(var F=0,D=E.length;F<D;++F){this[E[F][0]].apply(this,E[F][1]);}},appendTo:function(E,F){E=(E.get)?E.get("element"):B.get(E);this.fireEvent("beforeAppendTo",{type:"beforeAppendTo",target:E});
+F=(F&&F.get)?F.get("element"):B.get(F);var D=this.get("element");if(!D){return false;}if(!E){return false;}if(D.parent!=E){if(F){E.insertBefore(D,F);}else{E.appendChild(D);}}this.fireEvent("appendTo",{type:"appendTo",target:E});return D;},get:function(D){var F=this._configs||{},E=F.element;if(E&&!F[D]&&!YAHOO.lang.isUndefined(E.value[D])){this._setHTMLAttrConfig(D);}return C.prototype.get.call(this,D);},setAttributes:function(J,G){var E={},H=this._configOrder;for(var I=0,D=H.length;I<D;++I){if(J[H[I]]!==undefined){E[H[I]]=true;this.set(H[I],J[H[I]],G);}}for(var F in J){if(J.hasOwnProperty(F)&&!E[F]){this.set(F,J[F],G);}}},set:function(E,G,D){var F=this.get("element");if(!F){this._queue[this._queue.length]=["set",arguments];if(this._configs[E]){this._configs[E].value=G;}return;}if(!this._configs[E]&&!YAHOO.lang.isUndefined(F[E])){this._setHTMLAttrConfig(E);}return C.prototype.set.apply(this,arguments);},setAttributeConfig:function(D,E,F){this._configOrder.push(D);C.prototype.setAttributeConfig.apply(this,arguments);},createEvent:function(E,D){this._events[E]=true;return C.prototype.createEvent.apply(this,arguments);},init:function(E,D){this._initElement(E,D);},destroy:function(){var D=this.get("element");YAHOO.util.Event.purgeElement(D,true);this.unsubscribeAll();if(D&&D.parentNode){D.parentNode.removeChild(D);}this._queue=[];this._events={};this._configs={};this._configOrder=[];},_initElement:function(F,E){this._queue=this._queue||[];this._events=this._events||{};this._configs=this._configs||{};this._configOrder=[];E=E||{};E.element=E.element||F||null;var H=false;var D=A.DOM_EVENTS;this.DOM_EVENTS=this.DOM_EVENTS||{};for(var G in D){if(D.hasOwnProperty(G)){this.DOM_EVENTS[G]=D[G];}}if(typeof E.element==="string"){this._setHTMLAttrConfig("id",{value:E.element});}if(B.get(E.element)){H=true;this._initHTMLElement(E);this._initContent(E);}YAHOO.util.Event.onAvailable(E.element,function(){if(!H){this._initHTMLElement(E);}this.fireEvent("available",{type:"available",target:B.get(E.element)});},this,true);YAHOO.util.Event.onContentReady(E.element,function(){if(!H){this._initContent(E);}this.fireEvent("contentReady",{type:"contentReady",target:B.get(E.element)});},this,true);},_initHTMLElement:function(D){this.setAttributeConfig("element",{value:B.get(D.element),readOnly:true});},_initContent:function(D){this.initAttributes(D);this.setAttributes(D,true);this.fireQueue();},_setHTMLAttrConfig:function(D,F){var E=this.get("element");F=F||{};F.name=D;F.setter=F.setter||this.DEFAULT_HTML_SETTER;F.getter=F.getter||this.DEFAULT_HTML_GETTER;F.value=F.value||E[D];this._configs[D]=new YAHOO.util.Attribute(F,this);}};YAHOO.augment(A,C);YAHOO.util.Element=A;})();YAHOO.register("element",YAHOO.util.Element,{version:"2.7.0",build:"1796"});/*
+Copyright (c) 2009, Yahoo! Inc. All rights reserved.
+Code licensed under the BSD License:
+http://developer.yahoo.net/yui/license.txt
+version: 2.7.0
+*/
+YAHOO.util.Color=function(){var A="0",B=YAHOO.lang.isArray,C=YAHOO.lang.isNumber;return{real2dec:function(D){return Math.min(255,Math.round(D*256));},hsv2rgb:function(H,O,M){if(B(H)){return this.hsv2rgb.call(this,H[0],H[1],H[2]);}var D,I,L,G=Math.floor((H/60)%6),J=(H/60)-G,F=M*(1-O),E=M*(1-J*O),N=M*(1-(1-J)*O),K;switch(G){case 0:D=M;I=N;L=F;break;case 1:D=E;I=M;L=F;break;case 2:D=F;I=M;L=N;break;case 3:D=F;I=E;L=M;break;case 4:D=N;I=F;L=M;break;case 5:D=M;I=F;L=E;break;}K=this.real2dec;return[K(D),K(I),K(L)];},rgb2hsv:function(D,H,I){if(B(D)){return this.rgb2hsv.apply(this,D);}D/=255;H/=255;I/=255;var G,L,E=Math.min(Math.min(D,H),I),J=Math.max(Math.max(D,H),I),K=J-E,F;switch(J){case E:G=0;break;case D:G=60*(H-I)/K;if(H<I){G+=360;}break;case H:G=(60*(I-D)/K)+120;break;case I:G=(60*(D-H)/K)+240;break;}L=(J===0)?0:1-(E/J);F=[Math.round(G),L,J];return F;},rgb2hex:function(F,E,D){if(B(F)){return this.rgb2hex.apply(this,F);}var G=this.dec2hex;return G(F)+G(E)+G(D);},dec2hex:function(D){D=parseInt(D,10)|0;D=(D>255||D<0)?0:D;return(A+D.toString(16)).slice(-2).toUpperCase();},hex2dec:function(D){return parseInt(D,16);},hex2rgb:function(D){var E=this.hex2dec;return[E(D.slice(0,2)),E(D.slice(2,4)),E(D.slice(4,6))];},websafe:function(F,E,D){if(B(F)){return this.websafe.apply(this,F);}var G=function(H){if(C(H)){H=Math.min(Math.max(0,H),255);var I,J;for(I=0;I<256;I=I+51){J=I+51;if(H>=I&&H<=J){return(H-I>25)?J:I;}}}return H;};return[G(F),G(E),G(D)];}};}();(function(){var J=0,F=YAHOO.util,C=YAHOO.lang,D=YAHOO.widget.Slider,B=F.Color,E=F.Dom,I=F.Event,A=C.substitute,H="yui-picker";function G(L,K){J=J+1;K=K||{};if(arguments.length===1&&!YAHOO.lang.isString(L)&&!L.nodeName){K=L;L=K.element||null;}if(!L&&!K.element){L=this._createHostElement(K);}G.superclass.constructor.call(this,L,K);this.initPicker();}YAHOO.extend(G,YAHOO.util.Element,{ID:{R:H+"-r",R_HEX:H+"-rhex",G:H+"-g",G_HEX:H+"-ghex",B:H+"-b",B_HEX:H+"-bhex",H:H+"-h",S:H+"-s",V:H+"-v",PICKER_BG:H+"-bg",PICKER_THUMB:H+"-thumb",HUE_BG:H+"-hue-bg",HUE_THUMB:H+"-hue-thumb",HEX:H+"-hex",SWATCH:H+"-swatch",WEBSAFE_SWATCH:H+"-websafe-swatch",CONTROLS:H+"-controls",RGB_CONTROLS:H+"-rgb-controls",HSV_CONTROLS:H+"-hsv-controls",HEX_CONTROLS:H+"-hex-controls",HEX_SUMMARY:H+"-hex-summary",CONTROLS_LABEL:H+"-controls-label"},TXT:{ILLEGAL_HEX:"Illegal hex value entered",SHOW_CONTROLS:"Show color details",HIDE_CONTROLS:"Hide color details",CURRENT_COLOR:"Currently selected color: {rgb}",CLOSEST_WEBSAFE:"Closest websafe color: {rgb}. Click to select.",R:"R",G:"G",B:"B",H:"H",S:"S",V:"V",HEX:"#",DEG:"\u00B0",PERCENT:"%"},IMAGE:{PICKER_THUMB:"../../build/colorpicker/assets/picker_thumb.png",HUE_THUMB:"../../build/colorpicker/assets/hue_thumb.png"},DEFAULT:{PICKER_SIZE:180},OPT:{HUE:"hue",SATURATION:"saturation",VALUE:"value",RED:"red",GREEN:"green",BLUE:"blue",HSV:"hsv",RGB:"rgb",WEBSAFE:"websafe",HEX:"hex",PICKER_SIZE:"pickersize",SHOW_CONTROLS:"showcontrols",SHOW_RGB_CONTROLS:"showrgbcontrols",SHOW_HSV_CONTROLS:"showhsvcontrols",SHOW_HEX_CONTROLS:"showhexcontrols",SHOW_HEX_SUMMARY:"showhexsummary",SHOW_WEBSAFE:"showwebsafe",CONTAINER:"container",IDS:"ids",ELEMENTS:"elements",TXT:"txt",IMAGES:"images",ANIMATE:"animate"},skipAnim:true,_createHostElement:function(){var K=document.createElement("div");if(this.CSS.BASE){K.className=this.CSS.BASE;}return K;},_updateHueSlider:function(){var K=this.get(this.OPT.PICKER_SIZE),L=this.get(this.OPT.HUE);L=K-Math.round(L/360*K);if(L===K){L=0;}this.hueSlider.setValue(L,this.skipAnim);},_updatePickerSlider:function(){var L=this.get(this.OPT.PICKER_SIZE),M=this.get(this.OPT.SATURATION),K=this.get(this.OPT.VALUE);M=Math.round(M*L/100);K=Math.round(L-(K*L/100));this.pickerSlider.setRegionValue(M,K,this.skipAnim);},_updateSliders:function(){this._updateHueSlider();this._updatePickerSlider();},setValue:function(L,K){K=(K)||false;this.set(this.OPT.RGB,L,K);this._updateSliders();},hueSlider:null,pickerSlider:null,_getH:function(){var K=this.get(this.OPT.PICKER_SIZE),L=(K-this.hueSlider.getValue())/K;L=Math.round(L*360);return(L===360)?0:L;},_getS:function(){return this.pickerSlider.getXValue()/this.get(this.OPT.PICKER_SIZE);},_getV:function(){var K=this.get(this.OPT.PICKER_SIZE);return(K-this.pickerSlider.getYValue())/K;},_updateSwatch:function(){var M=this.get(this.OPT.RGB),O=this.get(this.OPT.WEBSAFE),N=this.getElement(this.ID.SWATCH),L=M.join(","),K=this.get(this.OPT.TXT);E.setStyle(N,"background-color","rgb("+L+")");N.title=A(K.CURRENT_COLOR,{"rgb":"#"+this.get(this.OPT.HEX)});N=this.getElement(this.ID.WEBSAFE_SWATCH);L=O.join(",");E.setStyle(N,"background-color","rgb("+L+")");N.title=A(K.CLOSEST_WEBSAFE,{"rgb":"#"+B.rgb2hex(O)});},_getValuesFromSliders:function(){this.set(this.OPT.RGB,B.hsv2rgb(this._getH(),this._getS(),this._getV()));},_updateFormFields:function(){this.getElement(this.ID.H).value=this.get(this.OPT.HUE);this.getElement(this.ID.S).value=this.get(this.OPT.SATURATION);this.getElement(this.ID.V).value=this.get(this.OPT.VALUE);this.getElement(this.ID.R).value=this.get(this.OPT.RED);this.getElement(this.ID.R_HEX).innerHTML=B.dec2hex(this.get(this.OPT.RED));this.getElement(this.ID.G).value=this.get(this.OPT.GREEN);this.getElement(this.ID.G_HEX).innerHTML=B.dec2hex(this.get(this.OPT.GREEN));this.getElement(this.ID.B).value=this.get(this.OPT.BLUE);this.getElement(this.ID.B_HEX).innerHTML=B.dec2hex(this.get(this.OPT.BLUE));this.getElement(this.ID.HEX).value=this.get(this.OPT.HEX);},_onHueSliderChange:function(N){var L=this._getH(),K=B.hsv2rgb(L,1,1),M="rgb("+K.join(",")+")";this.set(this.OPT.HUE,L,true);E.setStyle(this.getElement(this.ID.PICKER_BG),"background-color",M);if(this.hueSlider.valueChangeSource!==D.SOURCE_SET_VALUE){this._getValuesFromSliders();}this._updateFormFields();this._updateSwatch();},_onPickerSliderChange:function(M){var L=this._getS(),K=this._getV();this.set(this.OPT.SATURATION,Math.round(L*100),true);this.set(this.OPT.VALUE,Math.round(K*100),true);if(this.pickerSlider.valueChangeSource!==D.SOURCE_SET_VALUE){this._getValuesFromSliders();
+}this._updateFormFields();this._updateSwatch();},_getCommand:function(K){var L=I.getCharCode(K);if(L===38){return 3;}else{if(L===13){return 6;}else{if(L===40){return 4;}else{if(L>=48&&L<=57){return 1;}else{if(L>=97&&L<=102){return 2;}else{if(L>=65&&L<=70){return 2;}else{if("8, 9, 13, 27, 37, 39".indexOf(L)>-1||K.ctrlKey||K.metaKey){return 5;}else{return 0;}}}}}}}},_useFieldValue:function(L,K,N){var M=K.value;if(N!==this.OPT.HEX){M=parseInt(M,10);}if(M!==this.get(N)){this.set(N,M);}},_rgbFieldKeypress:function(M,K,O){var N=this._getCommand(M),L=(M.shiftKey)?10:1;switch(N){case 6:this._useFieldValue.apply(this,arguments);break;case 3:this.set(O,Math.min(this.get(O)+L,255));this._updateFormFields();break;case 4:this.set(O,Math.max(this.get(O)-L,0));this._updateFormFields();break;default:}},_hexFieldKeypress:function(L,K,N){var M=this._getCommand(L);if(M===6){this._useFieldValue.apply(this,arguments);}},_hexOnly:function(L,K){var M=this._getCommand(L);switch(M){case 6:case 5:case 1:break;case 2:if(K!==true){break;}default:I.stopEvent(L);return false;}},_numbersOnly:function(K){return this._hexOnly(K,true);},getElement:function(K){return this.get(this.OPT.ELEMENTS)[this.get(this.OPT.IDS)[K]];},_createElements:function(){var N,M,P,O,L,K=this.get(this.OPT.IDS),Q=this.get(this.OPT.TXT),S=this.get(this.OPT.IMAGES),R=function(U,V){var W=document.createElement(U);if(V){C.augmentObject(W,V,true);}return W;},T=function(U,V){var W=C.merge({autocomplete:"off",value:"0",size:3,maxlength:3},V);W.name=W.id;return new R(U,W);};L=this.get("element");N=new R("div",{id:K[this.ID.PICKER_BG],className:"yui-picker-bg",tabIndex:-1,hideFocus:true});M=new R("div",{id:K[this.ID.PICKER_THUMB],className:"yui-picker-thumb"});P=new R("img",{src:S.PICKER_THUMB});M.appendChild(P);N.appendChild(M);L.appendChild(N);N=new R("div",{id:K[this.ID.HUE_BG],className:"yui-picker-hue-bg",tabIndex:-1,hideFocus:true});M=new R("div",{id:K[this.ID.HUE_THUMB],className:"yui-picker-hue-thumb"});P=new R("img",{src:S.HUE_THUMB});M.appendChild(P);N.appendChild(M);L.appendChild(N);N=new R("div",{id:K[this.ID.CONTROLS],className:"yui-picker-controls"});L.appendChild(N);L=N;N=new R("div",{className:"hd"});M=new R("a",{id:K[this.ID.CONTROLS_LABEL],href:"#"});N.appendChild(M);L.appendChild(N);N=new R("div",{className:"bd"});L.appendChild(N);L=N;N=new R("ul",{id:K[this.ID.RGB_CONTROLS],className:"yui-picker-rgb-controls"});M=new R("li");M.appendChild(document.createTextNode(Q.R+" "));O=new T("input",{id:K[this.ID.R],className:"yui-picker-r"});M.appendChild(O);N.appendChild(M);M=new R("li");M.appendChild(document.createTextNode(Q.G+" "));O=new T("input",{id:K[this.ID.G],className:"yui-picker-g"});M.appendChild(O);N.appendChild(M);M=new R("li");M.appendChild(document.createTextNode(Q.B+" "));O=new T("input",{id:K[this.ID.B],className:"yui-picker-b"});M.appendChild(O);N.appendChild(M);L.appendChild(N);N=new R("ul",{id:K[this.ID.HSV_CONTROLS],className:"yui-picker-hsv-controls"});M=new R("li");M.appendChild(document.createTextNode(Q.H+" "));O=new T("input",{id:K[this.ID.H],className:"yui-picker-h"});M.appendChild(O);M.appendChild(document.createTextNode(" "+Q.DEG));N.appendChild(M);M=new R("li");M.appendChild(document.createTextNode(Q.S+" "));O=new T("input",{id:K[this.ID.S],className:"yui-picker-s"});M.appendChild(O);M.appendChild(document.createTextNode(" "+Q.PERCENT));N.appendChild(M);M=new R("li");M.appendChild(document.createTextNode(Q.V+" "));O=new T("input",{id:K[this.ID.V],className:"yui-picker-v"});M.appendChild(O);M.appendChild(document.createTextNode(" "+Q.PERCENT));N.appendChild(M);L.appendChild(N);N=new R("ul",{id:K[this.ID.HEX_SUMMARY],className:"yui-picker-hex_summary"});M=new R("li",{id:K[this.ID.R_HEX]});N.appendChild(M);M=new R("li",{id:K[this.ID.G_HEX]});N.appendChild(M);M=new R("li",{id:K[this.ID.B_HEX]});N.appendChild(M);L.appendChild(N);N=new R("div",{id:K[this.ID.HEX_CONTROLS],className:"yui-picker-hex-controls"});N.appendChild(document.createTextNode(Q.HEX+" "));M=new T("input",{id:K[this.ID.HEX],className:"yui-picker-hex",size:6,maxlength:6});N.appendChild(M);L.appendChild(N);L=this.get("element");N=new R("div",{id:K[this.ID.SWATCH],className:"yui-picker-swatch"});L.appendChild(N);N=new R("div",{id:K[this.ID.WEBSAFE_SWATCH],className:"yui-picker-websafe-swatch"});L.appendChild(N);},_attachRGBHSV:function(L,K){I.on(this.getElement(L),"keydown",function(N,M){M._rgbFieldKeypress(N,this,K);},this);I.on(this.getElement(L),"keypress",this._numbersOnly,this,true);I.on(this.getElement(L),"blur",function(N,M){M._useFieldValue(N,this,K);},this);},_updateRGB:function(){var K=[this.get(this.OPT.RED),this.get(this.OPT.GREEN),this.get(this.OPT.BLUE)];this.set(this.OPT.RGB,K);this._updateSliders();},_initElements:function(){var O=this.OPT,N=this.get(O.IDS),L=this.get(O.ELEMENTS),K,M,P;for(K in this.ID){if(C.hasOwnProperty(this.ID,K)){N[this.ID[K]]=N[K];}}M=E.get(N[this.ID.PICKER_BG]);if(!M){this._createElements();}else{}for(K in N){if(C.hasOwnProperty(N,K)){M=E.get(N[K]);P=E.generateId(M);N[K]=P;N[N[K]]=P;L[P]=M;}}},initPicker:function(){this._initSliders();this._bindUI();this.syncUI(true);},_initSliders:function(){var K=this.ID,L=this.get(this.OPT.PICKER_SIZE);this.hueSlider=D.getVertSlider(this.getElement(K.HUE_BG),this.getElement(K.HUE_THUMB),0,L);this.pickerSlider=D.getSliderRegion(this.getElement(K.PICKER_BG),this.getElement(K.PICKER_THUMB),0,L,0,L);this.set(this.OPT.ANIMATE,this.get(this.OPT.ANIMATE));},_bindUI:function(){var K=this.ID,L=this.OPT;this.hueSlider.subscribe("change",this._onHueSliderChange,this,true);this.pickerSlider.subscribe("change",this._onPickerSliderChange,this,true);I.on(this.getElement(K.WEBSAFE_SWATCH),"click",function(M){this.setValue(this.get(L.WEBSAFE));},this,true);I.on(this.getElement(K.CONTROLS_LABEL),"click",function(M){this.set(L.SHOW_CONTROLS,!this.get(L.SHOW_CONTROLS));I.preventDefault(M);},this,true);this._attachRGBHSV(K.R,L.RED);this._attachRGBHSV(K.G,L.GREEN);this._attachRGBHSV(K.B,L.BLUE);this._attachRGBHSV(K.H,L.HUE);
+this._attachRGBHSV(K.S,L.SATURATION);this._attachRGBHSV(K.V,L.VALUE);I.on(this.getElement(K.HEX),"keydown",function(N,M){M._hexFieldKeypress(N,this,L.HEX);},this);I.on(this.getElement(this.ID.HEX),"keypress",this._hexOnly,this,true);I.on(this.getElement(this.ID.HEX),"blur",function(N,M){M._useFieldValue(N,this,L.HEX);},this);},syncUI:function(K){this.skipAnim=K;this._updateRGB();this.skipAnim=false;},_updateRGBFromHSV:function(){var L=[this.get(this.OPT.HUE),this.get(this.OPT.SATURATION)/100,this.get(this.OPT.VALUE)/100],K=B.hsv2rgb(L);this.set(this.OPT.RGB,K);this._updateSliders();},_updateHex:function(){var N=this.get(this.OPT.HEX),K=N.length,O,M,L;if(K===3){O=N.split("");for(M=0;M<K;M=M+1){O[M]=O[M]+O[M];}N=O.join("");}if(N.length!==6){return false;}L=B.hex2rgb(N);this.setValue(L);},_hideShowEl:function(M,K){var L=(C.isString(M)?this.getElement(M):M);E.setStyle(L,"display",(K)?"":"none");},initAttributes:function(K){K=K||{};G.superclass.initAttributes.call(this,K);this.setAttributeConfig(this.OPT.PICKER_SIZE,{value:K.size||this.DEFAULT.PICKER_SIZE});this.setAttributeConfig(this.OPT.HUE,{value:K.hue||0,validator:C.isNumber});this.setAttributeConfig(this.OPT.SATURATION,{value:K.saturation||0,validator:C.isNumber});this.setAttributeConfig(this.OPT.VALUE,{value:C.isNumber(K.value)?K.value:100,validator:C.isNumber});this.setAttributeConfig(this.OPT.RED,{value:C.isNumber(K.red)?K.red:255,validator:C.isNumber});this.setAttributeConfig(this.OPT.GREEN,{value:C.isNumber(K.green)?K.green:255,validator:C.isNumber});this.setAttributeConfig(this.OPT.BLUE,{value:C.isNumber(K.blue)?K.blue:255,validator:C.isNumber});this.setAttributeConfig(this.OPT.HEX,{value:K.hex||"FFFFFF",validator:C.isString});this.setAttributeConfig(this.OPT.RGB,{value:K.rgb||[255,255,255],method:function(O){this.set(this.OPT.RED,O[0],true);this.set(this.OPT.GREEN,O[1],true);this.set(this.OPT.BLUE,O[2],true);var Q=B.websafe(O),P=B.rgb2hex(O),N=B.rgb2hsv(O);this.set(this.OPT.WEBSAFE,Q,true);this.set(this.OPT.HEX,P,true);if(N[1]){this.set(this.OPT.HUE,N[0],true);}this.set(this.OPT.SATURATION,Math.round(N[1]*100),true);this.set(this.OPT.VALUE,Math.round(N[2]*100),true);},readonly:true});this.setAttributeConfig(this.OPT.CONTAINER,{value:null,method:function(N){if(N){N.showEvent.subscribe(function(){this.pickerSlider.focus();},this,true);}}});this.setAttributeConfig(this.OPT.WEBSAFE,{value:K.websafe||[255,255,255]});var M=K.ids||C.merge({},this.ID),L;if(!K.ids&&J>1){for(L in M){if(C.hasOwnProperty(M,L)){M[L]=M[L]+J;}}}this.setAttributeConfig(this.OPT.IDS,{value:M,writeonce:true});this.setAttributeConfig(this.OPT.TXT,{value:K.txt||this.TXT,writeonce:true});this.setAttributeConfig(this.OPT.IMAGES,{value:K.images||this.IMAGE,writeonce:true});this.setAttributeConfig(this.OPT.ELEMENTS,{value:{},readonly:true});this.setAttributeConfig(this.OPT.SHOW_CONTROLS,{value:C.isBoolean(K.showcontrols)?K.showcontrols:true,method:function(N){var O=E.getElementsByClassName("bd","div",this.getElement(this.ID.CONTROLS))[0];this._hideShowEl(O,N);this.getElement(this.ID.CONTROLS_LABEL).innerHTML=(N)?this.get(this.OPT.TXT).HIDE_CONTROLS:this.get(this.OPT.TXT).SHOW_CONTROLS;}});this.setAttributeConfig(this.OPT.SHOW_RGB_CONTROLS,{value:C.isBoolean(K.showrgbcontrols)?K.showrgbcontrols:true,method:function(N){this._hideShowEl(this.ID.RGB_CONTROLS,N);}});this.setAttributeConfig(this.OPT.SHOW_HSV_CONTROLS,{value:C.isBoolean(K.showhsvcontrols)?K.showhsvcontrols:false,method:function(N){this._hideShowEl(this.ID.HSV_CONTROLS,N);if(N&&this.get(this.OPT.SHOW_HEX_SUMMARY)){this.set(this.OPT.SHOW_HEX_SUMMARY,false);}}});this.setAttributeConfig(this.OPT.SHOW_HEX_CONTROLS,{value:C.isBoolean(K.showhexcontrols)?K.showhexcontrols:false,method:function(N){this._hideShowEl(this.ID.HEX_CONTROLS,N);}});this.setAttributeConfig(this.OPT.SHOW_WEBSAFE,{value:C.isBoolean(K.showwebsafe)?K.showwebsafe:true,method:function(N){this._hideShowEl(this.ID.WEBSAFE_SWATCH,N);}});this.setAttributeConfig(this.OPT.SHOW_HEX_SUMMARY,{value:C.isBoolean(K.showhexsummary)?K.showhexsummary:true,method:function(N){this._hideShowEl(this.ID.HEX_SUMMARY,N);if(N&&this.get(this.OPT.SHOW_HSV_CONTROLS)){this.set(this.OPT.SHOW_HSV_CONTROLS,false);}}});this.setAttributeConfig(this.OPT.ANIMATE,{value:C.isBoolean(K.animate)?K.animate:true,method:function(N){if(this.pickerSlider){this.pickerSlider.animate=N;this.hueSlider.animate=N;}}});this.on(this.OPT.HUE+"Change",this._updateRGBFromHSV,this,true);this.on(this.OPT.SATURATION+"Change",this._updateRGBFromHSV,this,true);this.on(this.OPT.VALUE+"Change",this._updateRGBFromHSV,this,true);this.on(this.OPT.RED+"Change",this._updateRGB,this,true);this.on(this.OPT.GREEN+"Change",this._updateRGB,this,true);this.on(this.OPT.BLUE+"Change",this._updateRGB,this,true);this.on(this.OPT.HEX+"Change",this._updateHex,this,true);this._initElements();}});YAHOO.widget.ColorPicker=G;})();YAHOO.register("colorpicker",YAHOO.widget.ColorPicker,{version:"2.7.0",build:"1796"});
+
+/*
+Copyright (c) 2009, Yahoo! Inc. All rights reserved.
+Code licensed under the BSD License:
+http://developer.yahoo.net/yui/license.txt
+version: 2.7.0
+*/
+(function(){var B=YAHOO.util;var A=function(D,C,E,F){if(!D){}this.init(D,C,E,F);};A.NAME="Anim";A.prototype={toString:function(){var C=this.getEl()||{};var D=C.id||C.tagName;return(this.constructor.NAME+": "+D);},patterns:{noNegatives:/width|height|opacity|padding/i,offsetAttribute:/^((width|height)|(top|left))$/,defaultUnit:/width|height|top$|bottom$|left$|right$/i,offsetUnit:/\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i},doMethod:function(C,E,D){return this.method(this.currentFrame,E,D-E,this.totalFrames);},setAttribute:function(C,F,E){var D=this.getEl();if(this.patterns.noNegatives.test(C)){F=(F>0)?F:0;}if("style" in D){B.Dom.setStyle(D,C,F+E);}else{if(C in D){D[C]=F;}}},getAttribute:function(C){var E=this.getEl();var G=B.Dom.getStyle(E,C);if(G!=="auto"&&!this.patterns.offsetUnit.test(G)){return parseFloat(G);}var D=this.patterns.offsetAttribute.exec(C)||[];var H=!!(D[3]);var F=!!(D[2]);if("style" in E){if(F||(B.Dom.getStyle(E,"position")=="absolute"&&H)){G=E["offset"+D[0].charAt(0).toUpperCase()+D[0].substr(1)];}else{G=0;}}else{if(C in E){G=E[C];}}return G;},getDefaultUnit:function(C){if(this.patterns.defaultUnit.test(C)){return"px";}return"";},setRuntimeAttribute:function(D){var I;var E;var F=this.attributes;this.runtimeAttributes[D]={};var H=function(J){return(typeof J!=="undefined");};if(!H(F[D]["to"])&&!H(F[D]["by"])){return false;}I=(H(F[D]["from"]))?F[D]["from"]:this.getAttribute(D);if(H(F[D]["to"])){E=F[D]["to"];}else{if(H(F[D]["by"])){if(I.constructor==Array){E=[];for(var G=0,C=I.length;G<C;++G){E[G]=I[G]+F[D]["by"][G]*1;}}else{E=I+F[D]["by"]*1;}}}this.runtimeAttributes[D].start=I;this.runtimeAttributes[D].end=E;this.runtimeAttributes[D].unit=(H(F[D].unit))?F[D]["unit"]:this.getDefaultUnit(D);return true;},init:function(E,J,I,C){var D=false;var F=null;var H=0;E=B.Dom.get(E);this.attributes=J||{};this.duration=!YAHOO.lang.isUndefined(I)?I:1;this.method=C||B.Easing.easeNone;this.useSeconds=true;this.currentFrame=0;this.totalFrames=B.AnimMgr.fps;this.setEl=function(M){E=B.Dom.get(M);};this.getEl=function(){return E;};this.isAnimated=function(){return D;};this.getStartTime=function(){return F;};this.runtimeAttributes={};this.animate=function(){if(this.isAnimated()){return false;}this.currentFrame=0;this.totalFrames=(this.useSeconds)?Math.ceil(B.AnimMgr.fps*this.duration):this.duration;if(this.duration===0&&this.useSeconds){this.totalFrames=1;}B.AnimMgr.registerElement(this);return true;};this.stop=function(M){if(!this.isAnimated()){return false;}if(M){this.currentFrame=this.totalFrames;this._onTween.fire();}B.AnimMgr.stop(this);};var L=function(){this.onStart.fire();this.runtimeAttributes={};for(var M in this.attributes){this.setRuntimeAttribute(M);}D=true;H=0;F=new Date();};var K=function(){var O={duration:new Date()-this.getStartTime(),currentFrame:this.currentFrame};O.toString=function(){return("duration: "+O.duration+", currentFrame: "+O.currentFrame);};this.onTween.fire(O);var N=this.runtimeAttributes;for(var M in N){this.setAttribute(M,this.doMethod(M,N[M].start,N[M].end),N[M].unit);}H+=1;};var G=function(){var M=(new Date()-F)/1000;var N={duration:M,frames:H,fps:H/M};N.toString=function(){return("duration: "+N.duration+", frames: "+N.frames+", fps: "+N.fps);};D=false;H=0;this.onComplete.fire(N);};this._onStart=new B.CustomEvent("_start",this,true);this.onStart=new B.CustomEvent("start",this);this.onTween=new B.CustomEvent("tween",this);this._onTween=new B.CustomEvent("_tween",this,true);this.onComplete=new B.CustomEvent("complete",this);this._onComplete=new B.CustomEvent("_complete",this,true);this._onStart.subscribe(L);this._onTween.subscribe(K);this._onComplete.subscribe(G);}};B.Anim=A;})();YAHOO.util.AnimMgr=new function(){var C=null;var B=[];var A=0;this.fps=1000;this.delay=1;this.registerElement=function(F){B[B.length]=F;A+=1;F._onStart.fire();this.start();};this.unRegister=function(G,F){F=F||E(G);if(!G.isAnimated()||F==-1){return false;}G._onComplete.fire();B.splice(F,1);A-=1;if(A<=0){this.stop();}return true;};this.start=function(){if(C===null){C=setInterval(this.run,this.delay);}};this.stop=function(H){if(!H){clearInterval(C);for(var G=0,F=B.length;G<F;++G){this.unRegister(B[0],0);}B=[];C=null;A=0;}else{this.unRegister(H);}};this.run=function(){for(var H=0,F=B.length;H<F;++H){var G=B[H];if(!G||!G.isAnimated()){continue;}if(G.currentFrame<G.totalFrames||G.totalFrames===null){G.currentFrame+=1;if(G.useSeconds){D(G);}G._onTween.fire();}else{YAHOO.util.AnimMgr.stop(G,H);}}};var E=function(H){for(var G=0,F=B.length;G<F;++G){if(B[G]==H){return G;}}return -1;};var D=function(G){var J=G.totalFrames;var I=G.currentFrame;var H=(G.currentFrame*G.duration*1000/G.totalFrames);var F=(new Date()-G.getStartTime());var K=0;if(F<G.duration*1000){K=Math.round((F/H-1)*G.currentFrame);}else{K=J-(I+1);}if(K>0&&isFinite(K)){if(G.currentFrame+K>=J){K=J-(I+1);}G.currentFrame+=K;}};};YAHOO.util.Bezier=new function(){this.getPosition=function(E,D){var F=E.length;var C=[];for(var B=0;B<F;++B){C[B]=[E[B][0],E[B][1]];}for(var A=1;A<F;++A){for(B=0;B<F-A;++B){C[B][0]=(1-D)*C[B][0]+D*C[parseInt(B+1,10)][0];C[B][1]=(1-D)*C[B][1]+D*C[parseInt(B+1,10)][1];}}return[C[0][0],C[0][1]];};};(function(){var A=function(F,E,G,H){A.superclass.constructor.call(this,F,E,G,H);};A.NAME="ColorAnim";A.DEFAULT_BGCOLOR="#fff";var C=YAHOO.util;YAHOO.extend(A,C.Anim);var D=A.superclass;var B=A.prototype;B.patterns.color=/color$/i;B.patterns.rgb=/^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i;B.patterns.hex=/^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i;B.patterns.hex3=/^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i;B.patterns.transparent=/^transparent|rgba\(0, 0, 0, 0\)$/;B.parseColor=function(E){if(E.length==3){return E;}var F=this.patterns.hex.exec(E);if(F&&F.length==4){return[parseInt(F[1],16),parseInt(F[2],16),parseInt(F[3],16)];}F=this.patterns.rgb.exec(E);if(F&&F.length==4){return[parseInt(F[1],10),parseInt(F[2],10),parseInt(F[3],10)];}F=this.patterns.hex3.exec(E);if(F&&F.length==4){return[parseInt(F[1]+F[1],16),parseInt(F[2]+F[2],16),parseInt(F[3]+F[3],16)];
+}return null;};B.getAttribute=function(E){var G=this.getEl();if(this.patterns.color.test(E)){var I=YAHOO.util.Dom.getStyle(G,E);var H=this;if(this.patterns.transparent.test(I)){var F=YAHOO.util.Dom.getAncestorBy(G,function(J){return !H.patterns.transparent.test(I);});if(F){I=C.Dom.getStyle(F,E);}else{I=A.DEFAULT_BGCOLOR;}}}else{I=D.getAttribute.call(this,E);}return I;};B.doMethod=function(F,J,G){var I;if(this.patterns.color.test(F)){I=[];for(var H=0,E=J.length;H<E;++H){I[H]=D.doMethod.call(this,F,J[H],G[H]);}I="rgb("+Math.floor(I[0])+","+Math.floor(I[1])+","+Math.floor(I[2])+")";}else{I=D.doMethod.call(this,F,J,G);}return I;};B.setRuntimeAttribute=function(F){D.setRuntimeAttribute.call(this,F);if(this.patterns.color.test(F)){var H=this.attributes;var J=this.parseColor(this.runtimeAttributes[F].start);var G=this.parseColor(this.runtimeAttributes[F].end);if(typeof H[F]["to"]==="undefined"&&typeof H[F]["by"]!=="undefined"){G=this.parseColor(H[F].by);for(var I=0,E=J.length;I<E;++I){G[I]=J[I]+G[I];}}this.runtimeAttributes[F].start=J;this.runtimeAttributes[F].end=G;}};C.ColorAnim=A;})();
+/*
+TERMS OF USE - EASING EQUATIONS
+Open source under the BSD License.
+Copyright 2001 Robert Penner All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+ * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+ * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+*/
+YAHOO.util.Easing={easeNone:function(B,A,D,C){return D*B/C+A;},easeIn:function(B,A,D,C){return D*(B/=C)*B+A;},easeOut:function(B,A,D,C){return -D*(B/=C)*(B-2)+A;},easeBoth:function(B,A,D,C){if((B/=C/2)<1){return D/2*B*B+A;}return -D/2*((--B)*(B-2)-1)+A;},easeInStrong:function(B,A,D,C){return D*(B/=C)*B*B*B+A;},easeOutStrong:function(B,A,D,C){return -D*((B=B/C-1)*B*B*B-1)+A;},easeBothStrong:function(B,A,D,C){if((B/=C/2)<1){return D/2*B*B*B*B+A;}return -D/2*((B-=2)*B*B*B-2)+A;},elasticIn:function(C,A,G,F,B,E){if(C==0){return A;}if((C/=F)==1){return A+G;}if(!E){E=F*0.3;}if(!B||B<Math.abs(G)){B=G;var D=E/4;}else{var D=E/(2*Math.PI)*Math.asin(G/B);}return -(B*Math.pow(2,10*(C-=1))*Math.sin((C*F-D)*(2*Math.PI)/E))+A;},elasticOut:function(C,A,G,F,B,E){if(C==0){return A;}if((C/=F)==1){return A+G;}if(!E){E=F*0.3;}if(!B||B<Math.abs(G)){B=G;var D=E/4;}else{var D=E/(2*Math.PI)*Math.asin(G/B);}return B*Math.pow(2,-10*C)*Math.sin((C*F-D)*(2*Math.PI)/E)+G+A;},elasticBoth:function(C,A,G,F,B,E){if(C==0){return A;}if((C/=F/2)==2){return A+G;}if(!E){E=F*(0.3*1.5);}if(!B||B<Math.abs(G)){B=G;var D=E/4;}else{var D=E/(2*Math.PI)*Math.asin(G/B);}if(C<1){return -0.5*(B*Math.pow(2,10*(C-=1))*Math.sin((C*F-D)*(2*Math.PI)/E))+A;}return B*Math.pow(2,-10*(C-=1))*Math.sin((C*F-D)*(2*Math.PI)/E)*0.5+G+A;},backIn:function(B,A,E,D,C){if(typeof C=="undefined"){C=1.70158;}return E*(B/=D)*B*((C+1)*B-C)+A;},backOut:function(B,A,E,D,C){if(typeof C=="undefined"){C=1.70158;}return E*((B=B/D-1)*B*((C+1)*B+C)+1)+A;},backBoth:function(B,A,E,D,C){if(typeof C=="undefined"){C=1.70158;}if((B/=D/2)<1){return E/2*(B*B*(((C*=(1.525))+1)*B-C))+A;}return E/2*((B-=2)*B*(((C*=(1.525))+1)*B+C)+2)+A;},bounceIn:function(B,A,D,C){return D-YAHOO.util.Easing.bounceOut(C-B,0,D,C)+A;},bounceOut:function(B,A,D,C){if((B/=C)<(1/2.75)){return D*(7.5625*B*B)+A;}else{if(B<(2/2.75)){return D*(7.5625*(B-=(1.5/2.75))*B+0.75)+A;}else{if(B<(2.5/2.75)){return D*(7.5625*(B-=(2.25/2.75))*B+0.9375)+A;}}}return D*(7.5625*(B-=(2.625/2.75))*B+0.984375)+A;},bounceBoth:function(B,A,D,C){if(B<C/2){return YAHOO.util.Easing.bounceIn(B*2,0,D,C)*0.5+A;}return YAHOO.util.Easing.bounceOut(B*2-C,0,D,C)*0.5+D*0.5+A;}};(function(){var A=function(H,G,I,J){if(H){A.superclass.constructor.call(this,H,G,I,J);}};A.NAME="Motion";var E=YAHOO.util;YAHOO.extend(A,E.ColorAnim);var F=A.superclass;var C=A.prototype;C.patterns.points=/^points$/i;C.setAttribute=function(G,I,H){if(this.patterns.points.test(G)){H=H||"px";F.setAttribute.call(this,"left",I[0],H);F.setAttribute.call(this,"top",I[1],H);}else{F.setAttribute.call(this,G,I,H);}};C.getAttribute=function(G){if(this.patterns.points.test(G)){var H=[F.getAttribute.call(this,"left"),F.getAttribute.call(this,"top")];}else{H=F.getAttribute.call(this,G);}return H;};C.doMethod=function(G,K,H){var J=null;if(this.patterns.points.test(G)){var I=this.method(this.currentFrame,0,100,this.totalFrames)/100;J=E.Bezier.getPosition(this.runtimeAttributes[G],I);}else{J=F.doMethod.call(this,G,K,H);}return J;};C.setRuntimeAttribute=function(P){if(this.patterns.points.test(P)){var H=this.getEl();var J=this.attributes;var G;var L=J["points"]["control"]||[];var I;var M,O;if(L.length>0&&!(L[0] instanceof Array)){L=[L];}else{var K=[];for(M=0,O=L.length;M<O;++M){K[M]=L[M];}L=K;}if(E.Dom.getStyle(H,"position")=="static"){E.Dom.setStyle(H,"position","relative");}if(D(J["points"]["from"])){E.Dom.setXY(H,J["points"]["from"]);
+}else{E.Dom.setXY(H,E.Dom.getXY(H));}G=this.getAttribute("points");if(D(J["points"]["to"])){I=B.call(this,J["points"]["to"],G);var N=E.Dom.getXY(this.getEl());for(M=0,O=L.length;M<O;++M){L[M]=B.call(this,L[M],G);}}else{if(D(J["points"]["by"])){I=[G[0]+J["points"]["by"][0],G[1]+J["points"]["by"][1]];for(M=0,O=L.length;M<O;++M){L[M]=[G[0]+L[M][0],G[1]+L[M][1]];}}}this.runtimeAttributes[P]=[G];if(L.length>0){this.runtimeAttributes[P]=this.runtimeAttributes[P].concat(L);}this.runtimeAttributes[P][this.runtimeAttributes[P].length]=I;}else{F.setRuntimeAttribute.call(this,P);}};var B=function(G,I){var H=E.Dom.getXY(this.getEl());G=[G[0]-H[0]+I[0],G[1]-H[1]+I[1]];return G;};var D=function(G){return(typeof G!=="undefined");};E.Motion=A;})();(function(){var D=function(F,E,G,H){if(F){D.superclass.constructor.call(this,F,E,G,H);}};D.NAME="Scroll";var B=YAHOO.util;YAHOO.extend(D,B.ColorAnim);var C=D.superclass;var A=D.prototype;A.doMethod=function(E,H,F){var G=null;if(E=="scroll"){G=[this.method(this.currentFrame,H[0],F[0]-H[0],this.totalFrames),this.method(this.currentFrame,H[1],F[1]-H[1],this.totalFrames)];}else{G=C.doMethod.call(this,E,H,F);}return G;};A.getAttribute=function(E){var G=null;var F=this.getEl();if(E=="scroll"){G=[F.scrollLeft,F.scrollTop];}else{G=C.getAttribute.call(this,E);}return G;};A.setAttribute=function(E,H,G){var F=this.getEl();if(E=="scroll"){F.scrollLeft=H[0];F.scrollTop=H[1];}else{C.setAttribute.call(this,E,H,G);}};B.Scroll=D;})();YAHOO.register("animation",YAHOO.util.Anim,{version:"2.7.0",build:"1799"});
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/undo/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/undo/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/undo/plugin.js	(revision 3747)
@@ -0,0 +1,484 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @fileOverview Undo/Redo system for saving shapshot for document modification
+ *		and other recordable changes.
+ */
+
+(function()
+{
+	CKEDITOR.plugins.add( 'undo',
+	{
+		requires : [ 'selection', 'wysiwygarea' ],
+
+		init : function( editor )
+		{
+			var undoManager = new UndoManager( editor );
+
+			var undoCommand = editor.addCommand( 'undo',
+				{
+					exec : function()
+					{
+						if ( undoManager.undo() )
+						{
+							editor.selectionChange();
+							this.fire( 'afterUndo' );
+						}
+					},
+					state : CKEDITOR.TRISTATE_DISABLED,
+					canUndo : false
+				});
+
+			var redoCommand = editor.addCommand( 'redo',
+				{
+					exec : function()
+					{
+						if ( undoManager.redo() )
+						{
+							editor.selectionChange();
+							this.fire( 'afterRedo' );
+						}
+					},
+					state : CKEDITOR.TRISTATE_DISABLED,
+					canUndo : false
+				});
+
+			undoManager.onChange = function()
+			{
+				undoCommand.setState( undoManager.undoable() ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED );
+				redoCommand.setState( undoManager.redoable() ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED );
+			};
+
+			function recordCommand( event )
+			{
+				// If the command hasn't been marked to not support undo.
+				if ( undoManager.enabled && event.data.command.canUndo !== false )
+					undoManager.save();
+			}
+
+			// We'll save snapshots before and after executing a command.
+			editor.on( 'beforeCommandExec', recordCommand );
+			editor.on( 'afterCommandExec', recordCommand );
+
+			// Save snapshots before doing custom changes.
+			editor.on( 'saveSnapshot', function()
+				{
+					undoManager.save();
+				});
+
+			// Make the undo manager available only in wysiwyg mode.
+			editor.on( 'mode', function()
+				{
+					if ( editor.mode == 'wysiwyg' )
+					{
+						if ( !undoManager.enabled )
+						{
+							undoManager.enabled = true;
+
+							editor.document.on( 'keydown', function( event )
+								{
+									// Do not capture CTRL hotkeys.
+									if ( !event.data.$.ctrlKey && !event.data.$.metaKey )
+										undoManager.type( event );
+								});
+
+							// Always save an undo snapshot - the previous mode might have changed
+							// editor contents.
+							undoManager.save( true );
+						}
+					}
+					else
+						undoManager.enabled = false;
+
+					undoManager.onChange();
+				});
+
+			editor.ui.addButton( 'Undo',
+				{
+					label : editor.lang.undo,
+					command : 'undo'
+				});
+
+			editor.ui.addButton( 'Redo',
+				{
+					label : editor.lang.redo,
+					command : 'redo'
+				});
+
+			editor.resetUndo = function()
+			{
+				// Reset the undo stack.
+				undoManager.reset();
+
+				// Create the first image.
+				editor.fire( 'saveSnapshot' );
+			};
+		}
+	});
+
+	// Gets a snapshot image which represent the current document status.
+	function Image( editor )
+	{
+		var selection = editor.getSelection();
+
+		this.contents	= editor.getSnapshot();
+		this.bookmarks	= selection && selection.createBookmarks2( true );
+
+		// In IE, we need to remove the expando attributes.
+		if ( CKEDITOR.env.ie )
+			this.contents = this.contents.replace( /\s+_cke_expando=".*?"/g, '' );
+	}
+
+	Image.prototype =
+	{
+		equals : function( otherImage, contentOnly )
+		{
+			if ( this.contents != otherImage.contents )
+				return false;
+
+			if ( contentOnly )
+				return true;
+
+			var bookmarksA = this.bookmarks,
+				bookmarksB = otherImage.bookmarks;
+
+			if ( bookmarksA || bookmarksB )
+			{
+				if ( !bookmarksA || !bookmarksB || bookmarksA.length != bookmarksB.length )
+					return false;
+
+				for ( var i = 0 ; i < bookmarksA.length ; i++ )
+				{
+					var bookmarkA = bookmarksA[ i ],
+						bookmarkB = bookmarksB[ i ];
+
+					if (
+						bookmarkA.startOffset != bookmarkB.startOffset ||
+						bookmarkA.endOffset != bookmarkB.endOffset ||
+						!CKEDITOR.tools.arrayCompare( bookmarkA.start, bookmarkB.start ) ||
+						!CKEDITOR.tools.arrayCompare( bookmarkA.end, bookmarkB.end ) )
+					{
+						return false;
+					}
+				}
+			}
+
+			return true;
+		}
+	};
+
+	/**
+	 * @constructor Main logic for Redo/Undo feature.
+	 */
+	function UndoManager( editor )
+	{
+		this.editor = editor;
+
+		// Reset the undo stack.
+		this.reset();
+	}
+
+	UndoManager.prototype =
+	{
+		/**
+		 * Process undo system regard keystrikes.
+		 * @param {CKEDITOR.dom.event} event
+		 */
+		type : function( event )
+		{
+			var keystroke = event && event.data.getKeystroke(),
+
+				// Backspace, Delete
+				modifierCodes = { 8:1, 46:1 },
+				// Keystrokes which will modify the contents.
+				isModifier = keystroke in modifierCodes,
+				wasModifier = this.lastKeystroke in modifierCodes,
+				lastWasSameModifier = isModifier && keystroke == this.lastKeystroke,
+
+				// Arrows: L, T, R, B
+				resetTypingCodes = { 37:1, 38:1, 39:1, 40:1 },
+				// Keystrokes which navigation through contents.
+				isReset = keystroke in resetTypingCodes,
+				wasReset = this.lastKeystroke in resetTypingCodes,
+
+				// Keystrokes which just introduce new contents.
+				isContent = ( !isModifier && !isReset ),
+
+				// Create undo snap for every different modifier key.
+				modifierSnapshot = ( isModifier && !lastWasSameModifier ),
+				// Create undo snap on the following cases:
+				// 1. Just start to type.
+				// 2. Typing some content after a modifier.
+				// 3. Typing some content after make a visible selection.
+				startedTyping = !this.typing
+					|| ( isContent && ( wasModifier || wasReset ) );
+
+			if ( startedTyping || modifierSnapshot )
+			{
+				var beforeTypeImage = new Image( this.editor );
+
+				// Use setTimeout, so we give the necessary time to the
+				// browser to insert the character into the DOM.
+				CKEDITOR.tools.setTimeout( function()
+					{
+						var currentSnapshot = this.editor.getSnapshot();
+
+						// In IE, we need to remove the expando attributes.
+						if ( CKEDITOR.env.ie )
+							currentSnapshot = currentSnapshot.replace( /\s+_cke_expando=".*?"/g, '' );
+
+						if ( beforeTypeImage.contents != currentSnapshot )
+						{
+							// This's a special save, with specified snapshot
+							// and without auto 'fireChange'.
+							if ( !this.save( false, beforeTypeImage, false ) )
+								// Drop future snapshots.
+								this.snapshots.splice( this.index + 1, this.snapshots.length - this.index - 1 );
+
+							this.hasUndo = true;
+							this.hasRedo = false;
+
+							this.typesCount = 1;
+							this.modifiersCount = 1;
+
+							this.onChange();
+						}
+					},
+					0, this
+				);
+			}
+
+			this.lastKeystroke = keystroke;
+			// Create undo snap after typed too much (over 25 times).
+			if ( isModifier )
+			{
+				this.typesCount = 0;
+				this.modifiersCount++;
+
+				if ( this.modifiersCount > 25 )
+				{
+					this.save();
+					this.modifiersCount = 1;
+				}
+			}
+			else if ( !isReset )
+			{
+				this.modifiersCount = 0;
+				this.typesCount++;
+
+				if ( this.typesCount > 25 )
+				{
+					this.save();
+					this.typesCount = 1;
+				}
+			}
+
+			this.typing = true;
+		},
+
+		reset : function()	// Reset the undo stack.
+		{
+			/**
+			 * Remember last pressed key.
+			 */
+			this.lastKeystroke = 0;
+
+			/**
+			 * Stack for all the undo and redo snapshots, they're always created/removed
+			 * in consistency.
+			 */
+			this.snapshots = [];
+
+			/**
+			 * Current snapshot history index.
+			 */
+			this.index = -1;
+
+			this.limit = this.editor.config.undoStackSize;
+
+			this.currentImage = null;
+
+			this.hasUndo = false;
+			this.hasRedo = false;
+
+			this.resetType();
+		},
+
+		/**
+		 * Reset all states about typing.
+		 * @see  UndoManager.type
+		 */
+		resetType : function()
+		{
+			this.typing = false;
+			delete this.lastKeystroke;
+			this.typesCount = 0;
+			this.modifiersCount = 0;
+		},
+		fireChange : function()
+		{
+			this.hasUndo = !!this.getNextImage( true );
+			this.hasRedo = !!this.getNextImage( false );
+			// Reset typing
+			this.resetType();
+			this.onChange();
+		},
+
+		/**
+		 * Save a snapshot of document image for later retrieve.
+		 */
+		save : function( onContentOnly, image, autoFireChange )
+		{
+			var snapshots = this.snapshots;
+
+			// Get a content image.
+			if ( !image )
+				image = new Image( this.editor );
+
+			// Check if this is a duplicate. In such case, do nothing.
+			if ( this.currentImage && image.equals( this.currentImage, onContentOnly ) )
+				return false;
+
+			// Drop future snapshots.
+			snapshots.splice( this.index + 1, snapshots.length - this.index - 1 );
+
+			// If we have reached the limit, remove the oldest one.
+			if ( snapshots.length == this.limit )
+				snapshots.shift();
+
+			// Add the new image, updating the current index.
+			this.index = snapshots.push( image ) - 1;
+
+			this.currentImage = image;
+
+			if ( autoFireChange !== false )
+				this.fireChange();
+			return true;
+		},
+
+		restoreImage : function( image )
+		{
+			this.editor.loadSnapshot( image.contents );
+
+			if ( image.bookmarks )
+				this.editor.getSelection().selectBookmarks( image.bookmarks );
+			else if ( CKEDITOR.env.ie )
+			{
+				// IE BUG: If I don't set the selection to *somewhere* after setting
+				// document contents, then IE would create an empty paragraph at the bottom
+				// the next time the document is modified.
+				var $range = this.editor.document.getBody().$.createTextRange();
+				$range.collapse( true );
+				$range.select();
+			}
+
+			this.index = image.index;
+
+			this.currentImage = image;
+
+			this.fireChange();
+		},
+
+		// Get the closest available image.
+		getNextImage : function( isUndo )
+		{
+			var snapshots = this.snapshots,
+				currentImage = this.currentImage,
+				image, i;
+
+			if ( currentImage )
+			{
+				if ( isUndo )
+				{
+					for ( i = this.index - 1 ; i >= 0 ; i-- )
+					{
+						image = snapshots[ i ];
+						if ( !currentImage.equals( image, true ) )
+						{
+							image.index = i;
+							return image;
+						}
+					}
+				}
+				else
+				{
+					for ( i = this.index + 1 ; i < snapshots.length ; i++ )
+					{
+						image = snapshots[ i ];
+						if ( !currentImage.equals( image, true ) )
+						{
+							image.index = i;
+							return image;
+						}
+					}
+				}
+			}
+
+			return null;
+		},
+
+		/**
+		 * Check the current redo state.
+		 * @return {Boolean} Whether the document has previous state to
+		 *		retrieve.
+		 */
+		redoable : function()
+		{
+			return this.enabled && this.hasRedo;
+		},
+
+		/**
+		 * Check the current undo state.
+		 * @return {Boolean} Whether the document has future state to restore.
+		 */
+		undoable : function()
+		{
+			return this.enabled && this.hasUndo;
+		},
+
+		/**
+		 * Perform undo on current index.
+		 */
+		undo : function()
+		{
+			if ( this.undoable() )
+			{
+				this.save( true );
+
+				var image = this.getNextImage( true );
+				if ( image )
+					return this.restoreImage( image ), true;
+			}
+
+			return false;
+		},
+
+		/**
+		 * Perform redo on current index.
+		 */
+		redo : function()
+		{
+			if ( this.redoable() )
+			{
+				// Try to save. If no changes have been made, the redo stack
+				// will not change, so it will still be redoable.
+				this.save( true );
+
+				// If instead we had changes, we can't redo anymore.
+				if ( this.redoable() )
+				{
+					var image = this.getNextImage( false );
+					if ( image )
+						return this.restoreImage( image ), true;
+				}
+			}
+
+			return false;
+		}
+	};
+})();
+
+CKEDITOR.config.undoStackSize = 20;
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/wsc/dialogs/ciframe.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/wsc/dialogs/ciframe.html	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/wsc/dialogs/ciframe.html	(revision 3747)
@@ -0,0 +1,49 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<!--
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+-->
+<html>
+<head>
+	<title></title>
+	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+	<script type="text/javascript">
+
+function gup( name )
+{
+	name = name.replace( /[\[]/, '\\\[' ).replace( /[\]]/, '\\\]' ) ;
+	var regexS = '[\\?&]' + name + '=([^&#]*)' ;
+	var regex = new RegExp( regexS ) ;
+	var results = regex.exec( window.location.href ) ;
+
+	if( results )
+		return results[ 1 ] ;
+	else
+		return '' ;
+}
+
+var interval;
+
+function sendData2Master()
+{
+	var destination = window.parent.parent ;
+	try
+	{
+		if ( destination.XDTMaster )
+		{
+			var t = destination.XDTMaster.read( [ gup( 'cmd' ), gup( 'data' ) ] ) ;
+			window.clearInterval( interval ) ;
+		}
+	}
+	catch (e) {}
+}
+
+function onLoad()
+{
+	interval = window.setInterval( sendData2Master, 100 );
+}
+
+</script>
+</head>
+<body onload="onLoad()"><p></p></body>
+</html>
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/wsc/dialogs/tmpFrameset.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/wsc/dialogs/tmpFrameset.html	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/wsc/dialogs/tmpFrameset.html	(revision 3747)
@@ -0,0 +1,51 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
+<!--
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+-->
+<html>
+<head>
+	<title></title>
+	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+	<script type="text/javascript">
+
+function doLoadScript( url )
+{
+	if ( !url )
+		return false ;
+
+	var s = document.createElement( "script" ) ;
+	s.type = "text/javascript" ;
+	s.src = url ;
+	document.getElementsByTagName( "head" )[ 0 ].appendChild( s ) ;
+
+	return true ;
+}
+
+function tryLoad()
+{
+	var opener = window.parent;
+
+    // get access to global parameters
+    var oParams = window.opener.oldFramesetPageParams ;
+
+    // make frameset rows string prepare
+    var sFramesetRows = ( parseInt( oParams.firstframeh, 10 ) || '30') + ",*," + ( parseInt( oParams.thirdframeh, 10 ) || '150' ) + ',0' ;
+    document.getElementById( 'itFrameset' ).rows = sFramesetRows ;
+
+    // dynamic including init frames and crossdomain transport code
+    // from config sproxy_js_frameset url
+    var addScriptUrl = oParams.sproxy_js_frameset ;
+    doLoadScript( addScriptUrl ) ;
+}
+
+	</script>
+</head>
+
+<frameset id="itFrameset" onload="tryLoad();" border="0" rows="30,*,*,0">
+    <frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="0" marginwidth="2" src="" name="navbar"></frame>
+    <frame scrolling="auto" framespacing="0" frameborder="0" noresize="noresize" marginheight="0" marginwidth="0" src="" name="mid"></frame>
+    <frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="1" marginwidth="1" src="" name="bot"></frame>
+    <frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="1" marginwidth="1" src="" name="spellsuggestall"></frame>
+</frameset>
+</html>
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/wsc/dialogs/wsc.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/wsc/dialogs/wsc.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/wsc/dialogs/wsc.css	(revision 3747)
@@ -0,0 +1,83 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+html, body
+{
+	background-color: transparent;
+	margin: 0px;
+	padding: 0px;
+}
+
+body
+{
+	padding: 10px;
+}
+
+body, td, input, select, textarea
+{
+	font-size: 11px;
+	font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana;
+}
+
+.midtext
+{
+	padding:0px;
+	margin:10px;
+}
+
+.midtext p
+{
+	padding:0px;
+	margin:10px;
+}
+
+.Button
+{
+	border: #737357 1px solid;
+	color: #3b3b1f;
+	background-color: #c7c78f;
+}
+
+.PopupTabArea
+{
+	color: #737357;
+	background-color: #e3e3c7;
+}
+
+.PopupTitleBorder
+{
+	border-bottom: #d5d59d 1px solid;
+}
+.PopupTabEmptyArea
+{
+	padding-left: 10px;
+	border-bottom: #d5d59d 1px solid;
+}
+
+.PopupTab, .PopupTabSelected
+{
+	border-right: #d5d59d 1px solid;
+	border-top: #d5d59d 1px solid;
+	border-left: #d5d59d 1px solid;
+	padding: 3px 5px 3px 5px;
+	color: #737357;
+}
+
+.PopupTab
+{
+	margin-top: 1px;
+	border-bottom: #d5d59d 1px solid;
+	cursor: pointer;
+	cursor: hand;
+}
+
+.PopupTabSelected
+{
+	font-weight: bold;
+	cursor: default;
+	padding-top: 4px;
+	border-bottom: #f1f1e3 1px solid;
+	background-color: #f1f1e3;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/wsc/dialogs/wsc.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/wsc/dialogs/wsc.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/wsc/dialogs/wsc.js	(revision 3747)
@@ -0,0 +1,169 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.dialog.add( 'checkspell', function( editor )
+{
+	var number = CKEDITOR.tools.getNextNumber(),
+		iframeId = 'cke_frame_' + number,
+		textareaId = 'cke_data_' + number,
+		errorBoxId = 'cke_error_' + number,
+		interval,
+		protocol = document.location.protocol || 'http:',
+		errorMsg = editor.lang.spellCheck.notAvailable;
+
+	var pasteArea = '<textarea'+
+			' style="display: none"' +
+			' id="' + textareaId + '"' +
+			' rows="10"' +
+			' cols="40">' +
+		' </textarea><div' +
+			' id="' + errorBoxId + '"' +
+			' style="display:none;color:red;font-size:16px;font-weight:bold;padding-top:160px;text-align:center;z-index:11;">' +
+		'</div><iframe' +
+			' src=""' +
+			' style="width:485px;background-color:#f1f1e3;height:380px"' +
+			' frameborder="0"' +
+			' name="' + iframeId + '"' +
+			' id="' + iframeId + '"' +
+			' allowtransparency="1">' +
+		'</iframe>';
+
+	var wscCoreUrl = editor.config.wsc_customLoaderScript || ( protocol +
+			'//loader.spellchecker.net/sproxy_fck/sproxy.php'
+			+ '?plugin=fck2'
+			+ '&customerid=' + editor.config.wsc_customerId
+			+ '&cmd=script&doc=wsc&schema=22'
+		);
+
+	if ( editor.config.wsc_customLoaderScript )
+		errorMsg += '<p style="color:#000;font-size:11px;font-weight: normal;text-align:center;padding-top:10px">' +
+			editor.lang.spellCheck.errorLoading.replace( /%s/g, editor.config.wsc_customLoaderScript ) + '</p>';
+
+	function burnSpelling( dialog, errorMsg )
+	{
+		var i = 0;
+		return function ()
+		{
+			if ( typeof( window.doSpell ) == 'function' )
+			{
+				//Call from window.setInteval expected at once.
+				if ( typeof( interval ) != 'undefined' )
+					window.clearInterval( interval );
+
+				initAndSpell( dialog );
+			}
+			else if ( i++ == 180 )								// Timeout: 180 * 250ms = 45s.
+				_cancelOnError( errorMsg );
+		};
+	}
+
+	window._cancelOnError = function( m )
+	{
+		if ( typeof( window.WSC_Error ) == 'undefined' )
+		{
+			CKEDITOR.document.getById( iframeId ).setStyle( 'display', 'none' );
+			var errorBox = CKEDITOR.document.getById( errorBoxId );
+			errorBox.setStyle( 'display', 'block' );
+			errorBox.setHtml( m || editor.lang.spellCheck.notAvailable );
+		}
+	};
+
+	function initAndSpell( dialog )
+	{
+		var LangComparer = new window._SP_FCK_LangCompare(),							// Language abbr standarts comparer.
+			pluginPath = CKEDITOR.getUrl( editor.plugins.wsc.path + 'dialogs/' ),			// Service paths corecting/preparing.
+			framesetPath = pluginPath + 'tmpFrameset.html';
+
+		// global var is used in FCK specific core
+		// change on equal var used in fckplugin.js
+		gFCKPluginName = 'wsc';
+
+		LangComparer.setDefaulLangCode( editor.config.defaultLanguage );
+
+		window.doSpell({
+			ctrl : textareaId,
+			lang : LangComparer.getSPLangCode( editor.langCode ),
+			winType : iframeId,		// If not defined app will run on winpopup.
+
+			// Callback binding section.
+			onCancel : function()
+			{
+				dialog.hide();
+			},
+			onFinish : function( dT )
+			{
+				editor.focus();
+				dialog.getParentEditor().setData( dT.value );
+				dialog.hide();
+			},
+
+			// Some manipulations with client static pages.
+			staticFrame : framesetPath,
+			framesetPath : framesetPath,
+			iframePath : pluginPath + 'ciframe.html',
+
+			// Styles defining.
+			schemaURI : pluginPath + 'wsc.css'
+		});
+
+		// Hide user message console (if application was loaded more then after timeout).
+		CKEDITOR.document.getById( errorBoxId ).setStyle( 'display', 'none' );
+		CKEDITOR.document.getById( iframeId ).setStyle( 'display', 'block' );
+	}
+
+	return {
+		title : editor.lang.spellCheck.title,
+		minWidth : 485,
+		minHeight : 380,
+		buttons : [ CKEDITOR.dialog.cancelButton ],
+		onShow : function()
+		{
+			var contentArea = this.getContentElement( 'general', 'content' ).getElement();
+			contentArea.setHtml( pasteArea );
+
+			if ( typeof( window.doSpell ) != 'function' )
+			{
+				// Load script.
+				CKEDITOR.document.getHead().append(
+					CKEDITOR.document.createElement( 'script',
+						{
+							attributes :
+								{
+									type : 'text/javascript',
+									src : wscCoreUrl
+								}
+						})
+				);
+			}
+
+			var sData = editor.getData();											// Get the data to be checked.
+			CKEDITOR.document.getById( textareaId ).setValue( sData );
+
+			interval = window.setInterval( burnSpelling( this, errorMsg ), 250 );
+		},
+		onHide : function()
+		{
+			window.ooo = undefined;
+			window.int_framsetLoaded = undefined;
+			window.framesetLoaded = undefined;
+			window.is_window_opened = false;
+		},
+		contents : [
+			{
+				id : 'general',
+				label : editor.lang.spellCheck.title,
+				padding : 0,
+				elements : [
+					{
+						type : 'html',
+						id : 'content',
+						style : 'width:485;height:380px',
+						html : '<div></div>'
+					}
+				]
+			}
+		]
+	};
+});
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/wsc/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/wsc/plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/wsc/plugin.js	(revision 3747)
@@ -0,0 +1,32 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * @file Spell checker
+ */
+
+// Register a plugin named "wsc".
+CKEDITOR.plugins.add( 'wsc',
+{
+	init : function( editor )
+	{
+		var commandName = 'checkspell';
+
+		var command = editor.addCommand( commandName, new CKEDITOR.dialogCommand( commandName ) );
+
+		// SpellChecker doesn't work in Opera and with custom domain
+		command.modes = { wysiwyg : ( !CKEDITOR.env.opera && document.domain == window.location.hostname ) };
+
+		editor.ui.addButton( 'SpellChecker',
+			{
+				label : editor.lang.spellCheck.toolbar,
+				command : commandName
+			});
+		CKEDITOR.dialog.add( commandName, this.path + 'dialogs/wsc.js' );
+	}
+});
+
+CKEDITOR.config.wsc_customerId			= CKEDITOR.config.wsc_customerId || '1:ua3xw1-2XyGJ3-GWruD3-6OFNT1-oXcuB1-nR6Bp4-hgQHc-EcYng3-sdRXG3-NOfFk' ;
+CKEDITOR.config.wsc_customLoaderScript	= CKEDITOR.config.wsc_customLoaderScript || null;
Index: /CKEditor/branches/versions/3.0.x/_source/plugins/wysiwygarea/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/plugins/wysiwygarea/plugin.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/plugins/wysiwygarea/plugin.js	(revision 3747)
@@ -11,82 +11,61 @@
 (function()
 {
-	// Matches all self-closing tags that are not defined as empty elements in
-	// the DTD (like &lt;span/&gt;).
-	var invalidSelfCloseTagsRegex = /(<(?!br|hr|base|meta|link|param|img|area|input|col)([a-zA-Z0-9:]+)[^>]*)\/>/gi;
-
-	// #### protectEvents - START
-
-	// Matches all tags that have event attributes (onXYZ).
-	var tagsWithEventRegex = /<[^\>]+ on\w+\s*=[\s\S]+?\>/g;
-
-	// Matches all event attributes.
-	var eventAttributesRegex = /\s(on\w+)(?=\s*=\s*?('|")[\s\S]*?\2)/g;
-
-	// Matches the protected attribute prefix.
-	var protectedEventsRegex = /_cke_pa_/g;
-
-	var protectEvents = function( html )
-	{
-		return html.replace( tagsWithEventRegex, protectEvents_ReplaceTags );
-	};
-
-	var protectEvents_ReplaceTags = function( tagMatch )
-	{
-		// Appends the "_cke_pa_" prefix to the event name.
-		return tagMatch.replace( eventAttributesRegex, ' _cke_pa_$1' );
-	};
-
-	var protectEventsRestore = function( html )
-	{
-		return html.replace( protectedEventsRegex, '' ) ;
-	};
-
-	// #### protectEvents - END
-
-	// #### protectAttributes - START
-	var protectUrlTagRegex = /<(?:a|area|img)(?=\s).*?\s(?:href|src)=((?:(?:\s*)("|').*?\2)|(?:[^"'][^ >]+))/gi,
-		protectUrlAttributeRegex = /\s(href|src)(\s*=\s*?('|")[\s\S]*?\3)/gi,
-		protectedUrlTagRegex = /<(?:a|area|img)(?=\s)(?:"[^"]*"|'[^']*'|[^<])*>/gi,
-		protectedAttributeRegex = /_cke_saved_/gi,
-		protectUrls = function( html )
-		{
-			return html.replace( protectUrlTagRegex, protectUrls_ReplaceTags );
-		},
-		protectUrls_ReplaceTags = function( tagMatch )
-		{
-			return tagMatch.replace( protectUrlAttributeRegex, '$& _cke_saved_$1$2');
-		},
-		protectUrlsRestore = function( html )
-		{
-			return html.replace( protectedUrlTagRegex, protectUrlsRestore_ReplaceTags );
-		},
-		protectUrlsRestore_ReplaceTags = function( tagMatch )
-		{
-			return tagMatch.replace( protectUrlAttributeRegex, '' ).replace( protectedAttributeRegex, '' );
-		};
-	// #### protectAttributes - END
-
-	var onInsertHtml = function( evt )
+	/**
+	 * List of elements in which has no way to move editing focus outside.
+	 */
+	var nonExitableElementNames = { table:1,pre:1 };
+	// Matching an empty paragraph at the end of document.
+	var emptyParagraphRegexp = /\s*<(p|div|address|h\d|center)[^>]*>\s*(?:<br[^>]*>|&nbsp;|&#160;)\s*(:?<\/\1>)?\s*$/gi;
+
+	function onInsertHtml( evt )
 	{
 		if ( this.mode == 'wysiwyg' )
 		{
-			var $doc = this.document.$;
+			this.focus();
+
+			var selection = this.getSelection(),
+				data = evt.data;
+
+			if ( this.dataProcessor )
+				data = this.dataProcessor.toHtml( data );
 
 			if ( CKEDITOR.env.ie )
-				$doc.selection.createRange().pasteHTML( evt.data );
+			{
+				var selIsLocked = selection.isLocked;
+
+				if ( selIsLocked )
+					selection.unlock();
+
+				var $sel = selection.getNative();
+				if ( $sel.type == 'Control' )
+					$sel.clear();
+				$sel.createRange().pasteHTML( data );
+
+				if ( selIsLocked )
+					this.getSelection().lock();
+			}
 			else
-				$doc.execCommand( 'inserthtml', false, evt.data );
+				this.document.$.execCommand( 'inserthtml', false, data );
 		}
-	};
-
-	var onInsertElement = function( evt )
+	}
+
+	function onInsertElement( evt )
 	{
 		if ( this.mode == 'wysiwyg' )
 		{
+			this.focus();
+			this.fire( 'saveSnapshot' );
+
 			var element = evt.data,
-				isBlock = CKEDITOR.dtd.$block[ element.getName() ];
+				elementName = element.getName(),
+				isBlock = CKEDITOR.dtd.$block[ elementName ];
 
 			var selection = this.getSelection(),
 				ranges = selection.getRanges();
+
+			var selIsLocked = selection.isLocked;
+
+			if ( selIsLocked )
+				selection.unlock();
 
 			var range, clone, lastElement, bookmark;
@@ -99,9 +78,18 @@
 				range.deleteContents();
 
-				clone = element.clone( true );
-
-				// If the new node is a block element, split the current block.
-				if ( this.config.enterMode != 'br' && isBlock )
-					range.splitBlock();
+				clone = !i && element || element.clone( true );
+
+				// If we're inserting a block at dtd-violated position, split
+				// the parent blocks until we reach blockLimit.
+				var parent, dtd;
+				if ( this.config.enterMode != CKEDITOR.ENTER_BR && isBlock )
+				{
+					while( ( parent = range.getCommonAncestor( false, true ) )
+							&& ( dtd = CKEDITOR.dtd[ parent.getName() ] )
+							&& !( dtd && dtd [ elementName ] ) )
+					{
+						range.splitBlock();
+					}
+				}
 
 				// Insert the new node.
@@ -115,7 +103,99 @@
 
 			range.moveToPosition( lastElement, CKEDITOR.POSITION_AFTER_END );
+
+			var next = lastElement.getNextSourceNode( true );
+			if ( next && next.type == CKEDITOR.NODE_ELEMENT )
+				range.moveToElementEditStart( next );
+
 			selection.selectRanges( [ range ] );
+
+			if ( selIsLocked )
+				this.getSelection().lock();
+
+			// Save snaps after the whole execution completed.
+			// This's a workaround for make DOM modification's happened after
+			// 'insertElement' to be included either, e.g. Form-based dialogs' 'commitContents'
+			// call.
+			CKEDITOR.tools.setTimeout( function(){
+				this.fire( 'saveSnapshot' );
+			}, 0, this );
 		}
-	};
+	}
+
+	/**
+	 *  Auto-fixing block-less content by wrapping paragraph (#3190), prevent
+	 *  non-exitable-block by padding extra br.(#3189)
+	 */
+	function onSelectionChangeFixBody( evt )
+	{
+		var editor = evt.editor,
+			path = evt.data.path,
+			blockLimit = path.blockLimit,
+			selection = evt.data.selection,
+			range = selection.getRanges()[0],
+			body = editor.document.getBody(),
+			enterMode = editor.config.enterMode;
+
+		// When enterMode set to block, we'll establing new paragraph only if we're
+		// selecting inline contents right under body. (#3657)
+		if ( enterMode != CKEDITOR.ENTER_BR
+		     && range.collapsed
+			 && blockLimit.getName() == 'body'
+			 && !path.block )
+		{
+			var bms = selection.createBookmarks(),
+				fixedBlock = range.fixBlock( true,
+					editor.config.enterMode == CKEDITOR.ENTER_DIV ? 'div' : 'p'  );
+
+			// For IE, we'll be removing any bogus br ( introduce by fixing body )
+			// right now to prevent it introducing visual line break.
+			if ( CKEDITOR.env.ie )
+			{
+				var brNodeList = fixedBlock.getElementsByTag( 'br' ), brNode;
+				for ( var i = 0 ; i < brNodeList.count() ; i++ )
+				{
+					if( ( brNode = brNodeList.getItem( i ) ) && brNode.hasAttribute( '_cke_bogus' ) )
+						brNode.remove();
+				}
+			}
+
+			selection.selectBookmarks( bms );
+
+			// If the fixed block is blank and is already followed by a exitable
+			// block, we should drop it and move to the exist block(#3684).
+			var children = fixedBlock.getChildren(),
+				count = children.count(),
+				firstChild,
+				previousElement = fixedBlock.getPrevious( true ),
+				nextElement = fixedBlock.getNext( true ),
+				enterBlock;
+			if ( previousElement && previousElement.getName
+				 && !( previousElement.getName() in nonExitableElementNames ) )
+				enterBlock = previousElement;
+			else if ( nextElement && nextElement.getName
+					  && !( nextElement.getName() in nonExitableElementNames ) )
+				enterBlock = nextElement;
+
+			if( ( !count
+				  || ( firstChild = children.getItem( 0 ) ) && firstChild.is && firstChild.is( 'br' ) )
+				&& enterBlock )
+			{
+				fixedBlock.remove();
+				range.moveToElementEditStart( enterBlock );
+				range.select();
+			}
+		}
+
+		// Inserting the padding-br before body if it's preceded by an
+		// unexitable block.
+		var lastNode = body.getLast( true );
+		if ( lastNode.getName && ( lastNode.getName() in nonExitableElementNames ) )
+		{
+			var paddingBlock = editor.document.createElement(
+					( CKEDITOR.env.ie && enterMode != CKEDITOR.ENTER_BR ) ?
+						'<br _cke_bogus="true" />' : 'br' );
+			body.append( paddingBlock );
+		}
+	}
 
 	CKEDITOR.plugins.add( 'wysiwygarea',
@@ -123,6 +203,9 @@
 		requires : [ 'editingblock' ],
 
-		init : function( editor, pluginPath )
+		init : function( editor )
 		{
+			var fixForBody = ( editor.config.enterMode != CKEDITOR.ENTER_BR )
+				? editor.config.enterMode == CKEDITOR.ENTER_DIV ? 'div' : 'p' : false;
+
 			editor.on( 'editingBlockReady', function()
 				{
@@ -133,6 +216,6 @@
 						fireMode;
 
-					// The following information is needed for IE only.
-					var isCustomDomain = CKEDITOR.env.ie && document.domain != window.location.hostname;
+					// Support for custom document.domain in IE.
+					var isCustomDomain = CKEDITOR.env.isCustomDomain();
 
 					// Creates the iframe that holds the editable document.
@@ -145,4 +228,5 @@
 							.setAttributes({
 								frameBorder : 0,
+								tabIndex : -1,
 								allowTransparency : true })
 							.setStyles({
@@ -170,8 +254,43 @@
 						}
 
-						// Append the new IFRAME to the main element. For IE, it
-						// must be done after setting the "src", to avoid the
-						// "secure/unsecure" message under HTTPS.
-						mainElement.append( iframe );
+						var accTitle = editor.lang.editorTitle.replace( '%1', editor.name );
+
+						if ( CKEDITOR.env.gecko )
+						{
+							// Accessibility attributes for Firefox.
+							mainElement.setAttributes(
+								{
+									role : 'region',
+									title : accTitle
+								} );
+							iframe.setAttributes(
+								{
+									role : 'region',
+									title : ' '
+								} );
+						}
+						else if ( CKEDITOR.env.webkit )
+						{
+							iframe.setAttribute( 'title', accTitle );	// Safari 4
+							iframe.setAttribute( 'name', accTitle );	// Safari 3
+						}
+						else if ( CKEDITOR.env.ie )
+						{
+							// Accessibility label for IE.
+							var fieldset = CKEDITOR.dom.element.createFromHtml(
+								'<fieldset style="height:100%' +
+									( CKEDITOR.env.quirks ? ';position:relative' : '' ) +
+								'">' +
+									'<legend style="position:absolute;left:-10000px">' +
+										CKEDITOR.tools.htmlEncode( accTitle ) +
+									'</legend>' +
+								'</fieldset>'
+								, CKEDITOR.document );
+							iframe.appendTo( fieldset );
+							fieldset.appendTo( mainElement );
+						}
+
+						if ( !CKEDITOR.env.ie )
+							mainElement.append( iframe );
 					};
 
@@ -188,5 +307,5 @@
 								// Call the temporary function for the editing
 								// boostrap.
-								'window.parent.CKEDITOR._.contentDomReady' + editor.name + '( window );' +
+								'window.parent.CKEDITOR._["contentDomReady' + editor.name + '"]( window );' +
 							'}' +
 						'</script>';
@@ -224,4 +343,33 @@
 						domDocument	= editor.document	= new CKEDITOR.dom.document( domDocument );
 
+						// Gecko/Webkit need some help when selecting control type elements. (#3448)
+						if ( !( CKEDITOR.env.ie || CKEDITOR.env.opera) )
+						{
+							domDocument.on( 'mousedown', function( ev )
+							{
+								var control = ev.data.getTarget();
+								if ( control.is( 'img', 'hr', 'input', 'textarea', 'select' ) )
+									editor.getSelection().selectElement( control );
+							} );
+						}
+
+						// Webkit: avoid from editing form control elements content.
+						if ( CKEDITOR.env.webkit )
+						{
+							// Prevent from tick checkbox/radiobox/select
+							domDocument.on( 'click', function( ev )
+							{
+								if ( ev.data.getTarget().is( 'input', 'select' ) )
+									ev.data.preventDefault();
+							} );
+
+							// Prevent from editig textfield/textarea value.
+							domDocument.on( 'mouseup', function( ev )
+							{
+								if ( ev.data.getTarget().is( 'input', 'textarea' ) )
+									ev.data.preventDefault();
+							} );
+						}
+
 						var focusTarget = ( CKEDITOR.env.ie || CKEDITOR.env.safari ) ?
 								domWindow : domDocument;
@@ -241,17 +389,49 @@
 							keystrokeHandler.attach( domDocument );
 
-						editor.fire( 'contentDom' );
-
-						if ( fireMode )
-						{
-							editor.mode = 'wysiwyg';
-							editor.fire( 'mode' );
-							fireMode = false;
-						}
-
-						isLoadingData = false;
-
-						if ( isPendingFocus )
-							editor.focus();
+						// Adds the document body as a context menu target.
+						if ( editor.contextMenu )
+							editor.contextMenu.addTarget( domDocument );
+
+						setTimeout( function()
+							{
+								editor.fire( 'contentDom' );
+
+								if ( fireMode )
+								{
+									editor.mode = 'wysiwyg';
+									editor.fire( 'mode' );
+									fireMode = false;
+								}
+
+								isLoadingData = false;
+
+								if ( isPendingFocus )
+								{
+									editor.focus();
+									isPendingFocus = false;
+								}
+
+								/*
+								 * IE BUG: IE might have rendered the iframe with invisible contents.
+								 * (#3623). Push some inconsequential CSS style changes to force IE to
+								 * refresh it.
+								 *
+								 * Also, for some unknown reasons, short timeouts (e.g. 100ms) do not
+								 * fix the problem. :(
+								 */
+								if ( CKEDITOR.env.ie )
+								{
+									setTimeout( function()
+										{
+											if ( editor.document )
+											{
+												var $body = editor.document.$.body;
+												$body.runtimeStyle.marginBottom = '0px';
+												$body.runtimeStyle.marginBottom = '';
+											}
+										}, 1000 );
+								}
+							},
+							0 );
 					};
 
@@ -261,4 +441,7 @@
 							{
 								mainElement = holderElement;
+
+								if ( CKEDITOR.env.ie && ( CKEDITOR.env.quirks || CKEDITOR.env.version < 8 ) )
+									holderElement.setStyle( 'position', 'relative' );
 
 								// Create the iframe at load for all browsers
@@ -285,23 +468,7 @@
 								// Get the HTML version of the data.
 								if ( editor.dataProcessor )
-									data = editor.dataProcessor.toHtml( data );
-
-								// Fix for invalid self-closing tags (see #152).
-								// TODO: Check if this fix is really needed as
-								// soon as we have the XHTML generator.
-								if ( CKEDITOR.env.ie )
-									data = data.replace( invalidSelfCloseTagsRegex, '$1></$2>' );
-
-								// Prevent event attributes (like "onclick") to
-								// execute while editing.
-								if ( CKEDITOR.env.ie || CKEDITOR.env.webkit )
-									data = protectEvents( data );
-
-								// Protect src or href attributes.
-								data = protectUrls( data );
-
-								// Replace tags with fake elements.
-								if ( editor.fakeobjects )
-									data = editor.fakeobjects.protectHtml( data );
+								{
+									data = editor.dataProcessor.toHtml( data, fixForBody );
+								}
 
 								data =
@@ -310,4 +477,7 @@
 									'<head>' +
 										'<link href="' + editor.config.contentsCss + '" type="text/css" rel="stylesheet" _fcktemp="true"/>' +
+										'<style type="text/css" _fcktemp="true">' +
+											editor._.styles.join( '\n' ) +
+										'</style>'+
 									'</head>' +
 									'<body>' +
@@ -347,20 +517,12 @@
 							getData : function()
 							{
-								var data = iframe.$.contentWindow.document.body;
+								var data = iframe.getFrameDocument().getBody().getHtml();
 
 								if ( editor.dataProcessor )
-									data = editor.dataProcessor.toDataFormat( new CKEDITOR.dom.element( data ) );
-								else
-									data = data.innerHTML;
-
-								// Restore protected attributes.
-								data = protectEventsRestore( data );
-
-								// Restore protected URLs.
-								data = protectUrlsRestore( data );
-
-								// Restore fake elements.
-								if ( editor.fakeobjects )
-									data = editor.fakeobjects.restoreHtml( data );
+									data = editor.dataProcessor.toDataFormat( data, fixForBody );
+
+								// Strip the last blank paragraph within document.
+								if ( editor.config.ignoreEmptyParagraph )
+									data = data.replace( emptyParagraphRegexp, '' );
 
 								return data;
@@ -369,10 +531,10 @@
 							getSnapshotData : function()
 							{
-								return iframe.$.contentWindow.document.body.innerHTML;
+								return iframe.getFrameDocument().getBody().getHtml();
 							},
 
 							loadSnapshotData : function( data )
 							{
-								iframe.$.contentWindow.document.body.innerHTML = data;
+								iframe.getFrameDocument().getBody().setHtml( data );
 							},
 
@@ -389,5 +551,8 @@
 									isPendingFocus = true;
 								else if ( editor.window )
+								{
 									editor.window.focus();
+									editor.selectionChange();
+								}
 							}
 						});
@@ -395,4 +560,6 @@
 					editor.on( 'insertHtml', onInsertHtml, null, null, 20 );
 					editor.on( 'insertElement', onInsertElement, null, null, 20 );
+					// Auto fixing on some document structure weakness to enhance usabilities. (#3190 and #3189)
+					editor.on( 'selectionChange', onSelectionChangeFixBody, null, null, 1 );
 				});
 		}
@@ -425,5 +592,5 @@
  * browser (currently Firefox and Safari only).<br /><br />
  *
- * Even if word suggestions will not appear in the FCKeditor context menu, this
+ * Even if word suggestions will not appear in the CKEditor context menu, this
  * feature is useful to help quickly identifying misspelled words.<br /><br />
  *
@@ -436,2 +603,10 @@
  */
 CKEDITOR.config.disableNativeSpellChecker = true;
+/**
+ * The editor will post an empty value ("") if you have just an empty paragraph on it, like this:
+ * @example
+ * <p></p>
+ * <p><br /></p>
+ * <p><b></b></p>
+ */
+CKEDITOR.config.ignoreEmptyParagraph = true;
Index: /CKEditor/branches/versions/3.0.x/_source/skins/kama/dialog.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/kama/dialog.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/kama/dialog.css	(revision 3747)
@@ -0,0 +1,654 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/* Restore the dialog visibility */
+body .cke_dialog
+{
+	visibility: visible;
+}
+
+.cke_skin_kama .cke_dialog_body
+{
+	position: relative;
+	z-index: 1;
+	border: solid 1px #ddd;
+	padding: 5px;
+	background-color: #fff;
+	-moz-border-radius: 5px;
+	-webkit-border-radius: 5px;
+	border-radius: 5px;
+}
+
+.cke_skin_kama .cke_dialog_tl,
+.cke_skin_kama .cke_dialog_tr,
+.cke_skin_kama .cke_dialog_tc,
+.cke_skin_kama .cke_dialog_bl,
+.cke_skin_kama .cke_dialog_br,
+.cke_skin_kama .cke_dialog_bc,
+.cke_skin_kama .cke_dialog_ml,
+.cke_skin_kama .cke_dialog_mr
+{
+	display:none;
+}
+
+.cke_skin_kama .cke_dialog_title
+{
+	font-weight: bold;
+	font-size: 14px;
+	padding: 3px 3px 8px;
+	cursor: move;
+	position: relative;
+	border-bottom: 1px solid #eee;
+}
+
+.cke_skin_kama .cke_browser_iequirks .cke_dialog_title,
+.cke_skin_kama .cke_browser_ie6 .cke_dialog_title,
+.cke_skin_kama .cke_browser_ie7 .cke_dialog_title
+{
+	margin-bottom: 22px;
+}
+
+.cke_skin_kama .cke_browser_ie.cke_rtl .cke_dialog_title
+{
+	position: static !important;
+}
+
+.cke_skin_kama .cke_dialog_contents
+{
+	background-color: #ebebeb;
+	border: solid 1px #fff;
+	border-bottom: none;
+	overflow: auto;
+	padding: 17px 10px 5px 10px;
+	-moz-border-radius-topleft: 5px;
+	-moz-border-radius-topright: 5px;
+	-webkit-border-top-left-radius: 5px;
+	-webkit-border-top-right-radius: 5px;
+	border-top-left-radius: 5px;
+	border-top-right-radius: 5px;
+	margin-top: 22px;
+}
+
+.cke_skin_kama .cke_dialog_footer
+{
+	text-align: right;
+	background-color: #ebebeb;
+	border: solid 1px #fff;
+	border-bottom: none;
+	-moz-border-radius-bottomleft: 5px;
+	-moz-border-radius-bottomright: 5px;
+	-webkit-border-bottom-left-radius: 5px;
+	-webkit-border-bottom-right-radius: 5px;
+	border-bottom-left-radius: 5px;
+	border-bottom-right-radius: 5px;
+}
+
+.cke_skin_kama .cke_rtl .cke_dialog_footer
+{
+	text-align: left;
+}
+
+/* tabs */
+
+.cke_skin_kama .cke_dialog_tabs
+{
+	height: 23px;
+	display: inline-block;
+	_display: block;
+	margin-left:10px;
+	margin-right:10px;
+	margin-top: 11px;
+	position: absolute;
+	z-index: 2;
+}
+
+.cke_skin_kama .cke_browser_iequirks .cke_dialog_tabs,
+.cke_skin_kama .cke_browser_ie6 .cke_dialog_tabs,
+.cke_skin_kama .cke_browser_ie7 .cke_dialog_tabs
+{
+	top: 33px;
+}
+
+.cke_skin_kama .cke_rtl .cke_dialog_tabs
+{
+	right: 10px;
+}
+
+.cke_skin_kama a.cke_dialog_tab,
+.cke_skin_kama a:link.cke_dialog_tab,
+.cke_skin_kama a:active.cke_dialog_tab,
+.cke_skin_kama a:hover.cke_dialog_tab,
+.cke_skin_kama a:visited.cke_dialog_tab
+{
+	background-image: url(sprites.png);
+	background-repeat: repeat-x;
+	background-position: 0 -1323px;
+
+	background-color: #ebebeb;
+	height: 14px;
+	padding: 4px 8px;
+	display: inline-block;
+	cursor: pointer;
+
+}
+
+/* Gecko 1.8 layout workaround. */
+.cke_skin_kama .cke_browser_gecko18 a.cke_dialog_tab,
+.cke_skin_kama .cke_browser_gecko18 a:link.cke_dialog_tab,
+.cke_skin_kama .cke_browser_gecko18 a:active.cke_dialog_tab,
+.cke_skin_kama .cke_browser_gecko18 a:hover.cke_dialog_tab,
+.cke_skin_kama .cke_browser_gecko18 a:visited.cke_dialog_tab
+{
+	display: inline;
+	position: relative;
+	top: 6px;
+}
+
+.cke_skin_kama a:hover.cke_dialog_tab
+{
+	background-color: #f1f1e3;
+}
+
+.cke_skin_kama a.cke_dialog_tab_selected,
+.cke_skin_kama a:link.cke_dialog_tab_selected,
+.cke_skin_kama a:active.cke_dialog_tab_selected,
+.cke_skin_kama a:hover.cke_dialog_tab_selected,
+.cke_skin_kama a:visited.cke_dialog_tab_selected
+{
+	background-position: 0 -1279px;
+	cursor: default;
+}
+
+/* single_page */
+
+.cke_skin_kama .cke_single_page .cke_dialog_tabs
+{
+	display: none;
+}
+
+.cke_skin_kama .cke_single_page .cke_dialog_contents
+{
+	padding-top: 5px;
+	margin-top: 10px;
+}
+
+.cke_skin_kama .cke_dialog_ui_vbox table,
+.cke_skin_kama .cke_dialog_ui_hbox table
+{
+	margin: auto;
+}
+
+.cke_skin_kama .cke_dialog_ui_vbox_child
+{
+	padding: 5px 0px;
+}
+
+.cke_skin_kama input.cke_dialog_ui_input_text,
+.cke_skin_kama input.cke_dialog_ui_input_password
+{
+	background-color: white;
+	border: none;
+	padding: 0px;
+	width: 100%;
+	height: 14px;
+}
+
+.cke_skin_kama div.cke_dialog_ui_input_text,
+.cke_skin_kama div.cke_dialog_ui_input_password
+{
+	background-color: white;
+	border: 1px solid #a0a0a0;
+	padding: 1px 0px;
+}
+
+.cke_skin_kama textarea.cke_dialog_ui_input_textarea
+{
+	background-color: white;
+	border: none;
+	padding: 0px;
+	width: 100%;
+	/*
+	 * IE6 BUG: Scrollbars in textareas can overflow even if the outer DIV is set to overflow:hidden.
+	 * So leave 1% width for the scrollbar. In most situations the 1% isn't noticeable by users.
+	 */
+	_width: 99%;
+	overflow: auto;
+}
+
+.cke_skin_kama div.cke_dialog_ui_input_textarea
+{
+	background-color: white;
+	border: 1px solid #a0a0a0;
+	padding: 1px 0px;
+}
+
+.cke_skin_kama div.cke_disabled .cke_dialog_ui_labeled_content *
+{
+	background-color : #a0a0a0;
+	cursor : default;
+}
+
+.cke_skin_kama .cke_dialog_ui_hbox
+{
+	width: 100%;
+}
+
+.cke_skin_kama .cke_dialog_ui_hbox_first,
+.cke_skin_kama .cke_dialog_ui_hbox_child,
+.cke_skin_kama .cke_dialog_ui_hbox_last
+{
+	vertical-align: top;
+}
+
+.cke_skin_kama .cke_ltr .cke_dialog_ui_hbox_first,
+.cke_skin_kama .cke_ltr .cke_dialog_ui_hbox_child
+{
+	padding-right: 10px;
+}
+
+.cke_skin_kama .cke_rtl .cke_dialog_ui_hbox_first,
+.cke_skin_kama .cke_rtl .cke_dialog_ui_hbox_child
+{
+	padding-left: 10px;
+}
+
+/* button */
+
+.cke_skin_kama a.cke_dialog_ui_button
+{
+	border-collapse: separate;
+	cursor: default;
+
+	-moz-border-radius: 5px;
+	-webkit-border-radius: 5px;
+	border-radius: 5px;
+	background: transparent url(sprites.png) repeat-x scroll 0 -1069px;
+	_background: none;
+	padding: 5px 0;
+}
+
+/* IE6 buttons. */
+.cke_skin_kama .cke_browser_iequirks a.cke_dialog_ui_button span,
+.cke_skin_kama .cke_browser_ie6 a.cke_dialog_ui_button span
+{
+	/*border: #53D9F0 1px solid;*/
+	padding: 5px 20px;
+	text-align: center;
+	color: #3b3b1f;
+	background: #53D9F0 none;
+	display: inline-block;
+	cursor: default;
+}
+
+.cke_skin_kama a.cke_dialog_ui_button_ok
+{
+	background-position: 0 -1143px;
+	text-align: left;
+}
+
+.cke_skin_kama a.cke_dialog_ui_button_ok span
+{
+	background: transparent url(sprites.png) no-repeat scroll right -1219px;
+	min-width: 60px;
+	padding-right: 20px;
+	text-align: left;
+}
+
+.cke_skin_kama .cke_rtl a.cke_dialog_ui_button_ok span
+{
+	background-position: left -1219px;
+}
+
+.cke_skin_kama .cke_browser_ie7 a.cke_dialog_ui_button_ok span
+{
+	margin-right: 40px;
+}
+
+.cke_skin_kama .cke_browser_iequirks a.cke_dialog_ui_button_ok span,
+.cke_skin_kama .cke_browser_ie6 a.cke_dialog_ui_button_ok span
+{
+	background-color: #B8E834;
+	margin-right: 0;
+}
+
+.cke_skin_kama a.cke_dialog_ui_button_cancel
+{
+	background-position: 0 -1104px;
+}
+
+.cke_skin_kama a.cke_dialog_ui_button_cancel span
+{
+	background: transparent url(sprites.png) no-repeat scroll right -1245px;
+	padding-right: 20px;
+	padding-left: 20px;
+}
+
+.cke_skin_kama .cke_rtl a.cke_dialog_ui_button_cancel span
+{
+	background-position: left -1245px;
+}
+
+.cke_skin_kama .cke_browser_iequirks a.cke_dialog_ui_button_cancel span,
+.cke_skin_kama .cke_browser_ie6 a.cke_dialog_ui_button_cancel span
+{
+	background-color: #F65D20;
+}
+
+.cke_skin_kama .cke_browser_iequirks a.cke_dialog_ui_button_cancel span,
+.cke_skin_kama .cke_browser_ie6 a.cke_dialog_ui_button_cancel span,
+.cke_skin_kama .cke_browser_iequirks a.cke_dialog_ui_button_ok span,
+.cke_skin_kama .cke_browser_ie6 a.cke_dialog_ui_button_ok span
+{
+	background-image: none;
+}
+
+.cke_skin_kama span.cke_dialog_ui_button
+{
+	padding: 2px 10px;
+	text-align: center;
+	color: #222;
+	display: inline-block;
+	cursor: default;
+}
+
+/* Gecko 1.8 does not support display: inline-block */
+.cke_skin_kama .cke_browser_gecko18 .cke_dialog_footer_buttons span.cke_dialog_ui_button
+{
+	display: block;
+}
+
+.cke_skin_kama a.cke_dialog_ui_button span.cke_disabled
+{
+	border: #898980 1px solid;
+	color: #5e5e55;
+	background-color: #c5c5b3;
+}
+
+.cke_skin_kama a:hover.cke_dialog_ui_button,
+.cke_skin_kama a:focus.cke_dialog_ui_button,
+.cke_skin_kama a:active.cke_dialog_ui_button
+{
+	background-position: 0 -1179px;
+}
+
+/* Skip hover effect on IE6 */
+.cke_skin_kama .cke_browser_iequirks a:hover.cke_dialog_ui_button span,
+.cke_skin_kama .cke_browser_iequirks a:focus.cke_dialog_ui_button span,
+.cke_skin_kama .cke_browser_iequirks a:active.cke_dialog_ui_button span,
+.cke_skin_kama .cke_browser_ie6 a:hover.cke_dialog_ui_button span,
+.cke_skin_kama .cke_browser_ie6 a:focus.cke_dialog_ui_button span,
+.cke_skin_kama .cke_browser_ie6 a:active.cke_dialog_ui_button span
+{
+	background-image: none;
+	background: #F7A922;
+}
+
+.cke_skin_kama .cke_dialog_footer_buttons
+{
+	display: inline-table;
+	margin-right: 12px;
+	margin-left: 12px;
+	width: auto;
+	position: relative;
+}
+
+/* Gecko 1.8 does not support for display: inline-table */
+.cke_skin_kama .cke_browser_gecko18 .cke_dialog_footer_buttons
+{
+	display: inline;
+}
+
+.cke_skin_kama .cke_dialog_footer_buttons span.cke_dialog_ui_button
+{
+	margin: 7px 0;
+	text-align: center;
+}
+
+.cke_skin_kama strong
+{
+	font-weight: bold;
+}
+
+/* close_button */
+
+.cke_skin_kama .cke_dialog_close_button
+{
+	background-image: url(sprites.png);
+	background-repeat: no-repeat;
+	background-position: 0 -1022px;
+	position: absolute;
+	cursor: pointer;
+	text-align: center;
+	height: 20px;
+	width: 20px;
+	top: 5px;
+
+	/* IE 6 */
+	_background-image: url(images/sprites_ie6.png);
+	_background-position: 0 -713px;
+}
+
+.cke_skin_kama .cke_dialog_close_button span
+{
+	display: none;
+}
+
+.cke_skin_kama .cke_dialog_close_button:hover
+{
+	background-position: 0 -1045px;
+}
+
+.cke_skin_kama .cke_ltr .cke_dialog_close_button
+{
+	right: 10px;
+	_right: 22px;
+}
+
+.cke_skin_kama .cke_rtl .cke_dialog_close_button
+{
+	left: 10px;
+	_left: 22px;
+}
+
+.cke_skin_kama .cke_browser_ie6.cke_rtl .cke_dialog_close_button
+{
+	position: relative;
+	float: left;
+	margin-top: -55px;
+	margin-left: -7px;
+}
+
+.cke_skin_kama .cke_browser_iequirks.cke_rtl.cke_single_page .cke_dialog_close_button
+{
+	margin-top: -32px;
+}
+
+.cke_skin_kama .cke_browser_iequirks.cke_ltr .cke_dialog_close_button
+{
+	margin-top: 0;
+}
+
+.cke_skin_kama .cke_dialog_ui_input_select
+{
+	border: 1px solid #a0a0a0;
+	background-color: white;
+}
+
+.cke_skin_kama iframe.cke_dialog_ui_input_file
+{
+	width: 100%;
+	height: 25px;
+}
+
+/*
+ * Some utility CSS classes for dialog authors.
+ */
+.cke_skin_kama .cke_dialog .cke_dark_background
+{
+	background-color: #eaead1;
+}
+
+.cke_skin_kama .cke_dialog .cke_hand
+{
+	cursor: pointer;
+}
+
+.cke_skin_kama .cke_dialog .cke_centered
+{
+	text-align: center;
+}
+
+.cke_skin_kama .cke_dialog .cke_btn_reset
+{
+	float: right;
+	background-position: 0 -32px;
+	background-image: url(images/mini.gif);
+	width: 16px;
+	height: 16px;
+	background-repeat: no-repeat;
+	border: 1px none;
+	font-size: 1px;
+}
+
+.cke_skin_kama .cke_rtl .cke_dialog .cke_btn_reset
+{
+	float: left;
+}
+
+.cke_skin_kama .cke_dialog .cke_btn_locked,
+.cke_skin_kama .cke_dialog .cke_btn_unlocked
+{
+	float: left;
+	background-position: 0 0;
+	background-image: url(images/mini.gif);
+	width: 16px;
+	height: 16px;
+	background-repeat: no-repeat;
+	border: none 1px;
+	font-size: 1px;
+}
+
+.cke_skin_kama .cke_dialog .cke_btn_locked,
+.cke_skin_kama .cke_dialog .cke_btn_unlocked
+{
+	float: right;
+}
+
+.cke_skin_kama .cke_dialog .cke_btn_unlocked
+{
+	background-position: 0 -16px;
+	background-image: url(images/mini.gif);
+}
+
+.cke_skin_kama .cke_dialog .cke_btn_over
+{
+	border: outset 1px;
+	cursor: pointer;
+	cursor: hand;
+}
+
+.cke_skin_kama .cke_dialog  #ImagePreviewBox
+{
+	white-space : normal;
+	border : 2px ridge black;
+	overflow : scroll;
+	height : 160px;
+	width : 230px;
+	padding : 2px;
+	background-color : white;
+}
+.cke_skin_kama .cke_dialog  #ImagePreviewLoader
+{
+	position: absolute;
+	white-space : normal;
+	overflow : hidden;
+	height : 160px;
+	width : 230px;
+	margin : 2px;
+	padding : 2px;
+	opacity : 0.9;
+	filter : alpha(opacity=90);
+
+	background-color : #e4e4e4;
+}
+
+.cke_skin_kama .cke_dialog  #FlashPreviewBox
+{
+	white-space : normal;
+	border : 2px ridge black;
+	overflow : auto;
+	height : 160px;
+	width : 390px;
+	padding : 2px;
+	background-color : white;
+}
+
+.cke_skin_kama .cke_dialog .cke_dark_background
+{
+	text-align : center;
+	background-color: #eaead1;
+	font-size : 14px;
+}
+
+.cke_skin_kama .cke_dialog .cke_light_background
+{
+	text-align : center;
+	background-color: #ffffbe;
+}
+
+.cke_skin_kama .cke_dialog .cke_hand
+{
+	cursor: pointer;
+	cursor: hand;
+}
+
+.cke_skin_kama .cke_disabled
+{
+	color: #a0a0a0;
+}
+
+/* High Contrast Mode */
+
+.cke_skin_kama .cke_hc .cke_dialog_title,
+.cke_skin_kama .cke_hc .cke_dialog_tabs,
+.cke_skin_kama .cke_hc .cke_dialog_contents,
+.cke_skin_kama .cke_hc .cke_dialog_footer
+{
+	border-left: 1px solid;
+	border-right: 1px solid;
+}
+
+.cke_skin_kama .cke_hc .cke_dialog_title
+{
+	border-top: 1px solid;
+}
+
+.cke_skin_kama .cke_hc .cke_dialog_footer
+{
+	border-bottom: 1px solid;
+}
+
+.cke_skin_kama .cke_hc .cke_dialog_close_button span
+{
+	display: inline;
+	cursor: pointer;
+	cursor: hand;
+	font-weight: bold;
+	position: relative;
+	top: 3px;
+}
+
+.cke_skin_kama a.cke_smile img
+{
+	/* IE6 does not support transparent borders */
+	border: 2px solid #eaead1;
+}
+
+.cke_skin_kama a.cke_smile:focus img,
+.cke_skin_kama a.cke_smile:active img,
+.cke_skin_kama a.cke_smile:hover img
+{
+	border-color: #C7C78F;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/kama/editor.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/kama/editor.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/kama/editor.css	(revision 3747)
@@ -0,0 +1,21 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+@import url("reset.css");
+@import url("mainui.css");
+@import url("panel.css");
+@import url("toolbar.css");
+@import url("menu.css");
+@import url("richcombo.css");
+@import url("elementspath.css");
+@import url("icons.css");
+@import url("presets.css");
+
+/* Restore the container visibility */
+html .cke_skin_kama,
+html.cke_skin_kama_container
+{
+	visibility: visible;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/kama/elementspath.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/kama/elementspath.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/kama/elementspath.css	(revision 3747)
@@ -0,0 +1,68 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+@media print
+{
+	.cke_path
+	{
+		display: none;
+	}
+}
+
+.cke_skin_kama .cke_path
+{
+	padding: 0 5px;
+	display: inline-block;
+	float: left;
+}
+
+.cke_skin_kama .cke_rtl .cke_path
+{
+	float: right;
+}
+
+.cke_skin_kama .cke_path a,
+.cke_skin_kama .cke_path .cke_empty
+{
+	display: inline-block;
+	float: left;
+	padding-top: 1px;
+	padding-bottom: 1px;
+	padding-left: 4px;
+	padding-right: 4px;
+	margin-bottom : 3px;
+	color: #60676a;
+}
+
+.cke_skin_kama .cke_path .cke_empty
+{
+	visibility: hidden;
+}
+
+.cke_skin_kama .cke_rtl .cke_path a,
+.cke_skin_kama .cke_rtl .cke_path cke_empty
+{
+	float: right;
+}
+
+.cke_skin_kama .cke_path a:hover,
+.cke_skin_kama .cke_path a:focus,
+.cke_skin_kama .cke_path a:active	/* IE */
+{
+	background-color: #dff1ff;
+	padding-top: 1px;
+	padding-bottom: 1px;
+	padding-left: 4px;
+	padding-right: 4px;
+	outline: none;
+	color : #000;
+}
+
+/* IE double float-right workaround */
+.cke_skin_kama .cke_browser_ie .cke_rtl .cke_path a,
+.cke_skin_kama .cke_browser_ie .cke_rtl .cke_path .cke_empty
+{
+	float: none;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/kama/icons.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/kama/icons.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/kama/icons.css	(revision 3747)
@@ -0,0 +1,309 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+.cke_skin_kama .cke_button_source .cke_icon
+{
+	background-position: 0 0;
+}
+
+.cke_skin_kama .cke_button_newpage .cke_icon
+{
+	background-position: 0 -48px;
+}
+
+.cke_skin_kama .cke_button_preview .cke_icon
+{
+	background-position: 0 -64px;
+}
+
+.cke_skin_kama .cke_button_cut .cke_icon
+{
+	background-position: 0 -96px;
+}
+
+.cke_skin_kama .cke_button_copy .cke_icon
+{
+	background-position: 0 -112px;
+}
+
+.cke_skin_kama .cke_button_paste .cke_icon
+{
+	background-position: 0 -128px;
+}
+
+.cke_skin_kama .cke_button_pastetext .cke_icon
+{
+	background-position: 0 -144px;
+}
+
+.cke_skin_kama .cke_button_find .cke_icon
+{
+	background-position: 0 -240px;
+}
+
+.cke_skin_kama .cke_button_replace .cke_icon
+{
+	background-position: 0 -256px;
+}
+
+.cke_skin_kama .cke_button_selectAll .cke_icon
+{
+	background-position: 0 -272px;
+}
+
+.cke_skin_kama .cke_button_removeFormat .cke_icon
+{
+	background-position: 0 -288px;
+}
+
+.cke_skin_kama .cke_button_bold .cke_icon
+{
+	background-position: 0 -304px;
+}
+
+.cke_skin_kama .cke_button_italic .cke_icon
+{
+	background-position: 0 -320px;
+}
+
+.cke_skin_kama .cke_button_underline .cke_icon
+{
+	background-position: 0 -336px;
+}
+
+.cke_skin_kama .cke_button_strike .cke_icon
+{
+	background-position: 0 -352px;
+}
+
+.cke_skin_kama .cke_button_subscript .cke_icon
+{
+	background-position: 0 -368px;
+}
+
+.cke_skin_kama .cke_button_superscript .cke_icon
+{
+	background-position: 0 -384px;
+}
+
+.cke_skin_kama .cke_button_table .cke_icon
+{
+	background-position: 0 -608px;
+}
+
+.cke_skin_kama .cke_button_horizontalrule .cke_icon
+{
+	background-position: 0 -624px;
+}
+
+.cke_skin_kama .cke_button_smiley .cke_icon
+{
+	background-position: 0 -640px;
+}
+
+.cke_skin_kama .cke_button_link .cke_icon
+{
+	background-position: 0 -528px;
+}
+
+.cke_skin_kama .cke_button_unlink .cke_icon
+{
+	background-position: 0 -544px;
+}
+
+.cke_skin_kama .cke_button_anchor .cke_icon
+{
+	background-position: 0 -560px;
+}
+
+.cke_skin_kama .cke_button_image .cke_icon
+{
+	background-position: 0 -576px;
+}
+
+.cke_skin_kama .cke_button_flash .cke_icon
+{
+	background-position: 0 -592px;
+}
+
+.cke_skin_kama .cke_button_specialchar .cke_icon
+{
+	background-position: 0 -656px;
+}
+
+.cke_skin_kama .cke_button_pagebreak .cke_icon
+{
+	background-position: 0 -672px;
+}
+
+.cke_skin_kama .cke_button_print .cke_icon
+{
+	background-position: 0 -176px;
+}
+
+.cke_skin_kama .cke_button_checkspell .cke_icon,
+.cke_skin_kama .cke_button_scayt .cke_icon
+{
+	background-position: 0 -192px;
+}
+
+.cke_skin_kama .cke_button_pagebreak .cke_icon
+{
+	background-position: 0 -672px;
+}
+
+.cke_skin_kama .cke_button_textcolor .cke_icon
+{
+	background-position: 0 -704px;
+}
+
+.cke_skin_kama .cke_button_bgcolor .cke_icon
+{
+	background-position: 0 -720px;
+}
+
+.cke_skin_kama .cke_button_form .cke_icon
+{
+	background-position: 0 -752px;
+}
+
+.cke_skin_kama .cke_button_checkbox .cke_icon
+{
+	background-position: 0 -768px;
+}
+
+.cke_skin_kama .cke_button_radio .cke_icon
+{
+	background-position: 0 -784px;
+}
+
+.cke_skin_kama .cke_button_textfield .cke_icon
+{
+	background-position: 0 -800px;
+}
+
+.cke_skin_kama .cke_button_textarea .cke_icon
+{
+	background-position: 0 -816px;
+}
+.cke_skin_kama .cke_button_showblocks .cke_icon
+{
+	background-position: 0 -1136px;
+}
+
+.cke_skin_kama .cke_button_select .cke_icon
+{
+	background-position: 0 -832px;
+}
+
+.cke_skin_kama .cke_button_button .cke_icon
+{
+	background-position: 0 -848px;
+}
+
+.cke_skin_kama .cke_button_imagebutton .cke_icon
+{
+	background-position: 0 -864px;
+}
+
+.cke_skin_kama .cke_button_hiddenfield .cke_icon
+{
+	background-position: 0 -880px;
+}
+
+.cke_skin_kama .cke_button_undo .cke_icon
+{
+	background-position: 0 -208px;
+}
+
+.cke_skin_kama .cke_rtl .cke_button_undo .cke_icon
+{
+	background-position: 0 -224px;
+}
+
+.cke_skin_kama .cke_button_redo .cke_icon
+{
+	background-position: 0 -224px;
+}
+
+.cke_skin_kama .cke_rtl .cke_button_redo .cke_icon
+{
+	background-position: 0 -208px;
+}
+
+.cke_skin_kama .cke_button_templates .cke_icon
+{
+	background-position: 0 -80px;
+}
+
+.cke_skin_kama .cke_button_numberedlist .cke_icon
+{
+	background-position: 0 -400px;
+}
+
+.cke_skin_kama .cke_button_bulletedlist .cke_icon
+{
+	background-position: 0 -416px;
+}
+
+.cke_skin_kama .cke_button_outdent .cke_icon
+{
+	background-position: 0 -432px;
+}
+
+.cke_skin_kama .cke_button_indent .cke_icon
+{
+	background-position: 0 -448px;
+}
+
+.cke_skin_kama .cke_button_justifyleft .cke_icon
+{
+	background-position: 0 -464px;
+}
+
+.cke_skin_kama .cke_button_justifycenter .cke_icon
+{
+	background-position: 0 -480px;
+}
+
+.cke_skin_kama .cke_button_justifyright .cke_icon
+{
+	background-position: 0 -496px;
+}
+
+.cke_skin_kama .cke_button_justifyblock .cke_icon
+{
+	background-position: 0 -512px;
+}
+
+.cke_skin_kama .cke_button_blockquote .cke_icon
+{
+	background-position: 0 -1152px;
+}
+
+.cke_skin_kama .cke_button_flash .cke_icon
+{
+	background-position: 0 -592px;
+}
+
+.cke_skin_kama .cke_button_pastefromword .cke_icon
+{
+	background-position: 0 -160px;
+}
+
+.cke_skin_kama .cke_button_save .cke_icon
+{
+	background-position: 0 -32px;
+}
+
+.cke_skin_kama .cke_button_about .cke_icon
+{
+	background-position: 0 -736px;
+}
+
+.cke_skin_kama .cke_button_maximize .cke_icon
+{
+	background-position: 0 -1040px;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/kama/mainui.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/kama/mainui.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/kama/mainui.css	(revision 3747)
@@ -0,0 +1,122 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+.cke_skin_kama
+{
+	display: block;
+	_display: inline-block;
+}
+
+/* Main editor only settings. */
+span.cke_skin_kama
+{
+	-moz-border-radius: 5px;
+	-webkit-border-radius: 5px;
+	border-radius: 5px;
+	border: 1px solid #D3D3D3;
+	padding: 5px;
+}
+
+.cke_skin_kama .cke_wrapper
+{
+	-moz-border-radius: 5px;
+	-webkit-border-radius: 5px;
+	border-radius: 5px;
+	background-color: #d3d3d3;
+	background-image: url(sprites.png);
+	background-repeat: repeat-x;
+	background-position: 0 -1950px;
+	display: block;
+
+	/*background-color: Red;*/
+}
+
+.cke_skin_kama .cke_browser_ie6 .cke_wrapper,
+.cke_skin_kama .cke_browser_iequirks .cke_wrapper
+{
+	background-image: none;
+}
+
+.cke_skin_kama .cke_editor
+{
+/*
+	border: solid 1px #dcdcdc;
+*/
+	display: inline-table;
+}
+
+.cke_skin_kama .ltr .cke_browser_ie iframe
+{
+	margin-right: -10px;
+}
+
+.cke_skin_kama .rtl .cke_browser_ie iframe
+{
+	margin-left: -10px;
+}
+
+.cke_skin_kama .cke_browser_opera .cke_editor.cke_skin_kama .cke_resizer
+{
+	display: table;
+}
+
+.cke_skin_kama .cke_contents
+{
+	margin: 5px;
+	padding: 0 5px 5px;
+}
+
+.cke_skin_kama .cke_hc .cke_contents
+{
+	border: 1px solid black;
+}
+
+.cke_skin_kama .cke_focus
+{
+	outline: auto 5px -webkit-focus-ring-color;
+}
+
+.cke_skin_kama textarea.cke_source
+{
+	font-family: 'Courier New' , Monospace;
+	font-size: small;
+	background-color: #fff;
+	white-space: pre;
+}
+
+.cke_skin_kama .cke_browser_iequirks textarea.cke_source
+{
+	/* For IE6+Quirks only */
+	_white-space: normal;
+}
+
+.cke_skin_kama .cke_resizer
+{
+	width: 12px;
+	height: 12px;
+	margin-top: 9px;
+	display: block;
+	float: right;
+	background-image: url(images/resizer.gif);
+	cursor: se-resize;
+}
+
+.cke_skin_kama .cke_rtl .cke_resizer
+{
+	cursor: sw-resize;
+	background-image: url(images/resizer_rtl.gif);
+	float: left;
+}
+
+.cke_skin_kama .cke_maximized .cke_resizer
+{
+	display: none;
+}
+
+.cke_skin_kama .cke_browser_ie6 .cke_contents textarea,
+.cke_skin_kama .cke_browser_ie7 .cke_contents textarea
+{
+	position: absolute;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/kama/menu.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/kama/menu.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/kama/menu.css	(revision 3747)
@@ -0,0 +1,165 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+.cke_skin_kama .cke_contextmenu
+{
+	padding: 2px;
+}
+
+.cke_skin_kama .cke_menuitem a
+{
+	display:block;
+}
+
+.cke_skin_kama .cke_menuitem span
+{
+	cursor: default;
+}
+
+.cke_skin_kama .cke_menuitem a:hover,
+.cke_skin_kama .cke_menuitem a:focus,
+.cke_skin_kama .cke_menuitem a:active
+{
+	background-color: #D3D3D3;
+	display:block;
+}
+
+.cke_skin_kama .cke_menuitem a.cke_disabled:hover,
+.cke_skin_kama .cke_menuitem a.cke_disabled:focus,
+.cke_skin_kama .cke_menuitem a.cke_disabled:active
+{
+	background-color: transparent !important;
+}
+
+.cke_skin_kama .cke_menuitem .cke_icon
+{
+	background-image: url(icons.png);
+	background-position: 100px;
+	background-repeat:no-repeat;
+	background-color: transparent;
+	width: 16px;
+	height: 16px;
+	float: left;
+}
+
+.cke_skin_kama .cke_menuitem .cke_disabled .cke_icon
+{
+	filter: alpha(opacity=70); /* IE */
+	opacity: 0.70; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_kama .cke_menuitem .cke_icon_wrapper
+{
+	background-color: #D3D3D3;
+	border: solid 4px #D3D3D3;
+	width: 16px;
+	height: 16px;
+	float: left;
+	filter: alpha(opacity=70); /* IE */
+	opacity: 0.70; /* Safari, Opera and Mozilla */
+	clear: both;
+}
+
+.cke_rtl .cke_skin_kama .cke_menuitem .cke_icon_wrapper
+{
+	float: right;
+}
+
+.cke_skin_kama .cke_menuitem a:hover .cke_icon_wrapper,
+.cke_skin_kama .cke_menuitem a:focus .cke_icon_wrapper,
+.cke_skin_kama .cke_menuitem a:active .cke_icon_wrapper
+{
+	background-color: #9d9d9d;
+	border: solid 4px #9d9d9d;
+	filter: alpha(opacity=70); /* IE */
+	opacity: 0.70; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_kama .cke_menuitem a:hover.cke_disabled .cke_icon_wrapper,
+.cke_skin_kama .cke_menuitem a:focus.cke_disabled .cke_icon_wrapper,
+.cke_skin_kama .cke_menuitem a:active.cke_disabled .cke_icon_wrapper
+{
+	background-color: #D3D3D3;
+	border: solid 4px #D3D3D3;
+}
+
+.cke_skin_kama .cke_menuitem .cke_label
+{
+	display:block;
+	padding-right: 3px;
+	padding-top: 5px;
+	padding-left: 4px;
+	height:19px;
+	margin-left: 24px;
+	background-color: #fff;
+	_overflow: hidden;
+	_width: 80px;
+	filter: alpha(opacity=70); /* IE */
+	opacity: 0.70; /* Safari, Opera and Mozilla */
+}
+
+.cke_rtl .cke_skin_kama .cke_menuitem .cke_label
+{
+	padding-right: 0;
+	margin-left: 0;
+	padding-left: 3px;
+	margin-right: 28px;
+}
+
+.cke_skin_kama .cke_menuitem a.cke_disabled .cke_label
+{
+	filter: alpha(opacity=30); /* IE */
+	opacity: 0.30; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_kama .cke_menuitem a:hover .cke_label,
+.cke_skin_kama .cke_menuitem a:focus .cke_label,
+.cke_skin_kama .cke_menuitem a:active .cke_label
+{
+	background-color: #D3D3D3;
+}
+
+.cke_skin_kama .cke_menuitem a.cke_disabled:hover .cke_label,
+.cke_skin_kama .cke_menuitem a.cke_disabled:focus .cke_label,
+.cke_skin_kama .cke_menuitem a.cke_disabled:active .cke_label
+{
+	background-color: transparent;
+}
+
+.cke_skin_kama .cke_menuseparator
+{
+	background-color: #D3D3D3;
+	height: 2px;
+	filter: alpha(opacity=70); /* IE */
+	opacity: 0.70; /* Safari, Opera and Mozilla */
+
+	_font-size: 0;
+}
+
+.cke_skin_kama .cke_menuarrow
+{
+	background-image: url(images/arrowright.gif);
+	background-repeat: no-repeat;
+	height: 5px;
+	width: 3px;
+	float: right;
+	margin-right: 2px;
+	margin-top: 3px;
+}
+
+.cke_rtl .cke_skin_kama .cke_menuarrow
+{
+	float: left;
+	margin-right: 0;
+	margin-left: 2px;
+	background-image: url(images/arrowleft.gif);
+}
+
+/* #3766 In the context menu, long labels with second level menu get wrapped */
+.cke_browser_ie .cke_skin_kama .cke_menuarrow
+{
+	position: absolute;
+	right: 0;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/kama/panel.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/kama/panel.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/kama/panel.css	(revision 3747)
@@ -0,0 +1,203 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+.cke_skin_kama .cke_panel
+{
+	border: 1px solid #8f8f73;
+	background-color: #fff;
+
+	width: 120px;
+	height: 100px;
+
+	overflow: hidden;
+
+	-moz-border-radius: 3px;
+	-webkit-border-radius: 3px;
+	border-radius: 3px;
+}
+
+.cke_skin_kama .cke_contextmenu
+{
+	margin: 0;
+}
+
+/* Ideally we would use "inherit here"... but you know... IE :( */
+.cke_skin_kama .cke_panel iframe
+{
+	width: 100%;
+	height: 100%;
+}
+
+/*
+ * All the following styles are to be used inside the iframe that holds panel
+ * contents. We don't use the cke_skin_default there to avoid the reset to be
+ * active.
+ * This is not an issue as we'll never have two skins running inside the same
+ * panel iframe.
+ */
+
+html.cke_skin_kama_container
+{
+	overflow: auto;
+	overflow-x: hidden;
+}
+
+body.cke_panel_frame
+{
+	overflow: auto;
+	overflow-x: hidden;
+}
+
+ul.cke_panel_list
+{
+	list-style-type: none;
+	margin: 3px;
+	padding: 0px;
+	white-space: nowrap;
+}
+
+li.cke_panel_listItem
+{
+	margin: 0px;
+}
+
+.cke_panel_listItem a
+{
+	padding: 2px;
+	display: block;
+	border: 1px solid #fff;
+	color: inherit;
+	text-decoration: none;
+	overflow: hidden;
+	text-overflow: ellipsis;
+}
+
+/* IE6 */
+* html .cke_panel_listItem a
+{
+	width : 100%;
+
+	/* IE is not able to inherit the color, so we must force it to black */
+	color: #000;
+}
+
+/* IE7 */
+*:first-child+html .cke_panel_listItem a
+{
+	/* IE is not able to inherit the color, so we must force it to black */
+	color: #000;
+}
+
+.cke_panel_listItem.cke_selected a
+{
+	border: 1px solid #ccc;
+	background-color: #e9f5ff;
+}
+
+.cke_panel_listItem a:hover,
+.cke_panel_listItem a:focus,
+.cke_panel_listItem a:active
+{
+	border-color: #316ac5;
+	background-color: #dff1ff;
+}
+
+.cke_panel_grouptitle
+{
+	font-size: 11px;
+	font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif;
+	font-weight: bold;
+	white-space: nowrap;
+	background-color: #dcdcdc;
+	color: #000;
+	margin:0px;
+	padding:3px;
+}
+
+.cke_panel_listItem p,
+.cke_panel_listItem h1,
+.cke_panel_listItem h2,
+.cke_panel_listItem h3,
+.cke_panel_listItem h4,
+.cke_panel_listItem h5,
+.cke_panel_listItem h6,
+.cke_panel_listItem pre
+{
+	margin-top: 3px;
+	margin-bottom: 3px;
+}
+
+.cke_skin_kama .cke_button_textcolor_panel,
+.cke_skin_kama .cke_button_bgcolor_panel
+{
+	width: 150px;
+	height: 135px;
+}
+
+.cke_colorblock
+{
+	padding: 3px;
+    font-size: 11px;
+    font-family: 'Microsoft Sans Serif', Tahoma, Arial, Verdana, Sans-Serif;
+}
+
+.cke_colorblock,
+.cke_colorblock a
+{
+	text-decoration: none;
+	color: #000;
+}
+
+span.cke_colorbox
+{
+	width: 10px;
+	height: 10px;
+    border: #808080 1px solid;
+	float: left;
+}
+
+.cke_rtl span.cke_colorbox
+{
+	float: right;
+}
+
+a.cke_colorbox
+{
+    border: #fff 1px solid;
+    padding: 2px;
+    float: left;
+}
+
+.cke_rtl a.cke_colorbox
+{
+    float: right;
+}
+
+a:hover.cke_colorbox,
+a:focus.cke_colorbox,
+a:active.cke_colorbox
+{
+    border: #316ac5 1px solid;
+    background-color: #dff1ff;
+}
+
+a.cke_colorauto,
+a.cke_colormore
+{
+    border: #fff 1px solid;
+    padding: 2px;
+    display: block;
+}
+
+a:hover.cke_colorauto,
+a:hover.cke_colormore,
+a:focus.cke_colorauto,
+a:focus.cke_colormore,
+a:active.cke_colorauto,
+a:active.cke_colormore
+{
+    border: #316ac5 1px solid;
+    background-color: #dff1ff;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/kama/presets.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/kama/presets.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/kama/presets.css	(revision 3747)
@@ -0,0 +1,49 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/* "Source" button label */
+.cke_skin_kama .cke_button_source .cke_label
+{
+	display: inline;
+}
+
+/* "Styles" panel size */
+.cke_skin_kama .cke_styles_panel
+{
+	width: 150px;
+	height: 170px;
+}
+
+/* "Format" panel size */
+.cke_skin_kama .cke_format_panel
+{
+	width: 150px;
+	height: 170px;
+}
+
+/* "Font" panel size */
+.cke_skin_kama .cke_font_panel
+{
+	width: 150px;
+	height: 170px;
+}
+
+/* "Font Size" panel size */
+.cke_skin_kama .cke_fontSize_panel
+{
+	height: 170px;
+}
+
+/* "Font Size" combo width */
+.cke_skin_kama .cke_fontSize .cke_text
+{
+	width: 25px;
+}
+
+/* "Font Size" combo width (IE Quirks) */
+.cke_skin_kama .cke_browser_iequirks .cke_fontSize .cke_text
+{
+	width: 32px;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/kama/reset.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/kama/reset.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/kama/reset.css	(revision 3747)
@@ -0,0 +1,78 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * Reset and Default Values
+ */
+.cke_skin_kama *,
+.cke_skin_kama a:hover,
+.cke_skin_kama a:link,
+.cke_skin_kama a:visited,
+.cke_skin_kama a:active
+{
+	margin: 0;
+	padding: 0;
+	border: 0;
+	background: transparent;
+	text-decoration: none;
+	font: normal normal normal 100% Sans-Serif;
+	width: auto;
+	height: auto;
+	border-collapse: collapse;
+	text-align: left;
+	vertical-align: baseline;
+	white-space: nowrap;
+	cursor: auto;
+	color: #000;
+
+    font-size: 12px;
+    font-family: Arial,Helvetica,Tahoma,Verdana,Sans-Serif;
+}
+
+.cke_skin_kama .cke_rtl *,
+.cke_skin_kama .cke_rtl a:hover,
+.cke_skin_kama .cke_rtl a:link,
+.cke_skin_kama .cke_rtl a:visited,
+.cke_skin_kama .cke_rtl a:active,
+.cke_rtl .cke_skin_kama *,
+.cke_rtl .cke_skin_kama a:hover,
+.cke_rtl .cke_skin_kama a:link,
+.cke_rtl .cke_skin_kama a:visited,
+.cke_rtl .cke_skin_kama a:active
+{
+	text-align: right;
+}
+
+.cke_skin_kama iframe
+{
+	vertical-align: inherit;	/** For IE */
+}
+
+.cke_skin_kama textarea
+{
+	white-space: pre;
+}
+
+.cke_skin_kama .cke_browser_gecko textarea
+{
+	cursor: text;
+}
+
+.cke_skin_kama .cke_browser_gecko textarea[disabled]
+{
+	cursor: default;
+}
+
+.cke_skin_kama input[type="text"],
+.cke_skin_kama input[type="password"]
+{
+	cursor: text;
+}
+
+.cke_skin_kama input[type="text"][disabled],
+.cke_skin_kama input[type="password"][disabled]
+{
+	cursor: default;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/kama/richcombo.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/kama/richcombo.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/kama/richcombo.css	(revision 3747)
@@ -0,0 +1,263 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/* Special Combo */
+
+.cke_skin_kama .cke_rcombo
+{
+	display: inline;
+}
+
+.cke_skin_kama .cke_rtl .cke_rcombo
+{
+}
+
+.cke_skin_kama .cke_rcombopanel
+{
+	border: 1px solid #8F8F73;
+	-moz-border-radius-topleft: 0;
+	-webkit-border-top-left-radius: 0;
+	border-top-left-radius: 0;
+	height: auto;
+	_height: 100px;
+}
+
+/* IE6 workaround, shouldn't be here */
+.cke_skin_kama .cke_browser_iequirks .cke_rcombopanel,
+.cke_skin_kama .cke_browser_ie6 .cke_rcombopanel
+{
+/*	width: 150px;*/
+}
+
+.cke_skin_kama .cke_rcombo a,
+.cke_skin_kama .cke_rcombo a:active,
+.cke_skin_kama .cke_rcombo a:hover
+{
+	-moz-border-radius: 5px;
+	-webkit-border-radius: 5px;
+	border-radius: 5px;
+	background-image: url(sprites.png);
+	background-repeat: repeat-x;
+	background-position: 0 -100px;
+	border-bottom:1px solid #DAD9D9;
+	border-right:1px solid #DAD9D9;
+	float:left;
+	padding: 2px;
+	height: 21px;
+	margin-right: 6px;
+}
+
+.cke_skin_kama .cke_rtl .cke_rcombo a,
+.cke_skin_kama .cke_rtl .cke_rcombo a:active,
+.cke_skin_kama .cke_rtl .cke_rcombo a:hover
+{
+	float:right;
+	margin-right: 0;
+	margin-left: 6px;
+}
+
+.cke_skin_kama .cke_hc .cke_rcombo a
+{
+	filter: alpha(opacity=100); /* IE */
+	opacity: 1.0; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_kama .cke_rcombo .cke_label
+{
+	display: none;
+	line-height: 26px;
+	vertical-align: top;
+	margin-right: 5px;
+	filter: alpha(opacity=70); /* IE */
+	opacity: 0.70; /* Safari, Opera and Mozilla */
+	/* background-color: #f1f1e3;	Because of IE6+ClearType */
+}
+
+.cke_skin_kama .cke_rtl .cke_rcombo .cke_label
+{
+	margin-right: 0;
+	margin-left: 5px;
+}
+
+.cke_skin_kama .cke_rcombo .cke_inline_label
+{
+	line-height: 21px;
+	font-style: italic;
+	color: #666666;
+}
+
+.cke_skin_kama .cke_browser_ie .cke_rcombo .cke_text
+{
+/*	float: left; */
+}
+
+.cke_skin_kama .cke_hc .cke_rcombo .cke_label
+{
+	filter: alpha(opacity=100);
+	opacity: 1.0;
+}
+
+.cke_skin_kama .cke_rcombo .cke_text
+{
+	filter: alpha(opacity=70); /* IE */
+	opacity: 0.70; /* Safari, Opera and Mozilla */
+
+	height: 21px;
+	line-height: 21px;
+	width:60px;
+	text-overflow: ellipsis;
+	overflow: hidden;
+	display: inline-block;
+	margin: 0 2px 0 4px;
+}
+
+.cke_skin_kama .cke_rtl .cke_rcombo .cke_text
+{
+	margin: 0 4px 0 2px;
+}
+
+.cke_skin_kama .cke_rcombo .cke_openbutton
+{
+	background-image: url(sprites.png);
+	background-position: 0 -68px;
+	background-repeat: no-repeat;
+	display: inline-block;
+	width: 17px;
+	height: 19px;
+	margin: 1px 2px;
+	background-repeat: no-repeat;
+}
+
+.cke_skin_kama .cke_browser_iequirks .cke_rcombo .cke_openbutton
+{
+	margin-bottom: 0;
+}
+
+.cke_skin_kama .cke_rcombo .cke_off a:hover .cke_text,
+.cke_skin_kama .cke_rcombo .cke_off a:focus .cke_text,
+.cke_skin_kama .cke_rcombo .cke_off a:active .cke_text,
+.cke_skin_kama .cke_rcombo .cke_on .cke_text
+{
+	border-color: #316ac5;
+	filter: alpha(opacity=100); /* IE */
+	opacity: 1; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_kama .cke_rcombo .cke_off a:hover .cke_openbutton,
+.cke_skin_kama .cke_rcombo .cke_off a:focus .cke_openbutton,
+.cke_skin_kama .cke_rcombo .cke_off a:active .cke_openbutton,
+.cke_skin_kama .cke_rcombo .cke_on .cke_openbutton
+{
+	border-color: #316ac5;
+	background-color: #dff1ff;
+}
+
+.cke_skin_kama .cke_rcombo .cke_on .cke_text
+{
+	-moz-border-radius-bottomleft: 0px;
+	-webkit-border-bottom-left-radius: 0px;
+	border-bottom-left-radius: 0px;
+}
+
+.cke_skin_kama .cke_rcombo .cke_on .cke_openbutton
+{
+	-moz-border-radius-bottomright: 0px;
+	-webkit-border-bottom-right-radius: 0px;
+	border-bottom-right-radius: 0px;
+}
+
+.cke_skin_kama .cke_rcombo .cke_disabled .cke_label
+{
+	filter: alpha(opacity=30); /* IE */
+	opacity: 0.3; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_kama .cke_hc .cke_rcombo .cke_disabled .cke_label
+{
+	filter: alpha(opacity=70);
+	opacity: 0.7;
+}
+
+.cke_skin_kama .cke_rcombo .cke_disabled .cke_text,
+.cke_skin_kama .cke_rcombo .cke_disabled .cke_openbutton
+{
+	filter: alpha(opacity=50); /* IE */
+	opacity: 0.5; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_kama .cke_hc .cke_rcombo .cke_disabled .cke_text,
+.cke_skin_kama .cke_hc .cke_rcombo .cke_disabled .cke_openbutton
+{
+	filter: alpha(opacity=80);
+	opacity: 0.8;
+}
+
+.cke_skin_kama .cke_rcombo .cke_disabled .cke_text
+{
+	color: #fff;
+}
+
+/* RTL */
+
+.cke_skin_kama .cke_rtl .cke_rcombo span
+{
+/*	_zoom: 1;*/
+}
+
+.cke_skin_kama .cke_rtl .cke_rcombo .cke_text
+{
+/*	_float: left;*/
+}
+
+/* Firefox 2 & WebKit Section */
+
+.cke_skin_kama .cke_browser_gecko .cke_rcombo .cke_text,
+.cke_skin_kama .cke_browser_gecko .cke_rcombo .cke_openbutton,
+.cke_skin_kama .cke_browser_webkit .cke_rcombo .cke_text,
+.cke_skin_kama .cke_browser_webkit .cke_rcombo .cke_openbutton
+{
+	display: block;
+	float: left;
+}
+
+.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_rcombo .cke_text,
+.cke_skin_kama .cke_browser_webkit .cke_rtl .cke_rcombo .cke_text
+{
+/*	float: right;*/
+}
+
+.cke_skin_kama .cke_browser_gecko .cke_rcombo .cke_label,
+.cke_skin_kama .cke_browser_webkit .cke_rcombo .cke_label
+{
+	/*display: block;*/
+	float: left;
+}
+
+.cke_skin_kama .cke_browser_gecko18 .cke_rcombo
+{
+	display: -moz-box;
+}
+
+.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_rcombo .cke_label,
+.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_rcombo .cke_text,
+.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_rcombo .cke_openbutton,
+.cke_skin_kama .cke_browser_webkit .cke_rtl .cke_rcombo .cke_label,
+.cke_skin_kama .cke_browser_webkit .cke_rtl .cke_rcombo .cke_text,
+.cke_skin_kama .cke_browser_webkit .cke_rtl .cke_rcombo .cke_openbutton
+{
+	float: right;
+}
+
+.cke_skin_kama .cke_browser_ie7 .cke_rcombo .cke_text
+{
+	line-height: 18px;
+}
+
+.cke_skin_kama .cke_browser_ie6 .cke_rcombo .cke_text,
+.cke_skin_kama .cke_browser_iequirks .cke_rcombo .cke_text
+{
+	height: auto;
+	line-height: 17px;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/kama/skin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/kama/skin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/kama/skin.js	(revision 3747)
@@ -0,0 +1,265 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.skins.add( 'kama', (function()
+{
+	var preload = [];
+
+	if ( CKEDITOR.env.ie && CKEDITOR.env.version < 7 )
+	{
+		// For IE6, we need to preload some images, otherwhise they will be
+		// downloaded several times (CSS background bug).
+		preload.push( 'icons.png', 'images/sprites_ie6.png', 'images/dialog_sides.gif' );
+	}
+
+	return {
+		preload		: preload,
+		editor		: { css : [ 'editor.css' ] },
+		dialog		: { css : [ 'dialog.css' ] },
+		templates	: { css : [ 'templates.css' ] },
+		margins		: [ 0, 0, 0, 0 ],
+		init : function( editor )
+		{
+			var menuHead;
+			function menuSetUiColor( color )
+			{
+				if ( !menuHead )
+					return null;
+
+				var uiStyle = menuHead.append('style');
+
+				var cssSrc = "/* UI Color Support */\
+.cke_skin_kama .cke_menuitem .cke_icon_wrapper\
+{\
+	background-color: $color !important;\
+	border-color: $color !important;\
+}\
+\
+.cke_skin_kama .cke_menuitem a:hover .cke_icon_wrapper,\
+.cke_skin_kama .cke_menuitem a:focus .cke_icon_wrapper,\
+.cke_skin_kama .cke_menuitem a:active .cke_icon_wrapper\
+{\
+	background-color: $color !important;\
+	border-color: $color !important;\
+}\
+\
+.cke_skin_kama .cke_menuitem a:hover .cke_label,\
+.cke_skin_kama .cke_menuitem a:focus .cke_label,\
+.cke_skin_kama .cke_menuitem a:active .cke_label\
+{\
+	background-color: $color !important;\
+}\
+\
+.cke_skin_kama .cke_menuitem a.cke_disabled:hover .cke_label,\
+.cke_skin_kama .cke_menuitem a.cke_disabled:focus .cke_label,\
+.cke_skin_kama .cke_menuitem a.cke_disabled:active .cke_label\
+{\
+	background-color: transparent !important;\
+}\
+\
+.cke_skin_kama .cke_menuitem a.cke_disabled:hover .cke_icon_wrapper,\
+.cke_skin_kama .cke_menuitem a.cke_disabled:focus .cke_icon_wrapper,\
+.cke_skin_kama .cke_menuitem a.cke_disabled:active .cke_icon_wrapper\
+{\
+	background-color: $color !important;\
+	border-color: $color !important;\
+}\
+\
+.cke_skin_kama .cke_menuitem a.cke_disabled .cke_icon_wrapper\
+{\
+	background-color: $color !important;\
+	border-color: $color !important;\
+}\
+\
+.cke_skin_kama .cke_menuseparator\
+{\
+	background-color: $color !important;\
+}\
+\
+.cke_skin_kama .cke_menuitem a:hover,\
+.cke_skin_kama .cke_menuitem a:focus,\
+.cke_skin_kama .cke_menuitem a:active\
+{\
+	background-color: $color !important;\
+}";
+
+				uiStyle.setAttribute( "type", "text/css" );
+				var regex = /\$color/g;
+
+				// We have to split CSS declarations for webkit.
+				if ( CKEDITOR.env.webkit )
+				{
+					cssSrc = cssSrc.split( '}' ).slice( 0, -1 );
+					for ( var i in cssSrc )
+							cssSrc[ i ] = cssSrc[ i ].split( '{' );
+				}
+
+				return ( menuSetUiColor =
+					function( color )
+					{
+						if ( CKEDITOR.env.webkit )
+						{
+							for ( var i in cssSrc )
+								uiStyle.$.sheet.addRule(
+									cssSrc[ i ][ 0 ], cssSrc[ i ][ 1 ].replace( regex, color )
+								);
+						}
+						else
+						{
+							var css = cssSrc.replace( regex, color );
+
+							if ( CKEDITOR.env.ie )
+								uiStyle.$.styleSheet.cssText = css;
+							else
+								uiStyle.setHtml( css );
+						}
+					})( color );
+			}
+
+			CKEDITOR.tools.extend( editor,
+			{
+				uiColor: null,
+
+				getUiColor : function()
+				{
+					return this.uiColor;
+				},
+
+				setUiColor : function( color )
+				{
+					var uiStyle = CKEDITOR.document.getHead().append('style'),
+						cssId = '#cke_' + editor.name.replace('.', '\\.');
+
+					var cssSelectors =
+						[
+							cssId + " .cke_wrapper",
+							cssId + "_dialog .cke_dialog_contents",
+							cssId + "_dialog a.cke_dialog_tab",
+							cssId + "_dialog .cke_dialog_footer"
+						].join( ',' );
+					var cssProperties = "background-color: $color !important;";
+
+					uiStyle.setAttribute("type", "text/css");
+
+					return ( this.setUiColor =
+						function( color )
+						{
+							var css = cssProperties.replace( '$color', color );
+							editor.uiColor = color;
+
+							if ( CKEDITOR.env.ie )
+								uiStyle.$.styleSheet.cssText = cssSelectors + '{' + css + '}';
+							else if ( CKEDITOR.env.webkit )
+								uiStyle.$.sheet.addRule( cssSelectors, css );
+							else
+								uiStyle.setHtml( cssSelectors + '{' + css + '}' );
+
+							menuSetUiColor( color );
+						})( color );
+				}
+			});
+
+			// If the "menu" plugin is loaded, register the listeners.
+			if ( CKEDITOR.menu )
+			{
+				var old = CKEDITOR.menu.prototype.show;
+
+				CKEDITOR.menu.prototype.show = function()
+				{
+					old.apply( this, arguments );
+
+					if ( !menuHead && editor == this.editor )
+					{
+						// Save reference.
+						menuHead = this._.element.getDocument().getHead();
+						menuSetUiColor( editor.getUiColor() );
+					}
+				};
+			}
+
+			// Apply UI color if specified in config.
+			if ( editor.config.uiColor )
+				editor.setUiColor( editor.config.uiColor );
+
+			// Fix editor's width. HPadding and 100% width iframe issue.
+//			if ( CKEDITOR.env.ie && CKEDITOR.env.quirks )
+//			{
+//				editor.on( 'mode', function( event )
+//				{
+//					var container = editor.getResizable();
+//					editor.resize( container.$.offsetWidth-10, container.$.offsetHeight );
+//					event.removeListener();
+//				});
+//			}
+
+//			if ( CKEDITOR.env.ie && ( CKEDITOR.env.quirks || CKEDITOR.env.version < 7 ) )
+//			{
+//				editor.on( 'themeLoaded', function( event )
+//				{
+//					var toolbars = editor.container.getChild( [0, 0, 0, 0, 0, 0, 0] ).getChildren();
+//					for ( var i = 0 ; i < toolbars.count() ; i++ )
+//					{
+//						var toolbar = toolbars.getItem( i );
+
+//						var last = toolbar.getLast();
+//						if ( !last || !last.getPrevious().hasClass( 'cke_rcombo' ) )
+//							continue;
+//
+//						last.addClass( 'cke_toolbar_end_last' );
+//					}
+//				});
+//			}
+		}
+	};
+})() );
+
+if ( CKEDITOR.dialog )
+{
+	CKEDITOR.dialog.on( 'resize', function( evt )
+		{
+			var data = evt.data,
+				width = data.width,
+				height = data.height,
+				dialog = data.dialog,
+				standardsMode = !CKEDITOR.env.quirks;
+
+			if ( data.skin != 'kama' )
+				return;
+
+			dialog.parts.contents.setStyles(
+				{
+					width : width + 'px',
+					height : height + 'px'
+				});
+
+			if ( !CKEDITOR.env.ie )
+				return;
+
+			// Fix the size of the elements which have flexible lengths.
+			setTimeout( function()
+				{
+					var content = dialog.parts.contents,
+						body = content.getParent(),
+						innerDialog = body.getParent();
+
+					// tc
+					var el = innerDialog.getChild( 2 );
+					el.setStyle( 'width', ( body.$.offsetWidth ) + 'px' );
+
+					// bc
+					el = innerDialog.getChild( 7 );
+					el.setStyle( 'width', ( body.$.offsetWidth - 28 ) + 'px' );
+
+					// ml
+					el = innerDialog.getChild( 4 );
+					el.setStyle( 'height', ( body.$.offsetHeight - 31 - 14 ) + 'px' );
+
+					// mr
+					el = innerDialog.getChild( 5 );
+					el.setStyle( 'height', ( body.$.offsetHeight - 31 - 14 ) + 'px' );
+				},
+				100 );
+		});
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/kama/templates.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/kama/templates.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/kama/templates.css	(revision 3747)
@@ -0,0 +1,71 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * Styles for the "templates" plugin.
+ */
+
+.cke_skin_kama .cke_tpl_list
+{
+	border: #dcdcdc 2px solid;
+	background-color: #ffffff;
+	overflow: auto;
+	width: 100%;
+	height: 220px;
+}
+
+.cke_skin_kama .cke_tpl_item
+{
+	margin: 5px;
+	padding: 7px;
+	border: #eeeeee 1px solid;
+	*width: 88%;
+}
+
+.cke_skin_kama .cke_tpl_preview
+{
+	border-collapse: separate;
+	text-indent:0;
+	width: 100%;
+}
+.cke_skin_kama .cke_tpl_preview td
+{
+	padding: 2px;
+	vertical-align: middle;
+}
+.cke_skin_kama .cke_tpl_preview .cke_tpl_preview_img
+{
+	width: 100px;
+}
+.cke_skin_kama .cke_tpl_preview span
+{
+	white-space: normal;
+}
+
+.cke_skin_kama .cke_tpl_title
+{
+	font-weight: bold;
+}
+
+.cke_skin_kama .cke_tpl_hover
+{
+	border: #ff9933 1px solid !important;
+	background-color: #fffacd !important;
+	cursor: pointer;
+	cursor: hand;
+}
+/*
+ * Fix property 'cursor' doesn't inherit on table
+ */
+.cke_skin_kama .cke_tpl_hover *
+{
+	cursor: inherit;
+}
+
+.cke_skin_kama .cke_tpl_empty, .cke_tpl_loading
+{
+	text-align: center;
+	padding: 5px;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/kama/toolbar.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/kama/toolbar.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/kama/toolbar.css	(revision 3747)
@@ -0,0 +1,371 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+@media print
+{
+	/* For printing, we simply hide the toolbar */
+
+	.cke_skin_kama .cke_toolbox
+	{
+		display: none;
+	}
+}
+
+.cke_skin_kama .cke_toolbox
+{
+	clear: both;
+	padding: 5px 3px 5px 6px;
+}
+
+.cke_skin_kama .cke_rtl .cke_toolbox
+{
+	padding: 5px 6px 5px 3px;
+}
+
+.cke_skin_kama a.cke_toolbox_collapser,
+.cke_skin_kama a:hover.cke_toolbox_collapser
+{
+	background-image: url(images/arrowtop.gif);
+	background-repeat: no-repeat;
+	background-position: center center;
+	width: 11px;
+	height: 11px;
+	float: right;
+	border: 1px outset #D3D3D3;
+	margin: 11px 4px 2px;
+	cursor: pointer;
+}
+
+.cke_skin_kama .cke_rtl a.cke_toolbox_collapser,
+.cke_skin_kama .cke_rtl a:hover.cke_toolbox_collapser
+{
+	float: left;
+}
+
+.cke_skin_kama a.cke_toolbox_collapser_min,
+.cke_skin_kama a:hover.cke_toolbox_collapser_min
+{
+	background-image: url(images/arrowleft.gif);
+	margin: 2px 4px;
+}
+
+.cke_skin_kama .cke_rtl a.cke_toolbox_collapser_min,
+.cke_skin_kama .cke_rtl a:hover.cke_toolbox_collapser_min
+{
+	background-image: url(images/arrowright.gif);
+}
+
+.cke_skin_kama .cke_toolbar
+{
+	display: inline;
+}
+
+.cke_skin_kama .cke_separator
+{
+	display: none;
+}
+
+.cke_skin_kama .cke_break
+{
+	font-size: 0;
+	clear: left;
+}
+
+.cke_skin_kama .cke_rtl .cke_break
+{
+	clear: right;
+}
+
+.cke_skin_kama .cke_toolbar_start
+{
+	display: none;
+}
+
+.cke_skin_kama .cke_toolgroup
+{
+	-moz-border-radius:5px;
+	-webkit-border-radius: 5px;
+	border-radius: 5px;
+	background-image: url(sprites.png);
+	background-repeat: repeat-x;
+	background-position: 0 -500px;
+	float: left;
+	margin-right: 6px;
+	margin-bottom: 5px;
+	padding: 2px;
+	display: inline;
+}
+
+.cke_skin_kama .cke_rtl .cke_toolgroup
+{
+	float: right;
+	margin-right: 0;
+	margin-left: 6px;
+}
+
+.cke_skin_kama .cke_button a,
+.cke_skin_kama .cke_button a:hover,
+.cke_skin_kama .cke_button a:focus,
+.cke_skin_kama .cke_button a:active,
+.cke_skin_kama .cke_button a.cke_off
+{
+	border-radius: 3px;
+	outline: none;
+	padding: 2px 4px;
+	height: 18px;
+	display: inline-block;
+	cursor: default;
+}
+
+.cke_skin_kama .cke_button a,
+.cke_skin_kama .cke_button a.cke_off
+{
+	filter: alpha(opacity=70); /* IE */
+	opacity: 0.70; /* Safari, Opera and Mozilla */
+	-moz-border-radius: 3px;
+	-webkit-border-radius: 3px;
+}
+
+.cke_skin_kama .cke_hc .cke_button a,
+.cke_skin_kama .cke_hc .cke_button a.cke_off
+{
+	opacity: 1.0;
+	filter: alpha(opacity=100);
+	border: 1px solid white;
+}
+
+.cke_skin_kama .cke_button a.cke_on
+{
+	background-color: #a3d7ff;
+	filter: alpha(opacity=100); /* IE */
+	opacity: 1; /* Safari, Opera and Mozilla */
+	padding: 2px 4px;
+}
+
+.cke_skin_kama .cke_hc .cke_button a.cke_on
+{
+	padding: 0 2px !important;
+	border-width: 3px;
+}
+
+.cke_skin_kama .cke_button a.cke_disabled,
+.cke_skin_kama .cke_browser_ie a:hover.cke_button .cke_disabled
+{
+	filter: alpha(opacity=30); /* IE */
+	opacity: 0.3; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_kama .cke_hc .cke_button a.cke_disabled,
+.cke_skin_kama .cke_browser_ie.cke_hc a:hover.cke_button .cke_disabled
+{
+	filter: alpha(opacity=60);
+	opacity: 0.6;
+}
+
+.cke_skin_kama .cke_button a:hover.cke_on,
+.cke_skin_kama .cke_button a:focus.cke_on,
+.cke_skin_kama .cke_button a:active.cke_on,	/* IE */
+.cke_skin_kama .cke_button a:hover.cke_off,
+.cke_skin_kama .cke_button a:focus.cke_off,
+.cke_skin_kama .cke_button a:active.cke_off	/* IE */
+{
+	filter: alpha(opacity=100); /* IE */
+	opacity: 1; /* Safari, Opera and Mozilla */
+	padding: 2px 4px;
+}
+
+.cke_skin_kama .cke_button a:hover.cke_on,
+.cke_skin_kama .cke_button a:focus.cke_on,
+.cke_skin_kama .cke_button a:active.cke_on	/* IE */
+{
+	background-color: #86caff;
+}
+
+.cke_skin_kama .cke_button a:hover.cke_off,
+.cke_skin_kama .cke_button a:focus.cke_off,
+.cke_skin_kama .cke_button a:active.cke_off	/* IE */
+{
+	background-color: #dff1ff;
+}
+
+.cke_skin_kama .cke_hc .cke_button a:hover.cke_on,
+.cke_skin_kama .cke_hc .cke_button a:focus.cke_on,
+.cke_skin_kama .cke_hc .cke_button a:active.cke_on,	/* IE */
+.cke_skin_kama .cke_hc .cke_button a:hover.cke_off,
+.cke_skin_kama .cke_hc .cke_button a:focus.cke_off,
+.cke_skin_kama .cke_hc .cke_button a:active.cke_off	/* IE */
+{
+	padding: 0 2px !important;
+	border-width: 3px;
+}
+
+.cke_skin_kama .cke_button .cke_icon
+{
+	background-image: url(icons.png);
+	background-position: 100px;
+	background-repeat: no-repeat;
+	margin-top: 1px;
+	width: 16px;
+	height: 16px;
+	display: inline-block;
+	float: left;
+}
+
+.cke_skin_kama .cke_rtl .cke_button .cke_icon
+{
+	float: right;
+}
+
+.cke_skin_kama .cke_button .cke_label
+{
+	display: none;
+	padding-left: 3px;
+	line-height: 18px;
+	vertical-align: middle;
+	float: left;
+}
+
+.cke_skin_kama .cke_rtl .cke_button .cke_label
+{
+	padding-left: 0;
+	padding-right: 3px;
+	float: right;
+}
+
+.cke_skin_kama .cke_hc .cke_button .cke_label
+{
+	padding: 0;
+	display: inline-block;
+}
+
+.cke_skin_kama .cke_hc .cke_button .cke_icon
+{
+	display: none;
+}
+
+.cke_skin_kama .cke_accessibility
+{
+	position: absolute;
+	left: -10000px;
+}
+
+.cke_skin_kama .cke_button .cke_buttonarrow
+{
+	display: inline-block;
+	height: 17px;
+	width: 8px;
+	background-position: right center;
+	background-image: url(images/arrowdown.gif);
+	background-repeat: no-repeat;
+	float: left;
+}
+
+.cke_skin_kama .cke_rtl .cke_button .cke_buttonarrow
+{
+	background-position: left center;
+	float: right;
+}
+
+.cke_skin_kama .cke_hc .cke_button .cke_buttonarrow
+{
+	display: none;
+}
+
+/*** Firefox 2 ***/
+
+.cke_skin_kama .cke_browser_gecko .cke_toolbar,
+.cke_skin_kama .cke_browser_gecko .cke_button a,
+.cke_skin_kama .cke_browser_gecko .cke_button a.cke_off,
+.cke_skin_kama .cke_browser_gecko .cke_button .cke_icon,
+.cke_skin_kama .cke_browser_gecko .cke_button .cke_buttonarrow,
+.cke_skin_kama .cke_browser_gecko .cke_separator,
+.cke_skin_kama .cke_browser_gecko .cke_toolbar_start
+{
+	display: block;
+	float: left;
+}
+
+.cke_skin_kama .cke_browser_gecko.cke_hc .cke_button .cke_icon
+{
+	display: none;
+}
+
+.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_toolbar,
+.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_button a,
+.cke_skin_kama .cke_browser_gecko .cke_rtl.cke_button a.cke_off,
+.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_button .cke_icon,
+.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_button .cke_buttonarrow,
+.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_toolbar_start
+{
+	float: right;
+}
+
+.cke_skin_kama .cke_browser_gecko .cke_button .cke_label,
+.cke_skin_kama .cke_browser_gecko .cke_break
+{
+	float: left;
+}
+
+.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_button .cke_label,
+.cke_skin_kama .cke_browser_gecko .cke_rtl .cke_break
+{
+	float: right;
+}
+
+/*** IE ***/
+
+/* The biggest problem with IE is the RTL support (and float:right). It's
+   totally broken, and quite delicate. IE8 fixed these issues. */
+
+.cke_skin_kama .cke_browser_ie .cke_rtl .cke_button .cke_icon,
+.cke_skin_kama .cke_browser_ie .cke_rtl .cke_button .cke_label,
+.cke_skin_kama .cke_browser_ie .cke_rtl .cke_button .cke_buttonarrow
+{
+	float: none;
+}
+
+/*** WebKit ***/
+
+/* We have originally used display:inline-block+float for cke_toolbar and it
+   worked well in all browsers, except IE+RTL. We had to change it to inline
+   and remove the float. This change didn't play well with Safari. */
+
+.cke_skin_kama .cke_browser_webkit .cke_toolbar
+{
+	float: left;
+}
+
+.cke_skin_kama .cke_browser_webkit .cke_rtl .cke_toolbar
+{
+	float: right;
+}
+
+/*** Mixed Fixes ***/
+
+.cke_skin_kama .cke_browser_ie8 .cke_button .cke_label,
+.cke_skin_kama .cke_browser_opera .cke_button .cke_label,
+.cke_skin_kama .cke_browser_webkit .cke_button .cke_label
+{
+	line-height: 20px;
+}
+
+.cke_skin_kama .cke_browser_opera.cke_browser_quirks .cke_button .cke_label,
+.cke_skin_kama .cke_browser_iequirks .cke_button .cke_label
+{
+	line-height: 17px;
+}
+
+/* IE8 strict button valign correction */
+.cke_skin_kama .cke_browser_ie8 .cke_button .cke_label
+{
+	vertical-align: top;
+}
+
+.cke_skin_kama .cke_browser_iequirks.cke_browser_ie8 .cke_button .cke_label
+{
+	/* revert previous */
+	vertical-align: middle;
+}
+/* END IE8 strict button valign correction */
Index: /CKEditor/branches/versions/3.0.x/_source/skins/office2003/dialog.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/office2003/dialog.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/office2003/dialog.css	(revision 3747)
@@ -0,0 +1,638 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/* Restore the dialog visibility */
+body .cke_dialog
+{
+	visibility: visible;
+}
+
+.cke_skin_office2003 .cke_dialog_body
+{
+	margin-left: 16px;
+	margin-right: 16px;
+	margin-top: 2px;
+	margin-bottom: 20px;
+	position: relative;
+	z-index: 1;
+}
+
+.cke_skin_office2003 .cke_dialog_tl,
+.cke_skin_office2003 .cke_dialog_tr,
+.cke_skin_office2003 .cke_dialog_tc,
+.cke_skin_office2003 .cke_dialog_bl,
+.cke_skin_office2003 .cke_dialog_br,
+.cke_skin_office2003 .cke_dialog_bc
+{
+	background-image: url(images/sprites.png);
+	background-repeat: no-repeat;
+	position: absolute;
+
+	/* IE6 does not support full color transparent PNG. */
+	_background-image: url(images/sprites_ie6.png);
+}
+
+.cke_skin_office2003 .cke_dialog_tl
+{
+	background-position: -16px -16px;
+	height: 16px;
+	width: 16px;
+	top: 0;
+	left: 0;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_dialog_tl
+{
+	background-position: -16px -397px;
+}
+
+.cke_skin_office2003 .cke_dialog_tr
+{
+	background-position: -16px -76px;
+	height: 16px;
+	width: 16px;
+	top: 0;
+	right: 0;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_dialog_tr
+{
+	background-position: -16px -457px;
+}
+
+.cke_skin_office2003 .cke_dialog_tc
+{
+	background-position: 0 -136px;
+	background-repeat: repeat-x;
+	height: 16px;
+	top: 0;
+	left: 16px;
+	right: 16px;
+}
+
+.cke_skin_office2003 .cke_dialog_bl
+{
+	background-position: -16px -196px;
+	height: 51px;
+	width: 30px;
+	bottom: 0;
+	left: 0;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_dialog_bl
+{
+	background-position: -16px -517px;
+}
+
+.cke_skin_office2003 .cke_dialog_br
+{
+	background-position: -16px -263px;
+	height: 51px;
+	width: 30px;
+	bottom: 0;
+	right: 0;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_dialog_br
+{
+	background-position: -16px -584px;
+}
+
+.cke_skin_office2003 .cke_dialog_bc
+{
+	background-position: 0 -330px;
+	background-repeat: repeat-x;
+	height: 51px;
+	bottom: 0;
+	left: 30px;
+	right: 30px;
+}
+
+.cke_skin_office2003 .cke_dialog_ml,
+.cke_skin_office2003 .cke_dialog_mr
+{
+	background-image: url(images/dialog_sides.png);
+	background-repeat: repeat-y;
+	position: absolute;
+	width: 16px;
+	top: 16px;
+	bottom: 51px;
+
+	/* IE6 does not support full color transparent PNG. */
+	_background-image: url(images/dialog_sides.gif);
+
+	/* IE quirks gets confused when we have both top and bottom. */
+	_top: auto;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_dialog_ml,
+.cke_skin_office2003 .cke_rtl .cke_dialog_mr
+{
+	background-image: url(images/dialog_sides_rtl.png);
+
+	/* IE6 does not support full color transparent PNG. */
+	_background-image: url(images/dialog_sides.gif);
+}
+
+.cke_skin_office2003 .cke_dialog_ml
+{
+	background-position: 0 0;
+	left: 0;
+}
+
+.cke_skin_office2003 .cke_dialog_mr
+{
+	background-position: -16px 0;
+	right: 0;
+}
+
+.cke_skin_office2003 .cke_browser_iequirks .cke_dialog_ml,
+.cke_skin_office2003 .cke_browser_iequirks .cke_dialog_mr
+{
+	margin-top: 3px;
+}
+
+.cke_skin_office2003 .cke_dialog_title
+{
+	background-image: url(images/sprites.png);
+	background-position: 0 -678px;
+	background-repeat: repeat-x;
+	font-weight: bold;
+	font-size: 14pt;
+	color: #0E3460;
+	background-color: #8db1ff;
+	padding: 3px 10px 26px 10px;
+	cursor: move;
+	position: relative;
+}
+
+.cke_skin_office2003 .cke_browser_ie.cke_rtl .cke_dialog_title
+{
+	position: static !important;
+}
+
+.cke_skin_office2003 .cke_dialog_contents
+{
+	background-color: #f7f8fd;
+	border: #2b66c9 1px solid;
+	overflow: auto;
+	padding: 5px 10px;
+}
+
+.cke_skin_office2003 .cke_dialog_footer
+{
+	background-color: #8db1ff;
+	text-align: right;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_dialog_footer
+{
+	text-align: left;
+}
+
+/* tabs */
+
+.cke_skin_office2003 .cke_dialog_tabs
+{
+	height: 23px;
+	background-color: #8db1ff;
+	display: inline-block;
+	margin-left:10px;
+	margin-right:10px;
+	margin-top:-23px;
+	position: absolute;
+	z-index: 2;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_dialog_tabs
+{
+	right: 10px;
+}
+
+.cke_skin_office2003 a.cke_dialog_tab,
+.cke_skin_office2003 a:link.cke_dialog_tab,
+.cke_skin_office2003 a:active.cke_dialog_tab,
+.cke_skin_office2003 a:hover.cke_dialog_tab,
+.cke_skin_office2003 a:visited.cke_dialog_tab
+{
+	color: #0E3460;
+	border-left: 1px solid #2b66c9;
+	border-right: 1px solid #2b66c9;
+	border-top: 1px solid #2b66c9;
+	height: 14px;
+	padding: 4px 5px;
+	display: inline-block;
+	cursor: pointer;
+}
+
+/* Gecko 1.8 layout workaround. */
+.cke_skin_office2003 .cke_browser_gecko18 a.cke_dialog_tab,
+.cke_skin_office2003 .cke_browser_gecko18 a:link.cke_dialog_tab,
+.cke_skin_office2003 .cke_browser_gecko18 a:active.cke_dialog_tab,
+.cke_skin_office2003 .cke_browser_gecko18 a:hover.cke_dialog_tab,
+.cke_skin_office2003 .cke_browser_gecko18 a:visited.cke_dialog_tab
+{
+	display: inline;
+	position: relative;
+	top: 6px;
+}
+
+.cke_skin_office2003 a:hover.cke_dialog_tab
+{
+	background-color: #f7f8fd;
+}
+
+.cke_skin_office2003 a.cke_dialog_tab_selected,
+.cke_skin_office2003 a:link.cke_dialog_tab_selected,
+.cke_skin_office2003 a:active.cke_dialog_tab_selected,
+.cke_skin_office2003 a:hover.cke_dialog_tab_selected,
+.cke_skin_office2003 a:visited.cke_dialog_tab_selected
+{
+	border-bottom: 1px solid #f7f8fd;
+	background-color: #f7f8fd;
+	font-weight: bold;
+	cursor: default;
+}
+
+/* single_page */
+
+.cke_skin_office2003 .cke_single_page .cke_dialog_tabs
+{
+	display: none;
+}
+
+.cke_skin_office2003 .cke_single_page .cke_dialog_title
+{
+	padding-bottom: 3px;
+}
+
+.cke_skin_office2003 .cke_dialog_ui_vbox table,
+.cke_skin_office2003 .cke_dialog_ui_hbox table
+{
+	margin: auto;
+}
+
+.cke_skin_office2003 .cke_dialog_ui_vbox_child
+{
+	padding: 5px 0px;
+}
+
+.cke_skin_office2003 input.cke_dialog_ui_input_text,
+.cke_skin_office2003 input.cke_dialog_ui_input_password
+{
+	background-color: white;
+	border: none;
+	padding: 0px;
+	width: 100%;
+	height: 14px;
+}
+
+.cke_skin_office2003 div.cke_dialog_ui_input_text,
+.cke_skin_office2003 div.cke_dialog_ui_input_password
+{
+	background-color: white;
+	border: 1px solid #a0a0a0;
+	padding: 1px 0px;
+}
+
+.cke_skin_office2003 textarea.cke_dialog_ui_input_textarea
+{
+	background-color: white;
+	border: none;
+	padding: 0px;
+	width: 100%;
+	/*
+	 * IE6 BUG: Scrollbars in textareas can overflow even if the outer DIV is set to overflow:hidden.
+	 * So leave 1% width for the scrollbar. In most situations the 1% isn't noticeable by users.
+	 */
+	_width: 99%;
+	overflow: auto;
+}
+
+.cke_skin_office2003 div.cke_dialog_ui_input_textarea
+{
+	background-color: white;
+	border: 1px solid #a0a0a0;
+	padding: 1px 0px;
+}
+
+.cke_skin_office2003 div.cke_disabled .cke_dialog_ui_labeled_content *
+{
+	background-color : #a0a0a0;
+	cursor : default;
+}
+
+.cke_skin_office2003 .cke_dialog_ui_hbox
+{
+	width: 100%;
+}
+
+.cke_skin_office2003 .cke_dialog_ui_hbox_first,
+.cke_skin_office2003 .cke_dialog_ui_hbox_child,
+.cke_skin_office2003 .cke_dialog_ui_hbox_last
+{
+	vertical-align: top;
+}
+
+.cke_skin_office2003 .cke_ltr .cke_dialog_ui_hbox_first,
+.cke_skin_office2003 .cke_ltr .cke_dialog_ui_hbox_child
+{
+	padding-right: 10px;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_dialog_ui_hbox_first,
+.cke_skin_office2003 .cke_rtl .cke_dialog_ui_hbox_child
+{
+	padding-left: 10px;
+}
+
+/* button */
+
+.cke_skin_office2003 a.cke_dialog_ui_button
+{
+	border-collapse: separate;
+	cursor: default;
+}
+
+.cke_skin_office2003 span.cke_dialog_ui_button
+{
+	background-image: url(images/sprites.png);
+	background-position: 0 -678px;
+	background-repeat: repeat-x;
+	border: #0E3460 1px solid;
+	padding: 2px 10px;
+	text-align: center;
+	color: #0E3460;
+	background-color: #8db1ff;
+	display: inline-block;
+	cursor: default;
+}
+
+/* Gecko 1.8 does not support display: inline-block */
+.cke_skin_office2003 .cke_browser_gecko18 .cke_dialog_footer_buttons span.cke_dialog_ui_button
+{
+	display: block;
+}
+
+.cke_skin_office2003 a.cke_dialog_ui_button span.cke_disabled
+{
+	border: #898980 1px solid;
+	color: #5e5e55;
+	background-color: #c5c5b3;
+}
+
+.cke_skin_office2003 a:focus span.cke_dialog_ui_button,
+.cke_skin_office2003 a:active span.cke_dialog_ui_button
+{
+	background-color: #8db1ff;
+}
+
+.cke_skin_office2003 .cke_dialog_footer_buttons
+{
+	display: inline-table;
+	margin-right: 12px;
+	margin-left: 12px;
+	width: auto;
+	position: relative;
+}
+
+/* Gecko 1.8 does not support for display: inline-table */
+.cke_skin_office2003 .cke_browser_gecko18 .cke_dialog_footer_buttons
+{
+	display: inline;
+}
+
+.cke_skin_office2003 .cke_dialog_footer_buttons span.cke_dialog_ui_button
+{
+	width: 60px;
+	margin: 7px 0;
+}
+
+.cke_skin_office2003 strong
+{
+	font-weight: bold;
+}
+
+/* close_button */
+
+.cke_skin_office2003 .cke_dialog_close_button
+{
+	background-image: url(images/sprites.png);
+	background-repeat: no-repeat;
+	background-position: -20px -655px;
+	position: absolute;
+	cursor: pointer;
+	text-align: center;
+	height: 21px;
+	width: 21px;
+	top: 4px;
+
+	/* IE6 does not support full color transparent PNG. */
+	_background-image: url(images/sprites_ie6.png);
+}
+
+.cke_skin_office2003 .cke_dialog_close_button span
+{
+	display: none;
+}
+
+.cke_skin_office2003 .cke_ltr .cke_dialog_close_button
+{
+	right: 10px;
+	_right: 22px;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_dialog_close_button
+{
+	left: 10px;
+	_left: 22px;
+}
+
+.cke_skin_office2003 .cke_browser_ie6.cke_rtl .cke_dialog_close_button
+{
+	position: relative;
+	float: left;
+	margin-top: -55px;
+	margin-left: -7px;
+}
+
+.cke_skin_office2003 .cke_browser_iequirks.cke_rtl.cke_single_page .cke_dialog_close_button
+{
+	margin-top: -32px;
+}
+
+.cke_skin_office2003 .cke_browser_iequirks.cke_ltr .cke_dialog_close_button
+{
+	margin-top: 0;
+}
+
+.cke_skin_office2003 .cke_dialog_ui_input_select
+{
+	border: 1px solid #a0a0a0;
+	background-color: white;
+}
+
+.cke_skin_office2003 iframe.cke_dialog_ui_input_file
+{
+	width: 100%;
+	height: 25px;
+}
+
+/*
+ * Some utility CSS classes for dialog authors.
+ */
+.cke_skin_office2003 .cke_dialog .cke_dark_background
+{
+	background-color: #eaead1;
+}
+
+.cke_skin_office2003 .cke_dialog .cke_hand
+{
+	cursor: pointer;
+}
+
+.cke_skin_office2003 .cke_dialog .cke_centered
+{
+	text-align: center;
+}
+
+.cke_skin_office2003 .cke_dialog .cke_btn_reset
+{
+	float: right;
+	background-position: 0 -32px;
+	background-image: url(images/mini.gif);
+	width: 16px;
+	height: 16px;
+	background-repeat: no-repeat;
+	border: 1px none;
+	font-size: 1px;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_dialog .cke_btn_reset
+{
+	float: left;
+}
+
+.cke_skin_office2003 .cke_dialog .cke_btn_locked,
+.cke_skin_office2003 .cke_dialog .cke_btn_unlocked
+{
+	float: left;
+	background-position: 0 0;
+	background-image: url(images/mini.gif);
+	width: 16px;
+	height: 16px;
+	background-repeat: no-repeat;
+	border: none 1px;
+	font-size: 1px;
+}
+
+.cke_skin_office2003 .cke_dialog .cke_btn_locked,
+.cke_skin_office2003 .cke_dialog .cke_btn_unlocked
+{
+	float: right;
+}
+
+.cke_skin_office2003 .cke_dialog .cke_btn_unlocked
+{
+	background-position: 0 -16px;
+	background-image: url(images/mini.gif);
+}
+
+.cke_skin_office2003 .cke_dialog .cke_btn_over
+{
+	border: outset 1px;
+	cursor: pointer;
+	cursor: hand;
+}
+
+.cke_skin_office2003 .cke_dialog  #ImagePreviewBox
+{
+	white-space : normal;
+	border : 2px ridge black;
+	overflow : scroll;
+	height : 160px;
+	width : 230px;
+	padding : 2px;
+	background-color : white;
+}
+.cke_skin_office2003 .cke_dialog  #ImagePreviewLoader
+{
+	position: absolute;
+	white-space : normal;
+	overflow : hidden;
+	height : 160px;
+	width : 230px;
+	margin : 2px;
+	padding : 2px;
+	opacity : 0.9;
+	filter : alpha(opacity=90);
+
+	background-color : #e4e4e4;
+}
+
+.cke_skin_office2003 .cke_dialog  #FlashPreviewBox
+{
+	white-space : normal;
+	border : 2px ridge black;
+	overflow : auto;
+	height : 160px;
+	width : 390px;
+	padding : 2px;
+	background-color : white;
+}
+
+.cke_skin_office2003 .cke_dialog .cke_dark_background
+{
+	text-align : center;
+	background-color: #eaead1;
+	font-size : 14px;
+}
+
+.cke_skin_office2003 .cke_dialog .cke_light_background
+{
+	text-align : center;
+	background-color: #ffffbe;
+}
+
+.cke_skin_office2003 .cke_dialog .cke_hand
+{
+	cursor: pointer;
+	cursor: hand;
+}
+
+.cke_skin_office2003 .cke_disabled
+{
+	color: #a0a0a0;
+}
+
+/* High Contrast Mode */
+.cke_skin_office2003 .cke_hc .cke_dialog_title,
+.cke_skin_office2003 .cke_hc .cke_dialog_tabs,
+.cke_skin_office2003 .cke_hc .cke_dialog_contents,
+.cke_skin_office2003 .cke_hc .cke_dialog_footer
+{
+	border-left: 1px solid;
+	border-right: 1px solid;
+}
+
+.cke_skin_office2003 .cke_hc .cke_dialog_title
+{
+	border-top: 1px solid;
+}
+
+.cke_skin_office2003 .cke_hc .cke_dialog_footer
+{
+	border-bottom: 1px solid;
+}
+
+.cke_skin_office2003 .cke_hc .cke_dialog_close_button span
+{
+	display: inline;
+	cursor: pointer;
+	cursor: hand;
+	font-weight: bold;
+	position: relative;
+	top: 3px;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/office2003/editor.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/office2003/editor.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/office2003/editor.css	(revision 3747)
@@ -0,0 +1,21 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+@import url("reset.css");
+@import url("mainui.css");
+@import url("panel.css");
+@import url("toolbar.css");
+@import url("menu.css");
+@import url("richcombo.css");
+@import url("elementspath.css");
+@import url("icons.css");
+@import url("presets.css");
+
+/* Restore the container visibility */
+html .cke_skin_office2003,
+html.cke_skin_office2003_container
+{
+	visibility: visible;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/office2003/elementspath.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/office2003/elementspath.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/office2003/elementspath.css	(revision 3747)
@@ -0,0 +1,68 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+@media print
+{
+	.cke_path
+	{
+		display: none;
+	}
+}
+
+.cke_skin_office2003 .cke_path
+{
+	padding: 3px 3px 0 3px;
+	display: inline-block;
+	float: left;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_path
+{
+	float: right;
+}
+
+.cke_skin_office2003 .cke_path a,
+.cke_skin_office2003 .cke_path .cke_empty
+{
+	display: inline-block;
+	float: left;
+	border: solid 1px #f7f8fd;
+	background-color: #f7f8fd;
+	padding-top: 1px;
+	padding-bottom: 1px;
+	padding-left: 4px;
+	padding-right: 4px;
+	margin-bottom : 3px;
+}
+
+.cke_skin_office2003 .cke_path .cke_empty
+{
+	visibility: hidden;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_path a,
+.cke_skin_office2003 .cke_rtl .cke_path cke_empty
+{
+	float: right;
+}
+
+.cke_skin_office2003 .cke_path a:hover,
+.cke_skin_office2003 .cke_path a:focus,
+.cke_skin_office2003 .cke_path a:active	/* IE */
+{
+	border: solid 1px #316ac5;
+	background-color: #dff1ff;
+	padding-top: 1px;
+	padding-bottom: 1px;
+	padding-left: 4px;
+	padding-right: 4px;
+	outline: none;
+}
+
+.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_path a,
+.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_path .cke_empty
+{
+	float: none;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/office2003/icons.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/office2003/icons.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/office2003/icons.css	(revision 3747)
@@ -0,0 +1,309 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+.cke_skin_office2003 .cke_button_source .cke_icon
+{
+	background-position: 0 0;
+}
+
+.cke_skin_office2003 .cke_button_newpage .cke_icon
+{
+	background-position: 0 -48px;
+}
+
+.cke_skin_office2003 .cke_button_preview .cke_icon
+{
+	background-position: 0 -64px;
+}
+
+.cke_skin_office2003 .cke_button_cut .cke_icon
+{
+	background-position: 0 -96px;
+}
+
+.cke_skin_office2003 .cke_button_copy .cke_icon
+{
+	background-position: 0 -112px;
+}
+
+.cke_skin_office2003 .cke_button_paste .cke_icon
+{
+	background-position: 0 -128px;
+}
+
+.cke_skin_office2003 .cke_button_pastetext .cke_icon
+{
+	background-position: 0 -144px;
+}
+
+.cke_skin_office2003 .cke_button_find .cke_icon
+{
+	background-position: 0 -240px;
+}
+
+.cke_skin_office2003 .cke_button_replace .cke_icon
+{
+	background-position: 0 -256px;
+}
+
+.cke_skin_office2003 .cke_button_selectAll .cke_icon
+{
+	background-position: 0 -272px;
+}
+
+.cke_skin_office2003 .cke_button_removeFormat .cke_icon
+{
+	background-position: 0 -288px;
+}
+
+.cke_skin_office2003 .cke_button_bold .cke_icon
+{
+	background-position: 0 -304px;
+}
+
+.cke_skin_office2003 .cke_button_italic .cke_icon
+{
+	background-position: 0 -320px;
+}
+
+.cke_skin_office2003 .cke_button_underline .cke_icon
+{
+	background-position: 0 -336px;
+}
+
+.cke_skin_office2003 .cke_button_strike .cke_icon
+{
+	background-position: 0 -352px;
+}
+
+.cke_skin_office2003 .cke_button_subscript .cke_icon
+{
+	background-position: 0 -368px;
+}
+
+.cke_skin_office2003 .cke_button_superscript .cke_icon
+{
+	background-position: 0 -384px;
+}
+
+.cke_skin_office2003 .cke_button_table .cke_icon
+{
+	background-position: 0 -608px;
+}
+
+.cke_skin_office2003 .cke_button_horizontalrule .cke_icon
+{
+	background-position: 0 -624px;
+}
+
+.cke_skin_office2003 .cke_button_smiley .cke_icon
+{
+	background-position: 0 -640px;
+}
+
+.cke_skin_office2003 .cke_button_link .cke_icon
+{
+	background-position: 0 -528px;
+}
+
+.cke_skin_office2003 .cke_button_unlink .cke_icon
+{
+	background-position: 0 -544px;
+}
+
+.cke_skin_office2003 .cke_button_anchor .cke_icon
+{
+	background-position: 0 -560px;
+}
+
+.cke_skin_office2003 .cke_button_image .cke_icon
+{
+	background-position: 0 -576px;
+}
+
+.cke_skin_office2003 .cke_button_flash .cke_icon
+{
+	background-position: 0 -592px;
+}
+
+.cke_skin_office2003 .cke_button_specialchar .cke_icon
+{
+	background-position: 0 -656px;
+}
+
+.cke_skin_office2003 .cke_button_pagebreak .cke_icon
+{
+	background-position: 0 -672px;
+}
+
+.cke_skin_office2003 .cke_button_print .cke_icon
+{
+	background-position: 0 -176px;
+}
+
+.cke_skin_office2003 .cke_button_checkspell .cke_icon,
+.cke_skin_office2003 .cke_button_scayt .cke_icon
+{
+	background-position: 0 -192px;
+}
+
+.cke_skin_office2003 .cke_button_pagebreak .cke_icon
+{
+	background-position: 0 -672px;
+}
+
+.cke_skin_office2003 .cke_button_textcolor .cke_icon
+{
+	background-position: 0 -704px;
+}
+
+.cke_skin_office2003 .cke_button_bgcolor .cke_icon
+{
+	background-position: 0 -720px;
+}
+
+.cke_skin_office2003 .cke_button_form .cke_icon
+{
+	background-position: 0 -752px;
+}
+
+.cke_skin_office2003 .cke_button_checkbox .cke_icon
+{
+	background-position: 0 -768px;
+}
+
+.cke_skin_office2003 .cke_button_radio .cke_icon
+{
+	background-position: 0 -784px;
+}
+
+.cke_skin_office2003 .cke_button_textfield .cke_icon
+{
+	background-position: 0 -800px;
+}
+
+.cke_skin_office2003 .cke_button_textarea .cke_icon
+{
+	background-position: 0 -816px;
+}
+.cke_skin_office2003 .cke_button_showblocks .cke_icon
+{
+	background-position: 0 -1136px;
+}
+
+.cke_skin_office2003 .cke_button_select .cke_icon
+{
+	background-position: 0 -832px;
+}
+
+.cke_skin_office2003 .cke_button_button .cke_icon
+{
+	background-position: 0 -848px;
+}
+
+.cke_skin_office2003 .cke_button_imagebutton .cke_icon
+{
+	background-position: 0 -864px;
+}
+
+.cke_skin_office2003 .cke_button_hiddenfield .cke_icon
+{
+	background-position: 0 -880px;
+}
+
+.cke_skin_office2003 .cke_button_undo .cke_icon
+{
+	background-position: 0 -208px;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_button_undo .cke_icon
+{
+	background-position: 0 -224px;
+}
+
+.cke_skin_office2003 .cke_button_redo .cke_icon
+{
+	background-position: 0 -224px;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_button_redo .cke_icon
+{
+	background-position: 0 -208px;
+}
+
+.cke_skin_office2003 .cke_button_templates .cke_icon
+{
+	background-position: 0 -80px;
+}
+
+.cke_skin_office2003 .cke_button_numberedlist .cke_icon
+{
+	background-position: 0 -400px;
+}
+
+.cke_skin_office2003 .cke_button_bulletedlist .cke_icon
+{
+	background-position: 0 -416px;
+}
+
+.cke_skin_office2003 .cke_button_outdent .cke_icon
+{
+	background-position: 0 -432px;
+}
+
+.cke_skin_office2003 .cke_button_indent .cke_icon
+{
+	background-position: 0 -448px;
+}
+
+.cke_skin_office2003 .cke_button_justifyleft .cke_icon
+{
+	background-position: 0 -464px;
+}
+
+.cke_skin_office2003 .cke_button_justifycenter .cke_icon
+{
+	background-position: 0 -480px;
+}
+
+.cke_skin_office2003 .cke_button_justifyright .cke_icon
+{
+	background-position: 0 -496px;
+}
+
+.cke_skin_office2003 .cke_button_justifyblock .cke_icon
+{
+	background-position: 0 -512px;
+}
+
+.cke_skin_office2003 .cke_button_blockquote .cke_icon
+{
+	background-position: 0 -1152px;
+}
+
+.cke_skin_office2003 .cke_button_flash .cke_icon
+{
+	background-position: 0 -592px;
+}
+
+.cke_skin_office2003 .cke_button_pastefromword .cke_icon
+{
+	background-position: 0 -160px;
+}
+
+.cke_skin_office2003 .cke_button_save .cke_icon
+{
+	background-position: 0 -32px;
+}
+
+.cke_skin_office2003 .cke_button_about .cke_icon
+{
+	background-position: 0 -736px;
+}
+
+.cke_skin_office2003 .cke_button_maximize .cke_icon
+{
+	background-position: 0 -1040px;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/office2003/mainui.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/office2003/mainui.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/office2003/mainui.css	(revision 3747)
@@ -0,0 +1,91 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+.cke_skin_office2003 .cke_editor
+{
+/*
+	border: solid 1px #dcdcdc;
+*/
+	display: inline-table;
+}
+
+.cke_skin_office2003,
+.cke_skin_office2003 .cke_wrapper
+{
+	display: block;
+}
+
+.cke_skin_office2003 .cke_top, .cke_skin_office2003 .cke_bottom
+{
+	background-color: #f7f8fd;
+}
+
+.cke_skin_office2003 .cke_top
+{
+    border-top: solid 1px #fafaf5;
+    border-left: solid 1px #fafaf5;
+    border-right: solid 1px #696969;
+    border-bottom: solid 2px #696969;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_top
+{
+    border-left: solid 1px #696969;
+    border-right: solid 1px #fafaf5;
+}
+
+.cke_skin_office2003 .cke_bottom
+{
+    border-left: solid 1px #696969;
+    border-right: solid 1px #696969;
+    border-bottom: solid 1px #696969;
+}
+
+.cke_skin_office2003 .cke_contents
+{
+	border: solid 1px #696969;
+}
+
+.cke_skin_office2003 .cke_focus
+{
+	outline: auto 5px -webkit-focus-ring-color;
+}
+
+.cke_skin_office2003 textarea.cke_source
+{
+	font-family: 'Courier New' , Monospace;
+	font-size: small;
+	white-space: pre;
+	background-color: #fff;
+}
+
+.cke_skin_office2003 .cke_resizer
+{
+	width: 12px;
+	height: 12px;
+	margin-top: 12px;
+	display: block;
+	float: right;
+	background-image: url(images/resizer.gif);
+	cursor: se-resize;
+}
+
+.cke_skin_office2003 .cke_maximized .cke_resizer
+{
+	display: none;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_resizer
+{
+	cursor: sw-resize;
+	background-image: url(images/resizer_rtl.gif);
+	float: left;
+}
+
+.cke_skin_office2003 .cke_browser_ie6 .cke_contents textarea,
+.cke_skin_office2003 .cke_browser_ie7 .cke_contents textarea
+{
+	position: absolute;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/office2003/menu.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/office2003/menu.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/office2003/menu.css	(revision 3747)
@@ -0,0 +1,166 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+.cke_skin_office2003 .cke_contextmenu
+{
+	padding: 2px;
+}
+
+.cke_skin_office2003 .cke_menuitem a
+{
+	display:block;
+}
+
+.cke_skin_office2003 .cke_menuitem span
+{
+	cursor: default;
+}
+
+.cke_skin_office2003 .cke_menuitem a:hover,
+.cke_skin_office2003 .cke_menuitem a:focus,
+.cke_skin_office2003 .cke_menuitem a:active
+{
+	background-color: #8db1ff;
+	display:block;
+}
+
+.cke_skin_office2003 .cke_menuitem a.cke_disabled:hover,
+.cke_skin_office2003 .cke_menuitem a.cke_disabled:focus,
+.cke_skin_office2003 .cke_menuitem a.cke_disabled:active
+{
+	background-color: transparent !important;
+}
+
+.cke_skin_office2003 .cke_menuitem .cke_icon
+{
+	background-image: url(icons.png);
+	background-position: 100px;
+	background-repeat:no-repeat;
+	background-color: transparent;
+	width: 16px;
+	height: 16px;
+	float: left;
+}
+
+.cke_skin_office2003 .cke_menuitem .cke_disabled .cke_icon
+{
+	filter: alpha(opacity=70); /* IE */
+	opacity: 0.70; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_office2003 .cke_menuitem .cke_icon_wrapper
+{
+	background-color: #f7f8fd;
+	border: solid 4px #f7f8fd;
+	width: 16px;
+	height: 16px;
+	float: left;
+	filter: alpha(opacity=70); /* IE */
+	opacity: 0.70; /* Safari, Opera and Mozilla */
+}
+
+.cke_rtl .cke_skin_office2003 .cke_menuitem .cke_icon_wrapper
+{
+	float: right;
+}
+
+.cke_skin_office2003 .cke_menuitem a:hover .cke_icon_wrapper,
+.cke_skin_office2003 .cke_menuitem a:focus .cke_icon_wrapper,
+.cke_skin_office2003 .cke_menuitem a:active .cke_icon_wrapper
+{
+	background-color: #9d9d9d;
+	border: solid 4px #9d9d9d;
+	filter: alpha(opacity=70); /* IE */
+	opacity: 0.70; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_office2003 .cke_menuitem a:hover.cke_disabled .cke_icon_wrapper,
+.cke_skin_office2003 .cke_menuitem a:focus.cke_disabled .cke_icon_wrapper,
+.cke_skin_office2003 .cke_menuitem a:active.cke_disabled .cke_icon_wrapper
+{
+	background-color: #f7f8fd;
+	border: solid 4px #f7f8fd;
+}
+
+.cke_skin_office2003 .cke_menuitem .cke_label
+{
+	display:block;
+	padding-right: 3px;
+	padding-top: 5px;
+	padding-left: 4px;
+	height:19px;
+	margin-left: 24px;
+	background-color: #fff;
+	_overflow: hidden;
+	_width: 80px;
+	filter: alpha(opacity=70); /* IE */
+	opacity: 0.70; /* Safari, Opera and Mozilla */
+}
+
+/* Never applied */
+/*.cke_rtl .cke_skin_office2003 .cke_menuitem .cke_label
+{
+	padding-right: 0;
+	margin-left: 0;
+	padding-left: 3px;
+	margin-right: 28px;
+}*/
+
+.cke_skin_office2003 .cke_menuitem a.cke_disabled .cke_label
+{
+	filter: alpha(opacity=30); /* IE */
+	opacity: 0.30; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_office2003 .cke_menuitem a:hover .cke_label,
+.cke_skin_office2003 .cke_menuitem a:focus .cke_label,
+.cke_skin_office2003 .cke_menuitem a:active .cke_label
+{
+	background-color: #8db1ff;
+}
+
+.cke_skin_office2003 .cke_menuitem a.cke_disabled:hover .cke_label,
+.cke_skin_office2003 .cke_menuitem a.cke_disabled:focus .cke_label,
+.cke_skin_office2003 .cke_menuitem a.cke_disabled:active .cke_label
+{
+	background-color: transparent;
+}
+
+.cke_skin_office2003 .cke_menuseparator
+{
+	background-color: #f7f8fd;
+	height: 2px;
+	filter: alpha(opacity=70); /* IE */
+	opacity: 0.70; /* Safari, Opera and Mozilla */
+
+	_font-size: 0;
+}
+
+.cke_skin_office2003 .cke_menuarrow
+{
+	background-image: url(images/arrowright.gif);
+	background-repeat: no-repeat;
+	height: 5px;
+	width: 3px;
+	float: right;
+	margin-right: 2px;
+	margin-top: 3px;
+}
+
+/* Never applied */
+/*.cke_rtl .cke_skin_office2003 .cke_menuarrow
+{
+	float: left;
+	margin-right: 0;
+	margin-left: 2px;
+	background-image: url(images/arrowleft.gif);
+}*/
+
+/* #3766 In the context menu, long labels with second level menu get wrapped */
+.cke_browser_ie .cke_skin_office2003 .cke_menuarrow
+{
+	position: absolute;
+	right: 0;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/office2003/panel.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/office2003/panel.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/office2003/panel.css	(revision 3747)
@@ -0,0 +1,198 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+.cke_skin_office2003 .cke_panel
+{
+    border: 1px solid #8f8f73;
+	background-color: #fff;
+
+	width: 120px;
+	height: 100px;
+
+	overflow:hidden;
+
+	-moz-border-radius: 3px;
+	-webkit-border-radius: 3px;
+	border-radius: 3px;
+}
+
+/* Ideally we would use "inherit here"... but you know... IE :( */
+.cke_skin_office2003 .cke_panel iframe
+{
+	width: 100%;
+	height: 100%;
+}
+
+/*
+ * All the following styles are to be used inside the iframe that holds panel
+ * contents. We don't use the cke_skin_default there to avoid the reset to be
+ * active.
+ * This is not an issue as we'll never have two skins running inside the same
+ * panel iframe.
+ */
+
+html.cke_skin_office2003_container
+{
+	overflow: auto;
+	overflow-x: hidden;
+}
+
+body.cke_panel_frame
+{
+	overflow: auto;
+	overflow-x: hidden;
+}
+
+ul.cke_panel_list
+{
+	list-style-type: none;
+	margin: 3px;
+	padding: 0px;
+    white-space: nowrap;
+}
+
+li.cke_panel_listItem
+{
+	margin: 0px;
+}
+
+.cke_panel_listItem a
+{
+	padding: 2px;
+	display: block;
+	border: 1px solid #fff;
+	color: inherit;
+	text-decoration: none;
+	overflow: hidden;
+    text-overflow: ellipsis;
+}
+
+/* IE6 */
+* html .cke_panel_listItem a
+{
+	width : 100%;
+
+	/* IE is not able to inherit the color, so we must force it to black */
+	color: #000;
+}
+
+/* IE7 */
+*:first-child+html .cke_panel_listItem a
+{
+	/* IE is not able to inherit the color, so we must force it to black */
+	color: #000;
+}
+
+.cke_panel_listItem.cke_selected a
+{
+	border: 1px solid #ccc;
+	background-color: #e9f5ff;
+}
+
+.cke_panel_listItem a:hover,
+.cke_panel_listItem a:focus,
+.cke_panel_listItem a:active
+{
+	border-color: #316ac5;
+	background-color: #dff1ff;
+}
+
+.cke_panel_grouptitle
+{
+    font-size: 11px;
+    font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif;
+	font-weight: bold;
+    white-space: nowrap;
+	background-color: #dcdcdc;
+	color: #000;
+	margin:0px;
+	padding:3px;
+}
+
+.cke_panel_listItem p,
+.cke_panel_listItem h1,
+.cke_panel_listItem h2,
+.cke_panel_listItem h3,
+.cke_panel_listItem h4,
+.cke_panel_listItem h5,
+.cke_panel_listItem h6,
+.cke_panel_listItem pre
+{
+	margin-top: 3px;
+	margin-bottom: 3px;
+}
+
+.cke_skin_office2003 .cke_button_textcolor_panel,
+.cke_skin_office2003 .cke_button_bgcolor_panel
+{
+	width: 150px;
+	height: 135px;
+}
+
+.cke_colorblock
+{
+	padding: 3px;
+    font-size: 11px;
+    font-family: 'Microsoft Sans Serif', Tahoma, Arial, Verdana, Sans-Serif;
+}
+
+.cke_colorblock,
+.cke_colorblock a
+{
+	text-decoration: none;
+	color: #000;
+}
+
+span.cke_colorbox
+{
+	width: 10px;
+	height: 10px;
+    border: #808080 1px solid;
+	float: left;
+}
+
+.cke_rtl span.cke_colorbox
+{
+	float: right;
+}
+
+a.cke_colorbox
+{
+    border: #fff 1px solid;
+    padding: 2px;
+    float: left;
+}
+
+.cke_rtl a.cke_colorbox
+{
+    float: right;
+}
+
+a:hover.cke_colorbox,
+a:focus.cke_colorbox,
+a:active.cke_colorbox
+{
+    border: #316ac5 1px solid;
+    background-color: #dff1ff;
+}
+
+a.cke_colorauto,
+a.cke_colormore
+{
+    border: #fff 1px solid;
+    padding: 2px;
+    display: block;
+}
+
+a:hover.cke_colorauto,
+a:hover.cke_colormore,
+a:focus.cke_colorauto,
+a:focus.cke_colormore,
+a:active.cke_colorauto,
+a:active.cke_colormore
+{
+    border: #316ac5 1px solid;
+    background-color: #dff1ff;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/office2003/presets.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/office2003/presets.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/office2003/presets.css	(revision 3747)
@@ -0,0 +1,49 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/* "Source" button label */
+.cke_skin_office2003 .cke_button_source .cke_label
+{
+	display: inline;
+}
+
+/* "Styles" panel size */
+.cke_skin_office2003 .cke_styles_panel
+{
+	width: 150px;
+	height: 170px;
+}
+
+/* "Format" panel size */
+.cke_skin_office2003 .cke_format_panel
+{
+	width: 150px;
+	height: 170px;
+}
+
+/* "Font" panel size */
+.cke_skin_office2003 .cke_font_panel
+{
+	width: 150px;
+	height: 170px;
+}
+
+/* "Font Size" panel size */
+.cke_skin_office2003 .cke_fontSize_panel
+{
+	height: 170px;
+}
+
+/* "Font Size" combo width */
+.cke_skin_office2003 .cke_fontSize .cke_text
+{
+	width: 20px;
+}
+
+/* "Font Size" combo width (IE Quirks) */
+.cke_skin_office2003 .cke_browser_iequirks .cke_fontSize .cke_text
+{
+	width: 32px;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/office2003/reset.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/office2003/reset.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/office2003/reset.css	(revision 3747)
@@ -0,0 +1,78 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * Reset and Default Values
+ */
+.cke_skin_office2003 *,
+.cke_skin_office2003 a:hover,
+.cke_skin_office2003 a:link,
+.cke_skin_office2003 a:visited,
+.cke_skin_office2003 a:active
+{
+	margin: 0;
+	padding: 0;
+	border: 0;
+	background: transparent;
+	text-decoration: none;
+	font: normal normal normal 100% Sans-Serif;
+	width: auto;
+	height: auto;
+	border-collapse: collapse;
+	text-align: left;
+	vertical-align: baseline;
+	white-space: nowrap;
+	cursor: auto;
+	color: #000;
+
+    font-size: 11px;
+    font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif;
+}
+
+.cke_skin_office2003 .cke_rtl *,
+.cke_skin_office2003 .cke_rtl a:hover,
+.cke_skin_office2003 .cke_rtl a:link,
+.cke_skin_office2003 .cke_rtl a:visited,
+.cke_skin_office2003 .cke_rtl a:active,
+.cke_rtl .cke_skin_office2003 *,
+.cke_rtl .cke_skin_office2003 a:hover,
+.cke_rtl .cke_skin_office2003 a:link,
+.cke_rtl .cke_skin_office2003 a:visited,
+.cke_rtl .cke_skin_office2003 a:active
+{
+	text-align: right;
+}
+
+.cke_skin_office2003 iframe
+{
+	vertical-align: inherit;	/** For IE */
+}
+
+.cke_skin_office2003 textarea
+{
+	white-space: pre;
+}
+
+.cke_skin_office2003 .cke_browser_gecko textarea
+{
+	cursor: text;
+}
+
+.cke_skin_office2003 .cke_browser_gecko textarea[disabled]
+{
+	cursor: default;
+}
+
+.cke_skin_office2003 input[type="text"],
+.cke_skin_office2003 input[type="password"]
+{
+	cursor: text;
+}
+
+.cke_skin_office2003 input[type="text"][disabled],
+.cke_skin_office2003 input[type="password"][disabled]
+{
+	cursor: default;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/office2003/richcombo.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/office2003/richcombo.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/office2003/richcombo.css	(revision 3747)
@@ -0,0 +1,265 @@
+/* Special Combo */
+
+.cke_skin_office2003 .cke_rcombo
+{
+	display: inline-block;
+	margin-left: 2px;
+	margin-right: 2px;
+	margin-top: 2px;
+	vertical-align: top;
+	float: left;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_rcombo
+{
+	float: right;
+}
+
+.cke_skin_office2003 .cke_rcombopanel
+{
+	border: 1px solid #316ac5;
+	-moz-border-radius-topleft: 0;
+	-webkit-border-top-left-radius: 0;
+	border-top-left-radius: 0;
+	/*margin-left: 1px;*/
+	/*_margin-left: 0;*/
+}
+
+.cke_skin_office2003 .cke_rcombo a
+{
+	display: inline-block;
+	float: left;
+
+	filter: alpha(opacity=70); /* IE */
+	opacity: 0.70; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_office2003 .cke_rtl .cke_rcombo a
+{
+	float: right;
+}
+
+.cke_skin_office2003 .cke_hc .cke_rcombo a
+{
+	filter: alpha(opacity=100); /* IE */
+	opacity: 1.0; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_office2003 .cke_rcombo .cke_label
+{
+	display: inline-block;
+	float: left;
+
+	line-height: 24px;
+	height: 24px;
+
+	vertical-align: top;
+	padding-left: 4px;
+	padding-right: 5px;
+	filter: alpha(opacity=70); /* IE */
+	opacity: 0.70; /* Safari, Opera and Mozilla */
+
+	_background-image: url(images/sprites.png);
+	_background-position: 0 -962px;
+	_background-repeat: repeat-x;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_rcombo .cke_label
+{
+	float: right;
+	padding-right: 4px;
+	padding-left: 5px;
+}
+
+.cke_skin_office2003 .cke_hc .cke_rcombo .cke_label
+{
+	filter: alpha(opacity=100);
+	opacity: 1.0;
+}
+
+.cke_skin_office2003 .cke_rcombo .cke_inline_label
+{
+	color: #fff;
+}
+
+.cke_skin_office2003 .cke_rcombo .cke_text
+{
+	border: 1px solid #8f8f73;
+	background-color: #fff;
+	height: 14px;
+	width:60px;
+	padding-top: 4px;
+	padding-bottom: 4px;
+	padding-left: 5px;
+	padding-right: 5px;
+	text-overflow: ellipsis;
+	overflow: hidden;
+	display: inline-block;
+}
+
+.cke_skin_office2003 .cke_ltr .cke_rcombo .cke_text
+{
+	-moz-border-radius-topleft: 3px;
+	-webkit-border-top-left-radius: 3px;
+	border-top-left-radius: 3px;
+	-moz-border-radius-bottomleft: 3px;
+	-webkit-border-bottom-left-radius: 3px;
+	border-bottom-left-radius: 3px;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_rcombo .cke_text
+{
+	-moz-border-radius-topright: 3px;
+	-webkit-border-top-right-radius: 3px;
+	border-top-right-radius: 3px;
+	-moz-border-radius-bottomright: 3px;
+	-webkit-border-bottom-right-radius: 3px;
+	border-bottom-right-radius: 3px;
+}
+
+/* Fix for IE height */
+.cke_skin_office2003 .cke_browser_iequirks .cke_rcombo .cke_text
+{
+	height: 22px;
+}
+
+.cke_skin_office2003 .cke_rcombo .cke_openbutton
+{
+	display: inline-block;
+
+	background-position: center center;
+	background-image: url(images/arrowdown.gif);
+	background-repeat: no-repeat;
+
+	border-top: 1px solid #8f8f73;
+	border-bottom: 1px solid #8f8f73;
+	width: 14px;
+	height: 22px;
+}
+
+.cke_skin_office2003 .cke_ltr .cke_rcombo .cke_openbutton
+{
+    border-right: 1px solid #8f8f73;
+	-moz-border-radius-topright: 3px;
+	-webkit-border-top-right-radius: 3px;
+	border-top-right-radius: 3px;
+	-moz-border-radius-bottomright: 3px;
+	-webkit-border-bottom-right-radius: 3px;
+	border-bottom-right-radius: 3px;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_rcombo .cke_openbutton
+{
+    border-left: 1px solid #8f8f73;
+	-moz-border-radius-topleft: 3px;
+	-webkit-border-top-left-radius: 3px;
+	border-top-left-radius: 3px;
+	-moz-border-radius-bottomleft: 3px;
+	-webkit-border-bottom-left-radius: 3px;
+	border-bottom-left-radius: 3px;
+}
+
+.cke_skin_office2003 .cke_rcombo .cke_off a:hover,
+.cke_skin_office2003 .cke_rcombo .cke_off a:focus,
+.cke_skin_office2003 .cke_rcombo .cke_off a:active,
+.cke_skin_office2003 .cke_rcombo .cke_on a
+{
+	filter: alpha(opacity=100); /* IE */
+	opacity: 1; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_office2003 .cke_rcombo .cke_off a:hover .cke_text,
+.cke_skin_office2003 .cke_rcombo .cke_off a:focus .cke_text,
+.cke_skin_office2003 .cke_rcombo .cke_off a:active .cke_text,
+.cke_skin_office2003 .cke_rcombo .cke_on .cke_text
+{
+	border-color: #316ac5;
+}
+
+.cke_skin_office2003 .cke_rcombo .cke_off a:hover .cke_openbutton,
+.cke_skin_office2003 .cke_rcombo .cke_off a:focus .cke_openbutton,
+.cke_skin_office2003 .cke_rcombo .cke_off a:active .cke_openbutton,
+.cke_skin_office2003 .cke_rcombo .cke_on .cke_openbutton
+{
+	border-color: #316ac5;
+	background-color: #dff1ff;
+}
+
+.cke_skin_office2003 .cke_rcombo .cke_on .cke_text
+{
+	-moz-border-radius-bottomleft: 0px;
+	-webkit-border-bottom-left-radius: 0px;
+	border-bottom-left-radius: 0px;
+}
+
+.cke_skin_office2003 .cke_rcombo .cke_on .cke_openbutton
+{
+	-moz-border-radius-bottomright: 0px;
+	-webkit-border-bottom-right-radius: 0px;
+	border-bottom-right-radius: 0px;
+}
+
+.cke_skin_office2003 .cke_rcombo .cke_disabled .cke_label
+{
+	filter: alpha(opacity=30); /* IE */
+	opacity: 0.3; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_office2003 .cke_hc .cke_rcombo .cke_disabled .cke_label
+{
+	filter: alpha(opacity=70);
+	opacity: 0.7;
+}
+
+.cke_skin_office2003 .cke_rcombo .cke_disabled .cke_text,
+.cke_skin_office2003 .cke_rcombo .cke_disabled .cke_openbutton
+{
+	filter: alpha(opacity=50); /* IE */
+	opacity: 0.5; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_office2003 .cke_hc .cke_rcombo .cke_disabled .cke_text,
+.cke_skin_office2003 .cke_hc .cke_rcombo .cke_disabled .cke_openbutton
+{
+	filter: alpha(opacity=80);
+	opacity: 0.8;
+}
+
+.cke_skin_office2003 .cke_rcombo .cke_disabled .cke_text
+{
+	color: #fff;
+}
+
+/* Firefox 2 & WebKit Section */
+
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rcombo,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rcombo .cke_label,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rcombo .cke_text,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rcombo .cke_openbutton,
+.cke_skin_office2003 .cke_browser_webkit .cke_rcombo .cke_label,
+.cke_skin_office2003 .cke_browser_webkit .cke_rcombo .cke_text,
+.cke_skin_office2003 .cke_browser_webkit .cke_rcombo .cke_openbutton
+{
+	display: block;
+	float: left;
+}
+
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_rcombo,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_rcombo .cke_label,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_rcombo .cke_text,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_rcombo .cke_openbutton,
+.cke_skin_office2003 .cke_browser_webkit .cke_rtl .cke_rcombo .cke_label,
+.cke_skin_office2003 .cke_browser_webkit .cke_rtl .cke_rcombo .cke_text,
+.cke_skin_office2003 .cke_browser_webkit .cke_rtl .cke_rcombo .cke_openbutton
+{
+	float: right;
+}
+
+/*** IE ***/
+
+.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_rcombo,
+.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_rcombo a,
+.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_rcombo .cke_label
+{
+	float: none;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/office2003/skin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/office2003/skin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/office2003/skin.js	(revision 3747)
@@ -0,0 +1,73 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.skins.add( 'office2003', (function()
+{
+	var preload = [];
+
+	if ( CKEDITOR.env.ie && CKEDITOR.env.version < 7 )
+	{
+		// For IE6, we need to preload some images, otherwhise they will be
+		// downloaded several times (CSS background bug).
+		preload.push( 'icons.png', 'images/sprites_ie6.png', 'images/dialog_sides.gif' );
+	}
+
+	return {
+		preload		: preload,
+		editor		: { css : [ 'editor.css' ] },
+		dialog		: { css : [ 'dialog.css' ] },
+		templates	: { css : [ 'templates.css' ] },
+		margins		: [ 0, 14, 18, 14 ]
+	};
+})() );
+
+if ( CKEDITOR.dialog )
+{
+	CKEDITOR.dialog.on( 'resize', function( evt )
+		{
+			var data = evt.data,
+				width = data.width,
+				height = data.height,
+				dialog = data.dialog,
+				standardsMode = !CKEDITOR.env.quirk;
+
+			if ( data.skin != 'office2003' )
+				return;
+
+			dialog.parts.contents.setStyles(
+				{
+					width : width + 'px',
+					height : height + 'px'
+				});
+
+			if ( !CKEDITOR.env.ie )
+				return;
+
+			// Fix the size of the elements which have flexible lengths.
+			setTimeout( function()
+				{
+					var content = dialog.parts.contents,
+						body = content.getParent(),
+						innerDialog = body.getParent();
+
+					// tc
+					var el = innerDialog.getChild( 2 );
+					el.setStyle( 'width', ( body.$.offsetWidth ) + 'px' );
+
+					// bc
+					el = innerDialog.getChild( 7 );
+					el.setStyle( 'width', ( body.$.offsetWidth - 28 ) + 'px' );
+
+					// ml
+					el = innerDialog.getChild( 4 );
+					el.setStyle( 'height', ( body.$.offsetHeight - 31 - 14 ) + 'px' );
+
+					// mr
+					el = innerDialog.getChild( 5 );
+					el.setStyle( 'height', ( body.$.offsetHeight - 31 - 14 ) + 'px' );
+				},
+				100 );
+		});
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/office2003/templates.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/office2003/templates.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/office2003/templates.css	(revision 3747)
@@ -0,0 +1,71 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * Styles for the "templates" plugin.
+ */
+
+.cke_skin_office2003 .cke_tpl_list
+{
+	border: #dcdcdc 2px solid;
+	background-color: #ffffff;
+	overflow: auto;
+	width: 100%;
+	height: 220px;
+}
+
+.cke_skin_office2003 .cke_tpl_item
+{
+	margin: 5px;
+	padding: 7px;
+	border: #eeeeee 1px solid;
+	*width: 88%;
+}
+
+.cke_skin_office2003 .cke_tpl_preview
+{
+	border-collapse: separate;
+	text-indent:0;
+	width: 100%;
+}
+.cke_skin_office2003 .cke_tpl_preview td
+{
+	padding: 2px;
+	vertical-align: middle;
+}
+.cke_skin_office2003 .cke_tpl_preview .cke_tpl_preview_img
+{
+	width: 100px;
+}
+.cke_skin_office2003 .cke_tpl_preview span
+{
+	white-space: normal;
+}
+
+.cke_skin_office2003 .cke_tpl_title
+{
+	font-weight: bold;
+}
+
+.cke_skin_office2003 .cke_tpl_hover
+{
+	border: #ff9933 1px solid !important;
+	background-color: #fffacd !important;
+	cursor: pointer;
+	cursor: hand;
+}
+/*
+ * Fix property 'cursor' doesn't inherit on table
+ */
+.cke_skin_office2003 .cke_tpl_hover *
+{
+	cursor: inherit;
+}
+
+.cke_skin_office2003 .cke_tpl_empty, .cke_tpl_loading
+{
+	text-align: center;
+	padding: 5px;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/office2003/toolbar.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/office2003/toolbar.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/office2003/toolbar.css	(revision 3747)
@@ -0,0 +1,379 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+@media print
+{
+	.cke_skin_office2003 .cke_toolbox
+	{
+		display: none;
+	}
+}
+
+.cke_skin_office2003 a.cke_toolbox_collapser,
+.cke_skin_office2003 a:hover.cke_toolbox_collapser
+{
+	background-image: url(images/arrowtop.gif);
+	background-repeat: no-repeat;
+	background-position: center center;
+	width: 11px;
+	height: 11px;
+	float: right;
+	border: outset 1px;
+	margin: 11px 2px 2px;
+	cursor: pointer;
+}
+
+.cke_skin_office2003 .cke_rtl a.cke_toolbox_collapser,
+.cke_skin_office2003 .cke_rtl a:hover.cke_toolbox_collapser
+{
+	float: left;
+}
+
+.cke_skin_office2003 a.cke_toolbox_collapser_min,
+.cke_skin_office2003 a:hover.cke_toolbox_collapser_min
+{
+	background-image: url(images/arrowleft.gif);
+	margin: 2px;
+}
+
+.cke_skin_office2003 .cke_rtl a.cke_toolbox_collapser_min,
+.cke_skin_office2003 .cke_rtl a:hover.cke_toolbox_collapser_min
+{
+	background-image: url(images/arrowright.gif);
+}
+
+.cke_skin_office2003 .cke_toolbar
+{
+	background-color: #d6dff7;
+	background-image: url(images/sprites.png);
+	_background-image: url(images/sprites_ie6.png);
+	background-position: 0 -962px;
+	background-repeat: repeat-x;
+	display: inline-block;
+	float: left;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_toolbar
+{
+	float: right;
+}
+
+.cke_skin_office2003 .cke_toolgroup
+{
+	display: inline-block;
+	float: left;
+	height: 28px;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_toolgroup
+{
+	float: right;
+}
+
+.cke_skin_office2003 .cke_separator
+{
+	display: inline-block;
+	float: left;
+	border-left: solid 1px #B2CBFF;
+	margin: 6px 2px;
+	height: 16px;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_separator
+{
+	float: right;
+}
+
+.cke_skin_office2003 .cke_break
+{
+	clear: left;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_break
+{
+	clear: right;
+}
+
+.cke_skin_office2003 .cke_toolbar_start
+{
+	display: inline-block;
+	background-image: url(images/sprites.png);
+	_background-image: url(images/sprites_ie6.png);
+	background-repeat: no-repeat;
+	background-position: -27px -765px;
+	width: 10px;
+	height: 28px;
+	float: left;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_toolbar_start
+{
+    background-position: -27px -816px;
+    float: right;
+}
+
+.cke_skin_office2003 .cke_toolbar_end
+{
+	display: inline-block;
+	background-image: url(images/sprites.png);
+	_background-image: url(images/sprites_ie6.png);
+	background-repeat: no-repeat;
+	background-position: -29px -861px;
+	width: 4px;
+	height: 28px;
+	float: left;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_toolbar_end
+{
+    background-position: -29px -907px;
+    float: right;
+}
+
+.cke_skin_office2003 .cke_button a,
+.cke_skin_office2003 .cke_button a.cke_off
+{
+	border: solid 1px transparent;
+	filter: alpha(opacity=70); /* IE */
+	opacity: 0.70; /* Safari, Opera and Mozilla */
+	display: inline-block;
+	-moz-border-radius: 3px;
+	-webkit-border-radius: 3px;
+	border-radius: 3px;
+	outline: none;
+	padding-top: 2px;
+	padding-left: 4px;
+	padding-right: 4px;
+	padding-bottom: 2px;
+	margin-top: 2px;
+	height: 18px;
+	vertical-align: top;
+
+	_border: none;
+	_margin: 3px 1px 1px 1px;
+	cursor: default;
+}
+
+.cke_skin_office2003 .cke_hc .cke_button a,
+.cke_skin_office2003 .cke_hc .cke_button a.cke_off
+{
+	opacity: 1.0;
+	filter: alpha(opacity=100);
+}
+
+.cke_skin_office2003 .cke_button a.cke_on
+{
+	border: solid 1px #316ac5;
+	background-color: #c1d2ee;
+	filter: alpha(opacity=100); /* IE */
+	opacity: 1; /* Safari, Opera and Mozilla */
+
+	_margin: 2px 0 0 0;
+}
+
+.cke_skin_office2003 .cke_hc .cke_button a.cke_on
+{
+	padding: 0 2px !important;
+	border-width: 3px;
+}
+
+.cke_skin_office2003 .cke_button a.cke_disabled,
+.cke_skin_office2003 .cke_button a:hover.cke_disabled,
+.cke_skin_office2003 .cke_button a:focus.cke_disabled,
+.cke_skin_office2003 .cke_button a:active.cke_disabled
+{
+	border: solid 1px transparent;
+	filter: alpha(opacity=30); /* IE */
+	opacity : 0.3; /* Safari, Opera and Mozilla */
+	vertical-align: top;
+
+	_border: none;
+	_margin: 3px 1px 1px 1px;
+}
+
+.cke_skin_office2003 .cke_hc .cke_button a.cke_disabled,
+.cke_skin_office2003 .cke_browser_ie.cke_hc a:hover.cke_button .cke_disabled
+{
+	filter: alpha(opacity=60);
+	opacity: 0.6;
+}
+
+.cke_skin_office2003 .cke_button a:hover.cke_on,
+.cke_skin_office2003 .cke_button a:focus.cke_on,
+.cke_skin_office2003 .cke_button a:active.cke_on,	/* IE */
+.cke_skin_office2003 .cke_button a:hover.cke_off,
+.cke_skin_office2003 .cke_button a:focus.cke_off,
+.cke_skin_office2003 .cke_button a:active.cke_off	/* IE */
+{
+	border: solid 1px #316ac5;
+	background-color: #dff1ff;
+	filter: alpha(opacity=100); /* IE */
+	opacity: 1; /* Safari, Opera and Mozilla */
+	vertical-align: top;
+
+	_margin: 2px 0 0 0;
+	padding: 2px 4px;
+}
+
+.cke_skin_office2003 .cke_hc .cke_button a:hover.cke_on,
+.cke_skin_office2003 .cke_hc .cke_button a:focus.cke_on,
+.cke_skin_office2003 .cke_hc .cke_button a:active.cke_on,	/* IE */
+.cke_skin_office2003 .cke_hc .cke_button a:hover.cke_off,
+.cke_skin_office2003 .cke_hc .cke_button a:focus.cke_off,
+.cke_skin_office2003 .cke_hc .cke_button a:active.cke_off	/* IE */
+{
+	padding: 0 2px !important;
+	border-width: 3px;
+}
+
+.cke_skin_office2003 .cke_button .cke_icon
+{
+	background-image: url(icons.png);
+	background-position: 100px;
+	background-repeat:no-repeat;
+	margin-top:1px;
+	width: 16px;
+	height: 16px;
+	display: inline-block;
+}
+
+.cke_skin_office2003 .cke_button .cke_label
+{
+	display: none;
+	padding-left: 3px;
+	vertical-align: 3px;
+
+	_background-image: url(images/sprites_ie6.png);
+	_background-position: 0 -970px;
+	_background-repeat: repeat-x;
+}
+
+.cke_skin_office2003 .cke_button a:hover .cke_label
+{
+	_background-color: #dff1ff;
+	_background-image: none;
+}
+
+.cke_skin_office2003 .cke_button a.cke_on .cke_label
+{
+	_background-color: #c1d2ee;
+	_background-image: none;
+}
+
+.cke_skin_office2003 .cke_hc .cke_button .cke_label
+{
+	padding: 0;
+	display: inline-block;
+}
+
+.cke_skin_office2003 .cke_hc .cke_button .cke_icon
+{
+	display: none;
+}
+
+.cke_skin_office2003 .cke_accessibility
+{
+	position: absolute;
+	top: -1000000px;
+}
+
+.cke_skin_office2003 .cke_button .cke_buttonarrow
+{
+	display: inline-block;
+	height: 18px;
+	width: 8px;
+	background-position: right center;
+	background-image: url(images/arrowdown.gif);
+	background-repeat: no-repeat;
+}
+
+.cke_skin_office2003 .cke_rtl .cke_button .cke_buttonarrow
+{
+	background-position: left center;
+}
+
+/*** Firefox 2 ***/
+
+.cke_skin_office2003 .cke_browser_gecko18 .cke_toolbar,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_button a,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_button a.cke_off,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_button .cke_icon,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_button .cke_buttonarrow,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_separator,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_toolbar_start,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_toolbar_end
+{
+	display: block;
+	float: left;
+}
+
+.cke_skin_office2003 .cke_browser_gecko18 .cke_hc .cke_button .cke_icon
+{
+	display: none;
+}
+
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_toolbar,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button a,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button a.cke_off,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button .cke_icon,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button .cke_buttonarrow,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_separator,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_toolbar_start,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_toolbar_end
+{
+	float: right;
+}
+
+.cke_skin_office2003 .cke_browser_gecko18 .cke_button .cke_label,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_break
+{
+	float: left;
+}
+
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl span.cke_inline_label
+{
+	float: right;
+}
+
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button .cke_label,
+.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_break
+{
+	float: right;
+}
+
+.cke_skin_office2003 .cke_browser_gecko18 .cke_separator
+{
+	margin-top: 4px;
+}
+
+.cke_skin_office2003 .cke_browser_gecko18 .cke_button .cke_label
+{
+	padding-top: 3px;
+}
+
+/*** IE6 ***/
+
+.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolgroup,
+.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_separator,
+.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolbar_start,
+.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolbar_end
+{
+	float: none;
+}
+
+/*** IE8 ***/
+
+.cke_skin_office2003 .cke_browser_ie8 .cke_toolbar,
+.cke_skin_office2003 .cke_browser_ie8 .cke_toolgroup
+{
+	vertical-align: top;
+}
+
+.cke_skin_office2003 .cke_browser_iequirks.cke_browser_ie8 .cke_toolbar,
+.cke_skin_office2003 .cke_browser_iequirks.cke_browser_ie8 .cke_toolgroup
+{
+	/* revert previous */
+	vertical-align: baseline;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/v2/dialog.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/v2/dialog.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/v2/dialog.css	(revision 3747)
@@ -0,0 +1,650 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/* Restore the dialog visibility */
+body .cke_dialog
+{
+	visibility: visible;
+}
+
+.cke_skin_v2 .cke_dialog_body
+{
+	margin-left: 16px;
+	margin-right: 16px;
+	margin-top: 2px;
+	margin-bottom: 20px;
+	position: relative;
+	z-index: 1;
+}
+
+.cke_skin_v2 .cke_dialog_tl,
+.cke_skin_v2 .cke_dialog_tr,
+.cke_skin_v2 .cke_dialog_tc,
+.cke_skin_v2 .cke_dialog_bl,
+.cke_skin_v2 .cke_dialog_br,
+.cke_skin_v2 .cke_dialog_bc
+{
+	background-image: url(images/sprites.png);
+	background-repeat: no-repeat;
+	position: absolute;
+
+	/* IE6 does not support full color transparent PNG. */
+	_background-image: url(images/sprites_ie6.png);
+}
+
+.cke_skin_v2 .cke_dialog_tl
+{
+	background-position: -16px -16px;
+	height: 16px;
+	width: 16px;
+	top: 0;
+	left: 0;
+}
+
+.cke_skin_v2 .cke_rtl .cke_dialog_tl
+{
+	background-position: -16px -397px;
+}
+
+.cke_skin_v2 .cke_dialog_tr
+{
+	background-position: -16px -76px;
+	height: 16px;
+	width: 16px;
+	top: 0;
+	right: 0;
+}
+
+.cke_skin_v2 .cke_rtl .cke_dialog_tr
+{
+	background-position: -16px -457px;
+}
+
+.cke_skin_v2 .cke_dialog_tc
+{
+	background-position: 0 -136px;
+	background-repeat: repeat-x;
+	height: 16px;
+	top: 0;
+	left: 16px;
+	right: 16px;
+}
+
+.cke_skin_v2 .cke_dialog_bl
+{
+	background-position: -16px -196px;
+	height: 51px;
+	width: 30px;
+	bottom: 0;
+	left: 0;
+}
+
+.cke_skin_v2 .cke_rtl .cke_dialog_bl
+{
+	background-position: -16px -517px;
+}
+
+.cke_skin_v2 .cke_dialog_br
+{
+	background-position: -16px -263px;
+	height: 51px;
+	width: 30px;
+	bottom: 0;
+	right: 0;
+}
+
+.cke_skin_v2 .cke_rtl .cke_dialog_br
+{
+	background-position: -16px -584px;
+}
+
+.cke_skin_v2 .cke_dialog_bc
+{
+	background-position: 0 -330px;
+	background-repeat: repeat-x;
+	height: 51px;
+	bottom: 0;
+	left: 30px;
+	right: 30px;
+}
+
+.cke_skin_v2 .cke_dialog_ml,
+.cke_skin_v2 .cke_dialog_mr
+{
+	background-image: url(images/dialog_sides.png);
+	background-repeat: repeat-y;
+	position: absolute;
+	width: 16px;
+	top: 16px;
+	bottom: 51px;
+
+	/* IE6 does not support full color transparent PNG. */
+	_background-image: url(images/dialog_sides.gif);
+
+	/* IE quirks gets confused when we have both top and bottom. */
+	_top: auto;
+}
+
+.cke_skin_v2 .cke_rtl .cke_dialog_ml,
+.cke_skin_v2 .cke_rtl .cke_dialog_mr
+{
+	background-image: url(images/dialog_sides_rtl.png);
+
+	/* IE6 does not support full color transparent PNG. */
+	_background-image: url(images/dialog_sides.gif);
+}
+
+.cke_skin_v2 .cke_dialog_ml
+{
+	background-position: 0 0;
+	left: 0;
+}
+
+.cke_skin_v2 .cke_dialog_mr
+{
+	background-position: -16px 0;
+	right: 0;
+}
+
+.cke_skin_v2 .cke_browser_iequirks .cke_dialog_ml,
+.cke_skin_v2 .cke_browser_iequirks .cke_dialog_mr
+{
+	margin-top: 3px;
+}
+
+.cke_skin_v2 .cke_dialog_title
+{
+	font-weight: bold;
+	font-size: 14pt;
+	color: #737357;
+	background-color: #e3e3c7;
+	padding: 3px 10px 26px 10px;
+	cursor: move;
+	position: relative;
+}
+
+.cke_skin_v2 .cke_browser_ie.cke_rtl .cke_dialog_title
+{
+	position: static !important;
+}
+
+.cke_skin_v2 .cke_dialog_contents
+{
+	background-color: #f1f1e3;
+	border: #d5d59d 1px solid;
+	overflow: auto;
+	padding: 5px 10px;
+}
+
+.cke_skin_v2 .cke_dialog_footer
+{
+	background-color: #e3e3c7;
+	text-align: right;
+}
+
+.cke_skin_v2 .cke_rtl .cke_dialog_footer
+{
+	text-align: left;
+}
+
+/* tabs */
+
+.cke_skin_v2 .cke_dialog_tabs
+{
+	height: 23px;
+	background-color: #e3e3c7;
+	display: inline-block;
+	margin-left:10px;
+	margin-right:10px;
+	margin-top:-23px;
+	position: absolute;
+	z-index: 2;
+}
+
+.cke_skin_v2 .cke_rtl .cke_dialog_tabs
+{
+	right: 10px;
+}
+
+.cke_skin_v2 a.cke_dialog_tab,
+.cke_skin_v2 a:link.cke_dialog_tab,
+.cke_skin_v2 a:active.cke_dialog_tab,
+.cke_skin_v2 a:hover.cke_dialog_tab,
+.cke_skin_v2 a:visited.cke_dialog_tab
+{
+	color: #737357;
+	border-left: 1px solid #d5d59d;
+	border-right: 1px solid #d5d59d;
+	border-top: 1px solid #d5d59d;
+	height: 14px;
+	padding: 4px 5px;
+	display: inline-block;
+	cursor: pointer;
+}
+
+/* Gecko 1.8 layout workaround. */
+.cke_skin_v2 .cke_browser_gecko18 a.cke_dialog_tab,
+.cke_skin_v2 .cke_browser_gecko18 a:link.cke_dialog_tab,
+.cke_skin_v2 .cke_browser_gecko18 a:active.cke_dialog_tab,
+.cke_skin_v2 .cke_browser_gecko18 a:hover.cke_dialog_tab,
+.cke_skin_v2 .cke_browser_gecko18 a:visited.cke_dialog_tab
+{
+	display: inline;
+	position: relative;
+	top: 6px;
+}
+
+.cke_skin_v2 a:hover.cke_dialog_tab
+{
+	background-color: #f1f1e3;
+}
+
+.cke_skin_v2 a.cke_dialog_tab_selected,
+.cke_skin_v2 a:link.cke_dialog_tab_selected,
+.cke_skin_v2 a:active.cke_dialog_tab_selected,
+.cke_skin_v2 a:hover.cke_dialog_tab_selected,
+.cke_skin_v2 a:visited.cke_dialog_tab_selected
+{
+	border-bottom: 1px solid #f1f1e3;
+	background-color: #f1f1e3;
+	font-weight: bold;
+	cursor: default;
+}
+
+/* single_page */
+
+.cke_skin_v2 .cke_single_page .cke_dialog_tabs
+{
+	display: none;
+}
+
+.cke_skin_v2 .cke_single_page .cke_dialog_title
+{
+	padding-bottom: 3px;
+}
+
+.cke_skin_v2 .cke_dialog_ui_vbox table,
+.cke_skin_v2 .cke_dialog_ui_hbox table
+{
+	margin: auto;
+}
+
+.cke_skin_v2 .cke_dialog_ui_vbox_child
+{
+	padding: 5px 0px;
+}
+
+.cke_skin_v2 input.cke_dialog_ui_input_text,
+.cke_skin_v2 input.cke_dialog_ui_input_password
+{
+	background-color: white;
+	border: none;
+	padding: 0px;
+	width: 100%;
+	height: 14px;
+}
+
+.cke_skin_v2 div.cke_dialog_ui_input_text,
+.cke_skin_v2 div.cke_dialog_ui_input_password
+{
+	background-color: white;
+	border: 1px solid #a0a0a0;
+	padding: 1px 0px;
+}
+
+.cke_skin_v2 textarea.cke_dialog_ui_input_textarea
+{
+	background-color: white;
+	border: none;
+	padding: 0px;
+	width: 100%;
+	/*
+	 * IE6 BUG: Scrollbars in textareas can overflow even if the outer DIV is set to overflow:hidden.
+	 * So leave 1% width for the scrollbar. In most situations the 1% isn't noticeable by users.
+	 */
+	_width: 99%;
+	overflow: auto;
+}
+
+.cke_skin_v2 div.cke_dialog_ui_input_textarea
+{
+	background-color: white;
+	border: 1px solid #a0a0a0;
+	padding: 1px 0px;
+}
+
+.cke_skin_v2 div.cke_disabled .cke_dialog_ui_labeled_content *
+{
+	background-color : #a0a0a0;
+	cursor : default;
+}
+
+.cke_skin_v2 .cke_dialog_ui_hbox
+{
+	width: 100%;
+}
+
+.cke_skin_v2 .cke_dialog_ui_hbox_first,
+.cke_skin_v2 .cke_dialog_ui_hbox_child,
+.cke_skin_v2 .cke_dialog_ui_hbox_last
+{
+	vertical-align: top;
+}
+
+.cke_skin_v2 .cke_ltr .cke_dialog_ui_hbox_first,
+.cke_skin_v2 .cke_ltr .cke_dialog_ui_hbox_child
+{
+	padding-right: 10px;
+}
+
+.cke_skin_v2 .cke_rtl .cke_dialog_ui_hbox_first,
+.cke_skin_v2 .cke_rtl .cke_dialog_ui_hbox_child
+{
+	padding-left: 10px;
+}
+
+/* button */
+
+.cke_skin_v2 a.cke_dialog_ui_button
+{
+	border-collapse: separate;
+	cursor: default;
+}
+
+.cke_skin_v2 span.cke_dialog_ui_button
+{
+	border: #737357 1px solid;
+	padding: 2px 10px;
+	text-align: center;
+	color: #3b3b1f;
+	background-color: #c7c78f;
+	display: inline-block;
+	cursor: default;
+}
+
+/* Gecko 1.8 does not support display: inline-block */
+.cke_skin_v2 .cke_browser_gecko18 .cke_dialog_footer_buttons span.cke_dialog_ui_button
+{
+	display: block;
+}
+
+.cke_skin_v2 a.cke_dialog_ui_button span.cke_disabled
+{
+	border: #898980 1px solid;
+	color: #5e5e55;
+	background-color: #c5c5b3;
+}
+
+.cke_skin_v2 a:focus span.cke_dialog_ui_button,
+.cke_skin_v2 a:active span.cke_dialog_ui_button
+{
+	background-color: #e3e3c7;
+}
+
+.cke_skin_v2 .cke_dialog_footer_buttons
+{
+	display: inline-table;
+	margin-right: 12px;
+	margin-left: 12px;
+	width: auto;
+	position: relative;
+}
+
+/* Gecko 1.8 does not support for display: inline-table */
+.cke_skin_v2 .cke_browser_gecko18 .cke_dialog_footer_buttons
+{
+	display: inline;
+}
+
+.cke_skin_v2 .cke_dialog_footer_buttons span.cke_dialog_ui_button
+{
+	width: 60px;
+	margin: 7px 0;
+}
+
+.cke_skin_v2 strong
+{
+	font-weight: bold;
+}
+
+/* close_button */
+
+.cke_skin_v2 .cke_dialog_close_button
+{
+	background-image: url(images/sprites.png);
+	background-repeat: no-repeat;
+	background-position: -16px -651px;
+	position: absolute;
+	cursor: pointer;
+	text-align: center;
+	height: 20px;
+	width: 20px;
+	top: 5px;
+
+	/* IE6 does not support full color transparent PNG. */
+	_background-image: url(images/sprites_ie6.png);
+}
+
+.cke_skin_v2 .cke_dialog_close_button span
+{
+	display: none;
+}
+
+.cke_skin_v2 .cke_dialog_close_button:hover
+{
+	background-position: -16px -687px;
+}
+
+.cke_skin_v2 .cke_ltr .cke_dialog_close_button
+{
+	right: 10px;
+	_right: 22px;
+}
+
+.cke_skin_v2 .cke_rtl .cke_dialog_close_button
+{
+	left: 10px;
+	_left: 22px;
+}
+
+.cke_skin_v2 .cke_browser_ie6.cke_rtl .cke_dialog_close_button
+{
+	position: relative;
+	float: left;
+	margin-top: -55px;
+	margin-left: -7px;
+}
+
+.cke_skin_v2 .cke_browser_iequirks.cke_rtl.cke_single_page .cke_dialog_close_button
+{
+	margin-top: -32px;
+}
+
+.cke_skin_v2 .cke_browser_iequirks.cke_ltr .cke_dialog_close_button
+{
+	margin-top: 0;
+}
+
+.cke_skin_v2 .cke_dialog_ui_input_select
+{
+	border: 1px solid #a0a0a0;
+	background-color: white;
+}
+
+.cke_skin_v2 iframe.cke_dialog_ui_input_file
+{
+	width: 100%;
+	height: 25px;
+}
+
+/*
+ * Some utility CSS classes for dialog authors.
+ */
+.cke_skin_v2 .cke_dialog .cke_dark_background
+{
+	background-color: #eaead1;
+}
+
+.cke_skin_v2 .cke_dialog .cke_hand
+{
+	cursor: pointer;
+}
+
+.cke_skin_v2 .cke_dialog .cke_centered
+{
+	text-align: center;
+}
+
+.cke_skin_v2 .cke_dialog .cke_btn_reset
+{
+	float: right;
+	background-position: 0 -32px;
+	background-image: url(images/mini.gif);
+	width: 16px;
+	height: 16px;
+	background-repeat: no-repeat;
+	border: 1px none;
+	font-size: 1px;
+}
+
+.cke_skin_v2 .cke_rtl .cke_dialog .cke_btn_reset
+{
+	float: left;
+}
+
+.cke_skin_v2 .cke_dialog .cke_btn_locked,
+.cke_skin_v2 .cke_dialog .cke_btn_unlocked
+{
+	float: left;
+	background-position: 0 0;
+	background-image: url(images/mini.gif);
+	width: 16px;
+	height: 16px;
+	background-repeat: no-repeat;
+	border: none 1px;
+	font-size: 1px;
+}
+
+.cke_skin_v2 .cke_dialog .cke_btn_locked,
+.cke_skin_v2 .cke_dialog .cke_btn_unlocked
+{
+	float: right;
+}
+
+.cke_skin_v2 .cke_dialog .cke_btn_unlocked
+{
+	background-position: 0 -16px;
+	background-image: url(images/mini.gif);
+}
+
+.cke_skin_v2 .cke_dialog .cke_btn_over
+{
+	border: outset 1px;
+	cursor: pointer;
+	cursor: hand;
+}
+
+.cke_skin_v2 .cke_dialog  #ImagePreviewBox
+{
+	white-space : normal;
+	border : 2px ridge black;
+	overflow : scroll;
+	height : 160px;
+	width : 230px;
+	padding : 2px;
+	background-color : white;
+}
+.cke_skin_v2 .cke_dialog  #ImagePreviewLoader
+{
+	position: absolute;
+	white-space : normal;
+	overflow : hidden;
+	height : 160px;
+	width : 230px;
+	margin : 2px;
+	padding : 2px;
+	opacity : 0.9;
+	filter : alpha(opacity=90);
+
+	background-color : #e4e4e4;
+}
+
+.cke_skin_v2 .cke_dialog  #FlashPreviewBox
+{
+	white-space : normal;
+	border : 2px ridge black;
+	overflow : auto;
+	height : 160px;
+	width : 390px;
+	padding : 2px;
+	background-color : white;
+}
+
+.cke_skin_v2 .cke_dialog .cke_dark_background
+{
+	text-align : center;
+	background-color: #eaead1;
+	font-size : 14px;
+}
+
+.cke_skin_v2 .cke_dialog .cke_light_background
+{
+	text-align : center;
+	background-color: #ffffbe;
+}
+
+.cke_skin_v2 .cke_dialog .cke_hand
+{
+	cursor: pointer;
+	cursor: hand;
+}
+
+.cke_skin_v2 .cke_disabled
+{
+	color: #a0a0a0;
+}
+
+/* High Contrast Mode */
+.cke_skin_v2 .cke_hc .cke_dialog_title,
+.cke_skin_v2 .cke_hc .cke_dialog_tabs,
+.cke_skin_v2 .cke_hc .cke_dialog_contents,
+.cke_skin_v2 .cke_hc .cke_dialog_footer
+{
+	border-left: 1px solid;
+	border-right: 1px solid;
+}
+
+.cke_skin_v2 .cke_hc .cke_dialog_title
+{
+	border-top: 1px solid;
+}
+
+.cke_skin_v2 .cke_hc .cke_dialog_footer
+{
+	border-bottom: 1px solid;
+}
+
+.cke_skin_v2 .cke_hc .cke_dialog_close_button span
+{
+	display: inline;
+	cursor: pointer;
+	cursor: hand;
+	font-weight: bold;
+	position: relative;
+	top: 3px;
+}
+
+.cke_skin_v2 a.cke_smile img
+{
+	/* IE6 does not support transparent borders */
+	border: 2px solid #eaead1;
+}
+
+.cke_skin_v2 a.cke_smile:focus img,
+.cke_skin_v2 a.cke_smile:active img,
+.cke_skin_v2 a.cke_smile:hover img
+{
+	border-color: #C7C78F;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/v2/editor.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/v2/editor.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/v2/editor.css	(revision 3747)
@@ -0,0 +1,21 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+@import url("reset.css");
+@import url("mainui.css");
+@import url("panel.css");
+@import url("toolbar.css");
+@import url("menu.css");
+@import url("richcombo.css");
+@import url("elementspath.css");
+@import url("icons.css");
+@import url("presets.css");
+
+/* Restore the container visibility */
+html .cke_skin_v2,
+html.cke_skin_v2_container
+{
+	visibility: visible;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/v2/elementspath.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/v2/elementspath.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/v2/elementspath.css	(revision 3747)
@@ -0,0 +1,68 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+@media print
+{
+	.cke_path
+	{
+		display: none;
+	}
+}
+
+.cke_skin_v2 .cke_path
+{
+	padding: 3px 3px 0 3px;
+	display: inline-block;
+	float: left;
+}
+
+.cke_skin_v2 .cke_rtl .cke_path
+{
+	float: right;
+}
+
+.cke_skin_v2 .cke_path a,
+.cke_skin_v2 .cke_path .cke_empty
+{
+	display: inline-block;
+	float: left;
+	border: solid 1px #efefde;
+	background-color: #efefde;
+	padding-top: 1px;
+	padding-bottom: 1px;
+	padding-left: 4px;
+	padding-right: 4px;
+	margin-bottom : 3px;
+}
+
+.cke_skin_v2 .cke_path .cke_empty
+{
+	visibility: hidden;
+}
+
+.cke_skin_v2 .cke_rtl .cke_path a,
+.cke_skin_v2 .cke_rtl .cke_path cke_empty
+{
+	float: right;
+}
+
+.cke_skin_v2 .cke_path a:hover,
+.cke_skin_v2 .cke_path a:focus,
+.cke_skin_v2 .cke_path a:active	/* IE */
+{
+	border: solid 1px #316ac5;
+	background-color: #dff1ff;
+	padding-top: 1px;
+	padding-bottom: 1px;
+	padding-left: 4px;
+	padding-right: 4px;
+	outline: none;
+}
+
+.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_path a,
+.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_path .cke_empty
+{
+	float: none;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/v2/icons.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/v2/icons.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/v2/icons.css	(revision 3747)
@@ -0,0 +1,309 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+.cke_skin_v2 .cke_button_source .cke_icon
+{
+	background-position: 0 0;
+}
+
+.cke_skin_v2 .cke_button_newpage .cke_icon
+{
+	background-position: 0 -48px;
+}
+
+.cke_skin_v2 .cke_button_preview .cke_icon
+{
+	background-position: 0 -64px;
+}
+
+.cke_skin_v2 .cke_button_cut .cke_icon
+{
+	background-position: 0 -96px;
+}
+
+.cke_skin_v2 .cke_button_copy .cke_icon
+{
+	background-position: 0 -112px;
+}
+
+.cke_skin_v2 .cke_button_paste .cke_icon
+{
+	background-position: 0 -128px;
+}
+
+.cke_skin_v2 .cke_button_pastetext .cke_icon
+{
+	background-position: 0 -144px;
+}
+
+.cke_skin_v2 .cke_button_find .cke_icon
+{
+	background-position: 0 -240px;
+}
+
+.cke_skin_v2 .cke_button_replace .cke_icon
+{
+	background-position: 0 -256px;
+}
+
+.cke_skin_v2 .cke_button_selectAll .cke_icon
+{
+	background-position: 0 -272px;
+}
+
+.cke_skin_v2 .cke_button_removeFormat .cke_icon
+{
+	background-position: 0 -288px;
+}
+
+.cke_skin_v2 .cke_button_bold .cke_icon
+{
+	background-position: 0 -304px;
+}
+
+.cke_skin_v2 .cke_button_italic .cke_icon
+{
+	background-position: 0 -320px;
+}
+
+.cke_skin_v2 .cke_button_underline .cke_icon
+{
+	background-position: 0 -336px;
+}
+
+.cke_skin_v2 .cke_button_strike .cke_icon
+{
+	background-position: 0 -352px;
+}
+
+.cke_skin_v2 .cke_button_subscript .cke_icon
+{
+	background-position: 0 -368px;
+}
+
+.cke_skin_v2 .cke_button_superscript .cke_icon
+{
+	background-position: 0 -384px;
+}
+
+.cke_skin_v2 .cke_button_table .cke_icon
+{
+	background-position: 0 -608px;
+}
+
+.cke_skin_v2 .cke_button_horizontalrule .cke_icon
+{
+	background-position: 0 -624px;
+}
+
+.cke_skin_v2 .cke_button_smiley .cke_icon
+{
+	background-position: 0 -640px;
+}
+
+.cke_skin_v2 .cke_button_link .cke_icon
+{
+	background-position: 0 -528px;
+}
+
+.cke_skin_v2 .cke_button_unlink .cke_icon
+{
+	background-position: 0 -544px;
+}
+
+.cke_skin_v2 .cke_button_anchor .cke_icon
+{
+	background-position: 0 -560px;
+}
+
+.cke_skin_v2 .cke_button_image .cke_icon
+{
+	background-position: 0 -576px;
+}
+
+.cke_skin_v2 .cke_button_flash .cke_icon
+{
+	background-position: 0 -592px;
+}
+
+.cke_skin_v2 .cke_button_specialchar .cke_icon
+{
+	background-position: 0 -656px;
+}
+
+.cke_skin_v2 .cke_button_pagebreak .cke_icon
+{
+	background-position: 0 -672px;
+}
+
+.cke_skin_v2 .cke_button_print .cke_icon
+{
+	background-position: 0 -176px;
+}
+
+.cke_skin_v2 .cke_button_checkspell .cke_icon,
+.cke_skin_v2 .cke_button_scayt .cke_icon
+{
+	background-position: 0 -192px;
+}
+
+.cke_skin_v2 .cke_button_pagebreak .cke_icon
+{
+	background-position: 0 -672px;
+}
+
+.cke_skin_v2 .cke_button_textcolor .cke_icon
+{
+	background-position: 0 -704px;
+}
+
+.cke_skin_v2 .cke_button_bgcolor .cke_icon
+{
+	background-position: 0 -720px;
+}
+
+.cke_skin_v2 .cke_button_form .cke_icon
+{
+	background-position: 0 -752px;
+}
+
+.cke_skin_v2 .cke_button_checkbox .cke_icon
+{
+	background-position: 0 -768px;
+}
+
+.cke_skin_v2 .cke_button_radio .cke_icon
+{
+	background-position: 0 -784px;
+}
+
+.cke_skin_v2 .cke_button_textfield .cke_icon
+{
+	background-position: 0 -800px;
+}
+
+.cke_skin_v2 .cke_button_textarea .cke_icon
+{
+	background-position: 0 -816px;
+}
+.cke_skin_v2 .cke_button_showblocks .cke_icon
+{
+	background-position: 0 -1136px;
+}
+
+.cke_skin_v2 .cke_button_select .cke_icon
+{
+	background-position: 0 -832px;
+}
+
+.cke_skin_v2 .cke_button_button .cke_icon
+{
+	background-position: 0 -848px;
+}
+
+.cke_skin_v2 .cke_button_imagebutton .cke_icon
+{
+	background-position: 0 -864px;
+}
+
+.cke_skin_v2 .cke_button_hiddenfield .cke_icon
+{
+	background-position: 0 -880px;
+}
+
+.cke_skin_v2 .cke_button_undo .cke_icon
+{
+	background-position: 0 -208px;
+}
+
+.cke_skin_v2 .cke_rtl .cke_button_undo .cke_icon
+{
+	background-position: 0 -224px;
+}
+
+.cke_skin_v2 .cke_button_redo .cke_icon
+{
+	background-position: 0 -224px;
+}
+
+.cke_skin_v2 .cke_rtl .cke_button_redo .cke_icon
+{
+	background-position: 0 -208px;
+}
+
+.cke_skin_v2 .cke_button_templates .cke_icon
+{
+	background-position: 0 -80px;
+}
+
+.cke_skin_v2 .cke_button_numberedlist .cke_icon
+{
+	background-position: 0 -400px;
+}
+
+.cke_skin_v2 .cke_button_bulletedlist .cke_icon
+{
+	background-position: 0 -416px;
+}
+
+.cke_skin_v2 .cke_button_outdent .cke_icon
+{
+	background-position: 0 -432px;
+}
+
+.cke_skin_v2 .cke_button_indent .cke_icon
+{
+	background-position: 0 -448px;
+}
+
+.cke_skin_v2 .cke_button_justifyleft .cke_icon
+{
+	background-position: 0 -464px;
+}
+
+.cke_skin_v2 .cke_button_justifycenter .cke_icon
+{
+	background-position: 0 -480px;
+}
+
+.cke_skin_v2 .cke_button_justifyright .cke_icon
+{
+	background-position: 0 -496px;
+}
+
+.cke_skin_v2 .cke_button_justifyblock .cke_icon
+{
+	background-position: 0 -512px;
+}
+
+.cke_skin_v2 .cke_button_blockquote .cke_icon
+{
+	background-position: 0 -1152px;
+}
+
+.cke_skin_v2 .cke_button_flash .cke_icon
+{
+	background-position: 0 -592px;
+}
+
+.cke_skin_v2 .cke_button_pastefromword .cke_icon
+{
+	background-position: 0 -160px;
+}
+
+.cke_skin_v2 .cke_button_save .cke_icon
+{
+	background-position: 0 -32px;
+}
+
+.cke_skin_v2 .cke_button_about .cke_icon
+{
+	background-position: 0 -736px;
+}
+
+.cke_skin_v2 .cke_button_maximize .cke_icon
+{
+	background-position: 0 -1040px;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/v2/mainui.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/v2/mainui.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/v2/mainui.css	(revision 3747)
@@ -0,0 +1,106 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+.cke_skin_v2 .cke_editor
+{
+/*
+	border: solid 1px #dcdcdc;
+*/
+	display: inline-table;
+}
+
+.cke_skin_v2
+{
+	display: block;
+}
+
+.cke_skin_v2 .cke_wrapper
+{
+	display: block;
+}
+
+.cke_skin_v2 .cke_browser_opera .cke_editor
+{
+	display: table;
+}
+
+.cke_skin_v2 .cke_top, .cke_skin_v2 .cke_bottom
+{
+	background-color: #efefde;
+}
+
+.cke_skin_v2 .cke_top
+{
+    border-top: solid 1px #fafaf5;
+    border-left: solid 1px #fafaf5;
+    border-right: solid 1px #696969;
+    border-bottom: solid 2px #696969;
+}
+
+.cke_skin_v2 .cke_rtl .cke_top
+{
+    border-left: solid 1px #696969;
+    border-right: solid 1px #fafaf5;
+}
+
+.cke_skin_v2 .cke_bottom
+{
+    border-left: solid 1px #696969;
+    border-right: solid 1px #696969;
+    border-bottom: solid 1px #696969;
+}
+
+.cke_skin_v2 .cke_contents
+{
+	border: solid 1px #696969;
+}
+
+.cke_skin_v2 .cke_focus
+{
+	outline: auto 5px -webkit-focus-ring-color;
+}
+
+.cke_skin_v2 textarea.cke_source
+{
+	font-family: 'Courier New' , Monospace;
+	font-size: small;
+	background-color: #fff;
+	white-space: pre;
+}
+
+.cke_skin_v2 .cke_browser_iequirks textarea.cke_source
+{
+	/* For IE6+Quirks only */
+	_white-space: normal;
+}
+
+.cke_skin_v2 .cke_resizer
+{
+	width: 12px;
+	height: 12px;
+	margin-top: 12px;
+	display: block;
+	float: right;
+	background-image: url(images/resizer.gif);
+	cursor: se-resize;
+}
+
+.cke_skin_v2 .cke_rtl .cke_resizer
+{
+	cursor: sw-resize;
+	background-image: url(images/resizer_rtl.gif);
+	float: left;
+}
+
+.cke_skin_v2 .cke_maximized .cke_resizer
+{
+	display: none;
+}
+
+.cke_skin_v2 .cke_browser_ie6 .cke_contents textarea,
+.cke_skin_v2 .cke_browser_ie7 .cke_contents textarea
+{
+	position: absolute;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/v2/menu.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/v2/menu.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/v2/menu.css	(revision 3747)
@@ -0,0 +1,168 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+.cke_skin_v2 .cke_contextmenu
+{
+	padding: 2px;
+}
+
+.cke_skin_v2 .cke_menuitem a
+{
+	display:block;
+}
+
+.cke_skin_v2 .cke_menuitem span
+{
+	cursor: default;
+}
+
+.cke_skin_v2 .cke_menuitem a:hover,
+.cke_skin_v2 .cke_menuitem a:focus,
+.cke_skin_v2 .cke_menuitem a:active
+{
+	background-color: #8f8f73;
+	display:block;
+}
+
+.cke_skin_v2 .cke_menuitem a.cke_disabled:hover,
+.cke_skin_v2 .cke_menuitem a.cke_disabled:focus,
+.cke_skin_v2 .cke_menuitem a.cke_disabled:active
+{
+	background-color: transparent !important;
+}
+
+.cke_skin_v2 .cke_menuitem .cke_icon
+{
+	background-image: url(icons.png);
+	background-position: 100px;
+	background-repeat:no-repeat;
+	background-color: transparent;
+	width: 16px;
+	height: 16px;
+	float: left;
+}
+
+.cke_skin_v2 .cke_menuitem .cke_disabled .cke_icon
+{
+	filter: alpha(opacity=70); /* IE */
+	opacity: 0.70; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_v2 .cke_menuitem .cke_icon_wrapper
+{
+	background-color: #e3e3c7;
+	border: solid 4px #e3e3c7;
+	width: 16px;
+	height: 16px;
+	float: left;
+	filter: alpha(opacity=70); /* IE */
+	opacity: 0.70; /* Safari, Opera and Mozilla */
+}
+
+.cke_rtl .cke_skin_v2 .cke_menuitem .cke_icon_wrapper
+{
+	float: right;
+}
+
+.cke_skin_v2 .cke_menuitem a:hover .cke_icon_wrapper,
+.cke_skin_v2 .cke_menuitem a:focus .cke_icon_wrapper,
+.cke_skin_v2 .cke_menuitem a:active .cke_icon_wrapper
+{
+	background-color: #9d9d9d;
+	border: solid 4px #9d9d9d;
+	filter: alpha(opacity=70); /* IE */
+	opacity: 0.70; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_v2 .cke_menuitem a:hover.cke_disabled .cke_icon_wrapper,
+.cke_skin_v2 .cke_menuitem a:focus.cke_disabled .cke_icon_wrapper,
+.cke_skin_v2 .cke_menuitem a:active.cke_disabled .cke_icon_wrapper
+{
+	background-color: #e3e3c7;
+	border: solid 4px #e3e3c7;
+}
+
+.cke_skin_v2 .cke_menuitem .cke_label
+{
+	display:block;
+	padding-right: 3px;
+	padding-top: 5px;
+	padding-left: 4px;
+	height:19px;
+	margin-left: 24px;
+	background-color: #fff;
+	_overflow: hidden;
+	_width: 80px;
+	filter: alpha(opacity=70); /* IE */
+	opacity: 0.70; /* Safari, Opera and Mozilla */
+}
+
+/* Never applied */
+/*.cke_rtl .cke_skin_v2 .cke_menuitem .cke_label
+{
+	padding-right: 0;
+	margin-left: 0;
+	padding-left: 3px;
+	margin-right: 28px;
+}*/
+
+.cke_skin_v2 .cke_menuitem a.cke_disabled .cke_label
+{
+	filter: alpha(opacity=30); /* IE */
+	opacity: 0.30; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_v2 .cke_menuitem a:hover .cke_label,
+.cke_skin_v2 .cke_menuitem a:focus .cke_label,
+.cke_skin_v2 .cke_menuitem a:active .cke_label
+{
+	background-color: #8f8f73;
+	color: white;
+}
+
+.cke_skin_v2 .cke_menuitem a.cke_disabled:hover .cke_label,
+.cke_skin_v2 .cke_menuitem a.cke_disabled:focus .cke_label,
+.cke_skin_v2 .cke_menuitem a.cke_disabled:active .cke_label
+{
+	background-color: transparent;
+	color: inherit;
+}
+
+.cke_skin_v2 .cke_menuseparator
+{
+	background-color: #e3e3c7;
+	height: 2px;
+	filter: alpha(opacity=70); /* IE */
+	opacity: 0.70; /* Safari, Opera and Mozilla */
+
+	_font-size: 0;
+}
+
+.cke_skin_v2 .cke_menuarrow
+{
+	background-image: url(images/arrowright.gif);
+	background-repeat: no-repeat;
+	height: 5px;
+	width: 3px;
+	float: right;
+	margin-right: 2px;
+	margin-top: 3px;
+}
+
+/* Never applied */
+/*.cke_rtl .cke_skin_v2 .cke_menuarrow
+{
+	float: left;
+	margin-right: 0;
+	margin-left: 2px;
+	background-image: url(images/arrowleft.gif);
+}*/
+
+/* #3766 In the context menu, long labels with second level menu get wrapped */
+.cke_browser_ie .cke_skin_v2 .cke_menuarrow
+{
+	position: absolute;
+	right: 0;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/v2/panel.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/v2/panel.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/v2/panel.css	(revision 3747)
@@ -0,0 +1,198 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+.cke_skin_v2 .cke_panel
+{
+    border: 1px solid #8f8f73;
+	background-color: #fff;
+
+	width: 120px;
+	height: 100px;
+
+	overflow:hidden;
+
+	-moz-border-radius: 3px;
+	-webkit-border-radius: 3px;
+	border-radius: 3px;
+}
+
+/* Ideally we would use "inherit here"... but you know... IE :( */
+.cke_skin_v2 .cke_panel iframe
+{
+	width: 100%;
+	height: 100%;
+}
+
+/*
+ * All the following styles are to be used inside the iframe that holds panel
+ * contents. We don't use the cke_skin_default there to avoid the reset to be
+ * active.
+ * This is not an issue as we'll never have two skins running inside the same
+ * panel iframe.
+ */
+
+html.cke_skin_v2_container
+{
+	overflow: auto;
+	overflow-x: hidden;
+}
+
+body.cke_panel_frame
+{
+	overflow: auto;
+	overflow-x: hidden;
+}
+
+ul.cke_panel_list
+{
+	list-style-type: none;
+	margin: 3px;
+	padding: 0px;
+    white-space: nowrap;
+}
+
+li.cke_panel_listItem
+{
+	margin: 0px;
+}
+
+.cke_panel_listItem a
+{
+	padding: 2px;
+	display: block;
+	border: 1px solid #fff;
+	color: inherit;
+	text-decoration: none;
+	overflow: hidden;
+    text-overflow: ellipsis;
+}
+
+/* IE6 */
+* html .cke_panel_listItem a
+{
+	width : 100%;
+
+	/* IE is not able to inherit the color, so we must force it to black */
+	color: #000;
+}
+
+/* IE7 */
+*:first-child+html .cke_panel_listItem a
+{
+	/* IE is not able to inherit the color, so we must force it to black */
+	color: #000;
+}
+
+.cke_panel_listItem.cke_selected a
+{
+	border: 1px solid #ccc;
+	background-color: #e9f5ff;
+}
+
+.cke_panel_listItem a:hover,
+.cke_panel_listItem a:focus,
+.cke_panel_listItem a:active
+{
+	border-color: #316ac5;
+	background-color: #dff1ff;
+}
+
+.cke_panel_grouptitle
+{
+    font-size: 11px;
+    font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif;
+	font-weight: bold;
+    white-space: nowrap;
+	background-color: #dcdcdc;
+	color: #000;
+	margin:0px;
+	padding:3px;
+}
+
+.cke_panel_listItem p,
+.cke_panel_listItem h1,
+.cke_panel_listItem h2,
+.cke_panel_listItem h3,
+.cke_panel_listItem h4,
+.cke_panel_listItem h5,
+.cke_panel_listItem h6,
+.cke_panel_listItem pre
+{
+	margin-top: 3px;
+	margin-bottom: 3px;
+}
+
+.cke_skin_v2 .cke_button_textcolor_panel,
+.cke_skin_v2 .cke_button_bgcolor_panel
+{
+	width: 150px;
+	height: 135px;
+}
+
+.cke_colorblock
+{
+	padding: 3px;
+    font-size: 11px;
+    font-family: 'Microsoft Sans Serif', Tahoma, Arial, Verdana, Sans-Serif;
+}
+
+.cke_colorblock,
+.cke_colorblock a
+{
+	text-decoration: none;
+	color: #000;
+}
+
+span.cke_colorbox
+{
+	width: 10px;
+	height: 10px;
+    border: #808080 1px solid;
+	float: left;
+}
+
+.cke_rtl span.cke_colorbox
+{
+	float: right;
+}
+
+a.cke_colorbox
+{
+    border: #fff 1px solid;
+    padding: 2px;
+    float: left;
+}
+
+.cke_rtl a.cke_colorbox
+{
+    float: right;
+}
+
+a:hover.cke_colorbox,
+a:focus.cke_colorbox,
+a:active.cke_colorbox
+{
+    border: #316ac5 1px solid;
+    background-color: #dff1ff;
+}
+
+a.cke_colorauto,
+a.cke_colormore
+{
+    border: #fff 1px solid;
+    padding: 2px;
+    display: block;
+}
+
+a:hover.cke_colorauto,
+a:hover.cke_colormore,
+a:focus.cke_colorauto,
+a:focus.cke_colormore,
+a:active.cke_colorauto,
+a:active.cke_colormore
+{
+    border: #316ac5 1px solid;
+    background-color: #dff1ff;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/v2/presets.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/v2/presets.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/v2/presets.css	(revision 3747)
@@ -0,0 +1,49 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/* "Source" button label */
+.cke_skin_v2 .cke_button_source .cke_label
+{
+	display: inline;
+}
+
+/* "Styles" panel size */
+.cke_skin_v2 .cke_styles_panel
+{
+	width: 150px;
+	height: 170px;
+}
+
+/* "Format" panel size */
+.cke_skin_v2 .cke_format_panel
+{
+	width: 150px;
+	height: 170px;
+}
+
+/* "Font" panel size */
+.cke_skin_v2 .cke_font_panel
+{
+	width: 150px;
+	height: 170px;
+}
+
+/* "Font Size" panel size */
+.cke_skin_v2 .cke_fontSize_panel
+{
+	height: 170px;
+}
+
+/* "Font Size" combo width */
+.cke_skin_v2 .cke_fontSize .cke_text
+{
+	width: 20px;
+}
+
+/* "Font Size" combo width (IE Quirks) */
+.cke_skin_v2 .cke_browser_iequirks .cke_fontSize .cke_text
+{
+	width: 32px;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/v2/reset.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/v2/reset.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/v2/reset.css	(revision 3747)
@@ -0,0 +1,78 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * Reset and Default Values
+ */
+.cke_skin_v2 *,
+.cke_skin_v2 a:hover,
+.cke_skin_v2 a:link,
+.cke_skin_v2 a:visited,
+.cke_skin_v2 a:active
+{
+	margin: 0;
+	padding: 0;
+	border: 0;
+	background: transparent;
+	text-decoration: none;
+	font: normal normal normal 100% Sans-Serif;
+	width: auto;
+	height: auto;
+	border-collapse: collapse;
+	text-align: left;
+	vertical-align: baseline;
+	white-space: nowrap;
+	cursor: auto;
+	color: #000;
+
+    font-size: 11px;
+    font-family: 'Microsoft Sans Serif' , Tahoma, Arial, Verdana, Sans-Serif;
+}
+
+.cke_skin_v2 .cke_rtl *,
+.cke_skin_v2 .cke_rtl a:hover,
+.cke_skin_v2 .cke_rtl a:link,
+.cke_skin_v2 .cke_rtl a:visited,
+.cke_skin_v2 .cke_rtl a:active,
+.cke_rtl .cke_skin_v2 *,
+.cke_rtl .cke_skin_v2 a:hover,
+.cke_rtl .cke_skin_v2 a:link,
+.cke_rtl .cke_skin_v2 a:visited,
+.cke_rtl .cke_skin_v2 a:active
+{
+	text-align: right;
+}
+
+.cke_skin_v2 iframe
+{
+	vertical-align: inherit;	/** For IE */
+}
+
+.cke_skin_v2 textarea
+{
+	white-space: pre;
+}
+
+.cke_skin_v2 .cke_browser_gecko textarea
+{
+	cursor: text;
+}
+
+.cke_skin_v2 .cke_browser_gecko textarea[disabled]
+{
+	cursor: default;
+}
+
+.cke_skin_v2 input[type="text"],
+.cke_skin_v2 input[type="password"]
+{
+	cursor: text;
+}
+
+.cke_skin_v2 input[type="text"][disabled],
+.cke_skin_v2 input[type="password"][disabled]
+{
+	cursor: default;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/v2/richcombo.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/v2/richcombo.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/v2/richcombo.css	(revision 3747)
@@ -0,0 +1,262 @@
+/* Special Combo */
+
+.cke_skin_v2 .cke_rcombo
+{
+	display: inline-block;
+	margin-left: 2px;
+	margin-right: 2px;
+	margin-top: 2px;
+	vertical-align: top;
+	float: left;
+}
+
+.cke_skin_v2 .cke_rtl .cke_rcombo
+{
+	float: right;
+}
+
+.cke_skin_v2 .cke_rcombopanel
+{
+	border: 1px solid #316ac5;
+	-moz-border-radius-topleft: 0;
+	-webkit-border-top-left-radius: 0;
+	border-top-left-radius: 0;
+	/*margin-left: 1px;*/
+	/*_margin-left: 0;*/
+}
+
+.cke_skin_v2 .cke_rcombo a
+{
+	display: inline-block;
+	float: left;
+
+	filter: alpha(opacity=70); /* IE */
+	opacity: 0.70; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_v2 .cke_rtl .cke_rcombo a
+{
+	float: right;
+}
+
+.cke_skin_v2 .cke_hc .cke_rcombo a
+{
+	filter: alpha(opacity=100); /* IE */
+	opacity: 1.0; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_v2 .cke_rcombo .cke_label
+{
+	display: inline-block;
+	float: left;
+
+	line-height: 24px;
+	height: 24px;
+
+	vertical-align: top;
+	padding-left: 4px;
+	padding-right: 5px;
+	filter: alpha(opacity=70); /* IE */
+	opacity: 0.70; /* Safari, Opera and Mozilla */
+	background-color: #f1f1e3;	/* Because of IE6+ClearType */
+}
+
+.cke_skin_v2 .cke_rtl .cke_rcombo .cke_label
+{
+	float: right;
+	padding-right: 4px;
+	padding-left: 5px;
+}
+
+.cke_skin_v2 .cke_hc .cke_rcombo .cke_label
+{
+	filter: alpha(opacity=100);
+	opacity: 1.0;
+}
+
+.cke_skin_v2 .cke_rcombo .cke_inline_label
+{
+	color: #fff;
+}
+
+.cke_skin_v2 .cke_rcombo .cke_text
+{
+	border: 1px solid #8f8f73;
+	background-color: #fff;
+	height: 14px;
+	width:60px;
+	padding-top: 4px;
+	padding-bottom: 4px;
+	padding-left: 5px;
+	padding-right: 5px;
+	text-overflow: ellipsis;
+	overflow: hidden;
+	display: inline-block;
+}
+
+.cke_skin_v2 .cke_ltr .cke_rcombo .cke_text
+{
+	-moz-border-radius-topleft: 3px;
+	-webkit-border-top-left-radius: 3px;
+	border-top-left-radius: 3px;
+	-moz-border-radius-bottomleft: 3px;
+	-webkit-border-bottom-left-radius: 3px;
+	border-bottom-left-radius: 3px;
+}
+
+.cke_skin_v2 .cke_rtl .cke_rcombo .cke_text
+{
+	-moz-border-radius-topright: 3px;
+	-webkit-border-top-right-radius: 3px;
+	border-top-right-radius: 3px;
+	-moz-border-radius-bottomright: 3px;
+	-webkit-border-bottom-right-radius: 3px;
+	border-bottom-right-radius: 3px;
+}
+
+/* Fix for IE height */
+.cke_skin_v2 .cke_browser_iequirks .cke_rcombo .cke_text
+{
+	height: 22px;
+}
+
+.cke_skin_v2 .cke_rcombo .cke_openbutton
+{
+	display: inline-block;
+
+	background-position: center center;
+	background-image: url(images/arrowdown.gif);
+	background-repeat: no-repeat;
+
+	border-top: 1px solid #8f8f73;
+	border-bottom: 1px solid #8f8f73;
+	width: 14px;
+	height: 22px;
+}
+
+.cke_skin_v2 .cke_ltr .cke_rcombo .cke_openbutton
+{
+    border-right: 1px solid #8f8f73;
+	-moz-border-radius-topright: 3px;
+	-webkit-border-top-right-radius: 3px;
+	border-top-right-radius: 3px;
+	-moz-border-radius-bottomright: 3px;
+	-webkit-border-bottom-right-radius: 3px;
+	border-bottom-right-radius: 3px;
+}
+
+.cke_skin_v2 .cke_rtl .cke_rcombo .cke_openbutton
+{
+    border-left: 1px solid #8f8f73;
+	-moz-border-radius-topleft: 3px;
+	-webkit-border-top-left-radius: 3px;
+	border-top-left-radius: 3px;
+	-moz-border-radius-bottomleft: 3px;
+	-webkit-border-bottom-left-radius: 3px;
+	border-bottom-left-radius: 3px;
+}
+
+.cke_skin_v2 .cke_rcombo .cke_off a:hover,
+.cke_skin_v2 .cke_rcombo .cke_off a:focus,
+.cke_skin_v2 .cke_rcombo .cke_off a:active,
+.cke_skin_v2 .cke_rcombo .cke_on a
+{
+	filter: alpha(opacity=100); /* IE */
+	opacity: 1; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_v2 .cke_rcombo .cke_off a:hover .cke_text,
+.cke_skin_v2 .cke_rcombo .cke_off a:focus .cke_text,
+.cke_skin_v2 .cke_rcombo .cke_off a:active .cke_text,
+.cke_skin_v2 .cke_rcombo .cke_on .cke_text
+{
+	border-color: #316ac5;
+}
+
+.cke_skin_v2 .cke_rcombo .cke_off a:hover .cke_openbutton,
+.cke_skin_v2 .cke_rcombo .cke_off a:focus .cke_openbutton,
+.cke_skin_v2 .cke_rcombo .cke_off a:active .cke_openbutton,
+.cke_skin_v2 .cke_rcombo .cke_on .cke_openbutton
+{
+	border-color: #316ac5;
+	background-color: #dff1ff;
+}
+
+.cke_skin_v2 .cke_rcombo .cke_on .cke_text
+{
+	-moz-border-radius-bottomleft: 0px;
+	-webkit-border-bottom-left-radius: 0px;
+	border-bottom-left-radius: 0px;
+}
+
+.cke_skin_v2 .cke_rcombo .cke_on .cke_openbutton
+{
+	-moz-border-radius-bottomright: 0px;
+	-webkit-border-bottom-right-radius: 0px;
+	border-bottom-right-radius: 0px;
+}
+
+.cke_skin_v2 .cke_rcombo .cke_disabled .cke_label
+{
+	filter: alpha(opacity=30); /* IE */
+	opacity: 0.3; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_v2 .cke_hc .cke_rcombo .cke_disabled .cke_label
+{
+	filter: alpha(opacity=70);
+	opacity: 0.7;
+}
+
+.cke_skin_v2 .cke_rcombo .cke_disabled .cke_text,
+.cke_skin_v2 .cke_rcombo .cke_disabled .cke_openbutton
+{
+	filter: alpha(opacity=50); /* IE */
+	opacity: 0.5; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_v2 .cke_hc .cke_rcombo .cke_disabled .cke_text,
+.cke_skin_v2 .cke_hc .cke_rcombo .cke_disabled .cke_openbutton
+{
+	filter: alpha(opacity=80);
+	opacity: 0.8;
+}
+
+.cke_skin_v2 .cke_rcombo .cke_disabled .cke_text
+{
+	color: #fff;
+}
+
+/* Firefox 2 & WebKit Section */
+
+.cke_skin_v2 .cke_browser_gecko18 .cke_rcombo,
+.cke_skin_v2 .cke_browser_gecko18 .cke_rcombo .cke_label,
+.cke_skin_v2 .cke_browser_gecko18 .cke_rcombo .cke_text,
+.cke_skin_v2 .cke_browser_gecko18 .cke_rcombo .cke_openbutton,
+.cke_skin_v2 .cke_browser_webkit .cke_rcombo .cke_label,
+.cke_skin_v2 .cke_browser_webkit .cke_rcombo .cke_text,
+.cke_skin_v2 .cke_browser_webkit .cke_rcombo .cke_openbutton
+{
+	display: block;
+	float: left;
+}
+
+.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_rcombo,
+.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_rcombo .cke_label,
+.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_rcombo .cke_text,
+.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_rcombo .cke_openbutton,
+.cke_skin_v2 .cke_browser_webkit .cke_rtl .cke_rcombo .cke_label,
+.cke_skin_v2 .cke_browser_webkit .cke_rtl .cke_rcombo .cke_text,
+.cke_skin_v2 .cke_browser_webkit .cke_rtl .cke_rcombo .cke_openbutton
+{
+	float: right;
+}
+
+/*** IE ***/
+
+.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_rcombo,
+.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_rcombo a,
+.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_rcombo .cke_label
+{
+	float: none;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/v2/skin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/v2/skin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/v2/skin.js	(revision 3747)
@@ -0,0 +1,73 @@
+﻿/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.skins.add( 'v2', (function()
+{
+	var preload = [];
+
+	if ( CKEDITOR.env.ie && CKEDITOR.env.version < 7 )
+	{
+		// For IE6, we need to preload some images, otherwhise they will be
+		// downloaded several times (CSS background bug).
+		preload.push( 'icons.png', 'images/sprites_ie6.png', 'images/dialog_sides.gif' );
+	}
+
+	return {
+		preload		: preload,
+		editor		: { css : [ 'editor.css' ] },
+		dialog		: { css : [ 'dialog.css' ] },
+		templates	: { css : [ 'templates.css' ] },
+		margins		: [ 0, 14, 18, 14 ]
+	};
+})() );
+
+if ( CKEDITOR.dialog )
+{
+	CKEDITOR.dialog.on( 'resize', function( evt )
+		{
+			var data = evt.data,
+				width = data.width,
+				height = data.height,
+				dialog = data.dialog,
+				standardsMode = !CKEDITOR.env.quirk;
+
+			if ( data.skin != 'v2' )
+				return;
+
+			dialog.parts.contents.setStyles(
+				{
+					width : width + 'px',
+					height : height + 'px'
+				});
+
+			if ( !CKEDITOR.env.ie )
+				return;
+
+			// Fix the size of the elements which have flexible lengths.
+			setTimeout( function()
+				{
+					var content = dialog.parts.contents,
+						body = content.getParent(),
+						innerDialog = body.getParent();
+
+					// tc
+					var el = innerDialog.getChild( 2 );
+					el.setStyle( 'width', ( body.$.offsetWidth ) + 'px' );
+
+					// bc
+					el = innerDialog.getChild( 7 );
+					el.setStyle( 'width', ( body.$.offsetWidth - 28 ) + 'px' );
+
+					// ml
+					el = innerDialog.getChild( 4 );
+					el.setStyle( 'height', ( body.$.offsetHeight - 31 - 14 ) + 'px' );
+
+					// mr
+					el = innerDialog.getChild( 5 );
+					el.setStyle( 'height', ( body.$.offsetHeight - 31 - 14 ) + 'px' );
+				},
+				100 );
+		});
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/v2/templates.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/v2/templates.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/v2/templates.css	(revision 3747)
@@ -0,0 +1,71 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+/**
+ * Styles for the "templates" plugin.
+ */
+
+.cke_skin_v2 .cke_tpl_list
+{
+	border: #dcdcdc 2px solid;
+	background-color: #ffffff;
+	overflow: auto;
+	width: 100%;
+	height: 220px;
+}
+
+.cke_skin_v2 .cke_tpl_item
+{
+	margin: 5px;
+	padding: 7px;
+	border: #eeeeee 1px solid;
+	*width: 88%;
+}
+
+.cke_skin_v2 .cke_tpl_preview
+{
+	border-collapse: separate;
+	text-indent:0;
+	width: 100%;
+}
+.cke_skin_v2 .cke_tpl_preview td
+{
+	padding: 2px;
+	vertical-align: middle;
+}
+.cke_skin_v2 .cke_tpl_preview .cke_tpl_preview_img
+{
+	width: 100px;
+}
+.cke_skin_v2 .cke_tpl_preview span
+{
+	white-space: normal;
+}
+
+.cke_skin_v2 .cke_tpl_title
+{
+	font-weight: bold;
+}
+
+.cke_skin_v2 .cke_tpl_hover
+{
+	border: #ff9933 1px solid !important;
+	background-color: #fffacd !important;
+	cursor: pointer;
+	cursor: hand;
+}
+/*
+ * Fix property 'cursor' doesn't inherit on table
+ */
+.cke_skin_v2 .cke_tpl_hover *
+{
+	cursor: inherit;
+}
+
+.cke_skin_v2 .cke_tpl_empty, .cke_tpl_loading
+{
+	text-align: center;
+	padding: 5px;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/skins/v2/toolbar.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/skins/v2/toolbar.css	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/skins/v2/toolbar.css	(revision 3747)
@@ -0,0 +1,334 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+@media print
+{
+	.cke_skin_v2 .cke_toolbox
+	{
+		display: none;
+	}
+}
+
+.cke_skin_v2 a.cke_toolbox_collapser,
+.cke_skin_v2 a:hover.cke_toolbox_collapser
+{
+	background-image: url(images/arrowtop.gif);
+	background-repeat: no-repeat;
+	background-position: center center;
+	width: 11px;
+	height: 11px;
+	float: right;
+	border: outset 1px;
+	margin: 11px 2px 2px;
+	cursor: pointer;
+}
+
+.cke_skin_v2 .cke_rtl a.cke_toolbox_collapser,
+.cke_skin_v2 .cke_rtl a:hover.cke_toolbox_collapser
+{
+	float: left;
+}
+
+.cke_skin_v2 a.cke_toolbox_collapser_min,
+.cke_skin_v2 a:hover.cke_toolbox_collapser_min
+{
+	background-image: url(images/arrowleft.gif);
+	margin: 2px;
+}
+
+.cke_skin_v2 .cke_rtl a.cke_toolbox_collapser_min,
+.cke_skin_v2 .cke_rtl a:hover.cke_toolbox_collapser_min
+{
+	background-image: url(images/arrowright.gif);
+}
+
+.cke_skin_v2 .cke_toolbar
+{
+	padding-top: 1px;
+	padding-bottom: 1px;
+	display: inline-block;
+	float: left;
+}
+
+.cke_skin_v2 .cke_rtl .cke_toolbar
+{
+	float: right;
+}
+
+.cke_skin_v2 .cke_toolgroup
+{
+	display: inline-block;
+	float: left;
+}
+
+.cke_skin_v2 .cke_rtl .cke_toolgroup
+{
+	float: right;
+}
+
+.cke_skin_v2 .cke_separator
+{
+	display: inline-block;
+	float: left;
+	border-left: solid 1px #999;
+	margin: 0 2px;
+	height: 16px;
+}
+
+.cke_skin_v2 .cke_rtl .cke_separator
+{
+	float: right;
+}
+
+.cke_skin_v2 .cke_break
+{
+	clear: left;
+}
+
+.cke_skin_v2 .cke_rtl .cke_break
+{
+	clear: right;
+}
+
+.cke_skin_v2 .cke_toolbar_start
+{
+	display: inline-block;
+	background-image: url(images/toolbar_start.gif);
+	background-repeat: no-repeat;
+	margin: 4px 2px 0 2px;
+	width: 3px;
+	height: 16px;
+	float: left;
+}
+
+.cke_skin_v2 .cke_rtl .cke_toolbar_start
+{
+	float: right;
+}
+
+.cke_skin_v2 .cke_toolbar_end
+{
+	display: inline-block;
+	float: left;
+}
+
+.cke_skin_v2 .cke_rtl .cke_toolbar_end
+{
+    float: right;
+}
+
+.cke_skin_v2 .cke_button a,
+.cke_skin_v2 .cke_button a.cke_off
+{
+	border: solid 1px #efefde;
+	background-color: #efefde;
+	filter: alpha(opacity=70); /* IE */
+	opacity: 0.70; /* Safari, Opera and Mozilla */
+	display: inline-block;
+	-moz-border-radius: 3px;
+	-webkit-border-radius: 3px;
+	border-radius: 3px;
+	outline: none;
+	padding-top: 2px;
+	padding-left: 4px;
+	padding-right: 4px;
+	padding-bottom: 2px;
+	height: 18px;
+	cursor: default;
+}
+
+.cke_skin_v2 .cke_hc .cke_button a,
+.cke_skin_v2 .cke_hc .cke_button a.cke_off
+{
+	opacity: 1.0;
+	filter: alpha(opacity=100);
+}
+
+.cke_skin_v2 .cke_button a.cke_on
+{
+	border: solid 1px #316ac5;
+	background-color: #a3d7ff;
+	filter: alpha(opacity=100); /* IE */
+	opacity: 1; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_v2 .cke_hc .cke_button a.cke_on
+{
+	padding: 0 2px !important;
+	border-width: 3px;
+}
+
+.cke_skin_v2 .cke_button a.cke_disabled,
+.cke_skin_v2 .cke_browser_ie a:hover.cke_button .cke_disabled
+{
+	border: solid 1px #efefde;
+	background-color: #efefde;
+	filter: alpha(opacity=30); /* IE */
+	opacity : 0.3; /* Safari, Opera and Mozilla */
+}
+
+.cke_skin_v2 .cke_hc .cke_button a.cke_disabled,
+.cke_skin_v2 .cke_browser_ie.cke_hc a:hover.cke_button .cke_disabled
+{
+	filter: alpha(opacity=60);
+	opacity: 0.6;
+}
+
+.cke_skin_v2 .cke_button a:hover.cke_on,
+.cke_skin_v2 .cke_button a:focus.cke_on,
+.cke_skin_v2 .cke_button a:active.cke_on,	/* IE */
+.cke_skin_v2 .cke_button a:hover.cke_off,
+.cke_skin_v2 .cke_button a:focus.cke_off,
+.cke_skin_v2 .cke_button a:active.cke_off	/* IE */
+{
+	border: solid 1px #316ac5;
+	background-color: #dff1ff;
+	filter: alpha(opacity=100); /* IE */
+	opacity: 1; /* Safari, Opera and Mozilla */
+	padding: 2px 4px;
+}
+
+.cke_skin_v2 .cke_hc .cke_button a:hover.cke_on,
+.cke_skin_v2 .cke_hc .cke_button a:focus.cke_on,
+.cke_skin_v2 .cke_hc .cke_button a:active.cke_on,	/* IE */
+.cke_skin_v2 .cke_hc .cke_button a:hover.cke_off,
+.cke_skin_v2 .cke_hc .cke_button a:focus.cke_off,
+.cke_skin_v2 .cke_hc .cke_button a:active.cke_off	/* IE */
+{
+	padding: 0 2px !important;
+	border-width: 3px;
+}
+
+.cke_skin_v2 .cke_button .cke_icon
+{
+	background-image: url(icons.png);
+	background-position: 100px;
+	background-repeat:no-repeat;
+	margin-top:1px;
+	width: 16px;
+	height: 16px;
+	display: inline-block;
+}
+
+.cke_skin_v2 .cke_button .cke_label
+{
+	display: none;
+	padding-left: 3px;
+	vertical-align: 3px;
+}
+
+.cke_skin_v2 .cke_hc .cke_button .cke_label
+{
+	padding: 0;
+	display: inline-block;
+}
+
+.cke_skin_v2 .cke_hc .cke_button .cke_icon
+{
+	display: none;
+}
+
+.cke_skin_v2 .cke_accessibility
+{
+	position: absolute;
+	top: -1000000px;
+}
+
+.cke_skin_v2 .cke_button .cke_buttonarrow
+{
+	display: inline-block;
+	height: 17px;
+	width: 8px;
+	background-position: right center;
+	background-image: url(images/arrowdown.gif);
+	background-repeat: no-repeat;
+}
+
+.cke_skin_v2 .cke_rtl .cke_button .cke_buttonarrow
+{
+	background-position: left center;
+}
+
+/*** Firefox 2 ***/
+
+.cke_skin_v2 .cke_browser_gecko18 .cke_toolbar,
+.cke_skin_v2 .cke_browser_gecko18 .cke_button a,
+.cke_skin_v2 .cke_browser_gecko18 .cke_button a.cke_off,
+.cke_skin_v2 .cke_browser_gecko18 .cke_button .cke_icon,
+.cke_skin_v2 .cke_browser_gecko18 .cke_button .cke_buttonarrow,
+.cke_skin_v2 .cke_browser_gecko18 .cke_separator,
+.cke_skin_v2 .cke_browser_gecko18 .cke_toolbar_start
+{
+	display: block;
+	float: left;
+}
+
+.cke_skin_v2 .cke_browser_gecko18 .cke_hc .cke_button .cke_icon
+{
+	display: none;
+}
+
+.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_toolbar,
+.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_button a,
+.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_button a.cke_off,
+.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_button .cke_icon,
+.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_button .cke_buttonarrow,
+.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_separator,
+.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_toolbar_start
+{
+	float: right;
+}
+
+.cke_skin_v2 .cke_browser_gecko18 .cke_button .cke_label,
+.cke_skin_v2 .cke_browser_gecko18 .cke_break
+{
+	float: left;
+}
+
+.cke_skin_v2 .cke_browser_gecko18 .cke_rtl span.cke_inline_label
+{
+	float: right;
+}
+
+.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_button .cke_label,
+.cke_skin_v2 .cke_browser_gecko18 .cke_rtl .cke_break
+{
+	float: right;
+}
+
+.cke_skin_v2 .cke_browser_gecko18 .cke_separator
+{
+	margin-top: 4px;
+}
+
+.cke_skin_v2 .cke_browser_gecko18 .cke_button .cke_label
+{
+	padding-top: 3px;
+}
+
+/*** IE6 ***/
+
+.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_toolgroup,
+.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_separator,
+.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_toolbar_start,
+.cke_skin_v2 .cke_browser_ie .cke_rtl .cke_toolbar_end
+{
+	float: none;
+}
+
+/*** IE8 ***/
+
+.cke_skin_v2 .cke_browser_ie8 .cke_toolbar,
+.cke_skin_v2 .cke_browser_ie8 .cke_toolgroup
+{
+	vertical-align: top;
+}
+
+.cke_skin_v2 .cke_browser_iequirks.cke_browser_ie8 .cke_toolbar,
+.cke_skin_v2 .cke_browser_iequirks.cke_browser_ie8 .cke_toolgroup
+{
+	/* revert previous */
+	vertical-align: baseline;
+}
Index: /CKEditor/branches/versions/3.0.x/_source/tests/core/ajax.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/tests/core/ajax.html	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/tests/core/ajax.html	(revision 3747)
@@ -138,4 +138,20 @@
 		},
 
+		test_parseXml : function()
+		{
+			var data = new CKEDITOR.xml( '<?xml version="1.0" encoding="utf-8" ?><list><item id="test1" /><item id="test2" /></list>' );
+			assert.isInstanceOf( CKEDITOR.xml, data );
+			assert.isNotNull( data.selectSingleNode( '//list/item' ), 'The loaded data doesn\'t match (null)' );
+			assert.isNotUndefined( data.selectSingleNode( '//list/item' ), 'The loaded data doesn\'t match (undefined)' );
+		},
+
+		test_parseXml_nbsp : function()
+		{
+			var data = new CKEDITOR.xml( '<?xml version="1.0" encoding="utf-8" ?><list><item id="test1">&nbsp;</item><item id="test2" /></list>' );
+			assert.isInstanceOf( CKEDITOR.xml, data );
+			assert.isNotNull( data.selectSingleNode( '//list/item' ), 'The loaded data doesn\'t match (null)' );
+			assert.isNotUndefined( data.selectSingleNode( '//list/item' ), 'The loaded data doesn\'t match (undefined)' );
+		},
+
 		name : document.title
 	};
Index: /CKEditor/branches/versions/3.0.x/_source/tests/core/dom/document.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/tests/core/dom/document.html	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/tests/core/dom/document.html	(revision 3747)
@@ -14,5 +14,6 @@
 {
 	// Local reference to the "assert" object.
-	var assert = CKEDITOR.test.assert;
+	var assert = CKEDITOR.test.assert,
+		arrayAssert = YAHOO.util.ArrayAssert;
 
 	return {
@@ -90,4 +91,29 @@
 			assert.areSame( document.body, doc.getBody().$, '2nd call failed' );
 		},
+		test_createText : function()
+		{
+			var doc = new CKEDITOR.dom.document( document ), contentText = 'text content';
+			var textNode = doc.createText( contentText );
+			assert.areSame( contentText, textNode.getText(),
+				'Create text node content doesn\'t match.' );
+		},
+
+		test_getByAddress1 : function()
+		{
+			var doc = new CKEDITOR.dom.document( document );
+			var node = doc.getByAddress( [ 1, 1, 0, 1, 0, 0 ] );
+			assert.areSame( 'target', node.getText(),
+				'Addressing target doesn\'t match.' );
+		},
+
+		test_getElementsByTag : function()
+		{
+			var nodeList = new CKEDITOR.dom.document( document ).getElementsByTag( 'span' ),
+				results = [];
+			for( var i = 0; i < nodeList.count(); i++ ){
+				results.push( nodeList.getItem( i ).$ );
+			}
+			arrayAssert.itemsAreEqual( results, document.getElementsByTagName( 'span' ) );
+		},
 
 		name : document.title
@@ -98,6 +124,4 @@
 	</script>
 </head>
-<body>
-	<div id="test1"></div>
-</body>
+<body><div id="test1"></div><div><p>text<span><b id="addressTarget1">target</b>text</span>text</p></div><span ><b id="addressTarget2">target</b></span></body>
 </html>
Index: /CKEditor/branches/versions/3.0.x/_source/tests/core/dom/documentfragment.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/tests/core/dom/documentfragment.html	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/tests/core/dom/documentfragment.html	(revision 3747)
@@ -0,0 +1,294 @@
+<!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>CKEDITOR.dom.documentFragment</title>
+	<link rel="stylesheet" type="text/css" href="../../test.css" />
+	<script type="text/javascript" src="../../../../ckeditor_source.js"></script> <!-- %REMOVE_LINE%
+	<script type="text/javascript" src="../../../ckeditor.js"></script>
+	%REMOVE_LINE% -->
+	<script type="text/javascript" src="../../test.js"></script>
+	<script type="text/javascript">
+	//<![CDATA[
+var tc;
+CKEDITOR.test.addTestCase( tc = ( function()
+{
+	// Local reference to the "assert" object.
+	var assert = YAHOO.util.Assert,
+		doc = CKEDITOR.document;
+
+	return {
+
+		test_appendTo : function()
+		{
+			var frag =
+					new CKEDITOR.dom.documentFragment( CKEDITOR.document );
+			var inner =
+					new CKEDITOR.dom.element( 'b' );
+			frag.append( inner );
+			var container = CKEDITOR.document.getById( 'fragmentContainer1' );
+			frag.appendTo( container );
+			assert.isTrue( container.getLast().equals( inner ) );
+		},
+
+		test_append : function()
+		{
+			var frag =
+					new CKEDITOR.dom.documentFragment( CKEDITOR.document );
+			var inner =
+					new CKEDITOR.dom.element( 'b' );
+			frag.append( inner );
+			var container = CKEDITOR.document.getById( 'fragmentContainer3' );
+			container.append( frag );
+			assert.isTrue( container.getLast().equals( inner ) );
+		},
+
+		test_getFirst : function()
+		{
+			var frag =
+					new CKEDITOR.dom.documentFragment( CKEDITOR.document );
+			var inner =
+					new CKEDITOR.dom.element( 'b' );
+			frag.append( inner );
+			var first = frag.getFirst();
+			assert.isTrue( first.equals( inner ) );
+		},
+
+		test_getLast : function()
+		{
+			var frag =
+					new CKEDITOR.dom.documentFragment( CKEDITOR.document );
+			var inner =
+					new CKEDITOR.dom.element( 'b' ), lastInner = inner.clone();
+			frag.append( inner );
+			frag.append( lastInner );
+			var last = frag.getLast();
+			assert.isTrue( last.equals( lastInner ) );
+		},
+
+		test_moveChildren : function()
+		{
+			var frag =
+					new CKEDITOR.dom.documentFragment( CKEDITOR.document );
+			var inner1 = new CKEDITOR.dom.element( 'b' ),
+			inner2 = new CKEDITOR.dom.element( 'i' );
+			frag.append( inner1 );
+			frag.append( inner2 );
+
+			// Move to element
+			var element = new CKEDITOR.dom.element( 'span' );
+			frag.moveChildren( element, true );
+			assert.isTrue( element.getFirst().equals( inner1 ) );
+			assert.isTrue( element.getLast().equals( inner2 ) );
+		},
+
+		test_moveChildren2 : function()
+		{
+			var frag =
+					new CKEDITOR.dom.documentFragment( CKEDITOR.document );
+			var inner1 = new CKEDITOR.dom.element( 'b' ),
+				inner2 = new CKEDITOR.dom.element( 'i' );
+			frag.append( inner1 );
+			frag.append( inner2 );
+
+			// Move to fragment
+			var anotherFrag = new CKEDITOR.dom.documentFragment(
+				CKEDITOR.document );
+			frag.moveChildren( anotherFrag, true );
+			assert.isTrue( anotherFrag.getFirst().equals( inner1 ) );
+			assert.isTrue( anotherFrag.getLast().equals( inner2 ) );
+		},
+
+		test_appendText : function()
+		{
+			var element = new CKEDITOR.dom.element( 'script' );
+			element.appendText( 'Test appendText' );
+			assert.areEqual( 'Test appendText', element.$.text );
+		},
+
+		test_ltrim : function()
+		{
+			// IE need special treatement to setup this tc, see
+			// next tc for this.
+			if ( CKEDITOR.env.ie )
+				return;
+			var element = CKEDITOR.document.getById(
+						'trimTarget' ).clone( true );
+			var frag =
+					new CKEDITOR.dom.documentFragment( CKEDITOR.document );
+			element.moveChildren( frag );
+			frag.ltrim();
+			var ct = new CKEDITOR.dom.element( 'div' );
+			ct.append( frag );
+			assert.areSame( 'text\t\n', ct.getText() );
+		},
+
+		test_ltrim_ie : function()
+		{
+			if ( !CKEDITOR.env.ie )
+				return;
+			// IE dom operation will trim preceding empty text,
+			// here we use 'splitText' way to create leading spaces
+			// instead for testing.
+			var emptyTextNode = doc.createText( '@ \ttext\t ');
+			var frag =
+					new CKEDITOR.dom.documentFragment( doc );
+			frag.append( emptyTextNode );
+			frag.getFirst().$.splitText( 1 );
+			frag.getFirst().remove();
+			frag.ltrim();
+			var ct = new CKEDITOR.dom.element( 'div' );
+			ct.append( frag );
+			assert.areSame( 'text\t ', ct.getText() );
+		},
+
+		test_rtrim : function()
+		{
+			if ( CKEDITOR.env.ie )
+				return;
+			var element = CKEDITOR.document.getById(
+						'trimTarget' ).clone( true );
+			var frag =
+					new CKEDITOR.dom.documentFragment( CKEDITOR.document );
+			element.moveChildren( frag );
+			frag.rtrim();
+			var ct = new CKEDITOR.dom.element( 'div' );
+			ct.append( frag );
+
+			assert.areSame( '\t\ntext', ct.getText() );
+		},
+
+		/**
+		 *@see test_ltrim_ie
+		 */
+		test_rtrim_ie : function()
+		{
+			if ( !CKEDITOR.env.ie )
+				return;
+			var emptyTextNode = doc.createText( '@ \ttext\t ');
+			var frag =
+					new CKEDITOR.dom.documentFragment( doc );
+			frag.append( emptyTextNode );
+			frag.getFirst().$.splitText( 1 );
+			frag.getFirst().remove();
+			frag.rtrim();
+			var ct = new CKEDITOR.dom.element( 'div' );
+			ct.append( frag );
+			assert.areSame( ' \ttext', ct.getText() );
+		},
+
+
+		test_trim : function()
+		{
+			if ( !CKEDITOR.env.ie )
+				return;
+			var element =
+					CKEDITOR.document.getById( 'trimTarget' ).clone( true );
+			var frag =
+					new CKEDITOR.dom.documentFragment( CKEDITOR.document );
+			element.moveChildren( frag );
+			frag.trim();
+			var ct = new CKEDITOR.dom.element( 'div' );
+			ct.append( frag );
+			assert.areSame( 'text', ct.getText() );
+		},
+
+
+		/**
+		 *@see test_ltrim_ie
+		 */
+		test_trim_ie : function()
+		{
+			if ( !CKEDITOR.env.ie )
+				return;
+			var emptyTextNode = doc.createText( '@ \t\ntext\t\n ');
+			var frag =
+					new CKEDITOR.dom.documentFragment( doc );
+			frag.append( emptyTextNode );
+			frag.getFirst().$.splitText( 1 );
+			frag.getFirst().remove();
+			frag.trim();
+			var ct = new CKEDITOR.dom.element( 'div' );
+			ct.append( frag );
+			assert.areSame( 'text', ct.getText() );
+		},
+
+		test_insertAfter : function()
+		{
+			var frag =
+					new CKEDITOR.dom.documentFragment( CKEDITOR.document );
+			var inner = new CKEDITOR.dom.element( 'b' );
+			frag.append( inner );
+			var container = CKEDITOR.document.getById( 'fragmentContainer2' );
+			var sibling = CKEDITOR.document.getById( 'fragmentSibling1' );
+			frag.insertAfterNode( sibling );
+			assert.isTrue( container.getLast().equals( inner ) );
+		},
+
+		test_getChildCount : function()
+		{
+			var frag =
+					new CKEDITOR.dom.documentFragment( CKEDITOR.document );
+			var inner1 = new CKEDITOR.dom.element( 'b' ),
+				inner2 = new CKEDITOR.dom.element( 'i' );
+			frag.append( inner1 );
+			frag.append( inner2 );
+
+			assert.areEqual( 2, frag.getChildCount() );
+		},
+
+		test_getChild : function()
+		{
+			var frag =
+					new CKEDITOR.dom.documentFragment( CKEDITOR.document );
+			var inner1 = new CKEDITOR.dom.element( 'b' ),
+				inner2 = new CKEDITOR.dom.element( 'i' );
+			frag.append( inner1 );
+			frag.append( inner2 );
+
+			assert.isTrue( inner2.equals( frag.getChild( 1 ) ) );
+		},
+
+		test_getChildren : function()
+		{
+			var frag =
+					new CKEDITOR.dom.documentFragment( CKEDITOR.document );
+			var inner1 = new CKEDITOR.dom.element( 'b' ),
+				inner2 = new CKEDITOR.dom.element( 'i' );
+			frag.append( inner1 );
+			frag.append( inner2 );
+
+			var childNodesList = frag.getChildren();
+			assert.areEqual( 2, childNodesList.count() );
+			assert.isTrue( inner2.equals( childNodesList.getItem( 1 ) ) );
+		},
+
+		test_getDocument : function()
+		{
+			var doc = CKEDITOR.document,
+				innerDoc = new CKEDITOR.dom.document(
+					doc.getById( 'innerFrame' ).$.contentWindow.document );
+			var frag1 = new CKEDITOR.dom.documentFragment( doc ),
+				frag2 = new CKEDITOR.dom.documentFragment( innerDoc );
+
+			assert.isTrue( doc.equals( frag1.getDocument() ) );
+			assert.isTrue( innerDoc.equals( frag2.getDocument() ) );
+		},
+
+		name :document.title
+	};
+} )() );
+
+//window.onload = tc.test_rtrim_ie;
+	//]]>
+	</script>
+</head>
+<body>
+	<div id="fragmentContainer1"></div>
+	<div id="fragmentContainer2"><div id="fragmentSibling1"></div></div>
+	<div id="fragmentContainer3"></div>
+	<div id="trimTarget">
+text
+</div>
+	<iframe id="innerFrame" name="innerFrame" src="about:blank"></iframe>
+</body>
+</html>
Index: /CKEditor/branches/versions/3.0.x/_source/tests/core/dom/element.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/tests/core/dom/element.html	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/tests/core/dom/element.html	(revision 3747)
@@ -173,5 +173,5 @@
 			element.setAttribute( 'style', 'position: absolute;' );
 
-			assert.areEqual( 'position:absolute', document.getElementById( 'test1' ).style.cssText.replace( /[\s;]/g, '' ).toLowerCase() );
+			assert.areEqual( 'position: absolute;', element.getAttribute( 'style' ) );
 		},
 
@@ -202,5 +202,5 @@
 
 			assert.areSame( 'Test', document.getElementById( 'test1' ).className, 'class is wrong' );
-			assert.areEqual( 'position:absolute', document.getElementById( 'test1' ).style.cssText.replace( /[\s;]/g, '' ).toLowerCase(), 'style is wrong' );
+			assert.areEqual( 'position: absolute;', element.getAttribute( 'style'), 'style is wrong' );
 			assert.areEqual( 'TestName', document.getElementById( 'test1' ).name, 'name is wrong' );
 			assert.areEqual( 5, document.getElementById( 'test1' ).rows, 'rows is wrong' );
@@ -227,6 +227,6 @@
 			var element = new CKEDITOR.dom.element( document.getElementById( 'setStyle' ) );
 			element.setStyles({
-					 'position' : 'absolute',
-					 'float' : 'right'
+					'position' : 'absolute',
+					'float' : 'right'
 				});
 
@@ -402,4 +402,24 @@
 		},
 
+		/**
+		 *  Test getAttribute and getAttribute will ingore  '_cke_expando' attribute.
+		 */
+		test_getAttribute_ignoreExpandoAttributes : function()
+		{
+			var element = new CKEDITOR.dom.element( document.getElementById( 'testExpandoAttributes' ) );
+
+			assert.areEqual( 1, element.getAttribute( 'tabindex' ), 'tabindex is wrong' );
+			element.removeAttribute( 'tabindex' );
+
+			assert.areEqual( 'hasExpando', element.getAttribute( 'class' ), 'class is wrong' );
+			element.removeAttribute( 'class' );
+
+			assert.areEqual( 'float: right;', element.getAttribute( 'style' ) );
+
+			element.removeAttribute( 'style' );
+			element.removeAttribute( 'id' );
+			assert.isFalse( element.hasAttributes(), 'hasAttributes should be false' );
+		},
+
 		test_getTabIndex1 : function()
 		{
@@ -437,5 +457,5 @@
 			var b = new CKEDITOR.dom.element( document.getElementById( 'test1' ) );
 
-			assert.areSame( a._, b._ );
+			assert.areSame( a.getPrivate(), b.getPrivate() );
 		},
 
@@ -445,5 +465,5 @@
 			var b = new CKEDITOR.dom.element( document.getElementById( 'test2' ) );
 
-			assert.areNotSame( a._, b._ );
+			assert.areNotSame( a.getPrivate(), b.getPrivate() );
 		},
 
@@ -488,4 +508,21 @@
 		},
 
+		test_getDocumentPosition : function()
+		{
+			// Assign the page location of the element.
+			YAHOO.util.Dom.setXY('DocPositionTarget', [ 350, 450 ] );
+			var pos = CKEDITOR.document.getById( 'DocPositionTarget' ).getDocumentPosition();
+			if ( !CKEDITOR.env.ie )
+			{
+				assert.areEqual( 350, pos.x, 'Position coordinates:x relative to document doesn\'t match.' );
+				assert.areEqual( 450, pos.y, 'Position coordinates:y relative to document doesn\'t match.' );
+			}
+			else
+			{
+				assert.isTrue( pos.x == 348 || pos.x == 349, 'Position coordinates:x relative to document doesn\'t match.' );
+				assert.areEqual( 448, pos.y, 'Position coordinates:y relative to document doesn\'t match.' );
+			}
+		},
+
 		name : document.title
 	};
@@ -494,4 +531,52 @@
 	//]]>
 	</script>
+	<style type="text/css" media="screen">
+		#test-computed {
+		    width:50%;
+		    margin:auto;
+		    padding:10px;
+		    z-index: 2;
+		}
+		.scroll
+		{
+			overflow: visible;
+		}
+		.block1
+		{
+			width: 100%;
+			height: 100px;
+			background-color: blue;
+			text-align: center;
+		}
+		.block2
+		{
+			margin: auto;
+			width: 200px;
+			height: 200px;
+			background-color: green;
+			position : relative;
+		}
+		.block3
+		{
+			position: absolute;
+			float:right;
+			width: 300px;
+			height: 300px;
+			background-color: black;
+		}
+		.block4
+		{
+			position: absolute;
+			left: 50px;
+			right: 50px;
+			width: 400px;
+			height: 400px;
+			background-color: pink;
+		}
+		#DocPositionTarget
+		{
+			background-color: red;
+		}
+	</style>
 </head>
 <body>
@@ -506,4 +591,5 @@
 	<div id="removeOuter"><b id="removeInner"></b></div>
 	<div id="tabIndex10" tabindex="10"></div>
+	<div id="testExpandoAttributes" _cke_expando ="1" class="hasExpando" tabindex="1" style="float:right"></div>
 	<div id="tabIndexDef"></div>
 	<input id="tabIndexInputDef" />
@@ -516,4 +602,7 @@
 	<big>Test</big>
 	<small title="Testing">Test</small>
+
+	<div class="block1 scroll" id="block1"><div class="block2 scroll" id="block2"><div class="block3 scroll" id="block3"><div class="block4 scroll" id="block4"><div id="DocPositionTarget">target</div></div></div></div></div>
+
 </body>
 </html>
Index: /CKEditor/branches/versions/3.0.x/_source/tests/core/dom/node.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/tests/core/dom/node.html	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/tests/core/dom/node.html	(revision 3747)
@@ -10,6 +10,6 @@
 	<script type="text/javascript">
 	//<![CDATA[
-
-CKEDITOR.test.addTestCase( (function()
+var tc;
+CKEDITOR.test.addTestCase( tc = (function()
 {
 	// Local reference to the "assert" object.
@@ -69,5 +69,4 @@
 			var node1 = new CKEDITOR.dom.node( document.getElementsByTagName( 'h1' )[0] );
 			var node2 = new CKEDITOR.dom.node( document.getElementsByTagName( 'h1' )[0].firstChild );
-
 			assert.areSame( CKEDITOR.POSITION_IS_CONTAINED + CKEDITOR.POSITION_FOLLOWING, node2.getPosition( node1 ) );
 		},
@@ -105,4 +104,15 @@
 		},
 
+		/**
+		 *  Test 'preceding' position.
+		 */
+		test_getPosition_3240: function()
+		{
+			var node1 = new CKEDITOR.dom.node( document.getElementsByTagName( 'b' )[0].firstChild );
+			var node2 = new CKEDITOR.dom.node( document.getElementsByTagName( 'span' )[0].firstChild );
+
+			assert.areSame( CKEDITOR.POSITION_PRECEDING, node1.getPosition( node2 ) );
+		},
+
 		name : document.title
 	};
@@ -116,5 +126,5 @@
 //	alert( node1.getPosition( node2 ) );
 //};
-
+//window.onload =  tc.test_getPosition6;
 	//]]>
 	</script>
@@ -125,4 +135,5 @@
 		<p><b>Sample</b> <i>Text</i></p>
 	</div>
+	<span>Another</span>
 </body>
 </html>
Index: /CKEditor/branches/versions/3.0.x/_source/tests/core/dom/range.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/tests/core/dom/range.html	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/tests/core/dom/range.html	(revision 3747)
@@ -12,4 +12,5 @@
 
 var html1, html2;
+var tests;
 
 CKEDITOR.test.addTestCase( (function()
@@ -21,5 +22,12 @@
 	var doc = new CKEDITOR.dom.document( document );
 
-	return {
+	var getRange = function( startId, endId )
+	{
+		var range = new CKEDITOR.dom.range( CKEDITOR.document );
+		range.moveToBookmark( { startNode : startId, endNode : endId, serializable : true } );
+		return range;
+	};
+
+	return tests = {
 		test__constructor : function()
 		{
@@ -930,4 +938,126 @@
 		},
 
+		test_enlarge_list1 : function()
+		{
+			var range = getRange( 'S1', null );
+			range.enlarge( CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS );
+
+			assert.areSame( document.getElementById( '_EnlargeP7' ), range.startContainer.$, 'range.startContainer' );
+			assert.areSame( 0, range.startOffset, 'range.startOffset' );
+			assert.areSame( document.getElementById( '_EnlargeP7' ), range.endContainer.$, 'range.endContainer' );
+			assert.areSame( 3, range.endOffset, 'range.endOffset' );
+			assert.isFalse( range.collapsed, 'range.collapsed' );
+		},
+
+		test_enlarge_list2 : function()
+		{
+			var range = getRange( 'S2', 'E2' );
+			range.enlarge( CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS );
+
+			assert.areSame( document.getElementById( '_EnlargeP8' ), range.startContainer.$, 'range.startContainer' );
+			assert.areSame( 0, range.startOffset, 'range.startOffset' );
+			assert.areSame( document.getElementById( '_EnlargeP8' ), range.endContainer.$, 'range.endContainer' );
+			assert.areSame( 4, range.endOffset, 'range.endOffset' );
+			assert.isFalse( range.collapsed, 'range.collapsed' );
+		},
+
+		test_enlarge_list3 : function()
+		{
+			var range = getRange( 'S3', null );
+			range.enlarge( CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS );
+
+			assert.areSame( document.getElementById( '_EnlargeP9' ), range.startContainer.$, 'range.startContainer' );
+			assert.areSame( 2, range.startOffset, 'range.startOffset' );
+			assert.areSame( document.getElementById( '_EnlargeP9' ), range.endContainer.$, 'range.endContainer' );
+			assert.areSame( 3, range.endOffset, 'range.endOffset' );
+			assert.isFalse( range.collapsed, 'range.collapsed' );
+		},
+
+		test_enlarge_list4 : function()
+		{
+			var range = getRange( 'S4', null );
+			range.enlarge( CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS );
+
+			assert.areSame( document.getElementById( '_EnlargeP10' ), range.startContainer.$, 'range.startContainer' );
+			assert.areSame( 3, range.startOffset, 'range.startOffset' );
+			assert.areSame( document.getElementById( '_EnlargeP10' ), range.endContainer.$, 'range.endContainer' );
+			assert.areSame( 5, range.endOffset, 'range.endOffset' );
+			assert.isFalse( range.collapsed, 'range.collapsed' );
+		},
+
+		test_enlarge_list5 : function()
+		{
+			var range = getRange( 'S9', null );
+			var bookmark = range.createBookmark();
+			range.enlarge( CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS );
+
+			assert.areSame( document.getElementById( '_EnlargeP15' ), range.startContainer.$, 'range.startContainer' );
+			assert.areSame( 0, range.startOffset, 'range.startOffset' );
+			assert.areSame( document.getElementById( '_EnlargeP15' ), range.endContainer.$, 'range.endContainer' );
+			assert.areSame( 4, range.endOffset, 'range.endOffset' );
+			assert.isFalse( range.collapsed, 'range.collapsed' );
+			range.moveToBookmark( bookmark );
+		},
+
+		test_enlarge_block1 : function()
+		{
+			var range = getRange( 'S5', null );
+			range.enlarge( CKEDITOR.ENLARGE_BLOCK_CONTENTS );
+
+			assert.areSame( document.getElementById( '_EnlargeP11' ), range.startContainer.$, 'range.startContainer' );
+			assert.areSame( 0, range.startOffset, 'range.startOffset' );
+			assert.areSame( document.getElementById( '_EnlargeP11'), range.endContainer.$, 'range.endContainer' );
+			assert.areSame( 5, range.endOffset, 'range.endOffset' );
+			assert.isFalse( range.collapsed, 'range.collapsed' );
+		},
+
+		test_enlarge_block2 : function()
+		{
+			var range = getRange( 'S10', null );
+			var bookmark = range.createBookmark();
+			range.enlarge( CKEDITOR.ENLARGE_BLOCK_CONTENTS );
+
+			assert.areSame( document.getElementById( '_EnlargeP16' ), range.startContainer.$, 'range.startContainer' );
+			assert.areSame( 0, range.startOffset, 'range.startOffset' );
+			assert.areSame( document.getElementById( '_EnlargeP16'), range.endContainer.$, 'range.endContainer' );
+			assert.areSame( 5, range.endOffset, 'range.endOffset' );
+			assert.isFalse( range.collapsed, 'range.collapsed' );
+			range.moveToBookmark( bookmark );
+		},
+
+		test_enlarge_block3 : function()
+		{
+			var range = getRange( 'S6', null );
+			range.enlarge( CKEDITOR.ENLARGE_BLOCK_CONTENTS );
+
+			assert.areSame( document.getElementById( '_EnlargeP12' ), range.startContainer.$, 'range.startContainer' );
+			assert.areSame( 0, range.startOffset, 'range.startOffset' );
+			assert.areSame( document.getElementById( '_EnlargeP12'), range.endContainer.$, 'range.endContainer' );
+			assert.areSame( 2, range.endOffset, 'range.endOffset' );
+			assert.isFalse( range.collapsed, 'range.collapsed' );
+		},
+
+		test_enlarge_block4 : function()
+		{
+			var range = getRange( 'S7', null );
+			range.enlarge( CKEDITOR.ENLARGE_BLOCK_CONTENTS );
+
+			assert.areSame( document.getElementById( '_EnlargeP13' ), range.startContainer.$, 'range.startContainer' );
+			assert.areSame( 0, range.startOffset, 'range.startOffset' );
+			assert.areSame( document.getElementById( '_EnlargeP13'), range.endContainer.$, 'range.endContainer' );
+			assert.areSame( 2, range.endOffset, 'range.endOffset' );
+			assert.isFalse( range.collapsed, 'range.collapsed' );
+		},
+
+		test_enlarge_block5 : function()
+		{
+			var range = getRange( 'S8', null );
+			range.enlarge( CKEDITOR.ENLARGE_BLOCK_CONTENTS );
+
+			assert.areSame( document.getElementById( '_EnlargeP14' ), range.startContainer.$, 'range.startContainer' );
+			assert.areSame( 0, range.startOffset, 'range.startOffset' );
+			assert.isTrue( range.collapsed, 'range.collapsed' );
+		},
+
 		test_deleteContents_W3C_1 : function()
 		{
@@ -1108,5 +1238,5 @@
 			docFrag.appendTo( tmpDiv );
 
-			assert.areSame( '<b id="_b">ome</b> t', getInnerHtml( tmpDiv.$ ), 'Extracted HTML' );
+			assert.areSame( '<b>ome</b> t', getInnerHtml( tmpDiv.$ ), 'Extracted HTML' );
 			assert.areSame( 'this is <b id="_b">s</b>ext.', getInnerHtml( '_Para' ), 'HTML after extraction' );
 
@@ -1131,5 +1261,5 @@
 			docFrag.appendTo( tmpDiv );
 
-			assert.areSame( 'his is <b id="_b">s</b>', getInnerHtml( tmpDiv.$ ), 'Extracted HTML' );
+			assert.areSame( 'his is <b>s</b>', getInnerHtml( tmpDiv.$ ), 'Extracted HTML' );
 			assert.areSame( 't<b id="_b">ome</b> text.', getInnerHtml( '_Para' ), 'HTML after extraction' );
 
@@ -1154,5 +1284,5 @@
 			docFrag.appendTo( tmpDiv );
 
-			assert.areSame( '<h1 id="_h1">ckw3crange test</h1><p id="_para">this is <b id="_b">some</b> text.</p><p>a</p>', getInnerHtml( tmpDiv.$ ), 'Extracted HTML' );
+			assert.areSame( '<h1>ckw3crange test</h1><p id="_para">this is <b id="_b">some</b> text.</p><p>a</p>', getInnerHtml( tmpDiv.$ ), 'Extracted HTML' );
 			assert.areSame( '<h1 id="_h1">f</h1><p>nother paragraph.</p>', getInnerHtml( 'playground' ) );
 
@@ -1175,5 +1305,5 @@
 			docFrag.appendTo( tmpDiv );
 
-			assert.areSame( '<h1 id="_h1">fckw3crange test</h1><p id="_para">this is <b id="_b">some</b> text.</p><p>another paragraph.</p>', getInnerHtml( tmpDiv.$ ), 'Extracted HTML' );
+			assert.areSame( '<h1>fckw3crange test</h1><p id="_para">this is <b id="_b">some</b> text.</p><p>another paragraph.</p>', getInnerHtml( tmpDiv.$ ), 'Extracted HTML' );
 			assert.areSame( '<h1 id="_h1"></h1><p></p>', getInnerHtml( 'playground' ) );
 
@@ -1310,5 +1440,5 @@
 			docFrag.appendTo( tmpDiv );
 
-			assert.areSame( 'his is <b id="_b">some</b>', getInnerHtml( tmpDiv.$ ), 'Cloned HTML' );
+			assert.areSame( 'his is <b>some</b>', getInnerHtml( tmpDiv.$ ), 'Cloned HTML' );
 
 			// The body HTML must remain unchanged.
@@ -1338,5 +1468,5 @@
 			docFrag.appendTo( tmpDiv );
 
-			assert.areSame( '<b id="_b">ome</b> t', getInnerHtml( tmpDiv.$ ), 'Cloned HTML' );
+			assert.areSame( '<b>ome</b> t', getInnerHtml( tmpDiv.$ ), 'Cloned HTML' );
 
 			// The body HTML must remain unchanged.
@@ -1366,5 +1496,5 @@
 			docFrag.appendTo( tmpDiv );
 
-			assert.areSame( 'his is <b id="_b">s</b>', getInnerHtml( tmpDiv.$ ), 'Cloned HTML' );
+			assert.areSame( 'his is <b>s</b>', getInnerHtml( tmpDiv.$ ), 'Cloned HTML' );
 
 			// The body HTML must remain unchanged.
@@ -1394,5 +1524,5 @@
 			docFrag.appendTo( tmpDiv );
 
-			assert.areSame( '<h1 id="_h1">ckw3crange test</h1><p id="_para">this is <b id="_b">some</b> text.</p><p>a</p>', getInnerHtml( tmpDiv.$ ), 'Cloned HTML' );
+			assert.areSame( '<h1>ckw3crange test</h1><p>this is <b>some</b> text.</p><p>a</p>', getInnerHtml( tmpDiv.$ ), 'Cloned HTML' );
 
 			// The body HTML must remain unchanged.
@@ -1421,5 +1551,5 @@
 			docFrag.appendTo( tmpDiv );
 
-			assert.areSame( '<h1 id="_h1">fckw3crange test</h1><p id="_para">this is <b id="_b">some</b> text.</p><p>another paragraph.</p>', getInnerHtml( tmpDiv.$ ), 'Cloned HTML' );
+			assert.areSame( '<h1>fckw3crange test</h1><p>this is <b>some</b> text.</p><p>another paragraph.</p>', getInnerHtml( tmpDiv.$ ), 'Cloned HTML' );
 
 			// The body HTML must remain unchanged.
@@ -1448,5 +1578,5 @@
 			docFrag.appendTo( tmpDiv );
 
-			assert.areSame( '<h1 id="_h1">fckw3crange test</h1><p id="_para">this is <b id="_b">some</b> text.</p>', getInnerHtml( tmpDiv.$ ), 'Cloned HTML' );
+			assert.areSame( '<h1>fckw3crange test</h1><p>this is <b>some</b> text.</p>', getInnerHtml( tmpDiv.$ ), 'Cloned HTML' );
 
 			// The body HTML must remain unchanged.
@@ -1499,5 +1629,5 @@
 			docFrag.appendTo( tmpDiv );
 
-			assert.areSame( 'this is <b id="_b">some</b> text.', getInnerHtml( tmpDiv.$ ), 'Cloned HTML' );
+			assert.areSame( 'this is <b>some</b> text.', getInnerHtml( tmpDiv.$ ), 'Cloned HTML' );
 
 			// The body HTML must remain unchanged.
@@ -1511,4 +1641,595 @@
 		},
 
+		test_createBookmark2_1 : function()
+		{
+			doc.getById( 'playground' ).setHtml( '<p id="P">This is <b id="B">a test</b></p>' );
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			range.setStart( doc.getById( 'P' ), 0 );
+			range.setEnd( doc.getById( 'B' ).getFirst(), 3 );
+
+			var bookmark = range.createBookmark2();
+
+			range = new CKEDITOR.dom.range( doc );
+			range.moveToBookmark( bookmark );
+
+			assert.areSame( document.getElementById('P'), range.startContainer.$, 'range.startContainer' );
+			assert.areSame( 0, range.startOffset, 'range.startOffset' );
+			assert.areSame( document.getElementById('B').firstChild, range.endContainer.$, 'range.endContainer' );
+			assert.areSame( 3, range.endOffset, 'range.endOffset' );
+			assert.isFalse( range.collapsed, 'range.collapsed' );
+		},
+
+		// This test is just like test_createBookmark2_3, but uses a "non
+		// normalized" bookmark.
+		test_createBookmark2_2 : function()
+		{
+			var html = '<p id="P">A B <b>C </b>D E</p>';
+
+			doc.getById( 'playground' ).setHtml( html );
+
+			var p = doc.getById( 'P' );
+
+			// Split the text nodes.
+			p.getFirst().split( 2 );	// Right before "B"
+			p.getChild( 3 ).split( 2 );	// Right before "E"
+
+			assert.areSame( 5, p.getChildCount(), 'The number of nodes after split doesn\'t match' );
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			// Create a range that enbraces "E".
+			range.setStartBefore( p.getChild( 4 ) );
+			range.setEndAfter( p.getChild( 4 ) );
+
+			var bookmark = range.createBookmark2();
+
+			range = new CKEDITOR.dom.range( doc );
+			range.moveToBookmark( bookmark );
+
+			assert.areSame( document.getElementById('P'), range.startContainer.$, 'range.startContainer' );
+			assert.areSame( 4, range.startOffset, 'range.startOffset' );
+			assert.areSame( document.getElementById('P'), range.endContainer.$, 'range.endContainer' );
+			assert.areSame( 5, range.endOffset, 'range.endOffset' );
+			assert.isFalse( range.collapsed, 'range.collapsed' );
+		},
+
+		test_createBookmark2_3 : function()
+		{
+			var html = '<p id="P">A B <b>C </b>D E</p>';
+
+			doc.getById( 'playground' ).setHtml( html );
+
+			var p = doc.getById( 'P' );
+
+			// Split the text nodes.
+			p.getFirst().split( 2 );	// Right before "B"
+			p.getChild( 3 ).split( 2 );	// Right before "E"
+
+			assert.areSame( 5, p.getChildCount(), 'The number of nodes after split doesn\'t match' );
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			// Create a range that enbraces "E".
+			range.setStartBefore( p.getChild( 4 ) );
+			range.setEndAfter( p.getChild( 4 ) );
+
+			var bookmark = range.createBookmark2( true );
+
+			// Normalize the contents.
+			doc.getById( 'playground' ).setHtml( html );
+
+			range = new CKEDITOR.dom.range( doc );
+			range.moveToBookmark( bookmark );
+
+			assert.areSame( document.getElementById('P').childNodes[2], range.startContainer.$, 'range.startContainer' );
+			assert.areSame( 2, range.startOffset, 'range.startOffset' );
+			assert.areSame( document.getElementById('P'), range.endContainer.$, 'range.endContainer' );
+
+			// Note that the endOffset doesn't get normalized as it's not
+			// needed. Any offset pointing over the container size is meant to
+			// be at the end of it.
+			assert.areSame( 5, range.endOffset, 'range.endOffset' );
+			assert.isFalse( range.collapsed, 'range.collapsed' );
+		},
+
+		test_checkStartOfBlock1 : function()
+		{
+			var p = doc.getById( 'playground' );
+			p.setHtml( '<p>Test</p>' );
+			p = p.getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			range.setStartAt( p, CKEDITOR.POSITION_AFTER_START );
+			range.collapse( true );
+
+			assert.isTrue( range.checkStartOfBlock() );
+		},
+
+		test_checkStartOfBlock2 : function()
+		{
+			var p = doc.getById( 'playground' );
+			p.setHtml( '<p>Test</p>' );
+			p = p.getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			range.setStartAt( p, CKEDITOR.POSITION_BEFORE_END );
+			range.collapse( true );
+
+			assert.isFalse( range.checkStartOfBlock() );
+		},
+
+		test_checkStartOfBlock3 : function()
+		{
+			var p = doc.getById( 'playground' );
+			p.setHtml( '<p>Test</p>' );
+			p = p.getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			range.setStartAt( p.getFirst(), CKEDITOR.POSITION_AFTER_START );
+			range.collapse( true );
+
+			assert.isTrue( range.checkStartOfBlock() );
+		},
+
+		test_checkStartOfBlock4 : function()
+		{
+			var p = doc.getById( 'playground' );
+			p.setHtml( '<p>Test</p>' );
+			p = p.getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			range.setStartAt( p.getFirst(), CKEDITOR.POSITION_BEFORE_END );
+			range.collapse( true );
+
+			assert.isFalse( range.checkStartOfBlock() );
+		},
+
+		test_checkStartOfBlock5 : function()
+		{
+			var el = doc.getById( 'playground' );
+			el.setHtml( '<p> Test </p>' );
+			el = el.getFirst().getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			// IE trims the space in the beginning of text nodes in our case.
+			// So, let's just check it and make it pass.
+			range.setStart( el, ( el.substring( 0, 1 ) == 'T' ) ? 0 : 1 );
+			range.collapse( true );
+
+			assert.isTrue( range.checkStartOfBlock() );
+		},
+
+		test_checkStartOfBlock6 : function()
+		{
+			var p = doc.getById( 'playground' );
+			p.setHtml( '<p> Test </p>' );
+			p = p.getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			range.setStart( p.getFirst(), 5 );
+			range.collapse( true );
+
+			assert.isFalse( range.checkStartOfBlock() );
+		},
+
+		test_checkStartOfBlock7 : function()
+		{
+			var el = doc.getById( 'playground' );
+			el.setHtml( '<p><b>Test</b></p>' );
+			el = el.getFirst().getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.selectNodeContents( el );
+
+			assert.isTrue( range.checkStartOfBlock() );
+		},
+
+		test_checkStartOfBlock8 : function()
+		{
+			var el = doc.getById( 'playground' );
+			el.setHtml( '<p>A<b>Test</b>B</p>' );
+			el = el.getFirst().getFirst().getNext();
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.selectNodeContents( el );
+
+			assert.isFalse( range.checkStartOfBlock() );
+		},
+
+		test_checkEndOfBlock1 : function()
+		{
+			var p = doc.getById( 'playground' );
+			p.setHtml( '<p>Test</p>' );
+			p = p.getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			range.setStartAt( p, CKEDITOR.POSITION_AFTER_START );
+			range.collapse( true );
+
+			assert.isFalse( range.checkEndOfBlock() );
+		},
+
+		test_checkEndOfBlock2 : function()
+		{
+			var p = doc.getById( 'playground' );
+			p.setHtml( '<p>Test</p>' );
+			p = p.getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			range.setStartAt( p, CKEDITOR.POSITION_BEFORE_END );
+			range.collapse( true );
+
+			assert.isTrue( range.checkEndOfBlock() );
+		},
+
+		test_checkEndOfBlock3 : function()
+		{
+			var p = doc.getById( 'playground' );
+			p.setHtml( '<p>Test</p>' );
+			p = p.getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			range.setStartAt( p.getFirst(), CKEDITOR.POSITION_AFTER_START );
+			range.collapse( true );
+
+			assert.isFalse( range.checkEndOfBlock() );
+		},
+
+		test_checkEndOfBlock4 : function()
+		{
+			var p = doc.getById( 'playground' );
+			p.setHtml( '<p>Test</p>' );
+			p = p.getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			range.setStartAt( p.getFirst(), CKEDITOR.POSITION_BEFORE_END );
+			range.collapse( true );
+
+			assert.isTrue( range.checkEndOfBlock() );
+		},
+
+		test_checkEndOfBlock5 : function()
+		{
+			var p = doc.getById( 'playground' );
+			p.setHtml( '<p> Test </p>' );
+			p = p.getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			range.setStart( p.getFirst(), 1 );
+			range.collapse( true );
+
+			assert.isFalse( range.checkEndOfBlock() );
+		},
+
+		test_checkEndOfBlock6 : function()
+		{
+			var p = doc.getById( 'playground' );
+			p.setHtml( '<p> Test </p>' );
+			p = p.getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			range.setStart( p.getFirst(), 5 );
+			range.collapse( true );
+
+			assert.isTrue( range.checkEndOfBlock() );
+		},
+
+		test_checkEndOfBlock7 : function()
+		{
+			var el = doc.getById( 'playground' );
+			el.setHtml( '<p><b>Test</b></p>' );
+			el = el.getFirst().getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.selectNodeContents( el );
+
+			assert.isTrue( range.checkEndOfBlock() );
+		},
+
+		test_checkEndOfBlock8 : function()
+		{
+			var el = doc.getById( 'playground' );
+			el.setHtml( '<p>A<b>Test</b>B</p>' );
+			el = el.getFirst().getFirst().getNext();
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.selectNodeContents( el );
+
+			assert.isFalse( range.checkEndOfBlock() );
+		},
+
+		test_checkStartOfBlock1 : function()
+		{
+			var p = doc.getById( 'playground' );
+			p.setHtml( '<p>Test</p>' );
+			p = p.getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			range.setStartAt( p, CKEDITOR.POSITION_AFTER_START );
+			range.collapse( true );
+
+			assert.isTrue( range.checkStartOfBlock() );
+		},
+
+		test_checkStartOfBlock2 : function()
+		{
+			var p = doc.getById( 'playground' );
+			p.setHtml( '<p>Test</p>' );
+			p = p.getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			range.setStartAt( p, CKEDITOR.POSITION_BEFORE_END );
+			range.collapse( true );
+
+			assert.isFalse( range.checkStartOfBlock() );
+		},
+
+		test_checkStartOfBlock3 : function()
+		{
+			var p = doc.getById( 'playground' );
+			p.setHtml( '<p>Test</p>' );
+			p = p.getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			range.setStartAt( p.getFirst(), CKEDITOR.POSITION_AFTER_START );
+			range.collapse( true );
+
+			assert.isTrue( range.checkStartOfBlock() );
+		},
+
+		test_checkStartOfBlock4 : function()
+		{
+			var p = doc.getById( 'playground' );
+			p.setHtml( '<p>Test</p>' );
+			p = p.getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			range.setStartAt( p.getFirst(), CKEDITOR.POSITION_BEFORE_END );
+			range.collapse( true );
+
+			assert.isFalse( range.checkStartOfBlock() );
+		},
+
+		test_checkStartOfBlock5 : function()
+		{
+			var el = doc.getById( 'playground' );
+			el.setHtml( '<p> Test </p>' );
+			el = el.getFirst().getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			// IE trims the space in the beginning of text nodes in our case.
+			// So, let's just check it and make it pass.
+			range.setStart( el, ( el.substring( 0, 1 ) == 'T' ) ? 0 : 1 );
+			range.collapse( true );
+
+			assert.isTrue( range.checkStartOfBlock() );
+		},
+
+		test_checkStartOfBlock6 : function()
+		{
+			var p = doc.getById( 'playground' );
+			p.setHtml( '<p> Test </p>' );
+			p = p.getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			range.setStart( p.getFirst(), 5 );
+			range.collapse( true );
+
+			assert.isFalse( range.checkStartOfBlock() );
+		},
+
+		test_checkStartOfBlock7 : function()
+		{
+			var el = doc.getById( 'playground' );
+			el.setHtml( '<p><b>Test</b></p>' );
+			el = el.getFirst().getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.selectNodeContents( el );
+
+			assert.isTrue( range.checkStartOfBlock() );
+		},
+
+		test_checkStartOfBlock8 : function()
+		{
+			var el = doc.getById( 'playground' );
+			el.setHtml( '<p>A<b>Test</b>B</p>' );
+			el = el.getFirst().getFirst().getNext();
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.selectNodeContents( el );
+
+			assert.isFalse( range.checkStartOfBlock() );
+		},
+
+		test_checkEndOfBlock1 : function()
+		{
+			var p = doc.getById( 'playground' );
+			p.setHtml( '<p>Test</p>' );
+			p = p.getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			range.setStartAt( p, CKEDITOR.POSITION_AFTER_START );
+			range.collapse( true );
+
+			assert.isFalse( range.checkEndOfBlock() );
+		},
+
+		test_checkEndOfBlock2 : function()
+		{
+			var p = doc.getById( 'playground' );
+			p.setHtml( '<p>Test</p>' );
+			p = p.getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			range.setStartAt( p, CKEDITOR.POSITION_BEFORE_END );
+			range.collapse( true );
+
+			assert.isTrue( range.checkEndOfBlock() );
+		},
+
+		test_checkEndOfBlock3 : function()
+		{
+			var p = doc.getById( 'playground' );
+			p.setHtml( '<p>Test</p>' );
+			p = p.getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			range.setStartAt( p.getFirst(), CKEDITOR.POSITION_AFTER_START );
+			range.collapse( true );
+
+			assert.isFalse( range.checkEndOfBlock() );
+		},
+
+		test_checkEndOfBlock4 : function()
+		{
+			var p = doc.getById( 'playground' );
+			p.setHtml( '<p>Test</p>' );
+			p = p.getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			range.setStartAt( p.getFirst(), CKEDITOR.POSITION_BEFORE_END );
+			range.collapse( true );
+
+			assert.isTrue( range.checkEndOfBlock() );
+		},
+
+		test_checkEndOfBlock5 : function()
+		{
+			var p = doc.getById( 'playground' );
+			p.setHtml( '<p> Test </p>' );
+			p = p.getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			range.setStart( p.getFirst(), 1 );
+			range.collapse( true );
+
+			assert.isFalse( range.checkEndOfBlock() );
+		},
+
+		test_checkEndOfBlock6 : function()
+		{
+			var p = doc.getById( 'playground' );
+			p.setHtml( '<p> Test </p>' );
+			p = p.getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			range.setStart( p.getFirst(), 5 );
+			range.collapse( true );
+
+			assert.isTrue( range.checkEndOfBlock() );
+		},
+
+		test_checkEndOfBlock7 : function()
+		{
+			var el = doc.getById( 'playground' );
+			el.setHtml( '<p><b>Test</b></p>' );
+			el = el.getFirst().getFirst();
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.selectNodeContents( el );
+
+			assert.isTrue( range.checkEndOfBlock() );
+		},
+
+		test_checkEndOfBlock8 : function()
+		{
+			var el = doc.getById( 'playground' );
+			el.setHtml( '<p>A<b>Test</b>B</p>' );
+			el = el.getFirst().getFirst().getNext();
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.selectNodeContents( el );
+
+			assert.isFalse( range.checkEndOfBlock() );
+		},
+
+		/**
+		 *  Test trim with text range.
+		 */
+		test_trim : function()
+		{
+			var text = doc.getById( '_trim_ct').getFirst();
+			var range = new CKEDITOR.dom.range();
+			range.setStart(text, 2);
+			range.setEnd(text, 6);
+			range.trim();
+
+			assert.isFalse( range.collapsed );
+			assert.isTrue( range.startContainer.equals( doc.getById( '_trim_ct') ) );
+			assert.areEqual( range.startOffset, 1 );
+			assert.isTrue( range.endContainer.equals( doc.getById( '_trim_ct') ) );
+			assert.areEqual( range.endOffset, 2 );
+		},
+
+		/**
+		 * Trim range which collapsed at text node boundary.
+		 */
+		test_trim_3790 : function()
+		{
+
+			var ct = doc.getById( '_trim_ct');
+			ct.setHtml( '<span id="_SPAN1">text</span>' );
+			var text = doc.getById( '_trim_ct').getFirst();
+
+			// <span id="_SPAN1">text^</span>
+			var range = new CKEDITOR.dom.range();
+			range.setStartAt( doc.getById( '_SPAN1' ).getFirst(), CKEDITOR.POSITION_BEFORE_END );
+			range.collapse( true );
+			range.trim( true );
+
+			// <span id="_SPAN1">text^</span>
+			assert.isTrue( range.collapsed );
+			assert.areEqual( doc.getById( '_SPAN1').$, range.startContainer.$ );
+			assert.areEqual( range.startOffset, 1 );
+		},
+
+		/**
+		 * Trim range which collapsed inside text node.
+		 */
+		test_trim_3790_2 : function()
+		{
+
+			var ct = doc.getById( '_trim_ct');
+			ct.setHtml( '<span id="_SPAN1">text</span>' );
+			var text = doc.getById( '_trim_ct').getFirst();
+
+			// <span id="_SPAN1">te^xt</span>
+			var range = new CKEDITOR.dom.range();
+			range.setStart( doc.getById( '_SPAN1' ).getFirst(), 2 );
+			range.collapse( true );
+			range.trim( true );
+
+			// <span id="_SPAN1">te^xt</span>
+			assert.isTrue( range.collapsed );
+			assert.areEqual( doc.getById( '_SPAN1').$, range.startContainer.$ );
+			assert.areEqual( range.startOffset, 1 );
+		},
 		/////////////
 
@@ -1523,21 +2244,5 @@
 })() );
 
-//window.onload = function()
-//{
-//	// Local references.
-//	var assert			= CKEDITOR.test.assert;
-//	var getInnerHtml	= CKEDITOR.test.getInnerHtml;
-
-//	var doc = new CKEDITOR.dom.document( document );
-
-//			doc.getById( '_EnlargeP' ).setHtml( 'this <i>is some </i>sample text' );
-
-//			var range = new CKEDITOR.dom.range( doc );
-//			range.setStart( doc.getById( '_EnlargeP' ), 0 );
-//			range.setEnd( doc.getById( '_EnlargeP' ).getChild( 1 ), 0 );
-
-//			range.enlarge( CKEDITOR.ENLARGE_ELEMENT );
-//}
-
+//window.onload = tests.test_trim;
 	//]]>
 	</script>
@@ -1547,5 +2252,5 @@
 	<div id="playground2" style="visibility: hidden">
 		<h1>
-			Test page for FCKeditor
+			Test page for CKEditor
 		</h1>
 		<p id="_P">
@@ -1661,5 +2366,5 @@
 			<img src="img.gif" alt="" /></p>
 		<p>
-			The above is the FCKeditor logo loaded from the FCKeditor.net web site.</p>
+			The above is the CKEditor logo loaded from the FCKeditor.net web site.</p>
 		<p><b id="_B1">Line 1<br />Line 2<br /><i id="_I1">Line 3</i></b></p>
 		<p id="_EnlargeP"> Test <b id="_EnlargeB"> <i id="_EnlargeI">  Enlarge</i> this</b>   </p>
@@ -1670,4 +2375,15 @@
 		<p id="_EnlargeP5">Test <i id="_EnlargeI5">Enlarge</i></p>
 		<p id="_EnlargeP6">Test <i id="_EnlargeI6"><b></b>Enlarge</i></p>
+		<p id="_EnlargeP7">Test <span id="S1"></span>List<br/ >Item Enlarge</p>
+		<p id="_EnlargeP8">Test <span id="S2"></span>List<span id="E2"></span> <br /><br />Item Enlarge</p>
+		<p id="_EnlargeP9">Test List <br /><span id="S3"></span><br />Item Enlarge</p>
+		<p id="_EnlargeP10">Test List <br /><br />Item<span id="S4"></span> Enlarge</p>
+		<p id="_EnlargeP11">Test <strong>Block<span id="S5"></span></strong><br /><br />Enlarge</p>
+		<div id="_EnlargeP12">Test<span id="S6"></span> Block <div>Enlarge</div></div>
+		<div>Test <div id="_EnlargeP13">Blo<span id="S7"></span>ck</div> Enlarge</div>
+		<p id="_EnlargeP14"><span id="S8"></span></p>
+		<p id="_EnlargeP15">Test <span id="S9"></span>List<br/ >Item Enlarge</p>
+		<p id="_EnlargeP16">Test <strong>Block<span id="S10"></span></strong><br /><br />Enlarge</p>
+		<p id="_trim_ct">Test trim</p>
 	</div>
 	<script type="text/javascript">
Index: /CKEditor/branches/versions/3.0.x/_source/tests/core/dom/text.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/tests/core/dom/text.html	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/tests/core/dom/text.html	(revision 3747)
@@ -11,5 +11,6 @@
 	//<![CDATA[
 
-CKEDITOR.test.addTestCase( (function()
+var tc;
+CKEDITOR.test.addTestCase( tc = (function()
 {
 	// Local reference to the "assert" object.
@@ -17,4 +18,5 @@
 
 	return {
+
 		test_substring1 : function()
 		{
@@ -59,7 +61,63 @@
 		},
 
+		test_split1 : function()
+		{
+			var div = CKEDITOR.document.getById( 'playground' );
+			div.setHtml( '01234' );
+
+			var text = div.getFirst(),
+				next = text.split( 3 );
+
+			assert.areSame( '012', text.getText(), 'text.getText() is wrong' );
+			assert.areSame( '34', next.getText(), 'next.getText() is wrong' );
+
+			assert.areSame( div.$, next.$.parentNode, 'parentNode is wrong' );
+			assert.areSame( text.$, next.$.previousSibling, 'sibling is wrong' );
+		},
+
+		test_split2 : function()
+		{
+			var div = CKEDITOR.document.getById( 'playground' );
+			div.setHtml( '01234' );
+
+			var text = div.getFirst(),
+				next = text.split( 5 );
+
+			assert.areSame( '01234', text.getText(), 'text.getText() is wrong' );
+			assert.areSame( '', next.getText(), 'next.getText() is wrong' );
+
+			assert.areSame( div.$, next.$.parentNode, 'parentNode is wrong' );
+			assert.areSame( text.$, next.$.previousSibling, 'sibling is wrong' );
+		},
+
+		test_split3 : function()
+		{
+			var div = CKEDITOR.document.getById( 'playground' );
+			div.setHtml( '01234' );
+
+			var text = div.getFirst(),
+				next = text.split( 0 );
+
+			assert.areSame( '', text.getText(), 'text.getText() is wrong' );
+			assert.areSame( '01234', next.getText(), 'next.getText() is wrong' );
+
+			assert.areSame( div.$, next.$.parentNode, 'parentNode is wrong' );
+			assert.areSame( text.$, next.$.previousSibling, 'sibling is wrong' );
+		},
+
+		test_split_3436 : function()
+		{
+			var parent = CKEDITOR.document.getById( 'playground2' );
+			parent.setHtml( 'A B <b>C </b>D E' );
+			parent.getFirst().split( 2 );	// Right before "B"
+			parent.getChildren().getItem( 3 ).split( 2 );	// Right before "E"
+			assert.areSame( 5, parent.getChildren().count(), 'Child nodes num doesn\'t match after split' );
+		},
+
 		name : document.title
 	};
 })() );
+
+//window.onload = tc.test_split_3436;
 
 	//]]>
@@ -67,5 +125,6 @@
 </head>
 <body>
-	<p>0123456789</p>
+	<p id="playground"></p>
+	<p id="playground2"></p>
 </body>
 </html>
Index: /CKEditor/branches/versions/3.0.x/_source/tests/core/dom/walker.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/tests/core/dom/walker.html	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/tests/core/dom/walker.html	(revision 3747)
@@ -0,0 +1,342 @@
+<!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>CKEDITOR.dom.walker</title>
+	<link rel="stylesheet" type="text/css" href="../../test.css" />
+	<script type="text/javascript" src="../../../../ckeditor_source.js"></script> <!-- %REMOVE_LINE%
+	<script type="text/javascript" src="../../../ckeditor.js"></script>
+	%REMOVE_LINE% -->
+	<script type="text/javascript" src="../../test.js"></script>
+	<script type="text/javascript">
+	//<![CDATA[
+
+var tc;
+
+CKEDITOR.test.addTestCase( tc = (function()
+{
+	// Local reference to the "assert" object.
+	var assert = CKEDITOR.test.assert;
+
+	var doc = new CKEDITOR.dom.document( document );
+
+	function assertNodesList( wanted, nodes )
+	{
+		var simplifiedNodes = [];
+
+		for ( var i = 0 ; i < nodes.length ; i++ )
+			simplifiedNodes.push( nodes[i].type == CKEDITOR.NODE_TEXT ? nodes[i].getText() : ( '<' + nodes[i].getName() + '>' ) );
+
+		assert.areSame( wanted.toString(), simplifiedNodes.toString() );
+	}
+
+	return {
+
+		test_collapsed : function()
+		{
+			var node = doc.getById( 'playground' );
+			node.setHtml( '<p>Test</p>' );
+
+			var range = new CKEDITOR.dom.range( doc );
+
+			range.setStartAt( node.getFirst(), CKEDITOR.POSITION_AFTER_START );
+			range.collapse( true );
+
+			var walker = new CKEDITOR.dom.walker( range );
+
+			assert.isNull( walker.next() );
+		},
+
+		test_next_1 : function()
+		{
+			var node = doc.getById( 'playground' );
+			node.setHtml( '<p>This is <b>a <i>simple</i></b> test</p>' );
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.selectNodeContents( node );
+
+			var walker = new CKEDITOR.dom.walker( range );
+
+			var nodes = [];
+			while ( ( node = walker.next() ) )
+				nodes.push( node );
+
+			assertNodesList( [ '<p>', 'This is ', '<b>', 'a ', '<i>', 'simple', ' test' ], nodes );
+		},
+
+		test_next_2 : function()
+		{
+			var node = doc.getById( 'playground' );
+			node.setHtml( '<p>This is <b>a <i>simple</i></b> test</p>' );
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.setStartAt( node.getFirst(), CKEDITOR.POSITION_AFTER_START );
+			range.setEnd( node.getChild( [0,1,1,0] ), 2 );
+
+			var walker = new CKEDITOR.dom.walker( range );
+
+			var nodes = [];
+			while ( ( node = walker.next() ) )
+				nodes.push( node );
+
+			assertNodesList( [ 'This is ', '<b>', 'a ', '<i>', 'si' ], nodes );
+		},
+
+		test_next_3 : function()
+		{
+			var node = doc.getById( 'playground' );
+			node.setHtml( '<p>Test</p><h1>More</h1>' );
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.setStartAt( node.getChild( 1 ), CKEDITOR.POSITION_BEFORE_START );
+			range.setEndAt( node.getChild( 1 ), CKEDITOR.POSITION_AFTER_START );
+
+			var walker = new CKEDITOR.dom.walker( range );
+
+			var nodes = [];
+			while ( ( node = walker.next() ) )
+				nodes.push( node );
+
+			assertNodesList( [ '<h1>' ], nodes );
+		},
+
+		test_next_4 : function()
+		{
+			var node = doc.getById( 'playground' );
+			node.setHtml( '<p>Test</p><h1>More</h1>' );
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.setStartAt( node.getChild( 0 ), CKEDITOR.POSITION_BEFORE_END );
+			range.setEndAt( node.getChild( 0 ), CKEDITOR.POSITION_AFTER_END );
+
+			var walker = new CKEDITOR.dom.walker( range );
+
+			var nodes = [];
+			while ( ( node = walker.next() ) )
+				nodes.push( node );
+
+			assertNodesList( [], nodes );
+		},
+
+		test_next_5 : function()
+		{
+			var node = doc.getById( 'playground' );
+			node.setHtml( '<p>Test</p><h1>More</h1>' );
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.setStartAt( node.getChild( 0 ), CKEDITOR.POSITION_BEFORE_END );
+			range.setEndAt( node.getChild( 1 ), CKEDITOR.POSITION_AFTER_START );
+
+			var walker = new CKEDITOR.dom.walker( range );
+
+			var nodes = [];
+			while ( ( node = walker.next() ) )
+				nodes.push( node );
+
+			assertNodesList( [ '<h1>' ], nodes );
+		},
+
+		test_previous_1 : function()
+		{
+			var node = doc.getById( 'playground' );
+			node.setHtml( '<p>This is <b>a <i>simple</i></b> test</p>' );
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.selectNodeContents( node );
+
+			var walker = new CKEDITOR.dom.walker( range );
+
+			var nodes = [];
+			while ( ( node = walker.previous() ) )
+				nodes.push( node );
+
+			assertNodesList( [ '<p>', ' test', '<b>', '<i>', 'simple', 'a ', 'This is ' ], nodes );
+		},
+
+		test_previous_2 : function()
+		{
+			var node = doc.getById( 'playground' );
+			node.setHtml( '<p>This is <b>a <i>simple</i></b> test</p>' );
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.setEnd( node.getChild( [0,0] ), 2 );
+			range.setEnd( node.getChild( [0,1,1,0] ), 2 );
+
+			var walker = new CKEDITOR.dom.walker( range );
+
+			var nodes = [];
+			while ( ( node = walker.previous() ) )
+				nodes.push( node );
+
+			assertNodesList( [ 'si', 'a ', 'is is ' ], nodes );
+		},
+
+		test_previous_3 : function()
+		{
+			var node = doc.getById( 'playground' );
+			node.setHtml( '<p>Test</p><h1>More</h1>' );
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.setStartAt( node.getChild( 1 ), CKEDITOR.POSITION_BEFORE_START );
+			range.setEndAt( node.getChild( 1 ), CKEDITOR.POSITION_AFTER_START );
+
+			var walker = new CKEDITOR.dom.walker( range );
+
+			var nodes = [];
+			while ( ( node = walker.previous() ) )
+				nodes.push( node );
+
+			assertNodesList( [ '' ], nodes );
+		},
+
+		test_previous_4 : function()
+		{
+			var node = doc.getById( 'playground' );
+			node.setHtml( '<p>Test</p><h1>More</h1>' );
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.setStartAt( node.getChild( 0 ), CKEDITOR.POSITION_BEFORE_END );
+			range.setEndAt( node.getChild( 0 ), CKEDITOR.POSITION_AFTER_END );
+
+			var walker = new CKEDITOR.dom.walker( range );
+
+			var nodes = [];
+			while ( ( node = walker.previous() ) )
+				nodes.push( node );
+
+			assertNodesList( [ '<p>' ], nodes );
+		},
+
+		test_previous_5 : function()
+		{
+			var node = doc.getById( 'playground' );
+			node.setHtml( '<p>Test</p><h1>More</h1>' );
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.setStartAt( node.getChild( 0 ), CKEDITOR.POSITION_BEFORE_END );
+			range.setEndAt( node.getChild( 1 ), CKEDITOR.POSITION_AFTER_START );
+
+			var walker = new CKEDITOR.dom.walker( range );
+
+			var nodes = [];
+			while ( ( node = walker.previous() ) )
+				nodes.push( node );
+
+			assertNodesList( [ '<p>' ], nodes );
+		},
+
+		/**
+		 *  Test guard function is invoked on every move when iterating forward.
+		 */
+		test_guard_1 : function()
+		{
+			var node = doc.getById( 'playground' );
+			node.setHtml( '<p>This is <b>a <i>simple</i></b> test</p>' );
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.selectNodeContents( node );
+
+			var walker = new CKEDITOR.dom.walker( range );
+			var nodes = [];
+
+			walker.guard = function( node )
+			{
+				nodes.push( node );
+				return true;
+			};
+
+			while ( ( node = walker.next() ) )
+			{ /*jsl:pass*/ }
+
+			assertNodesList( [ '<p>', 'This is ', '<b>', 'a ', '<i>', 'simple', '<i>', '<b>',' test' , '<p>' ], nodes );
+		},
+
+		/**
+		 *  Test guard function is invoked on every move when iterating backward.
+		 */
+		test_guard_2 : function()
+		{
+			var node = doc.getById( 'playground' );
+			node.setHtml( '<p>This is <b>a <i>simple</i></b> test</p>' );
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.selectNodeContents( node );
+
+			var walker = new CKEDITOR.dom.walker( range );
+			var nodes = [];
+
+			walker.guard = function( node )
+			{
+				nodes.push( node );
+				return true;
+			};
+
+			while ( ( node = walker.previous() ) )
+			{ /*jsl:pass*/ }
+
+			assertNodesList( [ '<p>', ' test', '<b>', '<i>', 'simple', '<i>', 'a ', '<b>', 'This is ', '<p>' ], nodes );
+		},
+
+		/**
+		 *  Test evaluator function is invoked on every  step when iterating backward.
+		 */
+		test_evaluator_1 : function()
+		{
+			var node = doc.getById( 'playground' );
+			node.setHtml( '<p>This is <b>a <i>simple</i></b> test</p>' );
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.selectNodeContents( node );
+
+			var walker = new CKEDITOR.dom.walker( range );
+			var nodes = [];
+
+			walker.evaluator = function( node )
+			{
+				nodes.push( node );
+				return true;
+			};
+
+			while ( ( node = walker.previous() ) )
+			{ /*jsl:pass*/ }
+
+			assertNodesList( [ '<p>', ' test', '<b>', '<i>', 'simple', 'a ', 'This is ' ], nodes );
+		},
+		/**
+		 * Test walker stop at empty endContainer.
+		 */
+		test_stopGuard : function()
+		{
+			var node = doc.getById( 'playground' );
+			node.setHtml( '<span></span>afterEnd' );
+			var endContainer = node.getFirst();
+			var range = new CKEDITOR.dom.range( doc );
+			range.selectNodeContents( node );
+			range.setEndAt( endContainer, CKEDITOR.POSITION_AFTER_START );
+
+			var walker = new CKEDITOR.dom.walker( range );
+			var nodes = [];
+
+			walker.evaluator = function( node )
+			{
+				nodes.push( node );
+				return true;
+			};
+
+			while ( ( node = walker.next() ) )
+			{ /*jsl:pass*/ }
+
+			assertNodesList( [ '<span>' ], nodes );
+
+		},
+		name : document.title
+	};
+})() );
+
+//window.onload = tc.test_stopGuard;
+	//]]>
+	</script>
+</head>
+<body>
+	<div id="playground"></div>
+</body>
+</html>
Index: /CKEditor/branches/versions/3.0.x/_source/tests/core/env.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/tests/core/env.html	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/tests/core/env.html	(revision 3747)
@@ -37,4 +37,10 @@
 		},
 
+
+		test_quirks : function()
+		{
+			assert.isFalse( CKEDITOR.env.quirks );
+		},
+
 		name : document.title
 	};
Index: /CKEditor/branches/versions/3.0.x/_source/tests/core/event.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/tests/core/event.html	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/tests/core/event.html	(revision 3747)
@@ -450,4 +450,32 @@
 		},
 
+		test_event_removeListener : function()
+		{
+			// Create a testObject and implement CKEDITOR.event on it.
+			var testObject = {};
+			CKEDITOR.event.implementOn( testObject );
+
+			var counter = 0;
+
+			// Add two listeners for the same event "A".
+
+			testObject.on( 'A', function( ev )
+				{
+					counter++;
+					ev.removeListener();
+				});
+
+			testObject.on( 'A', function( ev )
+				{
+					counter++;
+				});
+
+			// Fire the event twice.
+			testObject.fire( 'A' );
+			testObject.fire( 'A' );
+
+			assert.areSame( 3, counter );
+		},
+
 		name : document.title
 	};
Index: /CKEditor/branches/versions/3.0.x/_source/tests/core/htmlparser/fragment.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/tests/core/htmlparser/fragment.html	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/tests/core/htmlparser/fragment.html	(revision 3747)
@@ -1,3 +1,3 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+﻿<!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>
@@ -11,8 +11,20 @@
 	//<![CDATA[
 
-CKEDITOR.test.addTestCase( (function()
+var tc;
+
+CKEDITOR.test.addTestCase( tc = (function()
 {
 	// Local reference to the "assert" object.
 	var assert = CKEDITOR.test.assert;
+
+	function testParser( input, expected )
+	{
+		var fragment = CKEDITOR.htmlParser.fragment.fromHtml( input, 'p' ),
+			writer = new CKEDITOR.htmlParser.basicWriter();
+
+		fragment.writeHtml( writer );
+
+		assert.areSame( expected, writer.getHtml( true ) );
+	}
 
 	return {
@@ -26,7 +38,148 @@
 		},
 
+		test_parser_1 : function()
+		{
+			testParser(	'<table><tr><td>1</td><p><b>2</b> Test</p><td>3</td></tr></table>',
+						'<p><b>2</b> Test</p><table><tr><td>1</td><td>3</td></tr></table>' );
+		},
+
+		test_parser_2 : function()
+		{
+			testParser(	'<b><table><tr><td>1</td><td>2</td></tr></table></b>',
+						'<table><tr><td><b>1</b></td><td><b>2</b></td></tr></table>' );
+		},
+
+		test_parser_3_1 : function()
+		{
+			testParser(	'<b><i>Table:<table><tr><td>1</td><td>2</td></tr></table></i></b>',
+						'<p><b><i>Table:</i></b></p><table><tr><td><b><i>1</i></b></td><td><b><i>2</i></b></td></tr></table>' );
+		},
+
+		test_parser_3_2 : function()
+		{
+			testParser(	'<b><i><table><tr><td>1</td><td>2</td></tr></table>Table</i></b>',
+						'<table><tr><td><b><i>1</i></b></td><td><b><i>2</i></b></td></tr></table><p><b><i>Table</i></b></p>' );
+		},
+
+		test_parser_4 : function()
+		{
+			testParser(	'<b><i>Test',
+						'<p><b><i>Test</i></b></p>' );
+		},
+
+		test_parser_5 : function()
+		{
+			testParser(	'<p>Para 1<p>Para 2<p>Para 3',
+						'<p>Para 1</p><p>Para 2</p><p>Para 3</p>' );
+		},
+
+		test_parser_6 : function()
+		{
+			testParser(	'<b>A</b><i>B</i>',
+						'<p><b>A</b><i>B</i></p>' );
+		},
+
+		test_parser_7 : function()
+		{
+			testParser(	'<p>Para 1<hr>Para 2<h1>Para 3',
+						'<p>Para 1</p><hr /><p>Para 2</p><h1>Para 3</h1>' );
+		},
+
+		/**
+		 * Test remove empty inline element.
+		 */
+		test_parser_8 : function()
+		{
+			testParser(	'<p><b></b>text</p>',
+						'<p>text</p>' );
+		},
+
+		/**
+		 *  Test remove multiple empty inline elements.
+		 */
+		test_parser_8_2 : function()
+		{
+			testParser(	'<p><b><i></b></i>text</p>',
+						'<p>text</p>' );
+		},
+
+		/**
+		 * Test fixing malformed inline element closing.
+		 */
+		test_parser_9 : function()
+		{
+			testParser(	'<p><b>bold<i>ita</b>lic</i></p>',
+						'<p><b>bold<i>ita</i></b><i>lic</i></p>' );
+		},
+
+		test_ticket_10 : function()
+		{
+			testParser(	'<table><tbody><tr><td>A<b></b></td></tr></tbody></table>',
+						'<table><tbody><tr><td>A</td></tr></tbody></table>' );
+		},
+
+		/**
+		 *  Test fixing paragraph inside table row.
+		 */
+		test_ticket_3195 : function()
+		{
+			testParser(	'<table><tr><td>1</td><p>2</p><td>3</td></tr></table>',
+						'<p>2</p><table><tr><td>1</td><td>3</td></tr></table>' );
+		},
+
+		/**
+		 *  Test fixing paragraph inside list.
+		 */
+		test_ticket_3195_2 : function()
+		{
+			testParser(	'<ul><li>1</li><p>2</p><li>3</li></ul>',
+						'<p>2</p><ul><li>1</li><li>3</li></ul>' );
+		},
+
+		/**
+		 *  Test fixing 'div' inside paragraph.
+		 */
+		test_ticket_3195_3 : function()
+		{
+			testParser(	'<p>1<div>2</div><span>3</span></p>',
+						'<p>1</p><div>2</div><p><span>3</span></p>' );
+		},
+
+		test_ticket_3441 : function()
+		{
+			testParser(	'<p><b>Test</b></p><script type="test">var a = "<A Href=xxx>Testing</ A>";\nGo();<\/script>',
+						'<p><b>Test</b></p><script type="test">var a = "<A Href=xxx>Testing</ A>";\nGo();<\/script>' );
+		},
+
+		test_ticket_3585 : function()
+		{
+			testParser(	'<p><br />\t\r\n</p>',
+						'<p><br /></p>' );
+		},
+
+		test_ticket_3585_1 : function()
+		{
+			testParser(	'<p><br />text\t\r\n</p>',
+						'<p><br />text</p>' );
+		},
+
+		test_ticket_3585_2 : function()
+		{
+			testParser(	'<b>inline </b>\n<p>paragraph\t\r\n</p>\t\r\n',
+						'<p><b>inline </b></p><p>paragraph</p>' );
+		},
+
+		test_ticket_3744 : function()
+		{
+			testParser(	'<div><b><font><span>A</font></span></b></div><div>X</div>',
+						'<div><b><font><span>A</span></font></b></div><div>X</div>' );
+		},
+
 		name : document.title
 	};
 })() );
+
+// Uncomment the following to run a single test.
+// window.onload = tc.test_ticket_3585_2;
 
 	//]]>
Index: /CKEditor/branches/versions/3.0.x/_source/tests/core/htmlparser/htmlparser.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/tests/core/htmlparser/htmlparser.html	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/tests/core/htmlparser/htmlparser.html	(revision 3747)
@@ -0,0 +1,93 @@
+<!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>CKEDITOR.htmlParser</title>
+	<link rel="stylesheet" type="text/css" href="../../test.css" />
+	<script type="text/javascript" src="../../../../ckeditor_source.js"></script> <!-- %REMOVE_LINE%
+	<script type="text/javascript" src="../../../ckeditor.js"></script>
+	%REMOVE_LINE% -->
+	<script type="text/javascript" src="../../test.js"></script>
+	<script type="text/javascript">
+	//<![CDATA[
+
+CKEDITOR.plugins.load( 'htmlwriter' );
+var tc;
+CKEDITOR.test.addTestCase( tc = ( function()
+{
+	// Local reference to the "assert" object.
+	var assert = YAHOO.util.Assert;
+
+	/**
+	 * Wrapper of the combination of htmlParser with htmlWriter, for convenience of
+	 * testing, formatting of writer has been disabled.
+	 */
+	function htmlParse( htmlString , writerConfig)
+	{
+		var writer = new CKEDITOR.htmlParser.basicWriter();
+		writer.reset();
+		var fragment = CKEDITOR.htmlParser.fragment.fromHtml( htmlString );
+		fragment.writeHtml( writer );
+		return writer.getHtml();
+	}
+
+	/**
+	 * IE always returning CRLF for line-feed, so remove it when retrieving
+	 * pre-formated text from text area.
+	 */
+	function getTextAreaValue( id )
+	{
+		return CKEDITOR.document.getById( id ).getValue().replace( /\r/gi, '' );
+	}
+
+	return {
+		/**
+		 * Test <pre> tag formatting.
+		 */
+		test_fromHtml_3715 : function()
+		{
+			assert.areSame( getTextAreaValue( 'htmlResult1' ),
+				htmlParse( getTextAreaValue( 'htmlOriginal1' ) ),
+				'<pre> parsing result doesn\'t match.' );
+		},
+
+		/**
+		 * Test compress empty spaces within text.
+		 */
+		test_fromHtml_3715_2 : function()
+		{
+			assert.areSame( getTextAreaValue( 'htmlResult2' ),
+				htmlParse( getTextAreaValue( 'htmlOriginal2' ) ),
+				'Spaces compressing result doesn\'t match.' );
+		},
+		name :document.title
+	};
+} )() );
+
+//window.onload = tc.test_fromHtml_3715;
+	//]]>
+	</script>
+</head>
+<body>
+
+	<textarea id="htmlOriginal1"><pre>
+	text<b>
+inside<br /> <br /></b>
+
+pre
+</pre></textarea>
+	<textarea id="htmlResult1"><pre>
+	text<b>
+inside
+
+</b>
+
+pre
+</pre></textarea>
+
+<textarea id="htmlOriginal2"><p>
+	para		graph
+</p><b>compress   spaces</b></textarea>
+
+<textarea id="htmlResult2"><p>para graph </p><b>compress spaces</b></textarea>
+</body>
+</html>
Index: /CKEditor/branches/versions/3.0.x/_source/tests/core/plugins.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/tests/core/plugins.html	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/tests/core/plugins.html	(revision 3747)
@@ -0,0 +1,47 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+	<title>CKEDITOR.plugins</title>
+	<link rel="stylesheet" type="text/css" href="../test.css" />
+	<script type="text/javascript" src="../../../ckeditor_source.js"></script> <!-- %REMOVE_LINE%
+	<script type="text/javascript" src="../../ckeditor.js"></script>
+	%REMOVE_LINE% -->
+	<script type="text/javascript" src="../test.js"></script>
+	<script type="text/javascript">
+	//<![CDATA[
+
+CKEDITOR.test.addTestCase( (function()
+{
+	// Local reference to the "assert" object.
+	var assert = CKEDITOR.test.assert;
+
+	return {
+
+		/**
+		 * Test loading self defined external plugin file paths.
+		 */
+		test_addExternal : function()
+		{
+			CKEDITOR.plugins.addExternal( 'myplugin',
+			'_source/' + // %REMOVE_LINE%
+			'tests/core/plugins/myplugins/sample/', 'my_plugin.js' );
+
+			CKEDITOR.plugins.load( 'myplugin', function(){
+				this.resume( function(){
+
+					assert.isTrue( CKEDITOR.plugins.get( 'myplugin' ).definition );
+				} );
+			}, this );
+			this.wait();
+		},
+
+		name : document.title
+	};
+})() );
+
+	//]]>
+	</script>
+</head>
+<body>
+</body>
+</html>
Index: /CKEditor/branches/versions/3.0.x/_source/tests/core/plugins/myplugins/sample/my_plugin.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/tests/core/plugins/myplugins/sample/my_plugin.js	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/tests/core/plugins/myplugins/sample/my_plugin.js	(revision 3747)
@@ -0,0 +1,3 @@
+CKEDITOR.plugins.add( 'myplugin' , {
+	definition :  true
+} );
Index: /CKEditor/branches/versions/3.0.x/_source/tests/core/tools.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/tests/core/tools.html	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/tests/core/tools.html	(revision 3747)
@@ -126,4 +126,28 @@
 		},
 
+		test_clone : function()
+		{
+			var obj =
+			{
+				name : 'John',
+				cars :
+				{
+					Mercedes : { color : 'blue' },
+					Porsche : { color : 'red' }
+				}
+			};
+
+			var clone = CKEDITOR.tools.clone( obj );
+
+			clone.name = 'Paul';
+			clone.cars.Porsche.color = 'silver';
+
+			assert.areSame( 'John', obj.name );
+			assert.areSame( 'Paul', clone.name );
+
+			assert.areSame( 'red', obj.cars.Porsche.color );
+			assert.areSame( 'silver', clone.cars.Porsche.color );
+		},
+
 		name : document.title
 	};
Index: /CKEditor/branches/versions/3.0.x/_source/tests/plugins/domiterator/domiterator.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/tests/plugins/domiterator/domiterator.html	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/tests/plugins/domiterator/domiterator.html	(revision 3747)
@@ -0,0 +1,236 @@
+<!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: domiterator</title>
+	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+	<link rel="stylesheet" type="text/css" href="../../test.css" />
+	<script type="text/javascript" src="../../../../ckeditor_source.js"></script>
+	<script type="text/javascript" src="../../test.js"></script>
+	<script type="text/javascript">
+
+CKEDITOR.plugins.load( [ 'htmldataprocessor', 'htmlwriter', 'domiterator'] );
+
+
+	</script>
+	<script type="text/javascript">
+	//<![CDATA[
+
+/**
+ * IE always returning CRLF for linefeed, so remove it when retrieve pre-formated text from text area.
+ * @param {Object} id
+ */
+function getTextAreaValue( id )
+{
+	return CKEDITOR.document.getById( id ).getValue().replace(/\r/gi,'');
+}
+
+CKEDITOR.test.addTestCase( (function()
+{
+
+	// Local references.
+	var assert = CKEDITOR.test.assert,
+		arrayAssert = YAHOO.util.ArrayAssert;
+
+	var doc = new CKEDITOR.dom.document( document );
+
+	// In these tests, we may "reset" the writer rules to avoid it formatting
+	// the output, making the assertion easier to the done. We don't need to
+	// test formatting features here, so this is ok.
+	var getDataProcessor = function()
+	{
+		var dataProcessor = new CKEDITOR.htmlDataProcessor();
+		dataProcessor.writer._.rules = [];
+		return dataProcessor;
+	};
+
+	/**
+	 * IE always returning CRLF for line-feed, so remove it when retrieving
+	 * pre-formated text from text area.
+	 */
+	function getTextAreaValue( id )
+	{
+		return CKEDITOR.document.getById( id ).getValue().replace( /\r/gi, '' );
+	}
+
+	function assumeElementContentAreSame( container, textareaId )
+	{
+		if( typeof container == 'string' )
+			container = doc.getById( container );
+		//Assume result document content
+		var html = getDataProcessor().toDataFormat( container.getHtml() );
+		assert.areSame( getTextAreaValue( textareaId ) , html );
+	}
+
+	function assumeElementAreSame( element, textareaId )
+	{
+		if( typeof element == 'string' )
+			element = doc.getById( element );
+		//Assume result document content
+		var html = getDataProcessor().toDataFormat( element.getOuterHtml() );
+		assert.areSame( getTextAreaValue( textareaId ) , html );
+	}
+
+	/**
+	 *
+	 * @param {String|CKEDITOR.dom.range} containerId|range Either the id of html container which contents are treated as range, or a exisiting range object.
+	 * @param {Object} iteratorOption
+	 * @param {Array} expectedTagList block elements tagName list in iteration orders.
+	 */
+	function assumeIterationSameAs( containerIdOrRange, iteratorOption, expectedTagList )
+	{
+		var range;
+		if( typeof containerIdOrRange == 'string' )
+		{
+			range = new CKEDITOR.dom.range( doc );
+			range.selectNodeContents( doc.getById( containerIdOrRange ) );
+		}
+		else
+			range = containerIdOrRange;
+
+		var iter = range.createIterator();
+		CKEDITOR.tools.extend( iter, iteratorOption, true );
+		var blockList = [], block;
+		while (( block = iter.getNextParagraph() ) )
+		{
+			blockList.push( block.getName() );
+		}
+		arrayAssert.itemsAreEqual( expectedTagList, blockList );
+	}
+
+	return {
+
+		/**
+		 * Test iterating over table cells.
+		 */
+		test_iterator_table_cells : function()
+		{
+			var range = new CKEDITOR.dom.range( doc );
+			range.setStartAt( doc.getById( 'iterTarget2a' ), CKEDITOR.POSITION_AFTER_START );
+			range.setEndAt( doc.getById( 'iterTarget2b' ), CKEDITOR.POSITION_BEFORE_END );
+			assumeIterationSameAs( range, null, [ 'th', 'p', 'td' ]);
+			assumeElementContentAreSame( 'iterContainer2', 'iterResult2' );
+		},
+
+		/**
+		 * Test iterating over list items.
+		 */
+		test_iterator_listItems : function()
+		{
+			var range = new CKEDITOR.dom.range( doc );
+			range.setStartAt( doc.getById( 'iterTarget3a' ), CKEDITOR.POSITION_AFTER_START );
+			range.setEndAt( doc.getById( 'iterTarget3b' ), CKEDITOR.POSITION_BEFORE_END );
+			assumeIterationSameAs( range, null, [ 'li', 'p', 'li' ,'p', 'li' ]);
+			assumeElementContentAreSame( 'iterContainer3', 'iterResult3' );
+		},
+
+		/**
+		 * Test iterating over pseudo block.
+		 */
+		test_iterator_pseudoBlock : function()
+		{
+			var range = new CKEDITOR.dom.range( doc );
+			range.setStartAt( doc.getById( 'iterTarget4a' ), CKEDITOR.POSITION_AFTER_START );
+			range.setEndAt( doc.getById( 'iterTarget4b' ), CKEDITOR.POSITION_BEFORE_END );
+			assumeIterationSameAs( range, null, [ 'p', 'div' ] );
+			assumeElementContentAreSame( 'iterContainer4', 'iterResult4' );
+		},
+
+		/**
+		 * Test collapsed range before paraghraph end.
+		 */
+		test_iterator_collapsed_before_paragraph : function()
+		{
+			var range = new CKEDITOR.dom.range( doc );
+			range.setStartAt( doc.getById( 'iterTarget7' ), CKEDITOR.POSITION_BEFORE_END );
+			assumeIterationSameAs( range, null, [ 'p' ]);
+			assumeElementContentAreSame( 'iterContainer7', 'iterResult7' );
+		},
+
+		/**
+		 * Test range collapsed  inside paraghraph.
+		 */
+		test_iterator_collapsed_inside_paragraph : function()
+		{
+			var range = new CKEDITOR.dom.range( doc );
+			range.setStart( doc.getById( 'para8' ).getFirst(), 3 );
+			assumeIterationSameAs( range, null, [ 'p' ]);
+			assumeElementContentAreSame( 'iterContainer8', 'iterResult8' );
+		},
+
+		/**
+		 * Test fix paragraph-less content.
+		 */
+		test_iterator_establish_paragraph: function()
+		{
+			var range = new CKEDITOR.dom.range(doc);
+			range.setStartAt(doc.getById('iterTarget9'), CKEDITOR.POSITION_AFTER_START);
+			range.setEndAt(doc.getById('iterTarget9'), CKEDITOR.POSITION_BEFORE_END);
+			assumeIterationSameAs(range, null, ['p']);
+			assumeElementContentAreSame( 'iterContainer9', 'iterResult9');
+		},
+
+		/**
+		 * Test iterating over more than one paragraphs. (#3352)
+		 */
+		test_iterator_multiple_paragraphs: function()
+		{
+			var range = new CKEDITOR.dom.range( doc );
+			range.setStartAt(doc.getById( 'iterTarget10a' ), CKEDITOR.POSITION_AFTER_START );
+			range.setEndAt(doc.getById( 'iterTarget10b' ), CKEDITOR.POSITION_BEFORE_END );
+			assumeIterationSameAs( range, null, [ 'p', 'p' ] );
+		},
+
+		name : document.title
+	};
+})() );
+
+	//]]>
+	</script>
+</head>
+<body>
+
+
+<div id="iterContainer2"><table summary="summary">
+	<caption>caption</caption>
+	<tr>
+		<th id="iterTarget2a">
+			head1</th>
+	</tr>
+	<tr>
+		<td><p>cell1</p></td>
+	</tr>
+	<tr>
+		<td id="iterTarget2b">cell2</td>
+	</tr>
+</table></div>
+<textarea id="iterResult2"><table summary="summary"><caption>caption</caption><tbody><tr><th id="iterTarget2a">head1</th></tr><tr><td><p>cell1</p></td></tr><tr><td id="iterTarget2b">cell2</td></tr></tbody></table></textarea>
+
+<div id="iterContainer3"><ul>
+	<li id="iterTarget3a">item1</li>
+	<li><p>item2</p></li>
+	<li>
+		<ul><li>item3</li></ul>
+		<ul><li><p>item5</p></li></ul>
+	</li>
+	<li id="iterTarget3b">item5</li>
+	</ul></div>
+<textarea id="iterResult3"><ul><li id="iterTarget3a">item1</li><li><p>item2</p></li><li><ul><li>item3</li></ul><ul><li><p>item5</p></li></ul></li><li id="iterTarget3b">item5</li></ul></textarea>
+
+<div id="iterContainer4">
+	<div id="iterTarget4b"><p id="iterTarget4a">paragraph</p>text</div>
+</div>
+<textarea id="iterResult4"><div id="iterTarget4b"><p id="iterTarget4a">paragraph</p>text</div></textarea>
+
+<div id="iterContainer7"><p id="iterTarget7">paragraph</p></div>
+<textarea id="iterResult7"><p id="iterTarget7">paragraph</p></textarea>
+
+<div id="iterContainer8"><p id="para8">paragraph</p></div>
+<textarea id="iterResult8"><p id="para8">paragraph</p></textarea>
+
+<form id="iterContainer9"><span id="iterTarget9">non-paragraph</span></form>
+<textarea id="iterResult9"><p><span id="iterTarget9">non-paragraph</span></p></textarea>
+
+<div id="iterContainer10"><p id="iterTarget10a">para1</p><p id="iterTarget10b">para2</p></div>
+
+</body>
+</html>
Index: /CKEditor/branches/versions/3.0.x/_source/tests/plugins/htmldataprocessor/htmldataprocessor.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/tests/plugins/htmldataprocessor/htmldataprocessor.html	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/tests/plugins/htmldataprocessor/htmldataprocessor.html	(revision 3747)
@@ -4,5 +4,7 @@
 	<title>Plugin: htmldataprocessor</title>
 	<link rel="stylesheet" type="text/css" href="../../test.css" />
-	<script type="text/javascript" src="../../../../ckeditor_source.js"></script>
+	<script type="text/javascript" src="../../../../ckeditor_source.js"></script> <!-- %REMOVE_LINE%
+	<script type="text/javascript" src="../../../ckeditor.js"></script>
+	%REMOVE_LINE% -->
 	<script type="text/javascript" src="../../test.js"></script>
 	<script type="text/javascript">
@@ -20,4 +22,5 @@
 	// Local references.
 	var assert = CKEDITOR.test.assert;
+	var doc = new CKEDITOR.dom.document( document );
 
 	// In these tests, we may "reset" the writer rules to avoid it formatting
@@ -31,4 +34,13 @@
 	};
 
+	/**
+	 * IE always returning CRLF for linefeed, so remove it when retrieve pre-formated text from text area.
+	 * @param {Object} id
+	 */
+	function getTextAreaValue( id )
+	{
+		return CKEDITOR.document.getById( id ).getValue().replace(/\r/gi,'');
+	}
+
 	// These tests go far beyond the strict htmlDataProcessor code testing. We
 	// are actually testing the entire parsing system here. The combination of
@@ -41,5 +53,5 @@
 			var element = new CKEDITOR.dom.element.createFromHtml( '<div><p>Test</p></div>' );
 
-			assert.areSame( '<p>Test</p>', getDataProcessor().toDataFormat( element ) );
+			assert.areSame( '<p>Test</p>', getDataProcessor().toDataFormat( element.getHtml() ) );
 		},
 
@@ -50,7 +62,7 @@
 			// IE adds the XML namespace tag.
 			if ( CKEDITOR.env.ie )
-				assert.areSame( '<?xml:namespace prefix="x" /><x:x>Test</x:x>', getDataProcessor().toDataFormat( element ) );
+				assert.areSame( '<?xml:namespace prefix="x" /><x:x>Test</x:x>', getDataProcessor().toDataFormat( element.getHtml() ) );
 			else
-				assert.areSame( '<x:x>Test</x:x>', getDataProcessor().toDataFormat( element ) );
+				assert.areSame( '<x:x>Test</x:x>', getDataProcessor().toDataFormat( element.getHtml() ) );
 		},
 
@@ -59,5 +71,5 @@
 			var element = new CKEDITOR.dom.element.createFromHtml( '<div><br /><p>Test</p></div>' );
 
-			assert.areSame( '<br /><p>Test</p>', getDataProcessor().toDataFormat( element ) );
+			assert.areSame( '<br /><p>Test</p>', getDataProcessor().toDataFormat( element.getHtml() ) );
 		},
 
@@ -68,7 +80,7 @@
 			// IE adds the XML namespace tag.
 			if ( CKEDITOR.env.ie )
-				assert.areSame( '<?xml:namespace prefix="x" /><x:x></x:x><p>Test</p>', getDataProcessor().toDataFormat( element ) );
+				assert.areSame( '<?xml:namespace prefix="x" /><x:x></x:x><p>Test</p>', getDataProcessor().toDataFormat( element.getHtml() ) );
 			else
-				assert.areSame( '<x:x></x:x><p>Test</p>', getDataProcessor().toDataFormat( element ) );
+				assert.areSame( '<x:x></x:x><p>Test</p>', getDataProcessor().toDataFormat( element.getHtml() ) );
 		},
 
@@ -77,5 +89,5 @@
 			var element = new CKEDITOR.dom.element.createFromHtml( '<div><x:x><p>Test</p></div>' );
 
-			assert.areSame( '<x:x><p>Test</p></x:x>', getDataProcessor().toDataFormat( element ) );
+			assert.areSame( '<x:x><p>Test</p></x:x>', getDataProcessor().toDataFormat( element.getHtml() ) );
 		},
 
@@ -86,7 +98,147 @@
 			// IE adds the XML namespace tag.
 			if ( CKEDITOR.env.ie )
-				assert.areSame( '<p class="MsoNormal"><b><i><span lang="EN-US"><?xml:namespace prefix="o" /><o:p>Test</o:p></span></i></b></p>', getDataProcessor().toDataFormat( element ) );
+				assert.areSame( '<p class="MsoNormal"><b><i><span lang="EN-US"><?xml:namespace prefix="o" /><o:p>Test</o:p></span></i></b></p>', getDataProcessor().toDataFormat( element.getHtml() ) );
 			else
-				assert.areSame( '<p class="MsoNormal"><b><i><span lang="EN-US"><o:p>Test</o:p></span></i></b></p>', getDataProcessor().toDataFormat( element ) );
+				assert.areSame( '<p class="MsoNormal"><b><i><span lang="EN-US"><o:p>Test</o:p></span></i></b></p>', getDataProcessor().toDataFormat( element.getHtml() ) );
+		},
+
+		test_toDataFormat_ticket_3036_1 : function()
+		{
+			assert.areSame( '<input autocomplete="off" checked="checked" type="checkbox" />',
+				getDataProcessor().toDataFormat( '<INPUT type="checkbox" CHECKED  autocomplete=off>' ) );
+		},
+
+		test_toDataFormat_ticket_3036_2 : function()
+		{
+			assert.areSame( '<input autocomplete="off" type="checkbox" unknown="" />',
+				getDataProcessor().toDataFormat( '<INPUT type="checkbox" UNKNOWN  autocomplete=off>' ) );
+		},
+
+		test_toDataFormat_ticket_2886_1 : function()
+		{
+			var editor = CKEDITOR.instances.editor1;
+			var test = this;
+			var isReady = !!editor.dataProcessor;
+
+			if ( !isReady )
+			{
+				editor.on( 'instanceReady', function()
+				{
+					isReady = true;
+				} );
+			}
+
+			this.wait( function()
+				{
+					if ( !isReady )
+					{
+						test.wait( arguments.callee, 100 );
+						return;
+					}
+
+					assert.areSame( '<p>\n\t&nbsp;</p>\n',
+						editor.dataProcessor.toDataFormat( '<p></p>' ) );
+				}, 100 );
+		},
+
+		test_toDataFormat_ticket_2886_2 : function()
+		{
+			var dataProcessor = CKEDITOR.instances.editor1.dataProcessor;
+
+			var source = '<p>Some text<br><br><br></p>';
+			if ( CKEDITOR.env.ie )
+				source = '<p>Some text<br><br></p>';
+			assert.areSame( '<p>\n\tSome text<br />\n\t<br />\n\t&nbsp;</p>\n',
+				dataProcessor.toDataFormat( source ) );
+		},
+
+		test_toDataFormat_ticket_2886_3 : function()
+		{
+			var dataProcessor = CKEDITOR.instances.editor1.dataProcessor;
+
+			assert.areSame( '<p>\n\tSome text<br />\n\t<br />\n\t<br />\n\tSome more text</p>\n',
+				dataProcessor.toDataFormat( '<p>Some text<br><br><br>Some more text</p>' ) );
+		},
+
+		test_toDataFormat_ticket_2886_4 : function()
+		{
+			var dataProcessor = CKEDITOR.instances.editor1.dataProcessor;
+
+			assert.areSame( '<p>\n\tSome text<br />\n\t<br />\n\t&nbsp;</p>\n',
+				dataProcessor.toDataFormat( '<p>Some text<br><br>&nbsp;</p>' ) );
+		},
+
+		test_toDataFormat_ticket_2886_5 : function()
+		{
+			if ( CKEDITOR.env.ie )
+				return;
+
+			var dataProcessor = CKEDITOR.instances.editor1.dataProcessor;
+
+			assert.areSame( '<p>\n\t&nbsp;</p>\n',
+				dataProcessor.toDataFormat( '<p><br></p>' ) );
+		},
+
+		test_toDataFormat_ticket_2886_6 : function()
+		{
+			var dataProcessor = CKEDITOR.instances.editor1.dataProcessor;
+
+			var source = '<p><br><br></p>';
+			if ( CKEDITOR.env.ie )
+				source = '<p><br></p>';
+
+			assert.areSame( '<p>\n\t<br />\n\t&nbsp;</p>\n',
+				dataProcessor.toDataFormat( source ) );
+		},
+
+		test_toHtml_ticket_2886_1 : function()
+		{
+			var dataProcessor = CKEDITOR.instances.editor1.dataProcessor;
+
+			var expected = '<p><br /></p>';
+			if ( CKEDITOR.env.ie )
+				expected = '<p>\xa0</p>';
+			assert.areSame( expected, dataProcessor.toHtml( '<p></p>' ) );
+		},
+
+		test_toHtml_ticket_2886_2 : function()
+		{
+			var dataProcessor = CKEDITOR.instances.editor1.dataProcessor;
+
+			var expected = '<p>Some text<br />Some other text</p>';
+			assert.areSame( expected, dataProcessor.toHtml( '<p>Some text<br>Some other text</p>' ) );
+		},
+
+		test_toHtml_ticket_2886_3 : function()
+		{
+			var dataProcessor = CKEDITOR.instances.editor1.dataProcessor;
+
+			var expected = '<p>Some text<br /><br /></p>';
+			if ( CKEDITOR.env.ie )
+				expected = '<p>Some text<br />\xa0</p>';
+			assert.areSame( expected, dataProcessor.toHtml( '<p>Some text<br>&nbsp;</p>' ) );
+		},
+
+		test_toHtml_ticket_2886_4 : function()
+		{
+			var dataProcessor = CKEDITOR.instances.editor1.dataProcessor;
+
+			var expected = '<p>Some text</p>';
+			assert.areSame( expected, dataProcessor.toHtml( '<p>Some text<br></p>' ));
+		},
+
+		test_ticket_3407 : function()
+		{
+			var editor = CKEDITOR.instances.editor1,
+				dataProcessor = editor.dataProcessor,
+				config = editor.config;
+
+			config.protectedSource.push( /<\?[\s\S]*?\?>/g );   // PHP Code
+			config.protectedSource.push( /<%[\s\S]*?%>/g );   // ASP Code
+			config.protectedSource.push( /(<asp:[^\>]+>[\s|\S]*?<\/asp:[^\>]+>)|(<asp:[^\>]+\/>)/gi );   // ASP.Net Code
+			dataProcessor.writer = new CKEDITOR.htmlParser.basicWriter();
+			var html = getTextAreaValue( '_TEXTAREA1' );
+			var protectedHtml = dataProcessor.toHtml( html );
+			assert.areSame( html , dataProcessor.toDataFormat( protectedHtml ) );
 		},
 
@@ -95,8 +247,16 @@
 })() );
 
+//window.onload = testCase.test_ticket_3407;
 	//]]>
 	</script>
 </head>
 <body>
+	<textarea id="editor1" class="ckeditor" cols="80" rows="10"></textarea>
+	<textarea id="_TEXTAREA1"><script type="text/javascript">alert('>');</script><table><tbody><tr><!--- IE doesn't handle this comment ---><!--[if gte IE 6 ]>
+	<![if lt IE 8 ]>
+	gIE conditional comments
+<![endif]>
+<![endif]--><td><%Response.Write(now())%></td><td><asp:control_name id="some_id" runat="server"/></td><td><?php
+include ("head.html"); ?></td></tr></tbody></table><noscript>Your browser doesn't support JavaScript</noscript></textarea>
 </body>
 </html>
Index: /CKEditor/branches/versions/3.0.x/_source/tests/plugins/list/list.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/tests/plugins/list/list.html	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/tests/plugins/list/list.html	(revision 3747)
@@ -0,0 +1,284 @@
+<!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: toolbar</title>
+	<link rel="stylesheet" type="text/css" href="../../test.css" />
+	<script type="text/javascript" src="../../../../ckeditor_source.js"></script>
+	<script type="text/javascript" src="../../test.js"></script>
+	<script type="text/javascript">
+	//<![CDATA[
+/**
+ * Load the editor and wait for fully interactable.
+ * @param {Object} elementId
+ * @parma {Object} mode
+ * @param {Object} config
+ * @param {Object} callback Continuation with {@param editor}.
+ * @param {Object} context
+ */
+function prepareEditor( elementId, mode, config, callback, context )
+{
+	CKEDITOR.on( 'instanceReady',
+		function( evt )
+		{
+			var isMe = mode == CKEDITOR.ELEMENT_MODE_REPLACE ?
+				evt.editor.name == elementId
+				: evt.editor.element.$ ==
+					document.getElementById( elementId );
+			if ( isMe )
+			{
+				callback.call( context, evt.editor );
+			}
+		}, this );
+
+	mode = mode || CKEDITOR.ELEMENT_MODE_REPLACE;
+	switch( mode )
+	{
+		case CKEDITOR.ELEMENT_MODE_REPLACE :
+			CKEDITOR.replace( elementId, config );
+			break;
+		case CKEDITOR.ELEMENT_MODE_APPENDTO :
+			CKEDITOR.appendTo( elementId, config );
+			break;
+	}
+}
+
+/**
+ * IE always returning CRLF for line-feed, so remove it when retrieving
+ * pre-formated text from text area.
+ */
+function getTextAreaValue( id )
+{
+	return CKEDITOR.document.getById( id ).getValue().replace( /\r/gi, '' );
+}
+
+CKEDITOR.test.addTestCase( ( function()
+	{
+
+		// Local references.
+		var assert = CKEDITOR.test.assert,
+			doc = CKEDITOR.document,
+			action = YAHOO.util.UserAction,
+			selector = YAHOO.util.Selector;
+
+		/**
+		 * Set the range with the start/end position specified by the locator, which in form of bookmark2.
+		 * @param {Object} range
+		 * @param {Array} startPosition range start path including offset
+		 * @param {Array|Boolean} endPositoin range end path including offset or is collapsed
+		 */
+		function setRange( range, startPosition, endPositoin )
+		{
+			var bm = {
+				end : null,
+				start : null,
+				is2: true,
+				startOffset : 0,
+				endoffset : 0
+			};
+			bm.start = startPosition.slice( 0, startPosition.length - 1 );
+			bm.startOffset = startPosition[ startPosition.length -1];
+			if( endPositoin === true )
+			{
+				bm.end = bm.start.slice();
+				bm.endOffset = bm.startOffset;
+			}
+			else
+			{
+				bm.end = endPositoin.slice( 0, endPositoin.length - 1 );
+				bm.endOffset = endPositoin[ endPositoin.length -1 ];
+			}
+			range.moveToBookmark( bm );
+		}
+
+		return	{
+
+			/**
+			 *  Test remove numbered list with 'enterMode = BR'.
+			 */
+			test_ticket_3151 : function()
+			{
+				prepareEditor( 'test_ticket_3151_editor', null,
+					{ enterMode : CKEDITOR.ENTER_BR },
+					function( editor )
+					{
+						this.resume( function()
+						{
+							editor.focus();
+
+							// Force result data unformatted.
+							editor.dataProcessor.writer._.rules = {};
+
+							var doc = editor.document,
+								range = new CKEDITOR.dom.range( doc );
+
+							setRange( range, [ 1, 0, 0, 0, 0 ], true );
+							var sel = editor.getSelection();
+							sel.selectRanges( [ range ] );
+
+							// Waiting for 'comand state' effected.
+							this.wait( function(){
+								// Remove list.
+								editor.execCommand( 'numberedlist' );
+								assert.areSame( getTextAreaValue( 'test_ticket_3151_resultContent' ),
+									editor.getData(),
+									'Remove list result not correct.' );
+							}, 1000);
+
+						} );
+					}, this );
+					this.wait();
+			},
+
+			name :document.title
+		};
+	} )() );
+	//]]>
+	</script>
+</head>
+<body>
+<textarea id="test_ticket_3151_editor"><ol><li>text</li></ol></textarea>
+<textarea id="test_ticket_3151_resultContent">text</textarea>
+</body>
+</html>
+<!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: toolbar</title>
+	<link rel="stylesheet" type="text/css" href="../../test.css" />
+	<script type="text/javascript" src="../../../../ckeditor_source.js"></script>
+	<script type="text/javascript" src="../../test.js"></script>
+	<script type="text/javascript">
+	//<![CDATA[
+/**
+ * Load the editor and wait for fully interactable.
+ * @param {Object} elementId
+ * @parma {Object} mode
+ * @param {Object} config
+ * @param {Object} callback Continuation with {@param editor}.
+ * @param {Object} context
+ */
+function prepareEditor( elementId, mode, config, callback, context )
+{
+	CKEDITOR.on( 'instanceReady',
+		function( evt )
+		{
+			var isMe = mode == CKEDITOR.ELEMENT_MODE_REPLACE ?
+				evt.editor.name == elementId
+				: evt.editor.element.$ ==
+					document.getElementById( elementId );
+			if ( isMe )
+			{
+				callback.call( context, evt.editor );
+			}
+		}, this );
+
+	mode = mode || CKEDITOR.ELEMENT_MODE_REPLACE;
+	switch( mode )
+	{
+		case CKEDITOR.ELEMENT_MODE_REPLACE :
+			CKEDITOR.replace( elementId, config );
+			break;
+		case CKEDITOR.ELEMENT_MODE_APPENDTO :
+			CKEDITOR.appendTo( elementId, config );
+			break;
+	}
+}
+
+/**
+ * IE always returning CRLF for line-feed, so remove it when retrieving
+ * pre-formated text from text area.
+ */
+function getTextAreaValue( id )
+{
+	return CKEDITOR.document.getById( id ).getValue().replace( /\r/gi, '' );
+}
+
+CKEDITOR.test.addTestCase( ( function()
+	{
+
+		// Local references.
+		var assert = CKEDITOR.test.assert,
+			doc = CKEDITOR.document,
+			action = YAHOO.util.UserAction,
+			selector = YAHOO.util.Selector;
+
+		/**
+		 * Set the range with the start/end position specified by the locator, which in form of bookmark2.
+		 * @param {Object} range
+		 * @param {Array} startPosition range start path including offset
+		 * @param {Array|Boolean} endPositoin range end path including offset or is collapsed
+		 */
+		function setRange( range, startPosition, endPositoin )
+		{
+			var bm = {
+				end : null,
+				start : null,
+				is2: true,
+				startOffset : 0,
+				endoffset : 0
+			};
+			bm.start = startPosition.slice( 0, startPosition.length - 1 );
+			bm.startOffset = startPosition[ startPosition.length -1];
+			if( endPositoin === true )
+			{
+				bm.end = bm.start.slice();
+				bm.endOffset = bm.startOffset;
+			}
+			else
+			{
+				bm.end = endPositoin.slice( 0, endPositoin.length - 1 );
+				bm.endOffset = endPositoin[ endPositoin.length -1 ];
+			}
+			range.moveToBookmark( bm );
+		}
+
+		return	{
+
+			/**
+			 *  Test remove numbered list with 'enterMode = BR'.
+			 */
+			test_ticket_3151 : function()
+			{
+				prepareEditor( 'test_ticket_3151_editor', null,
+					{ enterMode : CKEDITOR.ENTER_BR },
+					function( editor )
+					{
+						this.resume( function()
+						{
+							editor.focus();
+
+							// Force result data unformatted.
+							editor.dataProcessor.writer._.rules = {};
+
+							var doc = editor.document,
+								range = new CKEDITOR.dom.range( doc );
+
+							setRange( range, [ 1, 0, 0, 0, 0 ], true );
+							var sel = editor.getSelection();
+							sel.selectRanges( [ range ] );
+
+							// Waiting for 'comand state' effected.
+							this.wait( function(){
+								// Remove list.
+								editor.execCommand( 'numberedlist' );
+								assert.areSame( getTextAreaValue( 'test_ticket_3151_resultContent' ),
+									editor.getData(),
+									'Remove list result not correct.' );
+							}, 1000);
+
+						} );
+					}, this );
+					this.wait();
+			},
+
+			name :document.title
+		};
+	} )() );
+	//]]>
+	</script>
+</head>
+<body>
+<textarea id="test_ticket_3151_editor"><ol><li>text</li></ol></textarea>
+<textarea id="test_ticket_3151_resultContent">text</textarea>
+</body>
+</html>
Index: /CKEditor/branches/versions/3.0.x/_source/tests/plugins/selection/selection.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/tests/plugins/selection/selection.html	(revision 3747)
+++ /CKEditor/branches/versions/3.0.x/_source/tests/plugins/selection/selection.html	(revision 3747)
@@ -0,0 +1,49 @@
+<!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: selection</title>
+	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+	<link rel="stylesheet" type="text/css" href="../../test.css" />
+	<script type="text/javascript" src="../../../../ckeditor_source.js"></script>
+	<script type="text/javascript" src="../../test.js"></script>
+	<script type="text/javascript">
+//<![CDATA[
+CKEDITOR.plugins.load( [ 'selection' ] );
+//]]>
+	</script>
+	<script type="text/javascript">
+//<![CDATA[
+CKEDITOR.test.addTestCase( (function()
+{
+	var assert = CKEDITOR.test.assert;
+	var doc = new CKEDITOR.dom.document( document );
+
+	return {
+		test_selection_ie : function()
+		{
+			if ( !CKEDITOR.env.ie )
+				return;
+
+			var $range = document.body.createTextRange();
+			$range.findText( 'This' );
+			$range.select();
+
+			var range = doc.getSelection().getRanges()[ 0 ];
+			range.select();
+
+			var $range2 = document.selection.createRange();
+			assert.areSame( 0, $range.compareEndPoints( 'StartToStart', $range2 ), 'StartToStart' );
+			assert.areSame( 0, $range.compareEndPoints( 'EndToEnd', $range2 ), 'EndToEnd' );
+		},
+
+		name : document.title
+	};
+})());
+//]]>
+	</script>
+</head>
+<body>
+	<p>
+		This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">CKEditor</a>.</p>
+</body>
+</html>
Index: /CKEditor/branches/versions/3.0.x/_source/tests/plugins/styles/styles.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/tests/plugins/styles/styles.html	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/tests/plugins/styles/styles.html	(revision 3747)
@@ -180,5 +180,5 @@
 			style.applyToRange( range );
 
-			assert.areSame( '<b lang="it" style="font-size: 10pt; text-decoration: line-through;" title="test">this is some sample text</b>', getInnerHtml( '_P1' ) );
+			assert.areSame( '<b lang="it" style="font-size:10pt;text-decoration:line-through;" title="test">this is some sample text</b>', getInnerHtml( '_P1' ) );
 		},
 
@@ -235,5 +235,5 @@
 			style.applyToRange( range );
 
-			assert.areSame( '<span style="font-size: 1.5em;">this <span style="font-weight: 600;">is</span> some sample text</span>', getInnerHtml( '_P1' ) );
+			assert.areSame( '<span style="font-size:1.5em;">this <span style="font-weight:600;">is</span> some sample text</span>', getInnerHtml( '_P1' ) );
 		},
 
@@ -252,4 +252,73 @@
 		},
 
+		test_inline14 : function()
+		{
+			var para = doc.getById( '_P1' );
+
+			para.setHtml( 'this is some sample text' );
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.setStart( para.getFirst(), 0 );
+			range.setEnd( para.getFirst(), 7 );
+
+			var style = new CKEDITOR.style( { element : 'b' } );
+			style.applyToRange( range );
+
+			assert.areSame( '<b>this is</b> some sample text', getInnerHtml( '_P1' ), 'First range' );
+
+			para.setHtml( para.getHtml() );
+
+			range = new CKEDITOR.dom.range( doc );
+			range.setStart( para.getFirst().getFirst(), 5 );
+			range.setEnd( para.getChild( 1 ), 5 );
+
+			style.applyToRange( range );
+
+			assert.areSame( '<b>this is some</b> sample text', getInnerHtml( '_P1' ), 'Second range' );
+		},
+
+		test_inline15 : function()
+		{
+			var para = doc.getById( '_P1' );
+
+			para.setHtml( 'this is some sample text' );
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.setStart( para.getFirst(), 0 );
+			range.setEnd( para.getFirst(), 7 );
+
+			var style = new CKEDITOR.style( { element : 'span', styles : { 'font-family' : '#(family)' } }, { family : 'Arial,Helvetica,sans-serif' } );
+			style.applyToRange( range );
+
+			assert.areSame( '<span style="font-family:arial,helvetica,sans-serif;">this is</span> some sample text', getInnerHtml( '_P1' ), 'First range' );
+
+			para.setHtml( para.getHtml() );
+
+			range = new CKEDITOR.dom.range( doc );
+			range.setStart( para.getFirst().getFirst(), 5 );
+			range.setEnd( para.getChild( 1 ), 5 );
+
+			style = new CKEDITOR.style( { element : 'span', styles : { 'font-family' : '#(family)' } }, { family : 'Georgia,serif' } );
+			style.applyToRange( range );
+
+			assert.areSame( '<span style="font-family:arial,helvetica,sans-serif;">this <span style="font-family:georgia,serif;">is</span></span><span style="font-family:georgia,serif;"> some</span> sample text', getInnerHtml( '_P1' ), 'Second range' );
+		},
+
+		test_inline16 : function()
+		{
+			var para = doc.getById( '_P1' );
+
+			para.setHtml( '<b lang="pt" style="font-size:11pt;color:red;">this is some sample text</b>' );
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.setStart( para.getFirst().getFirst(), 4 );
+			range.setEnd( para.getFirst(), 10 );
+
+			var style = new CKEDITOR.style( { element : 'b', styles : { color : 'red', 'font-weight' : '700' } } );
+			style.applyToRange( range );
+
+			assert.areSame( '<b lang="pt" style="font-size:11pt;color:red;">this<b style="font-weight:700;"> is some sample text</b></b>', getInnerHtml( '_P1' ), 'First range' );
+		},
+
 		test_inline_nobreak1 : function()
 		{
@@ -268,5 +337,5 @@
 		test_ticket_2040 : function()
 		{
-			doc.getById( '_P1' ).setHtml( 'This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.' );
+			doc.getById( '_P1' ).setHtml( 'This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">ckeditor<\/a>.' );
 
 			var range = new CKEDITOR.dom.range( doc );
@@ -277,21 +346,205 @@
 			style.applyToRange( range );
 
-			assert.areSame( 'this is some <strong><i>sample</i> text<\/strong>. you are using <a href="http://www.fckeditor.net/">fckeditor<\/a>.', getInnerHtml( '_P1' ) );
-		},
-
+			assert.areSame( 'this is some <strong><i>sample</i> text<\/strong>. you are using <a href="http://www.fckeditor.net/">ckeditor<\/a>.', getInnerHtml( '_P1' ) );
+		},
+
+		test_checkElementRemovable1 : function()
+		{
+			var element = CKEDITOR.dom.element.createFromHtml( '<b>Test</b>', doc );
+
+			var style = new CKEDITOR.style( { element : 'b' } );
+
+			assert.isTrue( style.checkElementRemovable( element ) );
+		},
+
+		test_checkElementRemovable2 : function()
+		{
+			var element = CKEDITOR.dom.element.createFromHtml( '<b>Test</b>', doc );
+
+			var style = new CKEDITOR.style( { element : 'i' } );
+
+			assert.isFalse( style.checkElementRemovable( element ) );
+		},
+
+		test_checkElementRemovable3 : function()
+		{
+			var element = CKEDITOR.dom.element.createFromHtml( '<b>Test</b>', doc );
+
+			var style = new CKEDITOR.style( { element : 'b', attributes : { lang : 'pt' } } );
+
+			assert.isTrue( style.checkElementRemovable( element ) );
+		},
+
+		test_checkElementRemovable4 : function()
+		{
+			var element = CKEDITOR.dom.element.createFromHtml( '<b>Test</b>', doc );
+
+			var style = new CKEDITOR.style( { element : 'b', attributes : { lang : 'pt' } } );
+
+			assert.isFalse( style.checkElementRemovable( element, true ) );
+		},
+
+		test_checkElementRemovable5 : function()
+		{
+			var element = CKEDITOR.dom.element.createFromHtml( '<span lang="pt" style="color : #fff">Test</span>', doc );
+
+			var style = new CKEDITOR.style( { element : 'span', attributes : { lang : 'pt' }, style : { color : '#ffffff' } } );
+
+			assert.isTrue( style.checkElementRemovable( element, true ) );
+		},
+
+		test_checkElementRemovable6 : function()
+		{
+			var element = CKEDITOR.dom.element.createFromHtml( '<span lang="pt" style="color : #fff">Test</span>', doc );
+
+			var style = new CKEDITOR.style( { element : 'span', attributes : { lang : 'pt' }, style : { color : '#fffff0' } } );
+
+			assert.isTrue( style.checkElementRemovable( element, true ) );
+		},
+
+		test_checkElementRemovable7 : function()
+		{
+			var element = CKEDITOR.dom.element.createFromHtml( '<span lang="pt" style="color : #fff">Test</span>', doc );
+
+			var style = new CKEDITOR.style( { element : 'span', attributes : { lang : 'fr' }, style : { color : '#ffffff' } } );
+
+			assert.isFalse( style.checkElementRemovable( element, true ) );
+		},
+
+		test_checkElementRemovable8 : function()
+		{
+			var element = CKEDITOR.dom.element.createFromHtml( '<span lang="pt" style="font-size: 10px">Test</span>', doc );
+
+			var style = new CKEDITOR.style( { element : 'span', attributes : { lang : 'pt' , style : 'font-size:10px;' } } );
+
+			assert.isTrue( style.checkElementRemovable( element, true ) );
+		},
+
+		test_ticket_3091 : function()
+		{
+			var element = doc.getById( '_P1' );
+			element.setHtml( 'outter<table><tr><td>text</td></tr></table>outter' );
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.selectNodeContents( element );
+
+			var styleDef =
+			{
+				element		: 'span',
+				styles		: { 'font-family' : '#(family)' },
+				overrides	: [ { element : 'font', attributes : { 'face' : null } } ]
+			};
+
+			var style = new CKEDITOR.style( styleDef, { 'family' : 'Arial,Helvetica,sans-serif' } );
+			style.applyToRange( range );
+
+			style = new CKEDITOR.style( styleDef, { 'family' : 'Comic Sans MS,cursive' } );
+			style.applyToRange( range );
+
+			style = new CKEDITOR.style( styleDef, { 'family' : 'Courier New,Courier,monospace' } );
+			style.applyToRange( range );
+
+			assert.areSame( '<span style="font-family:couriernew,courier,monospace;">outter</span><table><tbody><tr><td><span style="font-family:couriernew,courier,monospace;">text</span></td></tr></tbody></table><span style="font-family:couriernew,courier,monospace;">outter</span>', getInnerHtml( element ) );
+		},
+
+		test_ticket_3091_2 : function()
+		{
+			var element = doc.getById( '_P1' );
+			element.setHtml( 'outter<p>text</p>outter' );
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.selectNodeContents( element );
+
+			var style = new CKEDITOR.style( { element : 'i', attributes : { title : 'x' } } );
+			style.applyToRange( range );
+
+			assert.areSame( '<i title="x">outter</i><p><i title="x">text</i></p><i title="x">outter</i>', getInnerHtml( element ), 'First step failed' );
+
+			style = new CKEDITOR.style( { element : 'i', attributes : { title : 'y' } } );
+			style.applyToRange( range );
+
+			assert.areSame( '<i title="y">outter</i><p><i title="y">text</i></p><i title="y">outter</i>', getInnerHtml( element ), 'Second step failed' );
+
+			style = new CKEDITOR.style( { element : 'i', attributes : { title : 'z' } } );
+			style.applyToRange( range );
+
+			assert.areSame( '<i title="z">outter</i><p><i title="z">text</i></p><i title="z">outter</i>', getInnerHtml( element ), 'Third step failed' );
+		},
+
+		// TC based on the state of the second step in the above test, before it got fixed.
+		test_ticket_3091_3 : function()
+		{
+			var element = doc.getById( '_P1' );
+			element.setHtml( '<p><i title="y">text</i><i title="x"></i></p><i title="y">outter</i><i title="x"></i>' );
+
+			var range = new CKEDITOR.dom.range( doc );
+			range.selectNodeContents( element );
+
+			var style = new CKEDITOR.style( { element : 'i', attributes : { title : 'z' } } );
+			style.applyToRange( range );
+
+			assert.areSame( '<p><i title="z">text</i></p><i title="z">outter</i>', getInnerHtml( element ) );
+		},
+
+		// Remove inline style when range collapsed at element boundaries,
+		// move out of the removing-style element, with inner style copied.
+		test_ticket_3309 : function()
+		{
+			var element = doc.getById( '_P1' );
+			element.setHtml( 'this is some <b><i id="_i1">styles</i></b> text' );
+
+			// This is some <b><i>styles^</i></b> text
+			var range = new CKEDITOR.dom.range( doc );
+			range.setStartAt( doc.getById( '_i1' ), CKEDITOR.POSITION_BEFORE_END );
+
+			var style = new CKEDITOR.style( { element : 'b' } );
+			style.removeFromRange( range );
+
+			assert.areSame( 'this is some <b><i id="_i1">styles</i></b><i></i> text', getInnerHtml( element ) );
+		},
+
+		// No inner style preserved, simply move out of the removing-style element.
+		test_ticket_3309_2 : function()
+		{
+			var element = doc.getById( '_P1' );
+			element.setHtml( 'this is some <b id="_b1">styles</b> text' );
+
+			// This is some <b>styles^</b> text
+			var range = new CKEDITOR.dom.range( doc );
+			range.setStartAt( doc.getById( '_b1' ), CKEDITOR.POSITION_BEFORE_END );
+
+			var style = new CKEDITOR.style( { element : 'b' } );
+			style.removeFromRange( range );
+			// This is some <b>styles</b>^ text
+			assert.areSame( doc.getById( '_b1' ).getParent().$, range.startContainer.$ );
+			assert.areSame( 2, range.startOffset );
+			assert.areSame( 'this is some <b id="_b1">styles</b> text', getInnerHtml( element ) );
+		},
+
+		// With style overrides.
+		test_ticket_3309_3 : function()
+		{
+			var element = doc.getById( '_P1' );
+			element.setHtml( 'text <strong><bold><span><b><i id="_i1">styles</i></b></span></bold></strong>' );
+
+			// text <strong><bold><span><b><i id="_i1">^styles</i></b></span></bold></strong>
+			var range = new CKEDITOR.dom.range( doc );
+			range.setStartAt( doc.getById( '_i1' ), CKEDITOR.POSITION_AFTER_START );
+
+			var style = new CKEDITOR.style( { element : 'b' , overrides : [ 'strong', 'bold' ] } );
+			style.removeFromRange( range );
+
+			// text <span><i>^</i></span><bold><span><b><i>styles</i></b></span></bold>
+			assert.areSame( 'text <span><i></i></span><strong><bold><span><b><i id="_i1">styles</i></b></span></bold></strong>', getInnerHtml( element ) );
+		},
 		name : document.title
 	};
 })() );
-
-//window.onload = function()
-//{
-//	testCase.test_inline4();
-//}
-
+//window.onload = testCase.test_ticket_3309_3;
 	//]]>
 	</script>
 </head>
 <body>
-	<p id="_P1"></p>
+	<div id="_P1"></div>
 </body>
 </html>
Index: /CKEditor/branches/versions/3.0.x/_source/tests/testall.html
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/tests/testall.html	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/tests/testall.html	(revision 3747)
@@ -15,15 +15,20 @@
 	'core/env',
 	'core/event',
+	'core/plugins',
 	'core/scriptloader',
 	'core/tools',
 	'core/xml',
 	'core/dom/document',
+	'core/dom/documentfragment',
 	'core/dom/element',
 	'core/dom/node',
 	'core/dom/range',
+	'core/dom/text',
 	'core/dom/window',
 	'core/htmlparser/fragment',
 	'plugins/htmldataprocessor/htmldataprocessor',
-	'plugins/styles/styles'
+	'plugins/list/list',
+	'plugins/styles/styles',
+	'plugins/selection/selection'
 ];
 
Index: /CKEditor/branches/versions/3.0.x/_source/tests/yuitest.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/tests/yuitest.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/tests/yuitest.js	(revision 3747)
@@ -64,4 +64,8 @@
 if(!this.checked){B.hideSource(C);}else{B.showSource(C);}},_onClickCollapseBtn:function(A,B){if(!B.isCollapsed){B.collapse();}else{B.expand();}},_onClickPauseBtn:function(A,B){if(!B.isPaused){B.pause();}else{B.resume();}},_onClickClearBtn:function(A,B){B.clearConsole();},_onNewLog:function(D,C,A){var B=C[0];A._buffer.push(B);if(A.logReaderEnabled===true&&A._timeout===null){A._timeout=setTimeout(function(){A._printBuffer();},A.outputBuffer);}},_onReset:function(C,B,A){A._filterLogs();}};if(!YAHOO.widget.Logger){YAHOO.widget.Logger={loggerEnabled:true,_browserConsoleEnabled:false,categories:["info","warn","error","time","window"],sources:["global"],_stack:[],maxStackEntries:2500,_startTime:new Date().getTime(),_lastTime:null,_windowErrorsHandled:false,_origOnWindowError:null};YAHOO.widget.Logger.log=function(B,F,G){if(this.loggerEnabled){if(!F){F="info";}else{F=F.toLocaleLowerCase();if(this._isNewCategory(F)){this._createNewCategory(F);}}var C="global";var A=null;if(G){var D=G.indexOf(" ");if(D>0){C=G.substring(0,D);A=G.substring(D,G.length);}else{C=G;}if(this._isNewSource(C)){this._createNewSource(C);}}var H=new Date();var J=new YAHOO.widget.LogMsg({msg:B,time:H,category:F,source:C,sourceDetail:A});var I=this._stack;var E=this.maxStackEntries;if(E&&!isNaN(E)&&(I.length>=E)){I.shift();}I.push(J);this.newLogEvent.fire(J);if(this._browserConsoleEnabled){this._printToBrowserConsole(J);}return true;}else{return false;}};YAHOO.widget.Logger.reset=function(){this._stack=[];this._startTime=new Date().getTime();this.loggerEnabled=true;this.log("Logger reset");this.logResetEvent.fire();};YAHOO.widget.Logger.getStack=function(){return this._stack;};YAHOO.widget.Logger.getStartTime=function(){return this._startTime;};YAHOO.widget.Logger.disableBrowserConsole=function(){YAHOO.log("Logger output to the function console.log() has been disabled.");this._browserConsoleEnabled=false;};YAHOO.widget.Logger.enableBrowserConsole=function(){this._browserConsoleEnabled=true;YAHOO.log("Logger output to the function console.log() has been enabled.");};YAHOO.widget.Logger.handleWindowErrors=function(){if(!YAHOO.widget.Logger._windowErrorsHandled){if(window.error){YAHOO.widget.Logger._origOnWindowError=window.onerror;}window.onerror=YAHOO.widget.Logger._onWindowError;YAHOO.widget.Logger._windowErrorsHandled=true;YAHOO.log("Logger handling of window.onerror has been enabled.");}else{YAHOO.log("Logger handling of window.onerror had already been enabled.");}};YAHOO.widget.Logger.unhandleWindowErrors=function(){if(YAHOO.widget.Logger._windowErrorsHandled){if(YAHOO.widget.Logger._origOnWindowError){window.onerror=YAHOO.widget.Logger._origOnWindowError;YAHOO.widget.Logger._origOnWindowError=null;}else{window.onerror=null;}YAHOO.widget.Logger._windowErrorsHandled=false;YAHOO.log("Logger handling of window.onerror has been disabled.");}else{YAHOO.log("Logger handling of window.onerror had already been disabled.");}};YAHOO.widget.Logger.categoryCreateEvent=new YAHOO.util.CustomEvent("categoryCreate",this,true);YAHOO.widget.Logger.sourceCreateEvent=new YAHOO.util.CustomEvent("sourceCreate",this,true);YAHOO.widget.Logger.newLogEvent=new YAHOO.util.CustomEvent("newLog",this,true);YAHOO.widget.Logger.logResetEvent=new YAHOO.util.CustomEvent("logReset",this,true);YAHOO.widget.Logger._createNewCategory=function(A){this.categories.push(A);this.categoryCreateEvent.fire(A);};YAHOO.widget.Logger._isNewCategory=function(B){for(var A=0;A<this.categories.length;A++){if(B==this.categories[A]){return false;}}return true;};YAHOO.widget.Logger._createNewSource=function(A){this.sources.push(A);this.sourceCreateEvent.fire(A);};YAHOO.widget.Logger._isNewSource=function(A){if(A){for(var B=0;B<this.sources.length;B++){if(A==this.sources[B]){return false;}}return true;}};YAHOO.widget.Logger._printToBrowserConsole=function(C){if(window.console&&console.log){var E=C.category;var D=C.category.substring(0,4).toUpperCase();var G=C.time;var F;if(G.toLocaleTimeString){F=G.toLocaleTimeString();}else{F=G.toString();}var H=G.getTime();var B=(YAHOO.widget.Logger._lastTime)?(H-YAHOO.widget.Logger._lastTime):0;YAHOO.widget.Logger._lastTime=H;var A=F+" ("+B+"ms): "+C.source+": ";console.log(A,C.msg);}};YAHOO.widget.Logger._onWindowError=function(A,C,B){try{YAHOO.widget.Logger.log(A+" ("+C+", line "+B+")","window");if(YAHOO.widget.Logger._origOnWindowError){YAHOO.widget.Logger._origOnWindowError();}}catch(D){return false;}};YAHOO.widget.Logger.log("Logger initialized");}YAHOO.register("logger",YAHOO.widget.Logger,{version:"2.5.2",build:"1076"});
 
+//selector/selector-min.js
+(function(){var A=YAHOO.util;A.Selector={_foundCache:[],_regexCache:{},_re:{nth:/^(?:([-]?\d*)(n){1}|(odd|even)$)*([-+]?\d*)$/,attr:/(\[.*\])/g,urls:/^(?:href|src)/},document:window.document,attrAliases:{},shorthand:{"\\#(-?[_a-z]+[-\\w]*)":"[id=$1]","\\.(-?[_a-z]+[-\\w]*)":"[class~=$1]"},operators:{"=":function(B,C){return B===C;},"!=":function(B,C){return B!==C;},"~=":function(B,D){var C=" ";return(C+B+C).indexOf((C+D+C))>-1;},"|=":function(B,C){return B===C||B.slice(0,C.length+1)===C+"-";},"^=":function(B,C){return B.indexOf(C)===0;},"$=":function(B,C){return B.slice(-C.length)===C;},"*=":function(B,C){return B.indexOf(C)>-1;},"":function(B,C){return B;}},pseudos:{"root":function(B){return B===B.ownerDocument.documentElement;},"nth-child":function(B,C){return A.Selector._getNth(B,C);},"nth-last-child":function(B,C){return A.Selector._getNth(B,C,null,true);},"nth-of-type":function(B,C){return A.Selector._getNth(B,C,B.tagName);},"nth-last-of-type":function(B,C){return A.Selector._getNth(B,C,B.tagName,true);},"first-child":function(B){return A.Selector._getChildren(B.parentNode)[0]===B;},"last-child":function(C){var B=A.Selector._getChildren(C.parentNode);return B[B.length-1]===C;},"first-of-type":function(B,C){return A.Selector._getChildren(B.parentNode,B.tagName)[0];},"last-of-type":function(C,D){var B=A.Selector._getChildren(C.parentNode,C.tagName);return B[B.length-1];},"only-child":function(C){var B=A.Selector._getChildren(C.parentNode);return B.length===1&&B[0]===C;},"only-of-type":function(B){return A.Selector._getChildren(B.parentNode,B.tagName).length===1;},"empty":function(B){return B.childNodes.length===0;},"not":function(B,C){return !A.Selector.test(B,C);},"contains":function(B,D){var C=B.innerText||B.textContent||"";return C.indexOf(D)>-1;},"checked":function(B){return B.checked===true;}},test:function(F,D){F=A.Selector.document.getElementById(F)||F;if(!F){return false;}var C=D?D.split(","):[];if(C.length){for(var E=0,B=C.length;E<B;++E){if(A.Selector._test(F,C[E])){return true;}}return false;}return A.Selector._test(F,D);},_test:function(D,G,F,E){F=F||A.Selector._tokenize(G).pop()||{};if(!D.tagName||(F.tag!=="*"&&D.tagName!==F.tag)||(E&&D._found)){return false;}if(F.attributes.length){var B,H,C=A.Selector._re.urls;if(!D.attributes||!D.attributes.length){return false;}for(var I=0,K;K=F.attributes[I++];){H=(C.test(K[0]))?2:0;B=D.getAttribute(K[0],H);if(B===null||B===undefined){return false;}if(A.Selector.operators[K[1]]&&!A.Selector.operators[K[1]](B,K[2])){return false;}}}if(F.pseudos.length){for(var I=0,J=F.pseudos.length;I<J;++I){if(A.Selector.pseudos[F.pseudos[I][0]]&&!A.Selector.pseudos[F.pseudos[I][0]](D,F.pseudos[I][1])){return false;}}}return(F.previous&&F.previous.combinator!==",")?A.Selector._combinators[F.previous.combinator](D,F):true;},filter:function(E,D){E=E||[];var G,C=[],H=A.Selector._tokenize(D);if(!E.item){for(var F=0,B=E.length;F<B;++F){if(!E[F].tagName){G=A.Selector.document.getElementById(E[F]);if(G){E[F]=G;}else{}}}}C=A.Selector._filter(E,A.Selector._tokenize(D)[0]);return C;},_filter:function(E,G,H,D){var C=H?null:[],I=A.Selector._foundCache;for(var F=0,B=E.length;F<B;F++){if(!A.Selector._test(E[F],"",G,D)){continue;}if(H){return E[F];}if(D){if(E[F]._found){continue;}E[F]._found=true;I[I.length]=E[F];}C[C.length]=E[F];}return C;},query:function(C,D,E){var B=A.Selector._query(C,D,E);return B;},_query:function(H,M,N,F){var P=(N)?null:[],E;if(!H){return P;}var D=H.split(",");if(D.length>1){var O;for(var I=0,J=D.length;I<J;++I){O=arguments.callee(D[I],M,N,true);P=N?O:P.concat(O);}A.Selector._clearFoundCache();return P;}if(M&&!M.nodeName){M=A.Selector.document.getElementById(M);if(!M){return P;}}M=M||A.Selector.document;if(M.nodeName!=="#document"){A.Dom.generateId(M);H=M.tagName+"#"+M.id+" "+H;E=M;M=M.ownerDocument;}var L=A.Selector._tokenize(H);var K=L[A.Selector._getIdTokenIndex(L)],B=[],C,G=L.pop()||{};if(K){C=A.Selector._getId(K.attributes);}if(C){E=E||A.Selector.document.getElementById(C);if(E&&(M.nodeName==="#document"||A.Dom.isAncestor(M,E))){if(A.Selector._test(E,null,K)){if(K===G){B=[E];}else{if(K.combinator===" "||K.combinator===">"){M=E;}}}}else{return P;}}if(M&&!B.length){B=M.getElementsByTagName(G.tag);}if(B.length){P=A.Selector._filter(B,G,N,F);}return P;},_clearFoundCache:function(){var E=A.Selector._foundCache;for(var C=0,B=E.length;C<B;++C){try{delete E[C]._found;}catch(D){E[C].removeAttribute("_found");}}E=[];},_getRegExp:function(D,B){var C=A.Selector._regexCache;B=B||"";if(!C[D+B]){C[D+B]=new RegExp(D,B);}return C[D+B];},_getChildren:function(){if(document.documentElement.children){return function(C,B){return(B)?C.children.tags(B):C.children||[];};}else{return function(F,C){if(F._children){return F._children;}var E=[],G=F.childNodes;for(var D=0,B=G.length;D<B;++D){if(G[D].tagName){if(!C||G[D].tagName===C){E[E.length]=G[D];}}}F._children=E;return E;};}}(),_combinators:{" ":function(C,B){while((C=C.parentNode)){if(A.Selector._test(C,"",B.previous)){return true;}}return false;},">":function(C,B){return A.Selector._test(C.parentNode,null,B.previous);},"+":function(D,C){var B=D.previousSibling;while(B&&B.nodeType!==1){B=B.previousSibling;}if(B&&A.Selector._test(B,null,C.previous)){return true;}return false;},"~":function(D,C){var B=D.previousSibling;while(B){if(B.nodeType===1&&A.Selector._test(B,null,C.previous)){return true;}B=B.previousSibling;}return false;}},_getNth:function(C,L,N,G){A.Selector._re.nth.test(L);var K=parseInt(RegExp.$1,10),B=RegExp.$2,H=RegExp.$3,I=parseInt(RegExp.$4,10)||0,M=[],E;var J=A.Selector._getChildren(C.parentNode,N);if(H){K=2;E="+";B="n";I=(H==="odd")?1:0;}else{if(isNaN(K)){K=(B)?1:0;}}if(K===0){if(G){I=J.length-I+1;}if(J[I-1]===C){return true;}else{return false;}}else{if(K<0){G=!!G;K=Math.abs(K);}}if(!G){for(var D=I-1,F=J.length;D<F;D+=K){if(D>=0&&J[D]===C){return true;}}}else{for(var D=J.length-I,F=J.length;D>=0;D-=K){if(D<F&&J[D]===C){return true;}}}return false;},_getId:function(C){for(var D=0,B=C.length;D<B;
+++D){if(C[D][0]=="id"&&C[D][1]==="="){return C[D][2];}}},_getIdTokenIndex:function(D){for(var C=0,B=D.length;C<B;++C){if(A.Selector._getId(D[C].attributes)){return C;}}return -1;},_patterns:{tag:/^((?:-?[_a-z]+[\w-]*)|\*)/i,attributes:/^\[([a-z]+\w*)+([~\|\^\$\*!=]=?)?['"]?([^\]]*?)['"]?\]/i,pseudos:/^:([-\w]+)(?:\(['"]?(.+)['"]?\))*/i,combinator:/^\s*([>+~]|\s)\s*/},_tokenize:function(B){var D={},H=[],I,G=false,F=A.Selector._patterns,C;B=A.Selector._replaceShorthand(B);do{G=false;for(var E in F){if(YAHOO.lang.hasOwnProperty(F,E)){if(E!="tag"&&E!="combinator"){D[E]=D[E]||[];}if((C=F[E].exec(B))){G=true;if(E!="tag"&&E!="combinator"){if(E==="attributes"&&C[1]==="id"){D.id=C[3];}D[E].push(C.slice(1));}else{D[E]=C[1];}B=B.replace(C[0],"");if(E==="combinator"||!B.length){D.attributes=A.Selector._fixAttributes(D.attributes);D.pseudos=D.pseudos||[];D.tag=D.tag?D.tag.toUpperCase():"*";H.push(D);D={previous:D};}}}}}while(G);return H;},_fixAttributes:function(C){var D=A.Selector.attrAliases;C=C||[];for(var E=0,B=C.length;E<B;++E){if(D[C[E][0]]){C[E][0]=D[C[E][0]];}if(!C[E][1]){C[E][1]="";}}return C;},_replaceShorthand:function(C){var D=A.Selector.shorthand;var E=C.match(A.Selector._re.attr);if(E){C=C.replace(A.Selector._re.attr,"REPLACED_ATTRIBUTE");}for(var G in D){if(YAHOO.lang.hasOwnProperty(D,G)){C=C.replace(A.Selector._getRegExp(G,"gi"),D[G]);}}if(E){for(var F=0,B=E.length;F<B;++F){C=C.replace("REPLACED_ATTRIBUTE",E[F]);}}return C;}};if(YAHOO.env.ua.ie&&YAHOO.env.ua.ie<8){A.Selector.attrAliases["class"]="className";A.Selector.attrAliases["for"]="htmlFor";}})();YAHOO.register("selector",YAHOO.util.Selector,{version:"2.7.0",build:"1796"});
+
 // yuitest/yuitest-min.js
 YAHOO.namespace("tool");YAHOO.tool.TestCase=function(A){this._should={};for(var B in A){this[B]=A[B];}if(!YAHOO.lang.isString(this.name)){this.name=YAHOO.util.Dom.generateId(null,"testCase");}};YAHOO.tool.TestCase.prototype={resume:function(A){YAHOO.tool.TestRunner.resume(A);},wait:function(B,A){throw new YAHOO.tool.TestCase.Wait(B,A);},setUp:function(){},tearDown:function(){}};YAHOO.tool.TestCase.Wait=function(B,A){this.segment=(YAHOO.lang.isFunction(B)?B:null);this.delay=(YAHOO.lang.isNumber(A)?A:0);};YAHOO.namespace("tool");YAHOO.tool.TestSuite=function(A){this.name="";this.items=[];if(YAHOO.lang.isString(A)){this.name=A;}else{if(YAHOO.lang.isObject(A)){YAHOO.lang.augmentObject(this,A,true);}}if(this.name===""){this.name=YAHOO.util.Dom.generateId(null,"testSuite");}};YAHOO.tool.TestSuite.prototype={add:function(A){if(A instanceof YAHOO.tool.TestSuite||A instanceof YAHOO.tool.TestCase){this.items.push(A);}},setUp:function(){},tearDown:function(){}};YAHOO.namespace("tool");YAHOO.tool.TestRunner=(function(){function B(C){this.testObject=C;this.firstChild=null;this.lastChild=null;this.parent=null;this.next=null;this.results={passed:0,failed:0,total:0,ignored:0};if(C instanceof YAHOO.tool.TestSuite){this.results.type="testsuite";this.results.name=C.name;}else{if(C instanceof YAHOO.tool.TestCase){this.results.type="testcase";this.results.name=C.name;}}}B.prototype={appendChild:function(C){var D=new B(C);if(this.firstChild===null){this.firstChild=this.lastChild=D;}else{this.lastChild.next=D;this.lastChild=D;}D.parent=this;return D;}};function A(){A.superclass.constructor.apply(this,arguments);this.masterSuite=new YAHOO.tool.TestSuite("YUI Test Results");this._cur=null;this._root=null;var D=[this.TEST_CASE_BEGIN_EVENT,this.TEST_CASE_COMPLETE_EVENT,this.TEST_SUITE_BEGIN_EVENT,this.TEST_SUITE_COMPLETE_EVENT,this.TEST_PASS_EVENT,this.TEST_FAIL_EVENT,this.TEST_IGNORE_EVENT,this.COMPLETE_EVENT,this.BEGIN_EVENT];for(var C=0;C<D.length;C++){this.createEvent(D[C],{scope:this});}}YAHOO.lang.extend(A,YAHOO.util.EventProvider,{TEST_CASE_BEGIN_EVENT:"testcasebegin",TEST_CASE_COMPLETE_EVENT:"testcasecomplete",TEST_SUITE_BEGIN_EVENT:"testsuitebegin",TEST_SUITE_COMPLETE_EVENT:"testsuitecomplete",TEST_PASS_EVENT:"pass",TEST_FAIL_EVENT:"fail",TEST_IGNORE_EVENT:"ignore",COMPLETE_EVENT:"complete",BEGIN_EVENT:"begin",_addTestCaseToTestTree:function(C,D){var E=C.appendChild(D);for(var F in D){if(F.indexOf("test")===0&&YAHOO.lang.isFunction(D[F])){E.appendChild(F);}}},_addTestSuiteToTestTree:function(C,F){var E=C.appendChild(F);for(var D=0;D<F.items.length;D++){if(F.items[D] instanceof YAHOO.tool.TestSuite){this._addTestSuiteToTestTree(E,F.items[D]);}else{if(F.items[D] instanceof YAHOO.tool.TestCase){this._addTestCaseToTestTree(E,F.items[D]);}}}},_buildTestTree:function(){this._root=new B(this.masterSuite);this._cur=this._root;for(var C=0;C<this.masterSuite.items.length;C++){if(this.masterSuite.items[C] instanceof YAHOO.tool.TestSuite){this._addTestSuiteToTestTree(this._root,this.masterSuite.items[C]);}else{if(this.masterSuite.items[C] instanceof YAHOO.tool.TestCase){this._addTestCaseToTestTree(this._root,this.masterSuite.items[C]);}}}},_handleTestObjectComplete:function(C){if(YAHOO.lang.isObject(C.testObject)){C.parent.results.passed+=C.results.passed;C.parent.results.failed+=C.results.failed;C.parent.results.total+=C.results.total;C.parent.results.ignored+=C.results.ignored;C.parent.results[C.testObject.name]=C.results;if(C.testObject instanceof YAHOO.tool.TestSuite){C.testObject.tearDown();this.fireEvent(this.TEST_SUITE_COMPLETE_EVENT,{testSuite:C.testObject,results:C.results});}else{if(C.testObject instanceof YAHOO.tool.TestCase){this.fireEvent(this.TEST_CASE_COMPLETE_EVENT,{testCase:C.testObject,results:C.results});}}}},_next:function(){if(this._cur.firstChild){this._cur=this._cur.firstChild;}else{if(this._cur.next){this._cur=this._cur.next;}else{while(this._cur&&!this._cur.next&&this._cur!==this._root){this._handleTestObjectComplete(this._cur);this._cur=this._cur.parent;}if(this._cur==this._root){this._cur.results.type="report";this._cur.results.timestamp=(new Date()).toLocaleString();this.fireEvent(this.COMPLETE_EVENT,{results:this._cur.results});this._cur=null;}else{this._handleTestObjectComplete(this._cur);this._cur=this._cur.next;}}}return this._cur;},_run:function(){var E=false;var D=this._next();if(D!==null){var C=D.testObject;if(YAHOO.lang.isObject(C)){if(C instanceof YAHOO.tool.TestSuite){this.fireEvent(this.TEST_SUITE_BEGIN_EVENT,{testSuite:C});C.setUp();}else{if(C instanceof YAHOO.tool.TestCase){this.fireEvent(this.TEST_CASE_BEGIN_EVENT,{testCase:C});}}if(typeof setTimeout!="undefined"){setTimeout(function(){YAHOO.tool.TestRunner._run();},0);}else{this._run();}}else{this._runTest(D);}}},_resumeTest:function(G){var C=this._cur;var H=C.testObject;var E=C.parent.testObject;var K=(E._should.fail||{})[H];var D=(E._should.error||{})[H];var F=false;var I=null;try{G.apply(E);if(K){I=new YAHOO.util.ShouldFail();F=true;}else{if(D){I=new YAHOO.util.ShouldError();F=true;}}}catch(J){if(J instanceof YAHOO.util.AssertionError){if(!K){I=J;F=true;}}else{if(J instanceof YAHOO.tool.TestCase.Wait){if(YAHOO.lang.isFunction(J.segment)){if(YAHOO.lang.isNumber(J.delay)){if(typeof setTimeout!="undefined"){setTimeout(function(){YAHOO.tool.TestRunner._resumeTest(J.segment);},J.delay);}else{throw new Error("Asynchronous tests not supported in this environment.");}}}return ;}else{if(!D){I=new YAHOO.util.UnexpectedError(J);F=true;}else{if(YAHOO.lang.isString(D)){if(J.message!=D){I=new YAHOO.util.UnexpectedError(J);F=true;}}else{if(YAHOO.lang.isFunction(D)){if(!(J instanceof D)){I=new YAHOO.util.UnexpectedError(J);F=true;}}else{if(YAHOO.lang.isObject(D)){if(!(J instanceof D.constructor)||J.message!=D.message){I=new YAHOO.util.UnexpectedError(J);F=true;}}}}}}}}if(F){this.fireEvent(this.TEST_FAIL_EVENT,{testCase:E,testName:H,error:I});}else{this.fireEvent(this.TEST_PASS_EVENT,{testCase:E,testName:H});}E.tearDown();C.parent.results[H]={result:F?"fail":"pass",message:I?I.getMessage():"Test passed",type:"test",name:H};
Index: /CKEditor/branches/versions/3.0.x/_source/themes/default/theme.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/_source/themes/default/theme.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/_source/themes/default/theme.js	(revision 3747)
@@ -1,3 +1,3 @@
-﻿/*
+/*
 Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.html or http://ckeditor.com/license
@@ -6,15 +6,4 @@
 CKEDITOR.themes.add( 'default', (function()
 {
-	// The CSS class to be appended on the main UI containers, making it easy
-	// to apply browser specific styles to it.
-	var browserCssClass =
-			'cke_browser_' + (
-				CKEDITOR.env.ie ? 'ie' :
-				CKEDITOR.env.gecko ? 'gecko' :
-				CKEDITOR.env.opera ? 'opera' :
-				CKEDITOR.env.air ? 'air' :
-				CKEDITOR.env.webkit ? 'webkit' :
-				'unknown' );
-
 	return {
 		build : function( editor, themePath )
@@ -38,4 +27,6 @@
 			var width	= editor.config.width;
 
+			var tabIndex = editor.config.tabIndex || editor.element.getAttribute( 'tabindex' ) || 0;
+
 			// The editor height is considered only if the contents space got filled.
 			if ( !contentsHtml )
@@ -47,27 +38,28 @@
 				width += 'px';
 
-			// Using a <div> as the outer element container can make IE goes crazy.
-			// The fact is that a <textarea> is an inline element. We aim to
-			// replace it with our structure, but <div> is a block element and it
-			// seems to be the cause of it. Using a <span>, which is inline just
-			// like <textarea>, makes it work.
-			// <table> is also a block element and should not go inside a <span>,
-			// not even in the places where <textarea> is valid. But this doesn't
-			// bring any evident problem as it seems that tables are treated
-			// differently by the browsers ("semi-inline").
 			var container = CKEDITOR.dom.element.createFromHtml( [
-				'<span id="cke_', name, '" onmousedown="return false;" class="cke_container cke_skin_', editor.config.skin, ' ', browserCssClass,
-					' cke_', editor.lang.dir, '" dir="', editor.lang.dir, '">' +
-					'<table class="cke_editor" border="0" cellspacing="0" cellpadding="0" style="width:', width, ';height:', height, '"><tbody>' +
-						'<tr', topHtml		? '' : ' style="display:none"', '><td id="cke_top_'		, name, '" class="cke_top">'		, topHtml		, '</td></tr>' +
-						'<tr', contentsHtml	? '' : ' style="display:none"', '><td id="cke_contents_', name, '" class="cke_contents" style="height:100%">'	, contentsHtml	, '</td></tr>' +
-						'<tr', bottomHtml	? '' : ' style="display:none"', '><td id="cke_bottom_'	, name, '" class="cke_bottom">'		, bottomHtml	, '</td></tr>' +
-					'</tbody></table>' +
-					//Hide the container when loading skins, later restored by skin css.
-					'<style>.cke_container{visibility:hidden;}</style>' +
+				'<span' +
+					' id="cke_', name, '"' +
+					' onmousedown="return false;"' +
+					' class="', editor.skinClass, '"' +
+					' dir="', editor.lang.dir, '"' +
+					' title="', ( CKEDITOR.env.gecko ? ' ' : '' ), '"' +
+					' lang="', editor.langCode, '"' +
+					' tabindex="' + tabIndex + '">' +
+					'<span class="' , CKEDITOR.env.cssClass, '">' +
+						'<span class="cke_wrapper cke_', editor.lang.dir, '">' +
+							'<table class="cke_editor" border="0" cellspacing="0" cellpadding="0" style="width:', width, '"><tbody>' +
+								'<tr', topHtml		? '' : ' style="display:none"', '><td id="cke_top_'		, name, '" class="cke_top">'	, topHtml		, '</td></tr>' +
+								'<tr', contentsHtml	? '' : ' style="display:none"', '><td id="cke_contents_', name, '" class="cke_contents" style="height:', height, '">', contentsHtml, '</td></tr>' +
+								'<tr', bottomHtml	? '' : ' style="display:none"', '><td id="cke_bottom_'	, name, '" class="cke_bottom">'	, bottomHtml	, '</td></tr>' +
+							'</tbody></table>' +
+							//Hide the container when loading skins, later restored by skin css.
+							'<style>.', editor.skinClass, '{visibility:hidden;}</style>' +
+						'</span>' +
+					'</span>' +
 				'</span>' ].join( '' ) );
 
-			container.getChild( [0, 0, 0] ).unselectable();
-			container.getChild( [0, 0, 2] ).unselectable();
+			container.getChild( [0, 0, 0, 0, 0] ).unselectable();
+			container.getChild( [0, 0, 0, 0, 2] ).unselectable();
 
 			if ( elementMode == CKEDITOR.ELEMENT_MODE_REPLACE )
@@ -95,69 +87,56 @@
 
 			var element = CKEDITOR.dom.element.createFromHtml( [
-					'<div class="cke_skin_', editor.config.skin, ' ', browserCssClass, ' ',
-						CKEDITOR.document.$.compatMode == 'CSS1Compat' ? 'cke_mode_standards' : 'cke_mode_quirks',
-						' cke_', editor.lang.dir,
-						'" dir="', editor.lang.dir, '">' +
-						'<div id="%#" class="cke_dialog" style="position:',
-							( CKEDITOR.env.ie6Compat ? 'absolute;' : 'fixed;' ), '">',
-							'<div>'+
-								'<div id="%tl_#" class="%tl">' +
-									'<div id="%tl_resize_#" class="%tl_resize"></div>' +
+					'<div id="cke_' + editor.name.replace('.', '\\.') + '_dialog" class="cke_skin_', editor.skinName,
+						'" dir="', editor.lang.dir, '"' +
+						' lang="', editor.langCode, '"' +
+						'>' +
+
+						'<div class="cke_dialog', ' ' + CKEDITOR.env.cssClass,
+							' cke_', editor.lang.dir, '" style="position:absolute">' +
+							'<div class="%body">' +
+								'<div id="%title#" class="%title"></div>' +
+								'<div id="%close_button#" class="%close_button">' +
+									'<span>X</span>' +
 								'</div>' +
-								'<div id="%t_#" class="%t">' +
-									'<div id="%t_resize_#" class="%t_resize"></div>' +
-								'</div>' +
-								'<div id="%tr_#" class="%tr">' +
-									'<div id="%tr_resize_#" class="%tr_resize"></div>' +
-								'</div>' +
+								'<div id="%tabs#" class="%tabs"></div>' +
+								'<div id="%contents#" class="%contents"></div>' +
+								'<div id="%footer#" class="%footer"></div>' +
 							'</div>' +
-							'<div>' +
-								'<div id="%l_#" class="%l">' +
-									'<div id="%l_resize_#" class="%l_resize"></div>' +
-								'</div>' +
-								'<div id="%c_#" class="%c">' +
-									'<div id="%title_#" class="%title">' +
-										'<div id="%close_button_#" class="%close_button"></div>' +
-									'</div>' +
-									'<table id="%tabs_#" class="%tabs" cellpadding="0" border="0" cellspacing="0"><tbody><tr>' +
-									'<td class="head_filler">&nbsp;</td>' +
-									'<td class="tail_filler">&nbsp;</td>' +
-									'</tr></tbody></table>' +
-									'<div id="%contents_#" class="%contents"></div>' +
-									'<div id="%footer_#" class="%footer"></div>' +
-								'</div>' +
-								'<div id="%r_#" class="%r">' +
-									'<div id="%r_resize_#" class="%r_resize"></div>' +
-								'</div>' +
-							'</div>' +
-							'<div>' +
-								'<div id="%bl_#" class="%bl">' +
-									'<div id="%bl_resize_#" class="%bl_resize"></div>' +
-								'</div>' +
-								'<div id="%b_#" class="%b">' +
-									'<div id="%b_resize_#" class="%b_resize"></div>' +
-								'</div>' +
-								'<div id="%br_#" class="%br">' +
-									'<div id="%br_resize_#" class="%br_resize"></div>' +
-								'</div>' +
-							'</div>' +
+							'<div id="%tl#" class="%tl"></div>' +
+							'<div id="%tc#" class="%tc"></div>' +
+							'<div id="%tr#" class="%tr"></div>' +
+							'<div id="%ml#" class="%ml"></div>' +
+							'<div id="%mr#" class="%mr"></div>' +
+							'<div id="%bl#" class="%bl"></div>' +
+							'<div id="%bc#" class="%bc"></div>' +
+							'<div id="%br#" class="%br"></div>' +
 						'</div>',
+
 						//Hide the container when loading skins, later restored by skin css.
 						( CKEDITOR.env.ie ? '' : '<style>.cke_dialog{visibility:hidden;}</style>' ),
+
 					'</div>'
 				].join( '' )
-					.replace( /#/g, baseIdNumber )
+					.replace( /#/g, '_' + baseIdNumber )
 					.replace( /%/g, 'cke_dialog_' ) );
 
-			// Make the Title unselectable.
-			element.getChild( [0, 1, 1, 0] ).unselectable();
+			var body = element.getChild( [ 0, 0 ] );
+
+			// Make the Title and Close Button unselectable.
+			body.getChild( 0 ).unselectable();
+			body.getChild( 1 ).unselectable();
+
 
 			return {
 				element : element,
-				titleId : 'cke_dialog_title_' + baseIdNumber,
-				contentsId : 'cke_dialog_contents_' + baseIdNumber,
-				footerId : 'cke_dialog_footer_' + baseIdNumber,
-				closeIds : [ 'cke_dialog_close_button_' + baseIdNumber ],
-				dragIds : [ 'cke_dialog_title_' + baseIdNumber, 'cke_dialog_tabs_' + baseIdNumber ]
+				parts :
+				{
+					dialog		: element.getChild( 0 ),
+					title		: body.getChild( 0 ),
+					close		: body.getChild( 1 ),
+					tabs		: body.getChild( 2 ),
+					contents	: body.getChild( 3 ),
+					footer		: body.getChild( 4 )
+				}
 			};
 		},
@@ -183,2 +162,37 @@
 	return space;
 };
+
+CKEDITOR.editor.prototype.resize = function( width, height, isContentHeight, resizeInner )
+{
+	var numberRegex = /^\d+$/;
+	if ( numberRegex.test( width ) )
+		width += 'px';
+
+	var contents = CKEDITOR.document.getById( 'cke_contents_' + this.name );
+	var outer = resizeInner ? contents.getAscendant( 'table' ).getParent()
+		: contents.getAscendant( 'table' ).getParent().getParent().getParent();
+
+	// Resize the width first.
+	// WEBKIT BUG: Webkit requires that we put the editor off from display when we
+	// resize it. If we don't, the browser crashes!
+	CKEDITOR.env.webkit && outer.setStyle( 'display', 'none' );
+	outer.setStyle( 'width', width );
+	if ( CKEDITOR.env.webkit )
+	{
+		outer.$.offsetWidth;
+		outer.setStyle( 'display', '' );
+	}
+
+	// Get the height delta between the outer table and the content area.
+	// If we're setting the content area's height, then we don't need the delta.
+	var delta = isContentHeight ? 0 : ( outer.$.offsetHeight || 0 ) - ( contents.$.clientHeight || 0 );
+	contents.setStyle( 'height', Math.max( height - delta, 0 ) + 'px' );
+
+	// Emit a resize event.
+	this.fire( 'resize' );
+};
+
+CKEDITOR.editor.prototype.getResizable = function()
+{
+	return this.container.getChild( [ 0, 0 ] );
+};
Index: /CKEditor/branches/versions/3.0.x/ckeditor.pack
===================================================================
--- /CKEditor/branches/versions/3.0.x/ckeditor.pack	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/ckeditor.pack	(revision 3747)
@@ -30,4 +30,7 @@
 		'CKEDITOR.POSITION_IS_CONTAINED' : 8,
 		'CKEDITOR.POSITION_CONTAINS' : 16,
+		'CKEDITOR.ENTER_P' : 1,
+		'CKEDITOR.ENTER_BR' : 2,
+		'CKEDITOR.ENTER_DIV' : 3,
 		'CKEDITOR.TRISTATE_ON' : 1,
 		'CKEDITOR.TRISTATE_OFF' : 2,
@@ -40,11 +43,17 @@
 		'CKEDITOR.ENLARGE_BLOCK_CONTENTS' : 2,
 		'CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS' : 3,
+		'CKEDITOR.START' : 1,
+		'CKEDITOR.END' : 2,
+		'CKEDITOR.STARTEND' : 3,
 		'CKEDITOR.UI_BUTTON' : 1,
 		'CKEDITOR.STYLE_BLOCK' : 1,
 		'CKEDITOR.STYLE_INLINE' : 2,
 		'CKEDITOR.STYLE_OBJECT' : 3,
+		'CKEDITOR.UI_PANELBUTTON' : 4,
 		'CKEDITOR.SELECTION_NONE' : 1,
 		'CKEDITOR.SELECTION_TEXT' : 2,
 		'CKEDITOR.SELECTION_ELEMENT' : 3,
+		'CKEDITOR.UI_RICHCOMBO' : 3,
+		'CKEDITOR.UI_MENUBUTTON' : 5,
 		'CKEDITOR.DIALOG_RESIZE_NONE' : 0,
 		'CKEDITOR.DIALOG_RESIZE_WIDTH' : 1,
@@ -52,5 +61,6 @@
 		'CKEDITOR.DIALOG_RESIZE_BOTH' : 3,
 		'CKEDITOR.VALIDATE_OR' : 1,
-		'CKEDITOR.VALIDATE_AND' : 2
+		'CKEDITOR.VALIDATE_AND' : 2,
+		'CKEDITOR.UI_PANEL' : 2
 	},
 
@@ -85,9 +95,9 @@
 					'_source/core/dom/event.js',
 					'_source/core/dom/domobject.js',
+					'_source/core/dom/window.js',
+					'_source/core/dom/document.js',
 					'_source/core/dom/node.js',
 					'_source/core/dom/nodelist.js',
 					'_source/core/dom/element.js',
-					'_source/core/dom/window.js',
-					'_source/core/dom/document.js',
 					'_source/core/command.js',
 					'_source/core/config.js',
@@ -105,35 +115,83 @@
 					'_source/core/htmlparser/comment.js',
 					'_source/core/htmlparser/text.js',
+					'_source/core/htmlparser/cdata.js',
 					'_source/core/htmlparser/fragment.js',
 					'_source/core/htmlparser/element.js',
+					'_source/core/htmlparser/filter.js',
+					'_source/core/htmlparser/basicwriter.js',
 					'_source/core/ckeditor.js',
 					'_source/core/dom/elementpath.js',
 					'_source/core/dom/text.js',
-					'_source/core/dom/documentFragment.js',
+					'_source/core/dom/documentfragment.js',
 					'_source/core/dom/domwalker.js',
+					'_source/core/dom/walker.js',
 					'_source/core/dom/range.js',
 					'_source/core/_bootstrap.js',
 //					'_source/lang/en.js',
+					'_source/plugins/about/plugin.js',
 					'_source/plugins/basicstyles/plugin.js',
+					'_source/plugins/blockquote/plugin.js',
 					'_source/plugins/button/plugin.js',
-					'_source/plugins/editingblock/plugin.js',
+					'_source/plugins/clipboard/plugin.js',
+					'_source/plugins/colorbutton/plugin.js',
+					'_source/plugins/contextmenu/plugin.js',
 					'_source/plugins/elementspath/plugin.js',
+					'_source/plugins/enterkey/plugin.js',
+					'_source/plugins/entities/plugin.js',
+					'_source/plugins/filebrowser/plugin.js',
+					'_source/plugins/find/plugin.js',
+					'_source/plugins/flash/plugin.js',
+					'_source/plugins/font/plugin.js',
+					'_source/plugins/format/plugin.js',
+					'_source/plugins/forms/plugin.js',
 					'_source/plugins/horizontalrule/plugin.js',
 					'_source/plugins/htmldataprocessor/plugin.js',
+					'_source/plugins/image/plugin.js',
+					'_source/plugins/indent/plugin.js',
+					'_source/plugins/justify/plugin.js',
 					'_source/plugins/keystrokes/plugin.js',
+					'_source/plugins/link/plugin.js',
+					'_source/plugins/list/plugin.js',
+					'_source/plugins/maximize/plugin.js',
 					'_source/plugins/newpage/plugin.js',
+					'_source/plugins/pagebreak/plugin.js',
+					'_source/plugins/pastefromword/plugin.js',
+					'_source/plugins/pastetext/plugin.js',
+					'_source/plugins/popup/plugin.js',
+					'_source/plugins/preview/plugin.js',
+					'_source/plugins/print/plugin.js',
 					'_source/plugins/removeformat/plugin.js',
+					'_source/plugins/resize/plugin.js',
+					'_source/plugins/save/plugin.js',
+					'_source/plugins/scayt/plugin.js',
 					'_source/plugins/smiley/plugin.js',
+					'_source/plugins/showblocks/plugin.js',
 					'_source/plugins/sourcearea/plugin.js',
+					'_source/plugins/stylescombo/plugin.js',
+					'_source/plugins/table/plugin.js',
+					'_source/plugins/tabletools/plugin.js',
 					'_source/plugins/specialchar/plugin.js',
 					'_source/plugins/tab/plugin.js',
+					'_source/plugins/templates/plugin.js',
 					'_source/plugins/toolbar/plugin.js',
+					'_source/plugins/undo/plugin.js',
 					'_source/plugins/wysiwygarea/plugin.js',
+					'_source/plugins/wsc/plugin.js',
 					'_source/plugins/styles/plugin.js',
+					'_source/plugins/domiterator/plugin.js',
+					'_source/plugins/panelbutton/plugin.js',
+					'_source/plugins/floatpanel/plugin.js',
+					'_source/plugins/menu/plugin.js',
 					'_source/plugins/selection/plugin.js',
+					'_source/plugins/fakeobjects/plugin.js',
+					'_source/plugins/richcombo/plugin.js',
 					'_source/plugins/htmlwriter/plugin.js',
+					'_source/plugins/menubutton/plugin.js',
 					'_source/plugins/dialog/plugin.js',
+					'_source/plugins/editingblock/plugin.js',
+					'_source/plugins/panel/plugin.js',
+					'_source/plugins/listblock/plugin.js',
 					'_source/plugins/dialogui/plugin.js',
-					'_source/skins/default/skin.js',
+					'_source/skins/kama/skin.js',
 					'_source/themes/default/theme.js'
 				]
Index: /CKEditor/branches/versions/3.0.x/ckeditor_basic_source.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/ckeditor_basic_source.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/ckeditor_basic_source.js	(revision 3747)
@@ -6,5 +6,5 @@
 // Compressed version of core/ckeditor_base.js. See original for instructions.
 /*jsl:ignore*/
-if (!window.CKEDITOR){window.CKEDITOR=(function(){return/**@lends CKEDITOR*/{_:{},status:'unloaded',timestamp:'',basePath:(function(){var A='';var B=document.getElementsByTagName('script');for (var i=0;i<B.length;i++){var C=B[i].src.match(/(^|.*[\\\/])ckeditor(?:_basic)?(?:_source)?.js(?:\?.*)?$/i);if (C){A=C[1];break;}};if (A.indexOf('://')==-1){if (A.indexOf('/')===0) A=location.href.match(/^.*?:\/\/[^\/]*/)[0]+A;else A=location.href.match(/^[^\?]*\//)[0]+A;};return A;})(),getUrl:function(resource){if (resource.indexOf('://')==-1&&resource.indexOf('/')!==0) resource=this.basePath+resource;if (this.timestamp) resource+=(resource.indexOf('?')>=0?'&':'?')+'t='+this.timestamp;return resource;}};})();};
+if(!window.CKEDITOR)window.CKEDITOR=(function(){var a={timestamp:'',version:'%VERSION%',revision:'%REV%',_:{},status:'unloaded',basePath:(function(){var d=window.CKEDITOR_BASEPATH||'';if(!d){var e=document.getElementsByTagName('script');for(var f=0;f<e.length;f++){var g=e[f].src.match(/(^|.*[\\\/])ckeditor(?:_basic)?(?:_source)?.js(?:\?.*)?$/i);if(g){d=g[1];break;}}}if(d.indexOf('://')==-1)if(d.indexOf('/')===0)d=location.href.match(/^.*?:\/\/[^\/]*/)[0]+d;else d=location.href.match(/^[^\?]*\/(?:)/)[0]+d;return d;})(),getUrl:function(d){if(d.indexOf('://')==-1&&d.indexOf('/')!==0)d=this.basePath+d;if(this.timestamp&&d.charAt(d.length-1)!='/')d+=(d.indexOf('?')>=0?'&':'?')+('t=')+this.timestamp;return d;}},b=window.CKEDITOR_GETURL;if(b){var c=a.getUrl;a.getUrl=function(d){return b.call(a,d)||c.call(a,d);};}return a;})();
 /*jsl:end*/
 
Index: /CKEditor/branches/versions/3.0.x/ckeditor_source.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/ckeditor_source.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/ckeditor_source.js	(revision 3747)
@@ -6,5 +6,5 @@
 // Compressed version of core/ckeditor_base.js. See original for instructions.
 /*jsl:ignore*/
-if (!window.CKEDITOR){window.CKEDITOR=(function(){return/**@lends CKEDITOR*/{_:{},status:'unloaded',timestamp:'',basePath:(function(){var A='';var B=document.getElementsByTagName('script');for (var i=0;i<B.length;i++){var C=B[i].src.match(/(^|.*[\\\/])ckeditor(?:_basic)?(?:_source)?.js(?:\?.*)?$/i);if (C){A=C[1];break;}};if (A.indexOf('://')==-1){if (A.indexOf('/')===0) A=location.href.match(/^.*?:\/\/[^\/]*/)[0]+A;else A=location.href.match(/^[^\?]*\//)[0]+A;};return A;})(),getUrl:function(resource){if (resource.indexOf('://')==-1&&resource.indexOf('/')!==0) resource=this.basePath+resource;if (this.timestamp) resource+=(resource.indexOf('?')>=0?'&':'?')+'t='+this.timestamp;return resource;}};})();};
+if(!window.CKEDITOR)window.CKEDITOR=(function(){var a={timestamp:'',version:'%VERSION%',revision:'%REV%',_:{},status:'unloaded',basePath:(function(){var d=window.CKEDITOR_BASEPATH||'';if(!d){var e=document.getElementsByTagName('script');for(var f=0;f<e.length;f++){var g=e[f].src.match(/(^|.*[\\\/])ckeditor(?:_basic)?(?:_source)?.js(?:\?.*)?$/i);if(g){d=g[1];break;}}}if(d.indexOf('://')==-1)if(d.indexOf('/')===0)d=location.href.match(/^.*?:\/\/[^\/]*/)[0]+d;else d=location.href.match(/^[^\?]*\/(?:)/)[0]+d;return d;})(),getUrl:function(d){if(d.indexOf('://')==-1&&d.indexOf('/')!==0)d=this.basePath+d;if(this.timestamp&&d.charAt(d.length-1)!='/')d+=(d.indexOf('?')>=0?'&':'?')+('t=')+this.timestamp;return d;}},b=window.CKEDITOR_GETURL;if(b){var c=a.getUrl;a.getUrl=function(d){return b.call(a,d)||c.call(a,d);};}return a;})();
 /*jsl:end*/
 
Index: /CKEditor/branches/versions/3.0.x/config.js
===================================================================
--- /CKEditor/branches/versions/3.0.x/config.js	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/config.js	(revision 3747)
@@ -7,5 +7,5 @@
 {
 	// Define changes to default configuration here. For example:
-	// config.autoLanguage = false;
-	// config.defaultLanguage = 'pt-br';
+	// config.language = 'fr';
+	// config.skin = 'office2003';
 };
Index: /CKEditor/branches/versions/3.0.x/contents.css
===================================================================
--- /CKEditor/branches/versions/3.0.x/contents.css	(revision 3746)
+++ /CKEditor/branches/versions/3.0.x/contents.css	(revision 3747)
@@ -10,40 +10,18 @@
 	font-size: 12px;
 
+	/* Text color */
+	color: #222;
+
 	/* Remove the background color to make it transparent */
 	background-color: #fff;
 }
-
-/* The following declarations are to be removed from this file (#2786) */
-
-img.cke_fakeobject
+img:-moz-broken
 {
-	background-position: center center;
-	background-repeat: no-repeat;
-	border: 1px solid #a9a9a9;
-	width: 80px;
-	height: 80px;
+	-moz-force-broken-image-icon : 1;
+	width : 24px;
+	height : 24px;
 }
-
-img.cke_fakeobject.flash
+img, input, textarea
 {
-	background-image: url(images/flashlogo.gif);
+	cursor: default;
 }
-
-img.cke_fakeobject.object
-{
-	background-image: url(images/plugin.gif);
-}
-
-img.cke_fakeobject.anchor
-{
-	background-image: url(images/anchor.gif);
-	width: 18px;
-	height: 18px;
-}
-
-img.cke_fakeobject.pagebreak
-{
-	background-image: url(images/pagebreak.gif);
-	width: 100%;
-	height: 7px;
-}
