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/gui/dialogs | |
parent | 6a4275e077299ac5e9ea8bed23787ae73c73043a (diff) | |
download | gsoc2013-evolution-05dc817ea13818460261134b78873a77e1826138.tar.gz 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/gui/dialogs')
-rw-r--r-- | calendar/gui/dialogs/event-editor.c | 2 | ||||
-rw-r--r-- | calendar/gui/dialogs/task-editor.c | 2 |
2 files changed, 2 insertions, 2 deletions
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); |