talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 5f89c59a56af3db7c786e61476ebd735c0732180
parent c1297b2d44b2c9f516f12dd59a5f6d58ad91c9fc
Author: Paul <paul@claws-mail.org>
Date:   Thu,  8 Nov 2018 19:39:24 +0000

modify label text

Diffstat:
Msrc/prefs_summaries.c | 4++--
Msrc/summaryview.c | 2+-
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/prefs_summaries.c b/src/prefs_summaries.c @@ -599,10 +599,10 @@ static void prefs_summaries_create_widget(PrefsPage *_page, GtkWindow *window, PACK_CHECK_BUTTON (vbox1, checkbtn_ask_mark_all_read, - _("Confirm before marking all messages in a folder as read or unread")); + _("Confirm when marking all messages as read or unread")); PACK_CHECK_BUTTON (vbox1, checkbtn_ask_override_colorlabel, - _("Confirm before overriding color label of messages")); + _("Confirm when changing color labels")); PACK_CHECK_BUTTON (vbox1, checkbtn_transhdr, _("Translate header names")); diff --git a/src/summaryview.c b/src/summaryview.c @@ -6034,7 +6034,7 @@ void summary_set_colorlabel(SummaryView *summaryview, guint labelcolor, msg = _("Do you really want to reset the color label of all selected messages?"); else msg = _("Do you really want to apply this color label to all selected messages?"); - val = alertpanel_full(_("Set color label"), msg, + val = alertpanel_full(labelcolor == 0? _("Reset color label"): _("Set color label"), msg, GTK_STOCK_NO, GTK_STOCK_YES, NULL, ALERTFOCUS_FIRST, TRUE, NULL, ALERT_QUESTION);