diff options
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/dialogs/meeting-page.glade | 2 | ||||
-rw-r--r-- | calendar/gui/e-calendar-view.c | 6 | ||||
-rw-r--r-- | calendar/gui/e-meeting-time-sel.c | 2 |
4 files changed, 10 insertions, 5 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index c3f222b5ed..d47d3bbabb 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2004-05-31 Priyanshu Raj <Priyanshu@students.iiit.net> + + *Bug #51968 "Invite others.." button confusing in Appointment + editor dialog(Fixed)" + 2004-05-29 Priyanshu Raj <priyanshu@students.iiit.net> * Bug #48134: Menu items in Scheduling tab should have sentence diff --git a/calendar/gui/dialogs/meeting-page.glade b/calendar/gui/dialogs/meeting-page.glade index 808359ed81..5a13ad5c77 100644 --- a/calendar/gui/dialogs/meeting-page.glade +++ b/calendar/gui/dialogs/meeting-page.glade @@ -235,7 +235,7 @@ <widget class="GtkButton" id="invite"> <property name="visible">True</property> <property name="can_focus">True</property> - <property name="label" translatable="yes">_Invite Others...</property> + <property name="label" translatable="yes">Add attendees from addressbook.</property> <property name="use_underline">True</property> <property name="relief">GTK_RELIEF_NORMAL</property> </widget> diff --git a/calendar/gui/e-calendar-view.c b/calendar/gui/e-calendar-view.c index ecf9924d7e..9ae3c1796c 100644 --- a/calendar/gui/e-calendar-view.c +++ b/calendar/gui/e-calendar-view.c @@ -359,7 +359,7 @@ e_calendar_view_add_event (ECalendarView *cal_view, ECal *client, time_t dtstart if (itip_organizer_is_user (comp, client) && send_component_dialog ((GtkWindow *) gtk_widget_get_toplevel (GTK_WIDGET (cal_view)), - client, comp, TRUE)) { + client, comp, TRUE)) { itip_send_comp (E_CAL_COMPONENT_METHOD_REQUEST, comp, client, NULL); } @@ -762,7 +762,7 @@ clipboard_get_text_cb (GtkClipboard *clipboard, const gchar *text, ECalendarView child_kind = icalcomponent_isa (subcomp); if (child_kind == ICAL_VEVENT_COMPONENT) e_calendar_view_add_event (cal_view, client, selected_time_start, - default_zone, subcomp, in_top_canvas); + default_zone, subcomp, in_top_canvas); else if (child_kind == ICAL_VTIMEZONE_COMPONENT) { icaltimezone *zone; @@ -1628,7 +1628,7 @@ e_calendar_view_modify_and_send (ECalComponent *comp, { if (e_cal_modify_object (client, e_cal_component_get_icalcomponent (comp), mod, NULL)) { if (itip_organizer_is_user (comp, client) && - send_component_dialog (toplevel, client, comp, new)) + send_component_dialog (toplevel, client, comp, new)) itip_send_comp (E_CAL_COMPONENT_METHOD_REQUEST, comp, client, NULL); } else { g_message (G_STRLOC ": Could not update the object!"); diff --git a/calendar/gui/e-meeting-time-sel.c b/calendar/gui/e-meeting-time-sel.c index 1d2ad43977..42f904f100 100644 --- a/calendar/gui/e-meeting-time-sel.c +++ b/calendar/gui/e-meeting-time-sel.c @@ -414,7 +414,7 @@ e_meeting_time_selector_construct (EMeetingTimeSelector * mts, EMeetingStore *em button = gtk_button_new_with_label (""); gtk_label_set_text_with_mnemonic (GTK_LABEL (GTK_BIN (button)->child), - _("_Invite Others...")); + _("Add attendees from addressbook")); accel_key = gtk_label_get_mnemonic_keyval (GTK_LABEL (GTK_BIN (button)->child)); gtk_box_pack_start (GTK_BOX (hbox), button, TRUE, TRUE, 6); gtk_widget_show (button); |