diff options
author | Rohini S <srohini@novell.com> | 2006-02-13 21:59:45 +0800 |
---|---|---|
committer | Andre Klapper <aklapper@src.gnome.org> | 2006-02-13 21:59:45 +0800 |
commit | 434ad7f66b53416d8add18dac2aa743e6b3b9c81 (patch) | |
tree | 0f041255585de3cad8b4db0ce53c8fac608758ec /mail/mail-send-recv.c | |
parent | e23e7b6afdb09e73c27019214b8ad7780f10fa01 (diff) | |
download | gsoc2013-evolution-434ad7f66b53416d8add18dac2aa743e6b3b9c81.tar.gz gsoc2013-evolution-434ad7f66b53416d8add18dac2aa743e6b3b9c81.tar.zst gsoc2013-evolution-434ad7f66b53416d8add18dac2aa743e6b3b9c81.zip |
** Fixes bug #221270. Removed white space before : when displaying account
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.
(committed by andre, heading a string freeze ;-)
svn path=/trunk/; revision=31506
Diffstat (limited to 'mail/mail-send-recv.c')
-rw-r--r-- | mail/mail-send-recv.c | 12 |
1 files changed, 6 insertions, 6 deletions
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); |