From 46746a17a630396aff1aeee108c657dc45234ca2 Mon Sep 17 00:00:00 2001 From: Paul Date: Fri, 22 Dec 2023 19:32:54 +0100 Subject: [PATCH] fix menu item text --- src/messageview.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/messageview.c b/src/messageview.c index c4e3766e8..0d4c460ef 100644 --- a/src/messageview.c +++ b/src/messageview.c @@ -248,7 +248,7 @@ static GtkActionEntry msgview_entries[] = {"View/Goto/PrevLabeled", NULL, N_("Previous _labeled message"), NULL, NULL, G_CALLBACK(prev_labeled_cb) }, {"View/Goto/NextLabeled", NULL, N_("Next la_beled message"), NULL, NULL, G_CALLBACK(next_labeled_cb) }, /* {"View/Goto/---", NULL, "---", NULL, NULL, NULL }, */ - {"View/Goto/PrevHistory", NULL, N_("Previous opened message"), "Left", NULL, G_CALLBACK(prev_history_cb) }, + {"View/Goto/PrevHistory", NULL, N_("Previously opened message"), "Left", NULL, G_CALLBACK(prev_history_cb) }, {"View/Goto/NextHistory", NULL, N_("Next opened message"), "Right", NULL, G_CALLBACK(next_history_cb) }, /* {"View/Goto/---", NULL, "---", NULL, NULL, NULL }, */ {"View/Goto/ParentMessage", NULL, N_("Parent message"), "Up", NULL, G_CALLBACK(parent_cb) }, -- 2.11.4.GIT