diff options
Diffstat (limited to 'mail/em-account-editor.c')
-rw-r--r-- | mail/em-account-editor.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c index 5febf6c59f..c4857432d4 100644 --- a/mail/em-account-editor.c +++ b/mail/em-account-editor.c @@ -288,9 +288,9 @@ static struct { char *label; char *value; } ssl_options[] = { - { N_("No encryption"), "never" }, - { N_("TLS encryption"), "when-possible" }, - { N_("SSL encryption"), "always" } + { N_("Never"), "never" }, + { N_("Whenever Possible"), "when-possible" }, + { N_("Always"), "always" } }; #define num_ssl_options (sizeof (ssl_options) / sizeof (ssl_options[0])) |