diff options
author | Damon Chaplin <damon@ximian.com> | 2001-08-20 10:00:29 +0800 |
---|---|---|
committer | Damon Chaplin <damon@src.gnome.org> | 2001-08-20 10:00:29 +0800 |
commit | a17f785245005c80614e6c027cdf1a3f49518fac (patch) | |
tree | 6cd67fcbc8c03196503286afbc8bfe12289b8c89 | |
parent | 8f7f50d30ecc29c25252ad1f7d8d2e065acc1167 (diff) | |
download | gsoc2013-evolution-a17f785245005c80614e6c027cdf1a3f49518fac.tar gsoc2013-evolution-a17f785245005c80614e6c027cdf1a3f49518fac.tar.gz gsoc2013-evolution-a17f785245005c80614e6c027cdf1a3f49518fac.tar.bz2 gsoc2013-evolution-a17f785245005c80614e6c027cdf1a3f49518fac.tar.lz gsoc2013-evolution-a17f785245005c80614e6c027cdf1a3f49518fac.tar.xz gsoc2013-evolution-a17f785245005c80614e6c027cdf1a3f49518fac.tar.zst gsoc2013-evolution-a17f785245005c80614e6c027cdf1a3f49518fac.zip |
fixed typo, 'send' -> 'sent'. Bug #7621.
2001-08-19 Damon Chaplin <damon@ximian.com>
* gui/e-itip-control.c: fixed typo, 'send' -> 'sent'. Bug #7621.
svn path=/trunk/; revision=12235
-rw-r--r-- | calendar/ChangeLog | 4 | ||||
-rw-r--r-- | calendar/gui/e-itip-control.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 47f82094a7..1e59fb4752 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,7 @@ +2001-08-19 Damon Chaplin <damon@ximian.com> + + * gui/e-itip-control.c: fixed typo, 'send' -> 'sent'. Bug #7621. + 2001-08-18 Damon Chaplin <damon@ximian.com> * gui/dialogs/cal-prefs-dialog.glade: added option to hide completed diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index d1cfe95c5d..734a10494e 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -1000,7 +1000,7 @@ send_item (EItipControl *itip) itip_send_comp (CAL_COMPONENT_METHOD_PUBLISH, comp); dialog = gnome_ok_dialog (_("Item sent!\n")); } else { - dialog = gnome_warning_dialog (_("The item could not be send!\n")); + dialog = gnome_warning_dialog (_("The item could not be sent!\n")); } gnome_dialog_run_and_close (GNOME_DIALOG (dialog)); } @@ -1028,7 +1028,7 @@ send_freebusy (EItipControl *itip) itip_send_comp (CAL_COMPONENT_METHOD_REPLY, comp); dialog = gnome_ok_dialog (_("Item sent!\n")); } else { - dialog = gnome_warning_dialog (_("The item could not be send!\n")); + dialog = gnome_warning_dialog (_("The item could not be sent!\n")); } gnome_dialog_run_and_close (GNOME_DIALOG (dialog)); } |