diff options
author | JP Rosevear <jpr@helixcode.com> | 2000-12-23 12:26:37 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2000-12-23 12:26:37 +0800 |
commit | fbd900e99014a0981c0a2a6cd5a56ecaf8358bee (patch) | |
tree | 934118bcfe09eb50acf24fa2a605c04d1cea67ec /calendar | |
parent | 084c4816736c8aa56e9538f18caa99bb92eb4d01 (diff) | |
download | gsoc2013-evolution-fbd900e99014a0981c0a2a6cd5a56ecaf8358bee.tar gsoc2013-evolution-fbd900e99014a0981c0a2a6cd5a56ecaf8358bee.tar.gz gsoc2013-evolution-fbd900e99014a0981c0a2a6cd5a56ecaf8358bee.tar.bz2 gsoc2013-evolution-fbd900e99014a0981c0a2a6cd5a56ecaf8358bee.tar.lz gsoc2013-evolution-fbd900e99014a0981c0a2a6cd5a56ecaf8358bee.tar.xz gsoc2013-evolution-fbd900e99014a0981c0a2a6cd5a56ecaf8358bee.tar.zst gsoc2013-evolution-fbd900e99014a0981c0a2a6cd5a56ecaf8358bee.zip |
Clean up translatable strings for translators, fixes bug 993
2000-12-22 JP Rosevear <jpr@helixcode.com>
* gui/dialogs/delete-comp.c (delete_component_dialog): Clean up
translatable strings for translators, fixes bug 993
svn path=/trunk/; revision=7136
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/dialogs/delete-comp.c | 11 |
2 files changed, 10 insertions, 6 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index ffa1c64e0f..2992aca0f0 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,10 @@ 2000-12-22 JP Rosevear <jpr@helixcode.com> + * gui/dialogs/delete-comp.c (delete_component_dialog): Clean up + translatable strings for translators, fixes bug 993 + +2000-12-22 JP Rosevear <jpr@helixcode.com> + * gui/goto.c (create_ecal): Make sure the current month is shown when the dialog pops up. 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); |