Index: /CKEditor/branches/versions/3.3.x/CHANGES.html
===================================================================
--- /CKEditor/branches/versions/3.3.x/CHANGES.html	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/CHANGES.html	(revision 5535)
@@ -68,4 +68,6 @@
 		<li><a href="http://dev.fckeditor.net/ticket/5479">#5479</a> : Introducing the classic ASP integration files and samples.</li>
 		<li><a href="http://dev.fckeditor.net/ticket/5024">#5024</a> : Added samples (<a href="http://nightly.ckeditor.com/latest/ckeditor/_samples/output_html.html">HTML</a> and <a href="http://nightly.ckeditor.com/latest/ckeditor/_samples/output_xhtml.html">XHTML</a>) to show how to output HTML using fonts and other attributes instead of styles.</li>
+		<li><a href="http://dev.fckeditor.net/ticket/4358">#4358</a> : Introduced the List Properties dialog.</li>
+		<li><a href="http://dev.fckeditor.net/ticket/5485">#5485</a> : Adding the <a href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.contentsLanguage">contentsLanguage</a> configuration option to be able to set the language for the editor contents.</li>
 	</ul>
 	<p>
@@ -113,4 +115,6 @@
 		<li><a href="http://dev.fckeditor.net/ticket/5719">#5719</a> : [IE] 'change' dialog event should not be triggered when dialog is already closed.</li>
 		<li><a href="http://dev.fckeditor.net/ticket/5747">#5747</a> : [IE] Error thrown when IE input field editing mode is turned on.</li>
+		<li><a href="http://dev.fckeditor.net/ticket/5516">#5516</a> : IE8: Toolbar buttons have higher bottom padding.</li>
+		<li><a href="http://dev.fckeditor.net/ticket/5402">#5402</a> : SHIFT-ENTER could now be used to exit from preformat block.</li>
 		<li>SCAYT plugin related:<ul>
 			<li><a href="http://dev.fckeditor.net/ticket/4836">#4836</a> : Using SCAYT result in fragile elements when applying inline styles.</li>
@@ -228,5 +232,4 @@
 		<li><a href="http://dev.fckeditor.net/ticket/5440">#5440</a> : Mobile browsers (iPhone, Android...) are marked as incompatible as they don't support editing features.</li>
 		<li><a href="http://dev.fckeditor.net/ticket/5504">#5504</a> : [IE6/7] 'Paste' dialog will always get opened even when user allows the clipboard access dialog when using 'Paste' button.</li>
-		<li><a href="http://dev.fckeditor.net/ticket/5516">#5516</a> : IE8: Toolbar buttons have higher bottom padding.</li>
 		<li>Updated the following language files:<ul>
 			<li><a href="http://dev.fckeditor.net/ticket/5326">#5326</a> : Catalan;</li>
Index: /CKEditor/branches/versions/3.3.x/_dev/docs_build/template/publish.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_dev/docs_build/template/publish.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_dev/docs_build/template/publish.js	(revision 5535)
@@ -1,3 +1,3 @@
-/** Called automatically by JsDoc Toolkit. */
+﻿/** Called automatically by JsDoc Toolkit. */
 function publish(symbolSet) {
 	publish.conf = {  // trailing slash expected for dirs
Index: /CKEditor/branches/versions/3.3.x/_samples/asp/advanced.asp
===================================================================
--- /CKEditor/branches/versions/3.3.x/_samples/asp/advanced.asp	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_samples/asp/advanced.asp	(revision 5535)
@@ -1,3 +1,3 @@
-<%@  codepage="65001" language="VBScript" %>
+﻿<%@  codepage="65001" language="VBScript" %>
 <% Option Explicit %>
 <!-- #INCLUDE file="../../ckeditor.asp" -->
Index: /CKEditor/branches/versions/3.3.x/_samples/asp/events.asp
===================================================================
--- /CKEditor/branches/versions/3.3.x/_samples/asp/events.asp	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_samples/asp/events.asp	(revision 5535)
@@ -1,3 +1,3 @@
-<%@  codepage="65001" language="VBScript" %>
+﻿<%@  codepage="65001" language="VBScript" %>
 <% Option Explicit %>
 <!-- #INCLUDE file="../../ckeditor.asp" -->
Index: /CKEditor/branches/versions/3.3.x/_samples/asp/index.html
===================================================================
--- /CKEditor/branches/versions/3.3.x/_samples/asp/index.html	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_samples/asp/index.html	(revision 5535)
@@ -56,11 +56,11 @@
 that will be created:</p>
 <ul>
-	<li>returnOutput : if set to true, the functions won't dump the code with response.write, but instead they will return it so 
+	<li>returnOutput : if set to true, the functions won't dump the code with response.write, but instead they will return it so
 	you can do anything you want</li>
 	<li>basePath: location of the CKEditor scripts</li>
-	<li>initialized: if you set it to true, it means that you have already included the CKEditor.js file into the page and it 
+	<li>initialized: if you set it to true, it means that you have already included the CKEditor.js file into the page and it
 		doesn't have to be generated again.</li>
 	<li>textareaAttributes: You can set here a Dictionary object with the attributes that you want to output in the call to the "editor" method.</li>
-	
+
 	<li>config: Allows to set config values for all the instances from now on.</li>
 	<li>instanceConfig: Allows to set config values just for the next instance.</li>
Index: /CKEditor/branches/versions/3.3.x/_samples/asp/replace.asp
===================================================================
--- /CKEditor/branches/versions/3.3.x/_samples/asp/replace.asp	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_samples/asp/replace.asp	(revision 5535)
@@ -1,3 +1,3 @@
-<%@  codepage="65001" language="VBScript" %>
+﻿<%@  codepage="65001" language="VBScript" %>
 <% Option Explicit %>
 <!-- #INCLUDE file="../../ckeditor.asp" -->
Index: /CKEditor/branches/versions/3.3.x/_samples/asp/replaceall.asp
===================================================================
--- /CKEditor/branches/versions/3.3.x/_samples/asp/replaceall.asp	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_samples/asp/replaceall.asp	(revision 5535)
@@ -1,3 +1,3 @@
-<%@  codepage="65001" language="VBScript" %>
+﻿<%@  codepage="65001" language="VBScript" %>
 <% Option Explicit %>
 <!-- #INCLUDE file="../../ckeditor.asp" -->
Index: /CKEditor/branches/versions/3.3.x/_samples/asp/sample_posteddata.asp
===================================================================
--- /CKEditor/branches/versions/3.3.x/_samples/asp/sample_posteddata.asp	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_samples/asp/sample_posteddata.asp	(revision 5535)
@@ -1,3 +1,3 @@
-<%@  codepage="65001" language="VBScript" %>
+﻿<%@  codepage="65001" language="VBScript" %>
 <% Option Explicit %>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Index: /CKEditor/branches/versions/3.3.x/_samples/asp/standalone.asp
===================================================================
--- /CKEditor/branches/versions/3.3.x/_samples/asp/standalone.asp	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_samples/asp/standalone.asp	(revision 5535)
@@ -1,3 +1,3 @@
-<%@  codepage="65001" language="VBScript" %>
+﻿<%@  codepage="65001" language="VBScript" %>
 <% Option Explicit %>
 <!-- #INCLUDE file="../../ckeditor.asp" -->
Index: /CKEditor/branches/versions/3.3.x/_samples/output_html.html
===================================================================
--- /CKEditor/branches/versions/3.3.x/_samples/output_html.html	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_samples/output_html.html	(revision 5535)
@@ -66,5 +66,5 @@
 						 */
 						// Define the way font elements will be applied to the document. The "font"
-						// element will be used. 
+						// element will be used.
 						font_style :
 						{
@@ -104,5 +104,5 @@
 						 * Styles combo.
 						 */
-						stylesSet : 
+						stylesSet :
 								[
 									{ name : 'Computer Code', element : 'code' },
@@ -113,5 +113,5 @@
 									{ name : 'Deleted Text', element : 'del' },
 									{ name : 'Inserted Text', element : 'ins' },
-									
+
 									{ name : 'Cited Work', element : 'cite' },
 									{ name : 'Inline Quotation', element : 'q' }
@@ -149,5 +149,5 @@
 
 	// Output properties as attributes, not styles.
-	htmlFilter.addRules( 
+	htmlFilter.addRules(
 		{
 			elements :
@@ -222,24 +222,24 @@
 
 
-/** 
-* Convert a CSS rgb(R, G, B) color back to #RRGGBB format. 
-* @param Css style string (can include more than one color 
-* @return Converted css style. 
-*/ 
-function convertRGBToHex( cssStyle ) 
-{ 
-	return cssStyle.replace( /(?:rgb\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\))/gi, function( match, red, green, blue ) 
-		{ 
-			red = parseInt( red, 10 ).toString( 16 ); 
-			green = parseInt( green, 10 ).toString( 16 ); 
-			blue = parseInt( blue, 10 ).toString( 16 ); 
-			var color = [red, green, blue] ; 
-
-			// Add padding zeros if the hex value is less than 0x10. 
-			for ( var i = 0 ; i < color.length ; i++ ) 
-				color[i] = String( '0' + color[i] ).slice( -2 ) ; 
-			 
-			return '#' + color.join( '' ) ; 
-		 }); 
+/**
+* Convert a CSS rgb(R, G, B) color back to #RRGGBB format.
+* @param Css style string (can include more than one color
+* @return Converted css style.
+*/
+function convertRGBToHex( cssStyle )
+{
+	return cssStyle.replace( /(?:rgb\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\))/gi, function( match, red, green, blue )
+		{
+			red = parseInt( red, 10 ).toString( 16 );
+			green = parseInt( green, 10 ).toString( 16 );
+			blue = parseInt( blue, 10 ).toString( 16 );
+			var color = [red, green, blue] ;
+
+			// Add padding zeros if the hex value is less than 0x10.
+			for ( var i = 0 ; i < color.length ; i++ )
+				color[i] = String( '0' + color[i] ).slice( -2 ) ;
+
+			return '#' + color.join( '' ) ;
+		 });
 }
 			//]]>
Index: /CKEditor/branches/versions/3.3.x/_source/core/dom/element.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/core/dom/element.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/core/dom/element.js	(revision 5535)
@@ -1,3 +1,3 @@
-/*
+﻿/*
 Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.html or http://ckeditor.com/license
Index: /CKEditor/branches/versions/3.3.x/_source/core/dom/range.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/core/dom/range.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/core/dom/range.js	(revision 5535)
@@ -1387,5 +1387,5 @@
 				&& CKEDITOR.dtd.$empty[ startNode.getName() ] )
 				startNode = startNode.getParent(), startOffset = startNode.getIndex();
-			
+
 			this.startContainer	= startNode;
 			this.startOffset	= startOffset;
@@ -1415,5 +1415,5 @@
 
 			// Fixing invalid range end inside dtd empty elements.
-			if( endNode.type == CKEDITOR.NODE_ELEMENT 
+			if( endNode.type == CKEDITOR.NODE_ELEMENT
 				&& CKEDITOR.dtd.$empty[ endNode.getName() ] )
 				endNode = endNode.getParent(), endOffset = endNode.getIndex() + 1;
Index: /CKEditor/branches/versions/3.3.x/_source/core/htmlparser/filter.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/core/htmlparser/filter.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/core/htmlparser/filter.js	(revision 5535)
@@ -253,5 +253,5 @@
 			if ( isNode )
 			{
-				// No further filtering if it's not anymore 
+				// No further filtering if it's not anymore
 				// fitable for the subsequent filters.
 				if ( ret && ( ret.name != orgName
Index: /CKEditor/branches/versions/3.3.x/_source/core/tools.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/core/tools.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/core/tools.js	(revision 5535)
@@ -1,3 +1,3 @@
-/*
+﻿/*
 Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.html or http://ckeditor.com/license
Index: /CKEditor/branches/versions/3.3.x/_source/lang/af.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/af.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/af.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Voltooi die plekhouer naam asseblief'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/ar.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/ar.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/ar.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'الرجاء كتابة اسم الإشارة المرجعية'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'إضافة كلمة',
 		emptyDic		: 'اسم القاموس يجب ألا يكون فارغاً.',
-		
+
 		optionsTab		: 'خيارات',
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'لغات',
-		
+
 		dictionariesTab	: 'قواميس',
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'عن'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/bg.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/bg.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/bg.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Моля, въведете име на котвата'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/bn.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/bn.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/bn.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'নোঙরের নাম টাইপ করুন'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/bs.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/bs.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/bs.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Please type the anchor name' // MISSING
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/ca.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/ca.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/ca.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Si us plau, escriviu el nom de l\'ancora'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Afegeix una paraula',
 		emptyDic		: 'El nom del diccionari no hauria d\'estar buit.',
-		
+
 		optionsTab		: 'Opcions',
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Idiomes',
-		
+
 		dictionariesTab	: 'Diccionaris',
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'Quant a'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/cs.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/cs.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/cs.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Zadejte prosím název záložky'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Přidat slovo',
 		emptyDic		: 'Název slovníku nesmí být prázdný.',
-		
+
 		optionsTab		: 'Nastavení',
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Jazyky',
-		
+
 		dictionariesTab	: 'Slovníky',
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'O aplikaci'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/cy.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/cy.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/cy.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Teipiwch enw\'r angor'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Ychwanegu Gair',
 		emptyDic		: 'Ni ddylai enw\'r geiriadur fod yn wag.',
-		
+
 		optionsTab		: 'Opsiynau',
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Ieithoedd',
-		
+
 		dictionariesTab	: 'Geiriaduron',
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'Ynghylch'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/da.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/da.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/da.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Indtast bogmærke navn'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Tilføj ord',
 		emptyDic		: 'Ordbogsnavn må ikke være tom.',
-		
+
 		optionsTab		: 'Indstillinger',
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Sprog',
-		
+
 		dictionariesTab	: 'Ordbøger',
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'Om'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/de.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/de.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/de.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Bitte geben Sie den Namen des Ankers ein'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Wort hinzufügen',
 		emptyDic		: 'Wörterbuchname sollte leer sein.',
-		
+
 		optionsTab		: 'Optionen',
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Sprachen',
-		
+
 		dictionariesTab	: 'Wörterbücher',
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'Über'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/el.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/el.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/el.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Παρακαλούμε εισάγετε όνομα άγκυρας'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/en-au.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/en-au.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/en-au.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Please type the anchor name'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/en-ca.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/en-ca.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/en-ca.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Please type the anchor name'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/en-gb.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/en-gb.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/en-gb.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Please type the anchor name'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/en.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/en.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/en.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Please type the anchor name'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)'
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word',
 		emptyDic		: 'Dictionary name should not be empty.',
-		
+
 		optionsTab		: 'Options',
 		allCaps			: 'Ignore All-Caps Words',
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case',
 		mixedWithDigits	: 'Ignore Words with Numbers',
-		
+
 		languagesTab	: 'Languages',
-		
+
 		dictionariesTab	: 'Dictionaries',
 		dic_field_name	: 'Dictionary name',
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename',
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.',
-		
+
 		aboutTab		: 'About'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/eo.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/eo.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/eo.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Bv tajpi la ankran nomon'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/es.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/es.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/es.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Por favor, complete el nombre de la Referencia'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Añadir palabra',
 		emptyDic		: 'El nombre del diccionario no puede estar en blanco.',
-		
+
 		optionsTab		: 'Opciones',
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Idiomas',
-		
+
 		dictionariesTab	: 'Diccionarios',
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'Acerca de'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/et.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/et.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/et.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Palun sisest ankru nimi'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/eu.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/eu.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/eu.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Idatzi ainguraren izena'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Hitza Gehitu',
 		emptyDic		: 'Hiztegiaren izena ezin da hutsik egon.',
-		
+
 		optionsTab		: 'Aukerak',
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Hizkuntzak',
-		
+
 		dictionariesTab	: 'Hiztegiak',
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'Honi buruz'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/fa.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/fa.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/fa.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'لطفا نام لنگر را بنویسید'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/fi.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/fi.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/fi.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Ankkurille on kirjoitettava nimi'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Desimaalit, alussa nolla (01, 02, 03, jne.)'
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Lisää sana',
 		emptyDic		: 'Sanakirjan nimi on annettava.',
-		
+
 		optionsTab		: 'Asetukset',
 		allCaps			: 'Ohita sanat, jotka on kirjoitettu kokonaan isoilla kirjaimilla',
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ohita sanat, joissa on sekoitettu isoja ja pieniä kirjaimia',
 		mixedWithDigits	: 'Ohita sanat, joissa on numeroita',
-		
+
 		languagesTab	: 'Kielet',
-		
+
 		dictionariesTab	: 'Sanakirjat',
 		dic_field_name	: 'Sanakirjan nimi',
@@ -709,5 +709,5 @@
 		dic_rename		: 'Nimeä uudelleen',
 		dic_info		: 'Oletuksena sanakirjat tallennetaan evästeeseen, mutta evästeiden koko on kuitenkin rajallinen. Sanakirjan kasvaessa niin suureksi, ettei se enää mahdu evästeeseen, sanakirja täytyy tallentaa palvelimellemme. Tallentaaksesi sanakirjasi palvelimellemme tulee sinun antaa sille nimi. Jos olet jo tallentanut sanakirjan, anna sen nimi ja klikkaa Palauta-painiketta',
-		
+
 		aboutTab		: 'Tietoa'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/fo.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/fo.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/fo.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Vinarliga rita marknasteinsins heiti'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Legg orð afturat',
 		emptyDic		: 'Heiti á orðabók eigur ikki at vera tómt.',
-		
+
 		optionsTab		: 'Uppseting',
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Tungumál',
-		
+
 		dictionariesTab	: 'Orðabøkur',
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'Um'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/fr-ca.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/fr-ca.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/fr-ca.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Veuillez saisir le nom de l\'ancre'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/fr.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/fr.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/fr.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Veuillez entrer le nom de l\'ancre'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Ajouter le mot',
 		emptyDic		: 'Le nom du dictionnaire ne devrait pas être vide.',
-		
+
 		optionsTab		: 'Options',
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Langues',
-		
+
 		dictionariesTab	: 'Dictionnaires',
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'A propos de'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/gl.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/gl.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/gl.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Por favor, escriba o nome da referencia'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/gu.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/gu.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/gu.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'ઍંકરનું નામ ટાઈપ કરો'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/he.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/he.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/he.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'יש להקליד שם לנקודת עיגון'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'ספרות עם 0 בהתחלה (01, 02, 03 וכו\')'
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'הוספת מילה',
 		emptyDic		: 'יש לבחור מילון.',
-		
+
 		optionsTab		: 'אפשרויות',
 		allCaps			: 'התעלם ממילים שכל אותיותיהן גדולות',
@@ -699,7 +699,7 @@
 		mixedCase		: 'התעלם ממילים עם אותיות גדולות וקטנות ביחד',
 		mixedWithDigits	: 'התעלם ממילים עם מספרים',
-		
+
 		languagesTab	: 'שפות',
-		
+
 		dictionariesTab	: 'מילון',
 		dic_field_name	: 'שם המילון',
@@ -709,5 +709,5 @@
 		dic_rename		: 'שינוי שם',
 		dic_info		: 'בהתחלה מילון המשתמש מאוחסן בעוגיה, אך עוגיות מוגבלות במקום. כאשר המילון מגיע לגודל בו הוא אינו יכול להתאכסן בעוגיה, המילון צריך להתאכסן בשרתנו. לשם כך עליך לתת שם למילון. אם כבר יש לך מילון מאוחסן, יש להכניס את שמו וללחוץ על כפתור השחזור.',
-		
+
 		aboutTab		: 'אודות'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/hi.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/hi.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/hi.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'ऐंकर का नाम टाइप करें'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/hr.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/hr.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/hr.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Molimo unesite ime sidra'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Dodaj riječ',
 		emptyDic		: 'Naziv rječnika ne smije biti prazno.',
-		
+
 		optionsTab		: 'Opcije',
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Jezici',
-		
+
 		dictionariesTab	: 'Rječnici',
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'O SCAYT'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/hu.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/hu.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/hu.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Kérem adja meg a horgony nevét'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Szó hozzáadása',
 		emptyDic		: 'A szótár nevét meg kell adni.',
-		
+
 		optionsTab		: 'Beállítások',
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Nyelvek',
-		
+
 		dictionariesTab	: 'Szótár',
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'Névjegy'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/is.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/is.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/is.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Sláðu inn nafn bókamerkis!'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/it.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/it.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/it.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Inserici il nome dell\'ancora'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Aggiungi Parola',
 		emptyDic		: 'Il nome del dizionario non può essere vuoto.',
-		
+
 		optionsTab		: 'Opzioni',
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Lingue',
-		
+
 		dictionariesTab	: 'Dizionari',
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/ja.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/ja.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/ja.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'アンカー名を必ず入力してください。'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: '語句追加',
 		emptyDic		: '辞書名は必ず入力してください',
-		
+
 		optionsTab		: 'オプション',
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: '言語',
-		
+
 		dictionariesTab	: '辞書',
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'バージョン情報'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/km.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/km.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/km.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'សូមសរសេរ ឈ្មោះយុទ្ធថ្កា'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/ko.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/ko.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/ko.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: '책갈피 이름을 입력하십시요.'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/lt.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/lt.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/lt.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Prašome įvesti žymės vardą'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/lv.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/lv.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/lv.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Lūdzu norādiet iezīmes nosaukumu'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/mn.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/mn.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/mn.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Холбоос төрөл оруулна уу'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/ms.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/ms.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/ms.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Sila taip nama pautan'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/nb.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/nb.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/nb.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Vennligst skriv inn ankernavnet'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Legg til ord',
 		emptyDic		: 'Ordboknavn skal ikke være tom',
-		
+
 		optionsTab		: 'Valg',
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Språk',
-		
+
 		dictionariesTab	: 'Ordbøker',
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'Om'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/nl.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/nl.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/nl.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Geef de naam van de interne link op'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Woord toevoegen',
 		emptyDic		: 'De naam van het woordenboek mag niet leeg zijn.',
-		
+
 		optionsTab		: 'Opties',
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Talen',
-		
+
 		dictionariesTab	: 'Woordenboeken',
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'Over'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/no.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/no.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/no.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Vennligst skriv inn ankernavnet'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Legg til ord',
 		emptyDic		: 'Ordboknavn skal ikke være tom',
-		
+
 		optionsTab		: 'Valg',
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Språk',
-		
+
 		dictionariesTab	: 'Ordbøker',
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'Om'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/pl.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/pl.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/pl.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Wpisz nazwę kotwicy'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Dodaj słowo',
 		emptyDic		: 'Nazwa słownika nie może być pusta.',
-		
+
 		optionsTab		: 'Opcje',
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Języki',
-		
+
 		dictionariesTab	: 'Słowniki',
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'Na temat SCAYT'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/pt-br.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/pt-br.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/pt-br.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Por favor, digite o nome da âncora'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Adicionar palavra',
 		emptyDic		: 'O nome do dicionário não deveria estar vazio.',
-		
+
 		optionsTab		: 'Opções',
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Línguas',
-		
+
 		dictionariesTab	: 'Dicionários',
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'Sobre'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/pt.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/pt.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/pt.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Por favor, introduza o nome da âncora'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/ro.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/ro.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/ro.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Vă rugăm scrieţi numele ancorei'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/ru.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/ru.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/ru.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Пожалуйста, введите имя якоря'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Добавить слово',
 		emptyDic		: 'Имя словаря должно быть не пустым.',
-		
+
 		optionsTab		: 'Настройки',
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Языки',
-		
+
 		dictionariesTab	: 'Словари',
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'О словарях'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/sk.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/sk.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/sk.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Zadajte prosím meno kotvy'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/sl.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/sl.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/sl.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Prosim vnesite ime zaznamka'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Dodaj besedo',
 		emptyDic		: 'Ime slovarja ne more biti prazno.',
-		
+
 		optionsTab		: 'Možnosti',
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Jeziki',
-		
+
 		dictionariesTab	: 'Slovarji',
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'O storitvi'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/sr-latn.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/sr-latn.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/sr-latn.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Unesite ime sidra'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/sr.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/sr.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/sr.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Молимо Вас да унесете име сидра'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/sv.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/sv.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/sv.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Var god ange ett ankarnamn'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/th.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/th.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/th.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'กรุณาระบุชื่อของ Anchor'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Add Word', // MISSING
 		emptyDic		: 'Dictionary name should not be empty.', // MISSING
-		
+
 		optionsTab		: 'Options', // MISSING
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Languages', // MISSING
-		
+
 		dictionariesTab	: 'Dictionaries', // MISSING
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'About' // MISSING
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/tr.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/tr.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/tr.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Lütfen bağlantı için ad giriniz'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Kelime Ekle',
 		emptyDic		: 'Sözlük adı boş olamaz.',
-		
+
 		optionsTab		: 'Seçenekler',
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Diller',
-		
+
 		dictionariesTab	: 'Sözlükler',
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'Hakkında'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/uk.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/uk.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/uk.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Будь ласка, занесіть ім\'я якоря'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Додати слово',
 		emptyDic		: 'Назва словника повинна бути заповнена.',
-		
+
 		optionsTab		: 'Опції',
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: 'Мови',
-		
+
 		dictionariesTab	: 'Словники',
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'Про'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/vi.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/vi.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/vi.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: 'Hãy nhập vào tên của điểm neo'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Kiểu số (01, 02, 03...)'
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: 'Thêm từ',
 		emptyDic		: 'Tên của từ điển không được để trống.',
-		
+
 		optionsTab		: 'Tùy chọn',
 		allCaps			: 'Không phân biệt chữ HOA chữ thường',
@@ -699,7 +699,7 @@
 		mixedCase		: 'Không phân biệt loại chữ',
 		mixedWithDigits	: 'Không phân biệt chữ và số',
-		
+
 		languagesTab	: 'Tab ngôn ngữ',
-		
+
 		dictionariesTab	: 'Từ điển',
 		dic_field_name	: 'Tên từ điển',
@@ -709,5 +709,5 @@
 		dic_rename		: 'Thay tên',
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: 'Thông tin'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/zh-cn.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/zh-cn.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/zh-cn.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: '请输入锚点名称'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: '添加单词',
 		emptyDic		: '字典名不应为空.',
-		
+
 		optionsTab		: '选项',
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: '语言',
-		
+
 		dictionariesTab	: '字典',
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: '关于'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/lang/zh.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/lang/zh.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/lang/zh.js	(revision 5535)
@@ -189,5 +189,5 @@
 		errorName	: '請輸入錨點名稱'
 	},
-	
+
 	// List style dialog
 	list:
@@ -212,5 +212,5 @@
 		decimalLeadingZero	: 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
 	},
-	
+
 	// Find And Replace Dialog
 	findAndReplace :
@@ -693,5 +693,5 @@
 		addWord			: '添加單詞',
 		emptyDic		: '字典名不應為空.',
-		
+
 		optionsTab		: '選項',
 		allCaps			: 'Ignore All-Caps Words', // MISSING
@@ -699,7 +699,7 @@
 		mixedCase		: 'Ignore Words with Mixed Case', // MISSING
 		mixedWithDigits	: 'Ignore Words with Numbers', // MISSING
-		
+
 		languagesTab	: '語言',
-		
+
 		dictionariesTab	: '字典',
 		dic_field_name	: 'Dictionary name', // MISSING
@@ -709,5 +709,5 @@
 		dic_rename		: 'Rename', // MISSING
 		dic_info		: 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type it\'s name and click the Restore button.', // MISSING
-		
+
 		aboutTab		: '關於'
 	},
Index: /CKEditor/branches/versions/3.3.x/_source/plugins/clipboard/dialogs/paste.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/plugins/clipboard/dialogs/paste.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/plugins/clipboard/dialogs/paste.js	(revision 5535)
@@ -117,5 +117,5 @@
 			container.setHtml( '' );
 			container.append( iframe );
-			
+
 			// IE need a redirect on focus to make
 			// the cursor blinking inside iframe. (#5461)
Index: /CKEditor/branches/versions/3.3.x/_source/plugins/clipboard/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/plugins/clipboard/plugin.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/plugins/clipboard/plugin.js	(revision 5535)
@@ -281,5 +281,5 @@
 		}
 	}
-	
+
 	// Register the plugin.
 	CKEDITOR.plugins.add( 'clipboard',
Index: /CKEditor/branches/versions/3.3.x/_source/plugins/colordialog/dialogs/colordialog.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/plugins/colordialog/dialogs/colordialog.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/plugins/colordialog/dialogs/colordialog.js	(revision 5535)
@@ -1,3 +1,4 @@
-/*Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
+/*
+Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.html or http://ckeditor.com/license
 */
Index: /CKEditor/branches/versions/3.3.x/_source/plugins/dialog/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/plugins/dialog/plugin.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/plugins/dialog/plugin.js	(revision 5535)
@@ -1,3 +1,3 @@
-/*
+﻿/*
 Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.html or http://ckeditor.com/license
@@ -1891,5 +1891,5 @@
 		resizeCover = null;
 	}
-	
+
 	function removeCovers()
 	{
Index: /CKEditor/branches/versions/3.3.x/_source/plugins/dialogui/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/plugins/dialogui/plugin.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/plugins/dialogui/plugin.js	(revision 5535)
@@ -93,5 +93,5 @@
 								if ( !dialog.parts.dialog.isVisible() )
 									return;
-								
+
 								this.fire( 'change', { value : this.getValue() } );
 							}, this );
Index: /CKEditor/branches/versions/3.3.x/_source/plugins/enterkey/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/plugins/enterkey/plugin.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/plugins/enterkey/plugin.js	(revision 5535)
@@ -112,5 +112,5 @@
 				if ( !newBlock )
 					newBlock = doc.createElement( blockTag );
-				// Force the enter block unless we're talking of a list item. 
+				// Force the enter block unless we're talking of a list item.
 				else if ( forceMode && !newBlock.is( 'li' ) )
 					newBlock.renameNode( blockTag );
Index: /CKEditor/branches/versions/3.3.x/_source/plugins/flash/dialogs/flash.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/plugins/flash/dialogs/flash.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/plugins/flash/dialogs/flash.js	(revision 5535)
@@ -1,3 +1,3 @@
-/*
+﻿/*
 Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.html or http://ckeditor.com/license
Index: /CKEditor/branches/versions/3.3.x/_source/plugins/image/dialogs/image.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/plugins/image/dialogs/image.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/plugins/image/dialogs/image.js	(revision 5535)
@@ -1,3 +1,3 @@
-/*
+﻿/*
 Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.html or http://ckeditor.com/license
Index: /CKEditor/branches/versions/3.3.x/_source/plugins/link/dialogs/link.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/plugins/link/dialogs/link.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/plugins/link/dialogs/link.js	(revision 5535)
@@ -414,5 +414,5 @@
 										items :
 										[
-											// Force 'ltr' for protocol names in BIDI. (#5433) 
+											// Force 'ltr' for protocol names in BIDI. (#5433)
 											[ 'http://\u200E', 'http://' ],
 											[ 'https://\u200E', 'https://' ],
Index: /CKEditor/branches/versions/3.3.x/_source/plugins/liststyle/dialogs/liststyle.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/plugins/liststyle/dialogs/liststyle.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/plugins/liststyle/dialogs/liststyle.js	(revision 5535)
@@ -3,5 +3,5 @@
  * For licensing, see LICENSE.html or http://ckeditor.com/license
  */
- 
+
 (function()
 {
@@ -11,9 +11,9 @@
 		try { range  = editor.getSelection().getRanges()[ 0 ]; }
 		catch( e ) { return null; }
-				
+
 		range.shrink( CKEDITOR.SHRINK_TEXT );
 		return range.getCommonAncestor().getAscendant( listTag, true );
 	}
-	
+
 	var mapListStyle = {
 		'a' : 'lower-alpha',
@@ -26,5 +26,5 @@
 		'square' : 'square'
 	};
-	
+
 	function listStyle( editor, startupPage )
 	{
@@ -66,5 +66,5 @@
 									if ( value )
 										element.setStyle( 'list-style-type', value );
-									else 
+									else
 										element.removeStyle( 'list-style-type' );
 								}
@@ -73,9 +73,9 @@
 					}
 				],
-				onShow: function() 
+				onShow: function()
 				{
 					var editor = this.getParentEditor(),
 						element = getListElement( editor, 'ul' );
-					
+
 					element && this.setupContent( element );
 				},
@@ -84,5 +84,5 @@
 					var editor = this.getParentEditor(),
 						element = getListElement( editor, 'ul' );
-					
+
 					element && this.commitContent( element );
 				}
@@ -135,5 +135,5 @@
 											[ editor.lang.list.lowerGreek, 'lower-greek' ],
 											[ editor.lang.list.decimal, 'decimal' ],
-											[ editor.lang.list.decimalLeadingZero, 'decimal-leading-zero' ],
+											[ editor.lang.list.decimalLeadingZero, 'decimal-leading-zero' ]
 										],
 										setup : function( element )
@@ -149,7 +149,7 @@
 										{
 											var value = this.getValue();
-											if ( value ) 
+											if ( value )
 												element.setStyle( 'list-style-type', value );
-											else 
+											else
 												element.removeStyle( 'list-style-type' );
 										}
@@ -160,5 +160,5 @@
 					}
 				],
-				onShow: function() 
+				onShow: function()
 				{
 					var editor = this.getParentEditor(),
@@ -171,5 +171,5 @@
 					var editor = this.getParentEditor(),
 						element = getListElement( editor, 'ol' );
-					
+
 					element && this.commitContent( element );
 				}
@@ -177,5 +177,5 @@
 		}
 	}
-	
+
 	CKEDITOR.dialog.add( 'numberedListStyle', function( editor )
 		{
Index: /CKEditor/branches/versions/3.3.x/_source/plugins/liststyle/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/plugins/liststyle/plugin.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/plugins/liststyle/plugin.js	(revision 5535)
@@ -37,5 +37,5 @@
 					});
 			}
-		
+
 			// If the "contextmenu" plugin is loaded, register the listeners.
 			if ( editor.contextMenu )
@@ -45,5 +45,5 @@
 						if ( !element )
 							return null;
-						
+
 						if ( element.getAscendant( 'ol') )
 							return { numberedlist: CKEDITOR.TRISTATE_OFF };
@@ -55,5 +55,5 @@
 		}
 	};
-	
+
 	CKEDITOR.plugins.add( 'liststyle', CKEDITOR.plugins.liststyle );
 })();
Index: /CKEditor/branches/versions/3.3.x/_source/plugins/pastetext/dialogs/pastetext.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/plugins/pastetext/dialogs/pastetext.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/plugins/pastetext/dialogs/pastetext.js	(revision 5535)
@@ -1,3 +1,3 @@
-/*
+﻿/*
 Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.html or http://ckeditor.com/license
Index: /CKEditor/branches/versions/3.3.x/_source/plugins/resize/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/plugins/resize/plugin.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/plugins/resize/plugin.js	(revision 5535)
Index: /CKEditor/branches/versions/3.3.x/_source/plugins/scayt/dialogs/options.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/plugins/scayt/dialogs/options.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/plugins/scayt/dialogs/options.js	(revision 5535)
@@ -244,6 +244,6 @@
 		}
 
-		var about = '<p><img src="' + scayt.getAboutInfo().logoURL + '" /></p>' +
-				'<p>' + captions[ 'version' ] + scayt.getAboutInfo().version.toString() + '</p>' +
+		var about = '<p><img src="' + window.scayt.getAboutInfo().logoURL + '" /></p>' +
+				'<p>' + captions[ 'version' ] + window.scayt.getAboutInfo().version.toString() + '</p>' +
 				'<p>' + captions[ 'about_throwt_copy' ] + '</p>';
 
Index: /CKEditor/branches/versions/3.3.x/_source/plugins/scayt/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/plugins/scayt/plugin.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/plugins/scayt/plugin.js	(revision 5535)
@@ -1,3 +1,3 @@
-/*
+﻿/*
 Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.html or http://ckeditor.com/license
@@ -13,5 +13,5 @@
 	var commandName 	= 'scaytcheck',
 		openPage		= '';
-		
+
 	// Checks if a value exists in an array
 	function in_array(needle, haystack)
@@ -45,5 +45,5 @@
 			oParams.userDictionaryName = editor.config.scayt_userDictionaryName || '';
 			oParams.sLang = editor.config.scayt_sLang || 'en_US';
-			
+
 			// Introduce SCAYT onLoad callback. (#5632)
 			oParams.onLoad = function()
@@ -65,5 +65,5 @@
 					setTimeout( function(){ editor.resetDirty(); } );
 			};
-			
+
 			var scayt_custom_params = window.scayt_custom_params;
 			if ( typeof scayt_custom_params == 'object')
@@ -272,5 +272,5 @@
 					otherImage.contents = scayt_instance.reset( otherContents ) || '';
 				}
-				
+
 				var retval = org.apply( this, arguments );
 
@@ -280,9 +280,9 @@
 			};
 		});
-		
+
 		if ( editor.document )
 			createInstance();
 	};
-	
+
 CKEDITOR.plugins.scayt =
 	{
@@ -295,5 +295,5 @@
 			if ( editor && editor.name && typeof ( this.controlInfo[ editor.name ] ) != 'object' )
 				this.controlInfo[ editor.name ] = {};
-			
+
 			for ( var infoOpt in o )
 				this.controlInfo[ editor.name ][ infoOpt ] = o[ infoOpt ];
@@ -335,5 +335,5 @@
 		{
 			if ( editor &&
-					editor.name && 
+					editor.name &&
 					this.controlInfo[editor.name] )
 			{
@@ -366,5 +366,5 @@
 			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()
@@ -756,5 +756,5 @@
 					});
 			}
-			
+
 			var showInitialState = function()
 				{
@@ -802,5 +802,5 @@
 
 			editor.addRemoveFormatFilter && editor.addRemoveFormatFilter( scaytFilter );
-			
+
 		}
 	});
@@ -951,5 +951,5 @@
  *     <li>'control'     - SCAYT commands, such as 'Ignore' and 'Add Word'</li>
  * </ul>
- * 
+ *
  * @name CKEDITOR.config.scayt_contextMenuItemsOrder
  * @type String
@@ -958,6 +958,2 @@
  * config.scayt_contextMenuItemsOrder = 'moresuggest|control|suggest';
  */
-
- 
-
-
Index: /CKEditor/branches/versions/3.3.x/_source/plugins/selection/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/plugins/selection/plugin.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/plugins/selection/plugin.js	(revision 5535)
@@ -766,5 +766,5 @@
 						enclosed,
 						selected;
-					
+
 					// Check first any enclosed element, e.g. <ul>[<li><a href="#">item</a></li>]</ul>
 					for ( var i = 2; i && !( ( enclosed = range.getEnclosedNode() )
@@ -773,8 +773,8 @@
 						&& ( selected = enclosed ) ); i-- )
 					{
-						// Then check any deep wrapped element, e.g. [<b><i><img /></i></b>] 
+						// Then check any deep wrapped element, e.g. [<b><i><img /></i></b>]
 						range.shrink( CKEDITOR.SHRINK_ELEMENT );
 					}
-					
+
 					return  selected.$;
 				});
Index: /CKEditor/branches/versions/3.3.x/_source/plugins/smiley/dialogs/smiley.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/plugins/smiley/dialogs/smiley.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/plugins/smiley/dialogs/smiley.js	(revision 5535)
@@ -1,3 +1,3 @@
-/*
+﻿/*
 Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.html or http://ckeditor.com/license
Index: /CKEditor/branches/versions/3.3.x/_source/plugins/styles/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/plugins/styles/plugin.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/plugins/styles/plugin.js	(revision 5535)
@@ -1,3 +1,3 @@
-/*
+﻿/*
 Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.html or http://ckeditor.com/license
@@ -723,7 +723,7 @@
 		var iterator = range.createIterator();
 		iterator.enforceRealBlocks = true;
-		
+
 		// make recognize <br /> tag as a separator in ENTER_BR mode (#5121)
-		if ( this._.enterMode ) 
+		if ( this._.enterMode )
 			iterator.enlargeBr = ( this._.enterMode != CKEDITOR.ENTER_BR );
 
Index: /CKEditor/branches/versions/3.3.x/_source/plugins/tabletools/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/plugins/tabletools/plugin.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/plugins/tabletools/plugin.js	(revision 5535)
@@ -248,6 +248,6 @@
 		}
 	}
-	
-	function getFocusElementAfterDelCols( cells ) 
+
+	function getFocusElementAfterDelCols( cells )
 	{
 		var cellIndexList = [],
@@ -255,5 +255,5 @@
 			i, length,
 			targetIndex, targetCell;
-		
+
 		// get the cellIndex list of delete cells
 		for ( i = 0, length = cells.length; i < length; i++ )
@@ -270,7 +270,7 @@
 			}
 		}
-		
+
 		if ( !targetIndex )
-			targetIndex = cellIndexList[ 0 ] > 0 ? ( cellIndexList[ 0 ] - 1 ) 
+			targetIndex = cellIndexList[ 0 ] > 0 ? ( cellIndexList[ 0 ] - 1 )
 							: ( cellIndexList[ cellIndexList.length - 1 ] + 1 );
 
@@ -283,5 +283,5 @@
 				break;
 		}
-		
+
 		return targetCell ?  new CKEDITOR.dom.element( targetCell ) :  table.getPrevious();
 	}
@@ -333,5 +333,5 @@
 			}
 		}
-		
+
 		return null;
 	}
Index: /CKEditor/branches/versions/3.3.x/_source/plugins/uicolor/dialogs/uicolor.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/plugins/uicolor/dialogs/uicolor.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/plugins/uicolor/dialogs/uicolor.js	(revision 5535)
@@ -1,3 +1,3 @@
-/*
+﻿/*
 Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.html or http://ckeditor.com/license
Index: /CKEditor/branches/versions/3.3.x/_source/plugins/wysiwygarea/plugin.js
===================================================================
--- /CKEditor/branches/versions/3.3.x/_source/plugins/wysiwygarea/plugin.js	(revision 5534)
+++ /CKEditor/branches/versions/3.3.x/_source/plugins/wysiwygarea/plugin.js	(revision 5535)
@@ -1,3 +1,3 @@
-/*
+﻿/*
 Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.html or http://ckeditor.com/license
@@ -176,5 +176,5 @@
 	}
 
-	var isNotWhitespace = CKEDITOR.dom.walker.whitespaces( true );
+	isNotWhitespace = CKEDITOR.dom.walker.whitespaces( true );
 
 	/**
