From cec6ae502becc24010dcc2743d91b2257ce089b3 Mon Sep 17 00:00:00 2001 From: Andre Klapper Date: Mon, 13 Feb 2006 14:36:11 +0000 Subject: 2006-02-13 Karsten Bräckelmann , Andre Klapper MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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 --- mail/em-account-editor.c | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'mail/em-account-editor.c') 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])) -- cgit