diff options
author | JP Rosevear <jpr@novell.com> | 2004-06-26 01:37:35 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-06-26 01:37:35 +0800 |
commit | 05dc817ea13818460261134b78873a77e1826138 (patch) | |
tree | 1d6b82895a797b1d8e90a504631345eec5210cd2 /calendar | |
parent | 6a4275e077299ac5e9ea8bed23787ae73c73043a (diff) | |
download | gsoc2013-evolution-05dc817ea13818460261134b78873a77e1826138.tar gsoc2013-evolution-05dc817ea13818460261134b78873a77e1826138.tar.gz gsoc2013-evolution-05dc817ea13818460261134b78873a77e1826138.tar.bz2 gsoc2013-evolution-05dc817ea13818460261134b78873a77e1826138.tar.lz gsoc2013-evolution-05dc817ea13818460261134b78873a77e1826138.tar.xz gsoc2013-evolution-05dc817ea13818460261134b78873a77e1826138.tar.zst gsoc2013-evolution-05dc817ea13818460261134b78873a77e1826138.zip |
use "Task" instead of "Basic"
2004-06-25 JP Rosevear <jpr@novell.com>
* gui/dialogs/task-editor.c (task_editor_construct): use "Task"
instead of "Basic"
* gui/dialogs/event-editor.c (event_editor_construct): use
"Invitations" instead of "Meeting"
svn path=/trunk/; revision=26518
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 8 | ||||
-rw-r--r-- | calendar/gui/dialogs/event-editor.c | 2 | ||||
-rw-r--r-- | calendar/gui/dialogs/task-editor.c | 2 |
3 files changed, 10 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index fc5358765f..861c276f9a 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,11 @@ +2004-06-25 <jpr@novell.com> + + * gui/dialogs/task-editor.c (task_editor_construct): use "Task" + instead of "Basic" + + * gui/dialogs/event-editor.c (event_editor_construct): use + "Invitations" instead of "Meeting" + 2004-06-25 JP Rosevear <jpr@novell.com> * gui/dialogs/e-delegate-dialog.glade: use "Contacts..." diff --git a/calendar/gui/dialogs/event-editor.c b/calendar/gui/dialogs/event-editor.c index 52065ea0b2..5fe07a88dd 100644 --- a/calendar/gui/dialogs/event-editor.c +++ b/calendar/gui/dialogs/event-editor.c @@ -173,7 +173,7 @@ event_editor_construct (EventEditor *ee, ECal *client) gtk_object_sink (GTK_OBJECT (priv->meet_page)); comp_editor_append_page (COMP_EDITOR (ee), COMP_EDITOR_PAGE (priv->meet_page), - _("Meeting")); + _("Invitations")); comp_editor_set_e_cal (COMP_EDITOR (ee), client); diff --git a/calendar/gui/dialogs/task-editor.c b/calendar/gui/dialogs/task-editor.c index 2023e1dcd8..1fe4023bde 100644 --- a/calendar/gui/dialogs/task-editor.c +++ b/calendar/gui/dialogs/task-editor.c @@ -146,7 +146,7 @@ task_editor_construct (TaskEditor *te, ECal *client) gtk_object_sink (GTK_OBJECT (priv->task_page)); comp_editor_append_page (COMP_EDITOR (te), COMP_EDITOR_PAGE (priv->task_page), - _("Basics")); + _("Task")); g_signal_connect (G_OBJECT (priv->task_page), "client_changed", G_CALLBACK (client_changed_cb), te); |