Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 6468)
+++ /CKEditor/trunk/CHANGES.html	(revision 6469)
@@ -41,4 +41,5 @@
 	<ul>
 		<li><a href="http://dev.ckeditor.com/ticket/4890">#4890</a> : Added the possibility to edit the <code>rel</code> attribute for links.</li>
+		<li><a href="http://dev.ckeditor.com/ticket/7004">#7004</a> : Allow loading plugin translations even if they aren't present in the plugin definition.</li>
 	</ul>
 	<p>
Index: /CKEditor/trunk/_source/core/plugins.js
===================================================================
--- /CKEditor/trunk/_source/core/plugins.js	(revision 6468)
+++ /CKEditor/trunk/_source/core/plugins.js	(revision 6469)
@@ -80,6 +80,10 @@
 {
 	var plugin = this.get( pluginName ),
-		pluginLang = plugin.langEntries || ( plugin.langEntries = {} );
+		pluginLangEntries = plugin.langEntries || ( plugin.langEntries = {} ),
+		pluginLang = plugin.lang || ( plugin.lang = [] );
 
-	pluginLang[ languageCode ] = languageEntries;
+	if ( CKEDITOR.tools.indexOf( pluginLang, languageCode ) == -1 )
+		pluginLang.push( languageCode );
+
+	pluginLangEntries[ languageCode ] = languageEntries;
 };
