diff --git a/plugins/FeedsFeedNodeProcessor.inc b/plugins/FeedsFeedNodeProcessor.inc index 3f252e6be2686c04a17114080c64440bff92bcd2..09a9f0cc4c975dc1883387b924eb504cc0917da4 100644 --- a/plugins/FeedsFeedNodeProcessor.inc +++ b/plugins/FeedsFeedNodeProcessor.inc @@ -174,20 +174,23 @@ class FeedsFeedNodeProcessor extends FeedsProcessor { public function getMappingTargets() { $targets = array( 'title' => array( - 'name' => t('Title'), // @todo: write out. + 'name' => t('Title'), + 'description' => t('The title of the feed node.'), ), 'status' => array( 'name' => t('Published status'), + 'description' => t('Whether a feed node is published or not. 1 stands for published, 0 for not published.'), ), 'created' => array( 'name' => t('Published date'), + 'description' => t('The UNIX time when a node has been published.'), ), 'body' => array( 'name' => t('Body'), + 'description' => t('The body of the node. The teaser will be the same as the entire body.'), ), 'source' => array( 'name' => t('Feed source'), - // @todo: support and show descriptions. 'description' => t('Depending on the selected fetcher, this could be for example a URL or a path to a file.'), 'optional_unique' => TRUE, ),