Index: release/project_release.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/project/release/project_release.module,v
retrieving revision 1.63
diff -u -r1.63 project_release.module
--- release/project_release.module	6 Mar 2008 06:41:44 -0000	1.63
+++ release/project_release.module	6 Mar 2008 15:00:19 -0000
@@ -1814,9 +1814,10 @@
   static $icons = array();
   if (empty($icons)) {
     $icons = array(
-      'ok' => theme('image', 'misc/watchdog-ok.png', t('ok'), t('ok')),
-      'warning' => theme('image', 'misc/watchdog-warning.png', t('warning'), t('warning')),
-      'error' => theme('image', 'misc/watchdog-error.png', t('error'), t('error')),
+      'recommended' => theme('image', 'misc/watchdog-ok.png', t('Recommended'), t('Recommended')),
+      'supported' => theme('image', 'misc/watchdog-warning.png', t('Supported'), t('Supported')),
+      'snapshot' => theme('image', 'misc/watchdog-error.png', t('Development snapshot'), t('Development snapshot')),
+      'unsupported' => theme('image', 'misc/watchdog-error.png', t('Unsupported'), t('Unsupported')),
     );
   }
   $links = array();
@@ -1838,20 +1839,20 @@
   // Now, set the row color and help text, based on the release attributes.
   if (!$release->supported) {
     $reason = t('Unsupported');
-    $classification = 'error';
+    $classification = 'unsupported';
   }
   elseif ($release->rebuild) {
     $reason = t('Development snapshot');
-    $classification = 'error';
+    $classification = 'snapshot';
   }
   elseif ($recommended) {
     $reason = t('Recommended for %api_term_name', array('%api_term_name' => $release->api_term_name));
-    $classification = 'ok';
+    $classification = 'recommended';
   }
   else {
     // Supported, but not recommened, official release.
     $reason = t('Supported for %api_term_name', array('%api_term_name' => $release->api_term_name));
-    $classification = 'warning';
+    $classification = 'supported';
   }
 
   $row = array(
