From 92bc398f6b596236019c34029f85fac5c6449e20 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Thu, 7 Aug 2008 13:00:44 +0000 Subject: ** Fixes bug #530402 2008-08-07 Matthew Barnes ** Fixes bug #530402 * plugins/mark-all-read/mark-all-read.c (prompt_user): Improve dialog wording, and don't use a window title (HIG). svn path=/trunk/; revision=35923 --- plugins/mark-all-read/ChangeLog | 7 +++++++ plugins/mark-all-read/mark-all-read.c | 8 ++++---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/plugins/mark-all-read/ChangeLog b/plugins/mark-all-read/ChangeLog index bfd604cfbe..caf1e71e70 100644 --- a/plugins/mark-all-read/ChangeLog +++ b/plugins/mark-all-read/ChangeLog @@ -1,3 +1,10 @@ +2008-08-07 Matthew Barnes + + ** Fixes bug #530402 + + * mark-all-read.c (prompt_user): + Improve dialog wording, and don't use a window title (HIG). + 2008-05-16 Matthew Barnes ** Fixes bug #514383 diff --git a/plugins/mark-all-read/mark-all-read.c b/plugins/mark-all-read/mark-all-read.c index 8940551e47..af6c482288 100644 --- a/plugins/mark-all-read/mark-all-read.c +++ b/plugins/mark-all-read/mark-all-read.c @@ -34,9 +34,10 @@ #include "e-util/e-error.h" #define PRIMARY_TEXT \ - N_("Mark all messages in this folder and subfolders as read?") + N_("Also mark messages in subfolders?") #define SECONDARY_TEXT \ - N_("Do you want the operation to be performed also in the subfolders?") + N_("Do you want to mark messages as read in the current folder " \ + "only, or in the current folder as well as all subfolders?") void org_gnome_mark_all_read (EPlugin *ep, EMPopupTargetFolder *target); static void mar_got_folder (char *uri, CamelFolder *folder, void *data); @@ -81,8 +82,7 @@ prompt_user (void) dialog = gtk_dialog_new (); gtk_widget_hide (GTK_DIALOG (dialog)->action_area); gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE); - gtk_window_set_title ( - GTK_WINDOW (dialog), _("Mark All Messages as Read")); + gtk_window_set_title (GTK_WINDOW (dialog), ""); g_signal_connect ( dialog, "map", G_CALLBACK (gtk_widget_queue_resize), NULL); -- cgit