diff options
author | Andre Klapper <aklapper@src.gnome.org> | 2006-02-13 22:36:11 +0800 |
---|---|---|
committer | Andre Klapper <aklapper@src.gnome.org> | 2006-02-13 22:36:11 +0800 |
commit | cec6ae502becc24010dcc2743d91b2257ce089b3 (patch) | |
tree | e890ba74f2715571eaccf5b3cdb14b8768281493 /mail/em-account-editor.c | |
parent | 434ad7f66b53416d8add18dac2aa743e6b3b9c81 (diff) | |
download | gsoc2013-evolution-cec6ae502becc24010dcc2743d91b2257ce089b3.tar.gz gsoc2013-evolution-cec6ae502becc24010dcc2743d91b2257ce089b3.tar.zst gsoc2013-evolution-cec6ae502becc24010dcc2743d91b2257ce089b3.zip |
2006-02-13 Karsten Bräckelmann <guenther@rudersport.de>,
Andre Klapper <a9016009@gmx.de>
* addressbook/ldap-config.glade:
* mail/em-account-editor.c: Fix the Security options to finally be
descriptive, rather than obscuring. Fixes the UI part of bug #321797.
svn path=/trunk/; revision=31507
Diffstat (limited to 'mail/em-account-editor.c')
-rw-r--r-- | mail/em-account-editor.c | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c index 1387037046..64154cf2c5 100644 --- a/mail/em-account-editor.c +++ b/mail/em-account-editor.c @@ -299,9 +299,17 @@ static struct { char *label; char *value; } ssl_options[] = { - { N_("Never"), "never" }, - { N_("Whenever Possible"), "when-possible" }, - { N_("Always"), "always" } + /* Translators: This string is a "Use secure connection" option for + the Mailer. It will not use an encrypted connection. */ + { N_("No encryption"), "never" }, + /* Translators: This string is a "Use secure connection" option for + the Mailer. TLS (Transport Layer Security) is commonly known by + this abbreviation. */ + { N_("TLS encryption"), "when-possible" }, + /* Translators: This string is a "Use secure connection" option for + the Mailer. SSL (Secure Sockets Layer) is commonly known by this + abbreviation. */ + { N_("SSL encryption"), "always" } }; #define num_ssl_options (sizeof (ssl_options) / sizeof (ssl_options[0])) |