From 434ad7f66b53416d8add18dac2aa743e6b3b9c81 Mon Sep 17 00:00:00 2001 From: Rohini S Date: Mon, 13 Feb 2006 13:59:45 +0000 Subject: ** Fixes bug #221270. Removed white space before : when displaying account 2006-02-13 Rohini S ** Fixes bug #221270. * mail-send-recv.c: (build_dialog): Removed white space before : when displaying account information in Send/Receive dialog. (committed by andre, heading a string freeze ;-) svn path=/trunk/; revision=31506 --- mail/ChangeLog | 8 ++++++++ mail/mail-send-recv.c | 12 ++++++------ 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 + + ** 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 * 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(_("%s (%s) : %s"), account_name, url->protocol, url->host); + pretty_url = g_strdup_printf("%s (%s): %s", account_name, url->protocol, url->host); else if (url->path) - pretty_url = g_strdup_printf(_("%s (%s) : %s"), account_name, url->protocol, url->path); + pretty_url = g_strdup_printf("%s (%s): %s", account_name, url->protocol, url->path); else - pretty_url = g_strdup_printf(_("%s (%s)"), account_name, url->protocol); + pretty_url = g_strdup_printf("%s (%s)", account_name, url->protocol); } else { if (url->host && *url->host) - pretty_url = g_strdup_printf(_("%s : %s"), url->protocol, url->host); + pretty_url = g_strdup_printf("%s: %s", url->protocol, url->host); else if (url->path) - pretty_url = g_strdup_printf(_("%s : %s"), url->protocol, url->path); + pretty_url = g_strdup_printf("%s: %s", url->protocol, url->path); else - pretty_url = g_strdup_printf(_("%s"), url->protocol); + pretty_url = g_strdup_printf("%s", url->protocol); } camel_url_free(url); -- cgit v1.2.3