aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <nshmyrev@yandex.ru>2007-01-27 19:25:16 +0800
committerNickolay V. Shmyrev <nshmyrev@src.gnome.org>2007-01-27 19:25:16 +0800
commit094f34621ab7b77a57f6b588348ced95756e9798 (patch)
treed5db709aa2bfa5bb90f696ddd357ac3063e40b8a
parent44eb71780ac5a7e72ba9106c20eef913b29abd05 (diff)
downloadgsoc2013-evolution-094f34621ab7b77a57f6b588348ced95756e9798.tar
gsoc2013-evolution-094f34621ab7b77a57f6b588348ced95756e9798.tar.gz
gsoc2013-evolution-094f34621ab7b77a57f6b588348ced95756e9798.tar.bz2
gsoc2013-evolution-094f34621ab7b77a57f6b588348ced95756e9798.tar.lz
gsoc2013-evolution-094f34621ab7b77a57f6b588348ced95756e9798.tar.xz
gsoc2013-evolution-094f34621ab7b77a57f6b588348ced95756e9798.tar.zst
gsoc2013-evolution-094f34621ab7b77a57f6b588348ced95756e9798.zip
don't split sentences. Fixes bug #401288.
2007-01-27 Nickolay V. Shmyrev <nshmyrev@yandex.ru> * install-shared.c: (org_gnome_popup_wizard): don't split sentences. Fixes bug #401288. svn path=/trunk/; revision=33154
-rw-r--r--plugins/groupwise-features/ChangeLog5
-rw-r--r--plugins/groupwise-features/install-shared.c7
2 files changed, 10 insertions, 2 deletions
diff --git a/plugins/groupwise-features/ChangeLog b/plugins/groupwise-features/ChangeLog
index f54f808ea2..d731bee750 100644
--- a/plugins/groupwise-features/ChangeLog
+++ b/plugins/groupwise-features/ChangeLog
@@ -1,6 +1,11 @@
2007-01-27 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
* install-shared.c: (org_gnome_popup_wizard):
+ don't split sentences. Fixes bug #401288.
+
+2007-01-27 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
+
+ * install-shared.c: (org_gnome_popup_wizard):
* junk-settings.c: (junk_settings_construct):
* share-folder.c: (share_folder_construct):
* status-track.c: (track_status):
diff --git a/plugins/groupwise-features/install-shared.c b/plugins/groupwise-features/install-shared.c
index a761358111..3455f6e5d2 100644
--- a/plugins/groupwise-features/install-shared.c
+++ b/plugins/groupwise-features/install-shared.c
@@ -212,8 +212,11 @@ org_gnome_popup_wizard (EPlugin *ep, EMEventTargetMessage *target)
from_addr = camel_mime_message_get_from ((CamelMimeMessage *)target->message);
if (from_addr && camel_internet_address_get(from_addr, 0, &name, &email)) {
- start_message = g_strconcat (_(" The User "), "'", name, "' " , _("has shared a folder with you\n\n"), " ",
- _(" Message from "), "'" , name, "'\n\n\n", content->buffer->data, "\n\n\n", _("Click 'Forward' to install the shared folder\n\n"), NULL);
+ start_message = g_strdup_printf (_("The user '%s' has shared a folder with you\n\n"
+ "Message from '%s'\n\n\n"
+ "%s\n\n\n"
+ "Click 'Forward' to install the shared folder\n\n"),
+ name, name, content->buffer->data);
title_page = GNOME_DRUID_PAGE_EDGE (gnome_druid_page_edge_new_with_vals(GNOME_EDGE_START, TRUE, _("Install the shared folder"), start_message, NULL, NULL, NULL));
g_free(start_message);
wizard = GNOME_DRUID (gnome_druid_new_with_window (_("Shared Folder Installation"), NULL, TRUE, (GtkWidget**)(&window)));