aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorPunit Jain <jpunit@novell.com>2011-11-15 15:41:55 +0800
committerPunit Jain <jpunit@novell.com>2011-11-15 15:41:55 +0800
commit604948f1b5522c020128106eb4466af134648d83 (patch)
treedafd6f3a67bbed5132f640f79837cc3b823d49c4 /mail
parent907df00ad0ca6b1380f74eac62dc114a492849d6 (diff)
downloadgsoc2013-evolution-604948f1b5522c020128106eb4466af134648d83.tar
gsoc2013-evolution-604948f1b5522c020128106eb4466af134648d83.tar.gz
gsoc2013-evolution-604948f1b5522c020128106eb4466af134648d83.tar.bz2
gsoc2013-evolution-604948f1b5522c020128106eb4466af134648d83.tar.lz
gsoc2013-evolution-604948f1b5522c020128106eb4466af134648d83.tar.xz
gsoc2013-evolution-604948f1b5522c020128106eb4466af134648d83.tar.zst
gsoc2013-evolution-604948f1b5522c020128106eb4466af134648d83.zip
Bug#636214 String changes
Diffstat (limited to 'mail')
-rw-r--r--mail/em-account-editor.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c
index b196da0715..0ef2378acc 100644
--- a/mail/em-account-editor.c
+++ b/mail/em-account-editor.c
@@ -2824,8 +2824,8 @@ emae_create_basic_assistant_page (EMAccountEditor *emae,
title = _("Sending Email");
label = _("Please enter information about the way you will send mail. If you are not sure, ask your system administrator or Internet Service Provider.");
} else if (g_ascii_strcasecmp (page_id, "review_page") == 0) {
- title = _("Review Account");
- label = _("Time to check things over before we try and connect to the server and fetch your mail.");
+ title = _("Account Summary");
+ label = _("This is a summary of the settings which will be used to access your mail.");
} else if (g_ascii_strcasecmp (page_id, "finish_page") == 0) {
page_type = GTK_ASSISTANT_PAGE_CONFIRM;
fill_space = TRUE;
@@ -4616,9 +4616,9 @@ emae_check_complete (EConfig *ec,
gtk_label_set_text (emae->priv->receive_name, url->user);
g_object_get (emae->priv->source.settings, "security-method", &method, NULL);
if (method == CAMEL_NETWORK_SECURITY_METHOD_SSL_ON_ALTERNATE_PORT)
- enc = g_strdup (_("Always(SSL)"));
+ enc = g_strdup (_("Always (SSL)"));
else if (method == CAMEL_NETWORK_SECURITY_METHOD_STARTTLS_ON_STANDARD_PORT)
- enc = g_strdup (_("When possible(TLS)"));
+ enc = g_strdup (_("When possible (TLS)"));
else
enc = g_strdup (_("Never"));
@@ -4632,9 +4632,9 @@ emae_check_complete (EConfig *ec,
gtk_label_set_text (emae->priv->send_name, url->user);
g_object_get (emae->priv->transport.settings, "security-method", &method, NULL);
if (method == CAMEL_NETWORK_SECURITY_METHOD_SSL_ON_ALTERNATE_PORT)
- enc = g_strdup (_("Always(SSL)"));
+ enc = g_strdup (_("Always (SSL)"));
else if (method == CAMEL_NETWORK_SECURITY_METHOD_STARTTLS_ON_STANDARD_PORT)
- enc = g_strdup (_("When possible(TLS)"));
+ enc = g_strdup (_("When possible (TLS)"));
else
enc = g_strdup (_("Never"));