From: Max Kellermann Date: Thu, 15 Oct 2009 13:38:22 +0000 (+0200) Subject: screen_help: translate section names X-Git-Tag: release-0.16~102 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b14c2234a61e38fd55d5dbb685f49323a5f02c9f;p=ncmpc.git screen_help: translate section names The _() call was missing. --- 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 {