diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-11-07 16:56:21 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-11-07 16:56:21 +0800 |
commit | 72f5f07037f831e355ad9ee5580594440479a352 (patch) | |
tree | 7943626eaa1e5f4dda0e873fbaac1807bef9be99 /plugins | |
parent | 37997f3ef8c13d4ec2946cbb9c82c1b3fef0486f (diff) | |
download | gsoc2013-evolution-72f5f07037f831e355ad9ee5580594440479a352.tar.gz gsoc2013-evolution-72f5f07037f831e355ad9ee5580594440479a352.tar.zst gsoc2013-evolution-72f5f07037f831e355ad9ee5580594440479a352.zip |
Fixes #308752.
svn path=/trunk/; revision=30574
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/itip-formatter/ChangeLog | 6 | ||||
-rw-r--r-- | plugins/itip-formatter/itip-formatter.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/plugins/itip-formatter/ChangeLog b/plugins/itip-formatter/ChangeLog index 96cf9e520c..c8cd39b7ee 100644 --- a/plugins/itip-formatter/ChangeLog +++ b/plugins/itip-formatter/ChangeLog @@ -1,3 +1,9 @@ +2005-11-07 Dinesh Layek <ldinesh@novell.com> + + Fixes #308752 + * itip-formatter.c: (itip_formatter_page_factory): changed the label + "Meetings and Tasks" as "Calendar and Tasks" + 2005-09-12 Chenthill Palanisamy <pchenthill@novell.com> Fixes #315345 diff --git a/plugins/itip-formatter/itip-formatter.c b/plugins/itip-formatter/itip-formatter.c index 64f8a96267..085b400d9c 100644 --- a/plugins/itip-formatter/itip-formatter.c +++ b/plugins/itip-formatter/itip-formatter.c @@ -1965,7 +1965,7 @@ itip_formatter_page_factory (EPlugin *ep, EConfigHookItemFactoryData *hook_data) /* Create a new notebook page */ page = gtk_vbox_new (FALSE, 0); GTK_CONTAINER (page)->border_width = 12; - tab_label = gtk_label_new (_("Meetings and Tasks")); + tab_label = gtk_label_new (_("Calendar and Tasks")); gtk_notebook_append_page (GTK_NOTEBOOK (hook_data->parent), page, tab_label); /* Frame */ |