* src/modest-ui-actions.c:
authorAlberto Garcia <agarcia@igalia.com>
Wed, 20 Feb 2008 12:49:04 +0000 (12:49 +0000)
committerAlberto Garcia <agarcia@igalia.com>
Wed, 20 Feb 2008 12:49:04 +0000 (12:49 +0000)
(modest_ui_actions_on_save_to_drafts):
Change string shown on banner according to UI Specs v3.0
Fixes NB#80964

pmo-trunk-r4210

src/modest-ui-actions.c

index 46fb8e3..6a54523 100644 (file)
@@ -2400,8 +2400,9 @@ modest_ui_actions_on_save_to_drafts (GtkWidget *widget, ModestMsgEditWindow *edi
        win = (ModestMainWindow *)
                modest_window_mgr_get_main_window( modest_runtime_get_window_mgr(), FALSE);
        if (win) {
-               modest_platform_information_banner (GTK_WIDGET (win), 
-                                                   NULL, _CS("sfil_ib_saving"));
+               gchar *text = g_strdup_printf (_("mail_va_saved_to_drafts"), _("mcen_me_folder_drafts"));
+               modest_platform_information_banner (GTK_WIDGET (win), NULL, text);
+               g_free (text);
        }
        modest_msg_edit_window_set_modified (edit_window, FALSE);