diff options
author | Milan Crha <mcrha@redhat.com> | 2014-05-26 22:41:48 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2014-05-26 22:41:48 +0800 |
commit | a3db47909ec99d373949e67d6c64de06b398ae07 (patch) | |
tree | 4bd86d30cfeb143f4bd43fb22948a30d40fb540a /modules/mail/em-mailer-prefs.c | |
parent | 5a6d73e8a48564256c6dcbf7fbeab6c47dd2c396 (diff) | |
download | gsoc2013-evolution-a3db47909ec99d373949e67d6c64de06b398ae07.tar.gz gsoc2013-evolution-a3db47909ec99d373949e67d6c64de06b398ae07.tar.zst gsoc2013-evolution-a3db47909ec99d373949e67d6c64de06b398ae07.zip |
Bug 726746 - Allow to auto-empty trash without needing to exit
Diffstat (limited to 'modules/mail/em-mailer-prefs.c')
-rw-r--r-- | modules/mail/em-mailer-prefs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/mail/em-mailer-prefs.c b/modules/mail/em-mailer-prefs.c index 2a150a768e..0886269d60 100644 --- a/modules/mail/em-mailer-prefs.c +++ b/modules/mail/em-mailer-prefs.c @@ -78,9 +78,9 @@ static const struct { gint days; } empty_trash_frequency[] = { { N_("On exit, every time"), 0 }, - { N_("On exit, once per day"), 1 }, - { N_("On exit, once per week"), 7 }, - { N_("On exit, once per month"), 30 }, + { N_("Once per day"), 1 }, + { N_("Once per week"), 7 }, + { N_("Once per month"), 30 }, { N_("Immediately, on folder leave"), -1 } }; |