diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2008-08-07 21:00:44 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-08-07 21:00:44 +0800 |
commit | 92bc398f6b596236019c34029f85fac5c6449e20 (patch) | |
tree | 469aa01e7dfc8e9cfc4c6ee12ef65f5174f02485 /plugins/mark-all-read/mark-all-read.c | |
parent | 1614f363635a13644c54a6459a018303327e7c02 (diff) | |
download | gsoc2013-evolution-92bc398f6b596236019c34029f85fac5c6449e20.tar.gz gsoc2013-evolution-92bc398f6b596236019c34029f85fac5c6449e20.tar.zst gsoc2013-evolution-92bc398f6b596236019c34029f85fac5c6449e20.zip |
** Fixes bug #530402
2008-08-07 Matthew Barnes <mbarnes@redhat.com>
** 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
Diffstat (limited to 'plugins/mark-all-read/mark-all-read.c')
-rw-r--r-- | plugins/mark-all-read/mark-all-read.c | 8 |
1 files changed, 4 insertions, 4 deletions
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); |