Index: active_translation.batch.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/active_translation/active_translation.batch.inc,v
retrieving revision 1.6
diff -u -p -r1.6 active_translation.batch.inc
--- active_translation.batch.inc	19 Jun 2008 18:31:02 -0000	1.6
+++ active_translation.batch.inc	12 Jul 2009 15:40:30 -0000
@@ -19,7 +19,7 @@ function active_translation_build_batch_
 
 function _active_translation_batch_operation(&$context) {
   if (empty($context['sandbox'])) {
-    watchdog('active_translation', 'Starting to rebuild the active translation table.');
+    watchdog('active_translati', 'Starting to rebuild the active translation table.');
 
     // Initiate multistep processing. Call language_list() and reset its cache.
     $context['sandbox']['languages'] = array_keys(language_list('language', TRUE));
@@ -45,7 +45,7 @@ function _active_translation_batch_opera
     // than values.
     db_query('INSERT INTO {active_translation} (atid, '. implode(', ', $fields) .') SELECT DISTINCT(nid), '. implode(', ', $values) .' FROM {node} WHERE tnid = 0 OR tnid IS NULL ORDER BY tnid');
 
-    watchdog('active_translation', 'Created records for untranslated and language neutral nodes.');
+    watchdog('active_translati', 'Created records for untranslated and language neutral nodes.');
   }
 
   // Process the next set of translations.
@@ -54,7 +54,7 @@ function _active_translation_batch_opera
   while ($row = db_fetch_object($result)) {
     $node = node_load($row->tnid);
     if (empty($node->nid)) {
-      watchdog('active_translation', 'Could not load the node %nid.', array('%nid' => $row->tnid), WATCHDOG_ERROR);
+      watchdog('active_translati', 'Could not load the node %nid.', array('%nid' => $row->tnid), WATCHDOG_ERROR);
     }
     else {
       $translation = active_translation_recompute($node);
@@ -72,11 +72,11 @@ function _active_translation_batch_opera
 
 function _active_translation_batch_finished($success, $results, $operations) {
   if ($success) {
-    watchdog('active_translation', 'Sucessfully rebuilt the active translation table.');
+    watchdog('active_translati', 'Sucessfully rebuilt the active translation table.');
     drupal_set_message(t('The active translation table has rebuilt.'));
   }
   else {
-    watchdog('active_translation', 'There was an error that prevented the active translation table from being properly rebuilt.', array(), WATCHDOG_ERROR);
+    watchdog('active_translati', 'There was an error that prevented the active translation table from being properly rebuilt.', array(), WATCHDOG_ERROR);
     drupal_set_message(t('The active translation table has not been properly rebuilt.'), 'error');
   }
   cache_clear_all();
