diff options
-rw-r--r-- | calendar/ChangeLog | 4 | ||||
-rw-r--r-- | calendar/gui/e-itip-control.c | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index c4d686225c..f05cb7d0a4 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,7 @@ +2001-08-31 Damon Chaplin <damon@ximian.com> + + * gui/e-itip-control.c: changed 3 occurrences of 'Replyed' to 'replied' + 2001-08-31 Zbigniew Chyla <cyba@gnome.pl> * gui/e-itip-control.c (write_html): diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index 5fd9f9a6e1..88745ff654 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -634,7 +634,7 @@ show_current_event (EItipControl *itip) options = PUBLISH_OPTIONS; break; case ICAL_METHOD_REPLY: - itip_desc = _("<b>%s</b> has replyed to a meeting request."); + itip_desc = _("<b>%s</b> has replied to a meeting request."); itip_title = _("Meeting Reply"); options = REPLY_OPTIONS; break; @@ -682,7 +682,7 @@ show_current_todo (EItipControl *itip) options = PUBLISH_OPTIONS; break; case ICAL_METHOD_REPLY: - itip_desc = _("<b>%s</b> has replyed to a task assignment."); + itip_desc = _("<b>%s</b> has replied to a task assignment."); itip_title = _("Task Reply"); options = REPLY_OPTIONS; break; @@ -720,7 +720,7 @@ show_current_freebusy (EItipControl *itip) options = REQUEST_FB_OPTIONS; break; case ICAL_METHOD_REPLY: - itip_desc = _("<b>%s</b> has replyed to a free/busy request."); + itip_desc = _("<b>%s</b> has replied to a free/busy request."); itip_title = _("Free/Busy Reply"); options = NULL; break; |