Index: nodecomment.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/nodecomment/nodecomment.install,v
retrieving revision 1.1.2.4.2.2
diff -u -p -r1.1.2.4.2.2 nodecomment.install
--- nodecomment.install	5 Oct 2008 14:26:22 -0000	1.1.2.4.2.2
+++ nodecomment.install	5 Oct 2008 15:07:55 -0000
@@ -10,15 +10,17 @@
  * Implementation of hook_enable().
  */
 function nodecomment_enable() {
+  $t = get_t();
   // Disable comment.module since it is incompatible with nodecomment
   $result = db_query("UPDATE {system} SET status = 0 WHERE type = 'module' AND name = 'comment' AND status = 1");
   if (db_affected_rows()) {
-    drupal_set_message(t('Comment module has been deactivated -- it is incompatible with Node Comment module.'));
+    drupal_set_message($t('Comment module has been deactivated -- it is incompatible with Node Comment module.'));
   }
 }
 
 function nodecomment_install() {
-  drupal_set_message(t('Installing Node Comments.'));  
+  $t = get_t();
+  drupal_set_message($t('Installing Node Comments.'));  
   drupal_install_schema('nodecomment');
   _nodecomment_install_type_create();
 }
