--- favorite_nodes/favorite_nodes.module	2008-03-10 11:01:38.000000000 -0700
+++ favorite_nodes.new/favorite_nodes.module	2008-03-13 15:06:36.000000000 -0700
@@ -81,7 +81,7 @@ function favorite_nodes_menu($may_cache)
         if (variable_get(FAVORITE_NODES_NODE_TYPE . $type->type, 0)) {
           $items[] = array(
             'path'     => "favorites/view/$user->uid/$type->type",
-            'title'    => t('Favorite @type', array('@type' => $type->type)),
+            'title'    => t('Favorite @type', array('@type' => $type->name)),
             'callback' => 'favorite_nodes_view_page',
             'type'     => MENU_NORMAL_ITEM,
             'access'   => user_access(FAVORITE_NODES_PERM_VIEW),
@@ -135,7 +135,7 @@ function favorite_nodes_user($op, &$edit
             }
           }
           $fav_list[] = array(
-          'title' => l($type->name, "favorite_nodes/view/$user->uid/$type->type"),
+          'title' => l($type->name . 's', "favorite_nodes/view/$user->uid/$type->type"),
           'value' => theme('item_list', $items),
           );
         }
@@ -517,7 +517,7 @@ function theme_favorite_nodes_view_table
     }
   }
 
-  $output .= '<h2>'. t('Favorite !type for !user', array('!type' => variable_get(FAVORITE_NODES_BLOCK . $type, $type), '!user' => theme('username', $account))) ."</h2>\n";
+  $output .= '<h2>'. t('Favorite !types for !user', array('!type' => variable_get(FAVORITE_NODES_BLOCK . $type, node_get_types('name',$type)), '!user' => theme('username', $account))) ."</h2>\n";
   $output .= theme('table', $header, $rows);
   $output .= theme('pager');
   
