aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/exchange-operations
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/exchange-operations')
-rw-r--r--plugins/exchange-operations/ChangeLog7
-rw-r--r--plugins/exchange-operations/exchange-delegates-user.c10
2 files changed, 12 insertions, 5 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog
index 12f100886d..8b34338b39 100644
--- a/plugins/exchange-operations/ChangeLog
+++ b/plugins/exchange-operations/ChangeLog
@@ -1,3 +1,10 @@
+2007-07-26 Hiroyuki Ikezoe <poincare@ikezoe.net>
+
+ ** Fix for bug #458511
+
+ * exchange-delegates-user.c: (exchange_delegates_user_edit): each
+ message is enclosed with double quotes line by line.
+
2007-07-12 Matthew Barnes <mbarnes@redhat.com>
* exchange-delegates-user.c:
diff --git a/plugins/exchange-operations/exchange-delegates-user.c b/plugins/exchange-operations/exchange-delegates-user.c
index 50bcef4b11..f74979615d 100644
--- a/plugins/exchange-operations/exchange-delegates-user.c
+++ b/plugins/exchange-operations/exchange-delegates-user.c
@@ -336,11 +336,11 @@ exchange_delegates_user_edit (ExchangeAccount *account,
stream = camel_stream_mem_new ();
camel_stream_printf (stream,
- _("This message was sent automatically by Evolution \
- to inform you that you have been designated as a \
- delegate. You can now send messages on my behalf.\
- \n\nYou have been given the following permissions \
- on my folders:\n"));
+ _("This message was sent automatically by Evolution "
+ "to inform you that you have been designated as a "
+ "delegate. You can now send messages on my behalf."
+ " \n\nYou have been given the following permissions "
+ "on my folders:\n"));
for (i = 0; i < EXCHANGE_DELEGATES_LAST; i++) {
menu = glade_xml_get_widget (xml, widget_names[i]);
role = e_dialog_option_menu_get (menu, exchange_perm_map);