aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mail/ChangeLog8
-rw-r--r--mail/mail-send-recv.c12
2 files changed, 14 insertions, 6 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index f2b88995e4..1d83cbad9f 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,11 @@
+2006-02-13 Rohini S <srohini@novell.com>
+
+ ** Fixes bug #221270.
+
+ * mail-send-recv.c: (build_dialog):
+ Removed white space before : when displaying account information in
+ Send/Receive dialog.
+
2006-02-13 Andre Klapper <a9016009@gmx.de>
* mail-mt.c: uncommenting a string. Fixes bug 271734.
diff --git a/mail/mail-send-recv.c b/mail/mail-send-recv.c
index 2cb6338ab2..0821131363 100644
--- a/mail/mail-send-recv.c
+++ b/mail/mail-send-recv.c
@@ -263,19 +263,19 @@ format_url(const char *internal_url, const char *account_name)
url = camel_url_new(internal_url, NULL);
if (account_name) {
if (url->host && *url->host)
- pretty_url = g_strdup_printf(_("<b>%s (%s)</b> : %s"), account_name, url->protocol, url->host);
+ pretty_url = g_strdup_printf("<b>%s (%s)</b>: %s", account_name, url->protocol, url->host);
else if (url->path)
- pretty_url = g_strdup_printf(_("<b>%s (%s)</b> : %s"), account_name, url->protocol, url->path);
+ pretty_url = g_strdup_printf("<b>%s (%s)</b>: %s", account_name, url->protocol, url->path);
else
- pretty_url = g_strdup_printf(_("<b>%s (%s)</b>"), account_name, url->protocol);
+ pretty_url = g_strdup_printf("<b>%s (%s)</b>", account_name, url->protocol);
}
else {
if (url->host && *url->host)
- pretty_url = g_strdup_printf(_("<b>%s</b> : %s"), url->protocol, url->host);
+ pretty_url = g_strdup_printf("<b>%s</b>: %s", url->protocol, url->host);
else if (url->path)
- pretty_url = g_strdup_printf(_("<b>%s</b> : %s"), url->protocol, url->path);
+ pretty_url = g_strdup_printf("<b>%s</b>: %s", url->protocol, url->path);
else
- pretty_url = g_strdup_printf(_("<b>%s</b>"), url->protocol);
+ pretty_url = g_strdup_printf("<b>%s</b>", url->protocol);
}
camel_url_free(url);