Index: FeedsNodeProcessor.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/feeds/plugins/FeedsNodeProcessor.inc,v
retrieving revision 1.51.2.2
diff -u -r1.51.2.2 FeedsNodeProcessor.inc
--- FeedsNodeProcessor.inc	25 Oct 2010 22:43:03 -0000	1.51.2.2
+++ FeedsNodeProcessor.inc	4 Nov 2010 16:19:49 -0000
@@ -241,7 +241,7 @@
       $target_node->teaser = node_teaser($value);
       $target_node->body = $value;
     }
-    elseif (in_array($target_element, array('title', 'status', 'created', 'nid', 'uid'))) {
+    elseif (in_array($target_element, array('nid', 'language', 'title', 'uid', 'status', 'created', 'comment', 'promote', 'sticky', 'tnid', 'translate'))) {
       $target_node->$target_element = $value;
     }
   }
@@ -271,6 +271,10 @@
         'description' => t('The nid of the node. NOTE: use this feature with care, node ids are usually assigned by Drupal.'),
         'optional_unique' => TRUE,
       ),
+      'language' => array(
+        'name' => t('Language'),
+        'description' => t('The language of the node.'),
+      ),
       'uid' => array(
         'name' => t('User ID'),
         'description' => t('The Drupal user ID of the node author.'),
@@ -283,6 +287,26 @@
         'name' => t('Published date'),
         'description' => t('The UNIX time when a node has been published.'),
       ),
+      'comment' => array(
+        'name' => t('Comments'),
+        'description' => t('Whether comments are allowed on this node: 0 = no, 1 = read only, 2 = read/write.'),
+      ),
+      'promote' => array(
+        'name' => t('Promoted to front page'),
+        'description' => t('Whether a node is displayed on the front page or not. 1 stands for promoted, 0 for not promoted.'),
+      ),
+      'sticky' => array(
+        'name' => t('Sticky'),
+        'description' => t('Whether a node is sticky at top of lists or not. 1 stands for sticky, 0 for not sticky.'),
+      ),
+      'tnid' => array(
+        'name' => t('Translation Node ID'),
+        'description' => t('The translation set id for this node, which equals the node id of the source post in each set.'),
+      ),
+      'translate' => array(
+        'name' => t('Translation update needed'),
+        'description' => t('Whether this translation page needs to be updated or not. 0 = no, 1 = yes.'),
+      ),
       '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.'),

