--- sites/all/modules/userpoints_nc/userpoints_nc.module	2009-01-12 00:11:02.000000000 +0500
+++ sites/all/modules/userpoints_nc/userpoints_nc.module	2009-04-14 16:22:16.000000000 +0600
@@ -106,7 +106,7 @@ function userpoints_nodeapi(&$node, $op,
       $params = array(
         'points' => $points,
         'uid' => $node->uid,
-        'operation' => 'insert',
+        'operation' => t('insert node'),
         'entity_id' => $node->nid,
         'entity_type' => 'node'
       );
@@ -118,7 +118,7 @@ function userpoints_nodeapi(&$node, $op,
         $params = array(
           'points' => $points,
           'uid' => $node->uid,
-          'operation' => 'operation',
+          'operation' => t('delete node'),
           'entity_id' => $node->nid,
           'entity_type' => 'node',
         );
@@ -203,7 +203,7 @@ function userpoints_comment($comment, $o
       $params = array(
         'points' => $points,
         'uid' => $user->uid,
-        'operation' => 'insert',
+        'operation' => t('insert comment'),
         'entity_id' => $comment['cid'],
         'entity_type' => 'comment'
       );
@@ -214,7 +214,7 @@ function userpoints_comment($comment, $o
       $params = array(
         'points' => $points,
         'uid' => $comment->uid,
-        'operation' => 'delete',
+        'operation' => t('delete comment'),
         'entity_id' => $comment->cid,
         'entity_type' => 'comment'
       );
@@ -225,7 +225,7 @@ function userpoints_comment($comment, $o
       $params = array(
         'points' => $points,
         'uid' => $comment->uid,
-        'operation' => 'moderate',
+        'operation' => t('moderate comment'),
         'entity_id' => $comment->cid,
         'entity_type' => 'comment'
       );
