Index: /CKEditor/branches/versions/3.6.x/_samples/bbcode.html
===================================================================
--- /CKEditor/branches/versions/3.6.x/_samples/bbcode.html	(revision 6886)
+++ /CKEditor/branches/versions/3.6.x/_samples/bbcode.html	(revision 6887)
@@ -23,10 +23,10 @@
 	<p>
 		This sample shows how to configure CKEditor to output <a href="http://en.wikipedia.org/wiki/BBCode">BBCode</a> format instead of HTML.
-		Please note that the editor configuration was modify to reflect what is needed in a BBCode editing environment.
+		Please note that the editor configuration was modified to reflect what is needed in a BBCode editing environment.
 		Smiley images, for example, were stripped to the emoticons that are commonly used in some BBCode dialects.
 	</p>
 	<p>
 		Please note that currently there is no standard for the BBCode markup language, so its implementation
-		for different platforms (message boards) can vary. This means that before using CKEditor to
+		for different platforms (message boards, blogs etc.) can vary. This means that before using CKEditor to
 		output BBCode you may need to adjust the implementation to your own environment.
 	</p>
@@ -38,5 +38,5 @@
 CKEDITOR.replace( 'editor1',
 	{
-		extraPlugins : 'bbcode',
+		<strong>extraPlugins : 'bbcode',</strong>
 		removePlugins : 'bidi,button,dialogadvtab,div,filebrowser,flash,format,forms,horizontalrule,iframe,indent,justify,liststyle,pagebreak,showborders,stylescombo,table,tabletools,templates',
 		toolbar :
Index: /CKEditor/branches/versions/3.6.x/_samples/fullpage.html
===================================================================
--- /CKEditor/branches/versions/3.6.x/_samples/fullpage.html	(revision 6886)
+++ /CKEditor/branches/versions/3.6.x/_samples/fullpage.html	(revision 6887)
@@ -6,5 +6,5 @@
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
-	<title>Full Page Editing &mdash; CKEditor Sample</title>
+	<title>Full Page Editing with Document Properties Plugin &mdash; CKEditor Sample</title>
 	<meta content="text/html; charset=utf-8" http-equiv="content-type" />
 	<!-- CKReleaser %REMOVE_LINE%
@@ -18,5 +18,5 @@
 <body>
 	<h1 class="samples">
-		CKEditor Sample &mdash; Full Page Editing
+		CKEditor Sample &mdash; Full Page Editing with Document Properties Plugin
 	</h1>
 	<div class="description">
@@ -26,9 +26,15 @@
 	</p>
 	<p>
-		CKEditor is inserted with a JavaScript call using the following code:
+		The <strong>Document Properties</strong> (<code>docprops</code>) plugin is also turned on.
+		This plugin allows you to set the metadata of the page, including the page encoding, margins,
+		meta tags, or background.
+	</p>
+	<p>
+		The CKEditor instance below is inserted with a JavaScript call using the following code:
 	</p>
 	<pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>',
 	{
-		<strong>fullPage : true</strong>
+		<strong>fullPage : true,
+		extraPlugins : 'docprops'</strong>
 	});</pre>
 	<p>
@@ -50,5 +56,5 @@
 	<form action="sample_posteddata.php" method="post">
 			<label for="editor1">
-				Editor 1:</label>
+				CKEditor using the <code>docprops</code> plugin and working in the Full Page mode:</label>
 			<textarea cols="80" id="editor1" name="editor1" rows="10">&lt;html&gt;&lt;head&gt;&lt;title&gt;CKEditor Sample&lt;/title&gt;&lt;/head&gt;&lt;body&gt;&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</textarea>
 			<script type="text/javascript">
Index: /CKEditor/branches/versions/3.6.x/_samples/index.html
===================================================================
--- /CKEditor/branches/versions/3.6.x/_samples/index.html	(revision 6886)
+++ /CKEditor/branches/versions/3.6.x/_samples/index.html	(revision 6887)
@@ -78,5 +78,5 @@
 		</li>
 		<li><a class="samples" href="readonly.html">ReadOnly mode</a><br />
-			Using the readOnly API to disallow making any change to the editor content.
+			Using the readOnly API to block introducing changes to the editor contents.
 		</li>
 	</ul>
@@ -91,6 +91,6 @@
 			Configuring CKEditor to produce BBCode tags instead of HTML.
 		</li>
-		<li><a class="samples" href="stylesheetparser.html">Stylesheet parser plugin</a><br />
-			The Stylesheet Parser plugin fills the Styles combo based on the css classes available in the document stylesheet.
+		<li><a class="samples" href="stylesheetparser.html">Stylesheet Parser plugin</a><br />
+			Using the Stylesheet Parser plugin to fill the Styles drop-down list based on the CSS classes available in the document stylesheet.
 		</li>
 		<li><a class="samples" href="devtools.html">Developer Tools plugin</a><br />
Index: /CKEditor/branches/versions/3.6.x/_samples/placeholder.html
===================================================================
--- /CKEditor/branches/versions/3.6.x/_samples/placeholder.html	(revision 6886)
+++ /CKEditor/branches/versions/3.6.x/_samples/placeholder.html	(revision 6887)
@@ -23,10 +23,10 @@
 	<p>
 		This sample shows how to configure CKEditor instances to use the
-		<strong>placeholder</strong> plugin that lets you insert read-only elements
+		<strong>Placeholder</strong> plugin that lets you insert read-only elements
 		into your content. To enter and modify read-only text, use the
 		<strong>Create Placeholder</strong> button and its matching dialog window.
 	</p>
 	<p>
-		To add a CKEditor instance that uses the <strong>placeholder</strong> plugin and a related
+		To add a CKEditor instance that uses the <code>placeholder</code> plugin and a related
 		<strong>Create Placeholder</strong> toolbar button, insert the following JavaScript
 		call to your code:
@@ -55,5 +55,5 @@
 		<p>
 			<label for="editor1">
-				CKEditor using the <strong>placeholder</strong> plugin with its default configuration:</label>
+				CKEditor using the <code>placeholder</code> plugin with its default configuration:</label>
 			<textarea cols="80" id="editor1" name="editor1" rows="10">&lt;p&gt;This is a [[sample placeholder]]. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;. &lt;/p&gt;</textarea>
 			<script type="text/javascript">
Index: /CKEditor/branches/versions/3.6.x/_samples/readonly.html
===================================================================
--- /CKEditor/branches/versions/3.6.x/_samples/readonly.html	(revision 6886)
+++ /CKEditor/branches/versions/3.6.x/_samples/readonly.html	(revision 6887)
@@ -6,5 +6,5 @@
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
-	<title>Read-only &mdash; CKEditor Sample</title>
+	<title>Read-only State &mdash; CKEditor Sample</title>
 	<meta content="text/html; charset=utf-8" http-equiv="content-type" />
 	<!-- CKReleaser %REMOVE_LINE%
@@ -50,11 +50,11 @@
 <body>
 	<h1 class="samples">
-		CKEditor Sample &mdash; Using CKEditor Read-Only API
+		CKEditor Sample &mdash; Using the CKEditor Read-Only API
 	</h1>
 	<div class="description">
 	<p>
 		This sample shows how to use the
-		<a class="samples" href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html#setReadOnly">set read-only</a>
-		API to put editor into read-only state, so user's are not able to change its contents.
+		<code><a class="samples" href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html#setReadOnly">setReadOnly</a></code>
+		API to put editor into the read-only state that makes it impossible for users to change the editor contents.
 	</p>
 	<p>
Index: /CKEditor/branches/versions/3.6.x/_samples/stylesheetparser.html
===================================================================
--- /CKEditor/branches/versions/3.6.x/_samples/stylesheetparser.html	(revision 6886)
+++ /CKEditor/branches/versions/3.6.x/_samples/stylesheetparser.html	(revision 6887)
@@ -24,8 +24,8 @@
 		This sample shows how to configure CKEditor instances to use the
 		<strong>Stylesheet Parser</strong> (<code>stylesheetparser</code>) plugin that fills
-		the Styles combo based on the CSS rules available in the document stylesheet.
+		the <strong>Styles</strong> drop-down list based on the CSS rules available in the document stylesheet.
 	</p>
 	<p>
-		To add a CKEditor instance using the <strong>stylesheetparser</strong> plugin, insert
+		To add a CKEditor instance using the <code>stylesheetparser</code> plugin, insert
 		the following JavaScript call into your code:
 	</p>
@@ -53,5 +53,5 @@
 		<p>
 			<label for="editor1">
-				Editor 1:</label>
+				CKEditor using the <code>stylesheetparser</code> plugin with its default configuration:</label>
 			<textarea cols="80" id="editor1" name="editor1" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
 			<script type="text/javascript">
@@ -68,9 +68,9 @@
 					extraPlugins : 'stylesheetparser',
 					/*
-					 * Style sheet for the contents
+					 * Stylesheet for the contents.
 					 */
 					contentsCss : 'assets/parsesample.css',
 					/*
-					 *  Don't load the default Styles configuration
+					 *  Do not load the default Styles configuration.
 					 */
 					stylesSet : []
Index: /CKEditor/branches/versions/3.6.x/_samples/tableresize.html
===================================================================
--- /CKEditor/branches/versions/3.6.x/_samples/tableresize.html	(revision 6886)
+++ /CKEditor/branches/versions/3.6.x/_samples/tableresize.html	(revision 6887)
@@ -57,5 +57,5 @@
 		<p>
 			<label for="editor1">
-				Editor 1:</label><br />
+				CKEditor using the <code>tableresize</code> plugin:</label>
 			<textarea cols="80" id="editor1" name="editor1" rows="10">
 &lt;table style="width: 500px;"&gt;
