From b14c2234a61e38fd55d5dbb685f49323a5f02c9f Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 15 Oct 2009 15:38:22 +0200 Subject: [PATCH] screen_help: translate section names The _() call was missing. --- src/screen_help.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/screen_help.c b/src/screen_help.c index a501aad..c24d04d 100644 --- a/src/screen_help.c +++ b/src/screen_help.c @@ -242,7 +242,7 @@ screen_help_paint_callback(WINDOW *w, unsigned i, if (row->command == CMD_NONE) { if (row->text != NULL) - mvwaddstr(w, y, 6, row->text); + mvwaddstr(w, y, 6, _(row->text)); else if (row->highlight == 2) mvwhline(w, y, 3, '-', width - 6); } else { -- 2.30.2