Index: nodecomment.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/nodecomment/nodecomment.install,v
retrieving revision 1.1.2.4.2.1
diff -u -p -r1.1.2.4.2.1 nodecomment.install
--- nodecomment.install	22 Jul 2008 17:38:20 -0000	1.1.2.4.2.1
+++ nodecomment.install	4 Oct 2008 00:43:00 -0000
@@ -18,7 +18,7 @@ function nodecomment_enable() {
 }
 
 function nodecomment_install() {
-  drupal_set_message('Installing Node Comments.');  
+  drupal_set_message(t('Installing Node Comments.'));  
   drupal_install_schema('nodecomment');
   _nodecomment_install_type_create();
 }
Index: nodecomment.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/nodecomment/nodecomment.module,v
retrieving revision 1.3.2.15.2.5
diff -u -p -r1.3.2.15.2.5 nodecomment.module
--- nodecomment.module	29 Sep 2008 14:00:22 -0000	1.3.2.15.2.5
+++ nodecomment.module	4 Oct 2008 00:43:01 -0000
@@ -88,7 +88,7 @@ function nodecomment_menu() {
     'page callback' => 'drupal_get_form',
     'page arguments' => array('nodecomment_admin_settings'),
     'access arguments' => array('administer comments'),
-    'description' => t("Administer your site's comment settings."),
+    'description' =>("Administer your site's comment settings.",
   );
   
   $items['node/%node/%node'] = array(
@@ -704,7 +704,7 @@ function nodecomment_form_box($node, $ti
 
 function _nodecomment_delete_thread($comment) {
   if (!is_object($comment) || !is_numeric($comment->cid)) {
-    watchdog('content', t('Can not delete non-existent comment.'), WATCHDOG_WARNING);
+    watchdog('content', 'Can not delete non-existent comment.', WATCHDOG_WARNING);
     return;
   }
 
