aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2008-08-07 21:00:44 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-08-07 21:00:44 +0800
commit92bc398f6b596236019c34029f85fac5c6449e20 (patch)
tree469aa01e7dfc8e9cfc4c6ee12ef65f5174f02485 /plugins
parent1614f363635a13644c54a6459a018303327e7c02 (diff)
downloadgsoc2013-evolution-92bc398f6b596236019c34029f85fac5c6449e20.tar
gsoc2013-evolution-92bc398f6b596236019c34029f85fac5c6449e20.tar.gz
gsoc2013-evolution-92bc398f6b596236019c34029f85fac5c6449e20.tar.bz2
gsoc2013-evolution-92bc398f6b596236019c34029f85fac5c6449e20.tar.lz
gsoc2013-evolution-92bc398f6b596236019c34029f85fac5c6449e20.tar.xz
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')
-rw-r--r--plugins/mark-all-read/ChangeLog7
-rw-r--r--plugins/mark-all-read/mark-all-read.c8
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 <mbarnes@redhat.com>
+
+ ** 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 <mbarnes@redhat.com>
** 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);