diff --git a/mappers/content.inc b/mappers/content.inc
index 8b7ddf85e6652bd8cce3cc9965549aea5e7dca9d..fbba2e8bdb283fbe48eb5a760b6aa78c41b63726 100644
--- a/mappers/content.inc
+++ b/mappers/content.inc
@@ -25,7 +25,7 @@ function content_feeds_node_processor_targets_alter(&$targets, $content_type) {
     $targets[$k] = array(
       'name' => $name,
       'callback' => 'content_feeds_set_target',
-      'description' => t('Maps to the !name CCK field.', array('!name' => $name)),
+      'description' => t('The CCK !name field of the node.', array('!name' => $name)),
     );
   }
 }
diff --git a/plugins/FeedsNodeProcessor.inc b/plugins/FeedsNodeProcessor.inc
index 407a0d3fad8cfb17367051921719447f570b027a..753920b1a33b852759714f9b85d5b043f55a0b51 100644
--- a/plugins/FeedsNodeProcessor.inc
+++ b/plugins/FeedsNodeProcessor.inc
@@ -229,23 +229,29 @@ class FeedsNodeProcessor extends FeedsProcessor {
     $targets = array(
       'title' => array(
         'name' => t('Title'),
+        'description' => t('The title of the node'),
        ),
       'status' => array(
         'name' => t('Published status'),
+        'description' => t('Whether a 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.'),
       ),
       // Using 'teaser' instead of 'body' forces entire content above the break.
       'body' => array(
         'name' => t('Body'),
+        'description' => t('The body of the node. The teaser will be the same as the entire body.'),
       ),
       'url' => array(
         'name' => t('URL'),
+        'description' => t('The external URL of the node. E. g. the feed item URL in the case of a syndication feed. May be unique.'),
         'optional_unique' => TRUE,
       ),
       'guid' => array(
         'name' => t('GUID'),
+        'description' => t('The external GUID of the node. E. g. the feed item GUID in the case of a syndication feed. May be unique.'),
         'optional_unique' => TRUE,
       ),
     );