Index: includes/date.inc
=========================================================
--- includes/date.inc	(revision 1.16.2.4)
+++ includes/date.inc	Mon Nov 16 03:07:36 CET 2009
@@ -249,7 +249,7 @@
         '%signup_date_field' => t('Date field to use with signup'),
         '@type_admin_url' => url('admin/content/node-type/'. $type_url),
         '@type_add_field_url' => url('admin/content/node-type/'. $type_url .'/fields'),
-        '%none' => t('<none>'),
+        '%none' => t('(none)'),
       );
       // Administrator hasn't specifically turned off date support...
       if (signup_field_names($type)) {
@@ -281,12 +281,12 @@
   $options = array();
   // Add "Not specified" if the user never selected a field.
   if (variable_get('signup_date_field_'. $type, 0) == 0) {
-    $options = array(0 => t('<Not specified>'));
+    $options = array(0 => t('(Not specified)'));
   }
   // Add any date fields from this node type.
   $options += signup_field_names($type);
   // Always add 'None' as the final choice.
-  $options += array('none' => t('<None>'));
+  $options += array('none' => t('(None)'));
   return $options;
 }
 
