Index: CHANGELOG.txt
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/image/CHANGELOG.txt,v
retrieving revision 1.29
diff -u -p -r1.29 CHANGELOG.txt
--- CHANGELOG.txt	11 Feb 2009 01:38:11 -0000	1.29
+++ CHANGELOG.txt	3 Mar 2009 20:14:18 -0000
@@ -6,6 +6,7 @@ Image x.x-x.x, xxxx-xx-xx
 
 Image 6.x-1.x, xxxx-xx-xx
 -------------------------
+#390008 by joachim, sun: Fixed inconsistent node mass-operation title.
 #338159 by sun: Fixed improper table aliases in db queries for db_rewrite_sql().
 #298644 by smk-ka, sun: Updated tests for SimpleTest 2.x.
 #247738 by sun: Removed unused image_submit() function.
Index: image.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/image/image.module,v
retrieving revision 1.296
diff -u -p -r1.296 image.module
--- image.module	11 Feb 2009 01:38:11 -0000	1.296
+++ image.module	3 Mar 2009 20:13:40 -0000
@@ -149,7 +149,7 @@ function image_cron() {
 function image_node_operations() {
   $operations = array(
     'rebuild_thumbs' => array(
-      'label' => t('Rebuild image thumbnails'),
+      'label' => t('Rebuild derivative images'),
       'callback' => 'image_operations_rebuild',
     ),
   );
@@ -391,7 +391,7 @@ function image_form(&$node, &$param) {
   );
   $form['rebuild_images'] = array(
     '#type' => 'checkbox',
-    '#title' => t('Rebuild derivative images.'),
+    '#title' => t('Rebuild derivative images'),
     '#default_value' => FALSE,
     '#description' => t('Check this to rebuild the derivative images for this node.'),
     '#access' => (!isset($node->nid) ? FALSE : TRUE),
