diff --git a/feeds.pages.inc b/feeds.pages.inc
index 99116752911c6519edca01e9a38be7036c971c2d..69093cf7c3c51575874dac1ac3ee533699e43ac5 100644
--- a/feeds.pages.inc
+++ b/feeds.pages.inc
@@ -21,7 +21,7 @@ function feeds_page() {
       }
       elseif (user_access('create '. $importer->config['content_type'] .' content')) {
         $link = 'node/add/'. str_replace('_', '-', $importer->config['content_type']);
-        $title = t('!type (!config)', array('!type' => node_get_types('name', $importer->config['content_type']), '!config' => $importer->config['name']));
+        $title = node_get_types('name', $importer->config['content_type']);
       }
       $rows[] = array(
         l($title, $link),
@@ -30,7 +30,7 @@ function feeds_page() {
     }
   }
   $header = array(
-    t('Configuration'),
+    t('Importer'),
     t('Description'),
   );
   return theme('table', $header, $rows);