commit 0ae7c516669d2dedd575d09277b479d8fe89a291 (HEAD, 7.x-1.x)
Author: Tim Plunkett <git@plnktt.com>
Date:   Mon Apr 2 14:58:56 2012 -0400

    Issue #1483142 by tim.plunkett: Use the plural label for the entity type title.

diff --git a/views/entity.views.inc b/views/entity.views.inc
index cd359fc..7414f7e 100644
--- a/views/entity.views.inc
+++ b/views/entity.views.inc
@@ -365,9 +365,11 @@ class EntityDefaultViewsController {
       $data[$table]['table']['group']  = drupal_ucfirst($this->info['label']);
       $data[$table]['table']['entity type'] = $this->type;
 
+      // If the plural label isn't available, use the regular label.
+      $label = isset($this->info['plural label']) ? $this->info['plural label'] : $this->info['label'];
       $data[$table]['table']['base'] = array(
         'field' => $this->info['entity keys']['id'],
-        'title' => drupal_ucfirst($this->info['label']),
+        'title' => drupal_ucfirst($label),
         'help' => isset($this->info['description']) ? $this->info['description'] : '',
       );
       $data[$table]['table']['entity type'] = $this->type;
