talons

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

commit c4ebc9dacb8242351b3cc485aadfe6bc05f89cd8
parent 44d6f5762a6821e4e37656acbd3a4cc123f22218
Author: Andrej Kacian <ticho@claws-mail.org>
Date:   Fri,  6 May 2016 19:43:16 +0200

Improve plural handling for "Delete message" dialog.

Diffstat:
Msrc/summaryview.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/summaryview.c b/src/summaryview.c @@ -4403,7 +4403,7 @@ void summary_delete(SummaryView *summaryview) "Do you really want to delete the selected message?", "Do you really want to delete the %d selected messages?", num), num); - aval = alertpanel(_("Delete message(s)"), + aval = alertpanel(ngettext("Delete message", "Delete messages", num), buf, GTK_STOCK_CANCEL, "+"GTK_STOCK_DELETE, NULL); g_free(buf);