diff options
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook-component.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 76a6e7cc82..b0552b7f2c 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,8 @@ +2001-08-19 Ettore Perazzoli <ettore@ximian.com> + + * gui/component/addressbook-component.c: Update the folder list to + include a display name and a description. + 2001-08-19 Damon Chaplin <damon@ximian.com> * gui/component/addressbook.c: use new Cut/Copy/Paste/Save/Search diff --git a/addressbook/gui/component/addressbook-component.c b/addressbook/gui/component/addressbook-component.c index f79b2c4169..46e9e7a6a7 100644 --- a/addressbook/gui/component/addressbook-component.c +++ b/addressbook/gui/component/addressbook-component.c @@ -65,7 +65,8 @@ static char *accepted_dnd_types[] = { }; static const EvolutionShellComponentFolderType folder_types[] = { - { "contacts", "evolution-contacts.png", TRUE, accepted_dnd_types, NULL }, + { "contacts", "evolution-contacts.png", N_("Contacts"), N_("Folder containing contact information"), + TRUE, accepted_dnd_types, NULL }, { NULL, NULL, FALSE, NULL, NULL } }; |