Index: notifications.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/notifications/notifications.module,v
retrieving revision 1.6.2.9.2.50.2.11
diff -u -p -r1.6.2.9.2.50.2.11 notifications.module
--- notifications.module	11 Aug 2009 14:32:24 -0000	1.6.2.9.2.50.2.11
+++ notifications.module	28 Sep 2009 17:36:21 -0000
@@ -1412,16 +1412,26 @@ function notifications_notifications($op
  * List of send intervals. These may be overriden in a variable.
  */
 function _notifications_send_intervals() {
-  return variable_get('notifications_send_intervals',
-    array(
+  $intervals = array();
+  $data = variable_get('notifications_send_intervals', array());
+  if (is_array($data) && !empty($data)) {
+    // Running through the array so we can make sure the values are translated
+    // Since they will be displayed on the screen to users in the forms
+    foreach ($data as $name => $value) {
+      $intervals[$name] = t($value);
+    }
+  }
+  else {
+    $intervals = array(
       // -1 => t('Never'),
       0 => t('Immediately'),
       3600 => t('Every hour'),
       43200 => t('Twice a day'),
       86400 => t('Daily'),
-      604800 => t('Weekly'),  
-    )
-  );
+      604800 => t('Weekly'),
+    );
+  }
+  return $intervals;
 }
 
 /**
