diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-08-25 04:19:05 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-08-25 04:19:05 +0800 |
commit | 5d7fb3b5d6bee24555457a5a40d7e8e7af037239 (patch) | |
tree | 5fe689b505a241386e1bbb02ab8475acdca878d0 /mail/component-factory.c | |
parent | 34f9e86684f32c56f9752a54a9713439712cc976 (diff) | |
download | gsoc2013-evolution-5d7fb3b5d6bee24555457a5a40d7e8e7af037239.tar.gz gsoc2013-evolution-5d7fb3b5d6bee24555457a5a40d7e8e7af037239.tar.zst gsoc2013-evolution-5d7fb3b5d6bee24555457a5a40d7e8e7af037239.zip |
Don't mark empty strings for translation. Rather, give descriptions and
* component-factory.c: Don't mark empty strings for translation.
Rather, give descriptions and display names to types "mailstorage"
and "vtrash".
svn path=/trunk/; revision=12453
Diffstat (limited to 'mail/component-factory.c')
-rw-r--r-- | mail/component-factory.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 } }; |