@@ -337,6 +337,7 @@
 function translation_overview_manager_page() {
   drupal_add_css(drupal_get_path('module', 'translation_overview') .'/translation_overview.css');
 
+  $node_types = node_get_types('names');
   $rows_per_page = 30;
 
   // Get a list of the enabled languages that this user manages.
@@ -374,7 +375,7 @@
 
     $row = array(
       array('data' => l(translation_overview_trimmed_title($node), 'node/'. $node->nid .'/translate', array('attributes' => array('title' => $node->title), 'query' => array('destination' => $_GET['q'])))),
-      array('data' => check_plain($node->type)),
+      array('data' => check_plain($node_types[$node->type])),
       array('data' => format_date($node->created, 'custom', 'j M Y')),
     );
 
