Index: INSTALL
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/eventfinder/INSTALL,v
retrieving revision 1.3
diff -u -r1.3 INSTALL
--- INSTALL	30 Nov 2005 10:59:40 -0000	1.3
+++ INSTALL	3 Aug 2006 18:54:20 -0000
@@ -133,7 +133,7 @@
 b) Search Description: Descriptive text to display to users doing a search. Leaving 
    this field blank supresses the description.
 
-c) MyEvents Description: Descriptive text to display to users visiting their MyEvents 
+c) My Events Description: Descriptive text to display to users visiting their My Events 
    page. Leaving this field blank supresses the description.
 
 d) Host an Event Description: Descriptive text to display to users on the Host an Event 
Index: eventfinder.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/eventfinder/eventfinder.module,v
retrieving revision 1.14
diff -u -r1.14 eventfinder.module
--- eventfinder.module	31 Jan 2006 10:03:07 -0000	1.14
+++ eventfinder.module	3 Aug 2006 18:54:20 -0000
@@ -304,7 +304,7 @@
       $output = t("Options on this page control what types of searches are displayed to users looking for events.<br><br>'Enable Event Taxonomy Searches' allows users to search by vocabulary terms associated with event-enabled content.<br><br>'Enable Event Type Searches' enables users to search by event-enabled content types.<br><br>'Enable Location Proximity Searches' enables users to search by proximity to a US zip code.<br><br>'Enable State Searches' enables users to search by state.<br><br>'Enable Major Metropolitan Area Searches' enables users to search by major metropolitan area.");
       break;
     case 'admin/settings/eventfinder/display_settings':
-      $output = t("Options on this page control the information presented to users while they use EventFinder.<br><br><strong>'Display EventFinder Options'</strong> controls where registration options appear for users.<br><br><strong>'Search Description'</strong> controls what instructions are presented to users when they perform a search.<br><br><strong>'MyEvents Description'</strong> controls what instructions are presented to users when they view the MyEvents page.<br><br><strong>'Host an Event Description'</strong> controls what instructions are presented to users when they view the Host an Event page.<br><br><strong>'Send Message to Registered Users Description'</strong> controls what information is presented to event hosts when they send messages to people registered for events.");
+      $output = t("Options on this page control the information presented to users while they use EventFinder.<br><br><strong>'Display EventFinder Options'</strong> controls where registration options appear for users.<br><br><strong>'Search Description'</strong> controls what instructions are presented to users when they perform a search.<br><br><strong>'My Events Description'</strong> controls what instructions are presented to users when they view the My Events page.<br><br><strong>'Host an Event Description'</strong> controls what instructions are presented to users when they view the Host an Event page.<br><br><strong>'Send Message to Registered Users Description'</strong> controls what information is presented to event hosts when they send messages to people registered for events.");
       break;
     case 'admin/settings/eventfinder/email_settings':
       $output = t("Options on this page control what emails get sent from EventFinder.");
@@ -489,7 +489,7 @@
   $opts = array('Above Event Details', 'Below Event Details', 'In a Block');
   $group = form_radios('Display EventFinder Options', 'ef_display_opts', variable_get('ef_display_opts', 1), $opts,'Configure where to place EventFinder options.');
   $group .= form_textarea('Search Description', 'ef_search_desc', variable_get('ef_search_desc', ''), '70', 3, 'Description for the main search interface.');
-  $group .= form_textarea('MyEvents Description', 'eventfinder_myevents_desc', variable_get('eventfinder_myevents_desc', ''), '70', 3, 'Description for the MyEvents page.');
+  $group .= form_textarea('My Events Description', 'eventfinder_myevents_desc', variable_get('eventfinder_myevents_desc', ''), '70', 3, 'Description for the My Events page.');
   $group .= form_textarea('Host an Event Description', 'eventfinder_host_desc', variable_get('eventfinder_host_desc', ''), '70', 3, 'Description for the Host an Event page.');
   $group .= form_textarea('Send Message to Registered Users Description', 'ef_message_desc', variable_get('ef_message_desc', ''), '70', 3, 'Description for the Send Message to Registered Users page.');
   $output .= form_group('Display Settings', $group);
@@ -1720,8 +1720,8 @@
  */
 function eventfinder_my_events() {
   $_SESSION['my_events'] = 'all';
-  drupal_set_breadcrumb(array(l(t('Home'), ''), l(t('EventFinder'), 'eventfinder'), t('MyEvents')));
-  drupal_set_title(t('MyEvents'));
+  drupal_set_breadcrumb(array(l(t('Home'), ''), l(t('EventFinder'), 'eventfinder'), t('My Events')));
+  drupal_set_title(t('My Events'));
   eventfinder_host_reg();
   $content .= theme('eventfinder_desc', variable_get('eventfinder_myevents_desc', ''));
   $content .= eventfinder_my_reg();
@@ -1736,8 +1736,8 @@
  */
 function eventfinder_my_events_registered() {
   $_SESSION['my_events'] = 'registered';
-  drupal_set_breadcrumb(array(l(t('Home'), ''), l(t('EventFinder'), 'eventfinder'), l(t('MyEvents'), 'eventfinder/myevents'), t('Registered Events')));
-  drupal_set_title(t('MyEvents'));
+  drupal_set_breadcrumb(array(l(t('Home'), ''), l(t('EventFinder'), 'eventfinder'), l(t('My Events'), 'eventfinder/myevents'), t('Registered Events')));
+  drupal_set_title(t('My Events'));
   eventfinder_host_reg();
   $content .= theme('eventfinder_desc', variable_get('eventfinder_myevents_desc', ''));
   $content .= eventfinder_my_reg();
@@ -1751,8 +1751,8 @@
  */
 function eventfinder_my_events_host() {
   $_SESSION['my_events'] = 'hosted';
-  drupal_set_breadcrumb(array(l(t('Home'), ''), l(t('EventFinder'), 'eventfinder'), l(t('MyEvents'), 'eventfinder/myevents'), t('Hosted Events')));
-  drupal_set_title(t('MyEvents'));
+  drupal_set_breadcrumb(array(l(t('Home'), ''), l(t('EventFinder'), 'eventfinder'), l(t('My Events'), 'eventfinder/myevents'), t('Hosted Events')));
+  drupal_set_title(t('My Events'));
   eventfinder_host_reg();
   $content .= theme('eventfinder_desc', variable_get('eventfinder_myevents_desc', ''));
   $content .= eventfinder_my_host();
Index: eventfinder_themes.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/eventfinder/eventfinder_themes.inc,v
retrieving revision 1.5
diff -u -r1.5 eventfinder_themes.inc
--- eventfinder_themes.inc	31 Jan 2006 07:08:49 -0000	1.5
+++ eventfinder_themes.inc	3 Aug 2006 18:54:20 -0000
@@ -77,7 +77,7 @@
 }
 
 /**
- * Displays MyEvents - Registered Events
+ * Displays My Events - Registered Events
  *
  * @ingroup eventfinder_themes
  * @content 
@@ -92,7 +92,7 @@
 }
 
 /**
- * Displays MyEvents - Hosted Events
+ * Displays My Events - Hosted Events
  *
  * @ingroup eventfinder_themes
  * @content 

