From: Alberto Garcia Date: Wed, 20 Feb 2008 12:49:04 +0000 (+0000) Subject: * src/modest-ui-actions.c: X-Git-Tag: git_migration_finished~1648 X-Git-Url: http://git.maemo.org/git/?p=modest;a=commitdiff_plain;h=50b9c080727c20167170b7d9e6a15f3b4b1e3af8 * src/modest-ui-actions.c: (modest_ui_actions_on_save_to_drafts): Change string shown on banner according to UI Specs v3.0 Fixes NB#80964 pmo-trunk-r4210 --- diff --git a/src/modest-ui-actions.c b/src/modest-ui-actions.c index 46fb8e3..6a54523 100644 --- a/src/modest-ui-actions.c +++ b/src/modest-ui-actions.c @@ -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);