From 003547146421f696e00392428c9f988dfabe06d1 Mon Sep 17 00:00:00 2001 From: Alex Barth <alex_b@53995.no-reply.drupal.org> Date: Wed, 21 Oct 2009 20:11:12 +0000 Subject: [PATCH] Simplify import options table. --- feeds.pages.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/feeds.pages.inc b/feeds.pages.inc index 99116752..69093cf7 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); -- GitLab