diff options
author | Jeffrey Stedfast <fejj@novell.com> | 2004-11-02 04:58:47 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-11-02 04:58:47 +0800 |
commit | 43d766ff70995f1f6b4f6023bf62dc480e8647bc (patch) | |
tree | 0567d15eb02368db5f5d7c76e9c53727f297fba9 /mail | |
parent | 50cb220c0af1640bab5fde586f6c5f705de058ea (diff) | |
download | gsoc2013-evolution-43d766ff70995f1f6b4f6023bf62dc480e8647bc.tar.gz gsoc2013-evolution-43d766ff70995f1f6b4f6023bf62dc480e8647bc.tar.zst gsoc2013-evolution-43d766ff70995f1f6b4f6023bf62dc480e8647bc.zip |
Change the labels back to the same as they were in 2.0
2004-11-01 Jeffrey Stedfast <fejj@novell.com>
* em-account-editor.c: Change the labels back to the same as they
were in 2.0
svn path=/trunk/; revision=27787
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/em-account-editor.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 5259b1ab06..3f71c8b1cf 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2004-11-01 Jeffrey Stedfast <fejj@novell.com> + + * em-account-editor.c: Change the labels back to the same as they + were in 2.0 + 2004-10-28 Not Zed <NotZed@Ximian.com> * mail-folder-cache.c (real_flush_updates): 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])) |