Index: includes/common.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/common.inc,v
retrieving revision 1.1146
diff -u -p -r1.1146 common.inc
--- includes/common.inc	11 Apr 2010 18:33:43 -0000	1.1146
+++ includes/common.inc	12 Apr 2010 13:33:17 -0000
@@ -6319,9 +6319,12 @@ function entity_get_info($entity_type = 
  * Resets the cached information about entity types.
  */
 function entity_info_cache_clear() {
+  $languages = language_list();
   drupal_static_reset('entity_get_info');
-  // Clear all languages.
-  cache_clear_all('entity_info:', 'cache', TRUE);
+  // Clear the entity info cache in each available language.
+  foreach ($languages as $langcode => $data) {
+    cache_clear_all("entity_info:$langcode", 'cache');
+  }
 }
 
 /**
