diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/em-folder-properties.c | 8 |
2 files changed, 12 insertions, 3 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index ba98f9f72e..fab37b402d 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2008-08-31 Matthew Barnes <mbarnes@redhat.com> + + ** Fix bug #544430 + + * em-folder-properties.c (emfp_get_folder_item): + Better formed translatable strings for quota usage. + 2008-08-30 Srinivasa Ragavan <sragavan@novell.com> * mail/mail-component.c: Disable flag upsync. I need to implement it diff --git a/mail/em-folder-properties.c b/mail/em-folder-properties.c index 506522750b..5a7179ee01 100644 --- a/mail/em-folder-properties.c +++ b/mail/em-folder-properties.c @@ -188,11 +188,13 @@ emfp_get_folder_item(EConfig *ec, EConfigItem *item, struct _GtkWidget *parent, if (!info->total) continue; - /* show quota name only when available and have more than one quota info */ + /* Show quota name only when available and we + * have more than one quota info. */ if (info->name && quota->next) - descr = g_strdup_printf ("%s (%s):", _("Quota usage"), _(info->name)); + descr = g_strdup_printf ( + _("Quota usage (%s):"), _(info->name)); else - descr = g_strdup_printf ("%s:", _("Quota usage")); + descr = g_strdup_printf (_("Quota usage")); procs = (int) ((((double) info->used) / ((double) info->total)) * 100.0 + 0.5); |