diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/component-factory.c | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index d836e25ddc..0043ce3b57 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2001-08-19 Ettore Perazzoli <ettore@ximian.com> + + * component-factory.c: Update the folder list to include a display + name and a description. + 2001-08-19 Jeffrey Stedfast <fejj@ximian.com> * mail-mt.c (do_op_status): Allow the activity to be NULL if there diff --git a/mail/component-factory.c b/mail/component-factory.c index 89305125de..f01e9147b2 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -93,10 +93,10 @@ static char *exported_dnd_types[] = { }; static const EvolutionShellComponentFolderType folder_types[] = { - { "mail", "evolution-inbox.png", TRUE, accepted_dnd_types, exported_dnd_types }, - { "mailstorage", "evolution-inbox.png", FALSE, NULL, NULL }, - { "vtrash", "evolution-trash.png", FALSE, accepted_dnd_types, exported_dnd_types }, - { NULL, NULL, FALSE, NULL, NULL } + { "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 }, + { NULL, NULL, NULL, NULL, FALSE, NULL, NULL } }; static const char *schema_types[] = { |