Index: /CKEditor/trunk/_source/lang/en.js
===================================================================
--- /CKEditor/trunk/_source/lang/en.js	(revision 3305)
+++ /CKEditor/trunk/_source/lang/en.js	(revision 3306)
@@ -27,4 +27,10 @@
 	 */
 	dir : 'ltr',
+
+	/*
+	 * Screenreader titles. Please note that screenreaders are not always capable
+	 * of reading non-English words. So be careful while translating it.
+	 */
+	editorTitle		: 'Rich text editor, %1',
 
 	// Toolbar buttons without dialogs.
Index: /CKEditor/trunk/_source/plugins/wysiwygarea/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/wysiwygarea/plugin.js	(revision 3305)
+++ /CKEditor/trunk/_source/plugins/wysiwygarea/plugin.js	(revision 3306)
@@ -155,5 +155,5 @@
 								{
 									role : 'region',
-									title : 'CKEditor ' + editor.name + '. Type in text.'
+									title : editor.lang.editorTitle.replace( '%1', editor.name ) + '. Type in text.'
 								} );
 							iframe.setAttributes(
@@ -172,5 +172,5 @@
 								left : '-1000000px'
 							} );
-							label.append( CKEDITOR.document.createText( 'CKEditor ' + editor.name ) );
+							label.append( CKEDITOR.document.createText( editor.lang.editorTitle.replace( '%1', editor.name ) ) );
 							label.insertBefore( iframe );
 						}
