aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mail/ChangeLog8
-rw-r--r--mail/component-factory.c4
2 files changed, 10 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 78f053da04..925c1e0879 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,11 @@
+2001-08-24 Ettore Perazzoli <ettore@ximian.com>
+
+ [Fix #8024, Empty strings marked for translation.]
+
+ * component-factory.c: Don't mark empty strings for translation.
+ Rather, give descriptions and display names to types "mailstorage"
+ and "vtrash".
+
2001-08-24 Peter Williams <peterw@ximian.com>
* mail-ops.c (remove_folder_get): Save the folder's full_name, unref it,
diff --git a/mail/component-factory.c b/mail/component-factory.c
index 3a6732f987..b1c729297c 100644
--- a/mail/component-factory.c
+++ b/mail/component-factory.c
@@ -94,8 +94,8 @@ static char *exported_dnd_types[] = {
static const EvolutionShellComponentFolderType folder_types[] = {
{ "mail", "evolution-inbox.png", N_("Mail"), N_("Folder containing mail"), TRUE, accepted_dnd_types, exported_dnd_types },
- { "mailstorage", "evolution-inbox.png", N_(""), N_(""), FALSE, NULL, NULL },
- { "vtrash", "evolution-trash.png", N_(""), N_(""), FALSE, accepted_dnd_types, exported_dnd_types },
+ { "mailstorage", "evolution-inbox.png", "Mailstorage", N_("Mail storage folder (internal)"), FALSE, NULL, NULL },
+ { "vtrash", "evolution-trash.png", N_("Virtual Trash"), N_("Virtual Trash folder"), FALSE, accepted_dnd_types, exported_dnd_types },
{ NULL, NULL, NULL, NULL, FALSE, NULL, NULL }
};