### Eclipse Workspace Patch 1.0
#P feedapi-latest
Index: feedapi.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/feedapi/feedapi.module,v
retrieving revision 1.23.2.123
diff -u -r1.23.2.123 feedapi.module
--- feedapi.module	10 Mar 2008 16:24:30 -0000	1.23.2.123
+++ feedapi.module	11 Mar 2008 01:28:35 -0000
@@ -660,20 +660,18 @@
   $header = array(
     t('Title'),
     t('Last refresh'),
-    t('New items added per update'),
+    t('New items per update'),
     t('Update rate'),
     t('Number of items'),
     t('Processing time'),
-    t('Commands'),
+    t('Operations'),
   );
   $rows = array();
   $result = pager_query("SELECT nid from {feedapi} ORDER BY checked DESC", 50, 0, "SELECT count(*) FROM {feedapi}");
   while ($nid = db_result($result, $row++)) {
     $node = node_load($nid);
-    $commands = array(l(t('Delete'), 'node/'. $node->nid . '/delete', NULL, 'destination=admin/content/feed'),
-      l(t('Remove items'), 'node/'. $node->nid . '/purge', NULL, 'destination=admin/content/feed'),
-      l(t('Refresh'), 'node/'. $node->nid . '/refresh'),
-      l(t('Edit'), 'node/'. $node->nid . '/edit'),
+    $commands = array(
+      l(t('Edit'), 'node/'. $node->nid .'/edit'),
     );
     $ext_commands = module_invoke_all('feedapi_edit_option', $node->feed);
     if (count($ext_commands) > 0) {
@@ -701,7 +699,7 @@
       $rows[] = array(
         l($node->title, "node/$node->nid"),
         $node->feed->checked == 0 ? t('Never') : t('%time ago', array('%time' => format_interval(time() - $node->feed->checked))),
-        '', '', t('No enough data for statistics'), '',
+        '', '', t('Not enough data'), '',
         theme('item_list', $commands),
       );
     }
