From fbd900e99014a0981c0a2a6cd5a56ecaf8358bee Mon Sep 17 00:00:00 2001 From: JP Rosevear Date: Sat, 23 Dec 2000 04:26:37 +0000 Subject: Clean up translatable strings for translators, fixes bug 993 2000-12-22 JP Rosevear * gui/dialogs/delete-comp.c (delete_component_dialog): Clean up translatable strings for translators, fixes bug 993 svn path=/trunk/; revision=7136 --- calendar/gui/dialogs/delete-comp.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'calendar/gui/dialogs') diff --git a/calendar/gui/dialogs/delete-comp.c b/calendar/gui/dialogs/delete-comp.c index d61b26a677..6133e0d908 100644 --- a/calendar/gui/dialogs/delete-comp.c +++ b/calendar/gui/dialogs/delete-comp.c @@ -54,15 +54,15 @@ delete_component_dialog (CalComponent *comp) switch (vtype) { case CAL_COMPONENT_EVENT: - type = _("appointment"); + type = _("Are you sure you want to delete the appointment"); break; case CAL_COMPONENT_TODO: - type = _("task"); + type = _("Are you sure you want to delete the task"); break; case CAL_COMPONENT_JOURNAL: - type = _("journal entry"); + type = _("Are you sure you want to delete the journal entry"); break; default: @@ -71,10 +71,9 @@ delete_component_dialog (CalComponent *comp) } if (summary.value) - str = g_strdup_printf (_("Are you sure you want to delete the %s `%s'?"), - type, summary.value); + str = g_strdup_printf ("%s `%s'?", type, summary.value); else - str = g_strdup_printf (_("Are you sure you want to delete this %s?"), type); + str = g_strdup_printf ("%s?", type); dialog = gnome_question_dialog_modal (str, NULL, NULL); g_free (str); -- cgit v1.2.3