diff options
author | Milan Crha <mcrha@src.gnome.org> | 2007-08-24 00:08:09 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2007-08-24 00:08:09 +0800 |
commit | 3e8006805fed9fb623e5ec1e5e1dd9440cc129d3 (patch) | |
tree | b9e7d21eb842c1fe8de77a100e45b96bbe72228a /calendar/gui/dialogs/delete-comp.c | |
parent | 8611c86552211433a9c2f0662e0f3b0a188515c3 (diff) | |
download | gsoc2013-evolution-3e8006805fed9fb623e5ec1e5e1dd9440cc129d3.tar.gz gsoc2013-evolution-3e8006805fed9fb623e5ec1e5e1dd9440cc129d3.tar.zst gsoc2013-evolution-3e8006805fed9fb623e5ec1e5e1dd9440cc129d3.zip |
2007-08-23 mcrha Fix for bug #329746
svn path=/trunk/; revision=34078
Diffstat (limited to 'calendar/gui/dialogs/delete-comp.c')
-rw-r--r-- | calendar/gui/dialogs/delete-comp.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/calendar/gui/dialogs/delete-comp.c b/calendar/gui/dialogs/delete-comp.c index 1624b8c30d..4e5cca3480 100644 --- a/calendar/gui/dialogs/delete-comp.c +++ b/calendar/gui/dialogs/delete-comp.c @@ -107,9 +107,9 @@ delete_component_dialog (ECalComponent *comp, case E_CAL_COMPONENT_JOURNAL: if (arg0) - id = "calendar:prompt-delete-named-journal"; + id = "calendar:prompt-delete-named-memo"; else - id = "calendar:prompt-delete-journal"; + id = "calendar:prompt-delete-memo"; break; default: @@ -136,9 +136,9 @@ delete_component_dialog (ECalComponent *comp, case E_CAL_COMPONENT_JOURNAL: if (n_comps == 1) - id = "calendar:prompt-delete-journal"; + id = "calendar:prompt-delete-memo"; else - id = "calendar:prompt-delete-journals"; + id = "calendar:prompt-delete-memos"; break; default: @@ -186,7 +186,7 @@ prompt_retract_dialog (ECalComponent *comp, char **retract_text, GtkWidget *pare message = g_strdup_printf (_("Are you sure you want to delete this task?")); break; case E_CAL_COMPONENT_JOURNAL: - message = g_strdup_printf (_("Are you sure you want to delete this journal entry?")); + message = g_strdup_printf (_("Are you sure you want to delete this memo?")); break; default: g_message ("Retract: Unsupported object type \n"); |