? node_comment_internationalisation.patch
? nodecomment_upgradeD6_0.patch
Index: nodecomment.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/nodecomment/nodecomment.module,v
retrieving revision 1.3.2.15.2.6
diff -u -p -r1.3.2.15.2.6 nodecomment.module
--- nodecomment.module	5 Oct 2008 14:26:22 -0000	1.3.2.15.2.6
+++ nodecomment.module	10 Oct 2008 14:44:25 -0000
@@ -262,6 +262,16 @@ function nodecomment_form_alter(&$form, 
           );
         }
 
+        // If nodecomments are language enabled (but not translation enabled)
+        // set the language to that of the parent node.
+        if (variable_get('language_content_type_' . $node->type, 1)) {
+          $parent =  node_load($node->comment_target_nid);
+          $form['language'] = array(
+            '#type' => 'value',
+            '#value' => $parent->language
+          );
+        }
+
         // add in the user's sig, if any as default content
         if ($user->signature && !$form['body_filter']['body']['#default_value']) {
           $form['body_filter']['body']['#default_value'] = "\n\n\n--\n" . $user->signature;
