diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-02-08 12:35:58 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-02-08 12:35:58 +0800 |
commit | 7bf045d23d54626139eb3305dc9a350088899545 (patch) | |
tree | 8b399564d1b652d18cb7a694fb198eecac012d09 | |
parent | 7eadc823343110390f9f6d54f4596e22892a3c68 (diff) | |
download | gsoc2013-evolution-7bf045d23d54626139eb3305dc9a350088899545.tar.gz gsoc2013-evolution-7bf045d23d54626139eb3305dc9a350088899545.tar.zst gsoc2013-evolution-7bf045d23d54626139eb3305dc9a350088899545.zip |
Committed Ranjan's patch.
svn path=/trunk/; revision=31440
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/e-meeting-time-sel.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index cc4a76631f..aaca8b341f 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2006-01-17 Ranjan Somani <sranjan@novell.com> + + ** Fixes #322009 + * gui/e-meeting-time-sel.c: line 431: Changed Label "Contacts..." to "Attendees..." + 2006-01-06 Johnny Jacob <johnnyjacob@gmail.com> ** Fixes #325941 diff --git a/calendar/gui/e-meeting-time-sel.c b/calendar/gui/e-meeting-time-sel.c index 801347ce3b..92efe897d6 100644 --- a/calendar/gui/e-meeting-time-sel.c +++ b/calendar/gui/e-meeting-time-sel.c @@ -428,7 +428,7 @@ e_meeting_time_selector_construct (EMeetingTimeSelector * mts, EMeetingStore *em 0, 1, 3, 4, GTK_FILL, 0, 0, 0); gtk_widget_show (hbox); - mts->add_attendees_button = e_button_new_with_stock_icon (_("Con_tacts..."), "gtk-jump-to"); + mts->add_attendees_button = e_button_new_with_stock_icon (_("A_ttendees..."), "gtk-jump-to"); gtk_box_pack_start (GTK_BOX (hbox), mts->add_attendees_button, TRUE, TRUE, 6); gtk_widget_show (mts->add_attendees_button); g_signal_connect (mts->add_attendees_button, "clicked", |