diff options
author | Nickolay V. Shmyrev <nshmyrev@src.gnome.org> | 2007-01-27 07:53:57 +0800 |
---|---|---|
committer | Nickolay V. Shmyrev <nshmyrev@src.gnome.org> | 2007-01-27 07:53:57 +0800 |
commit | 44eb71780ac5a7e72ba9106c20eef913b29abd05 (patch) | |
tree | b6360a88d2b2d6ce69e376d9350a917f0754079e /plugins/groupwise-features/install-shared.c | |
parent | fcfe102b0c0340918e013b7f3cb39fb5560a4fef (diff) | |
download | gsoc2013-evolution-44eb71780ac5a7e72ba9106c20eef913b29abd05.tar.gz gsoc2013-evolution-44eb71780ac5a7e72ba9106c20eef913b29abd05.tar.zst gsoc2013-evolution-44eb71780ac5a7e72ba9106c20eef913b29abd05.zip |
Mark strings as translatable. See bug #399381 for details.
svn path=/trunk/; revision=33152
Diffstat (limited to 'plugins/groupwise-features/install-shared.c')
-rw-r--r-- | plugins/groupwise-features/install-shared.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/plugins/groupwise-features/install-shared.c b/plugins/groupwise-features/install-shared.c index 0c944458a5..a761358111 100644 --- a/plugins/groupwise-features/install-shared.c +++ b/plugins/groupwise-features/install-shared.c @@ -212,12 +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)) { - /* FIXME: this needs translating ... */ - 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); - 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)); + 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); + 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))); + wizard = GNOME_DRUID (gnome_druid_new_with_window (_("Shared Folder Installation"), NULL, TRUE, (GtkWidget**)(&window))); gtk_window_set_position (GTK_WINDOW (window) , GTK_WIN_POS_CENTER_ALWAYS); gnome_druid_append_page(wizard, GNOME_DRUID_PAGE(title_page)); gtk_widget_show_all (GTK_WIDGET (title_page)); |