From: Max Kellermann Date: Sat, 11 Mar 2017 16:48:57 +0000 (+0100) Subject: command: fix swapped help texts X-Git-Tag: v0.26~70 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d961e8fa6d3280d4412d910b849aef7f5284a7e4;p=ncmpc.git command: fix swapped help texts --- diff --git a/src/command.c b/src/command.c index 857bf48..1e1c11f 100644 --- a/src/command.c +++ b/src/command.c @@ -89,9 +89,9 @@ static command_definition_t cmds[] = { { { 'v', 0, 0 }, 0, CMD_LIST_RANGE_SELECT, "range-select", N_("Range selection") }, { { C('N'), 0, 0 }, 0, CMD_LIST_SCROLL_DOWN_LINE, "scroll-down-line", - N_("Scroll up one line") }, - { { C('B'), 0, 0 }, 0, CMD_LIST_SCROLL_UP_LINE, "scroll-up-line", N_("Scroll down one line") }, + { { C('B'), 0, 0 }, 0, CMD_LIST_SCROLL_UP_LINE, "scroll-up-line", + N_("Scroll up one line") }, { { 'N', 0, 0 }, 0, CMD_LIST_SCROLL_DOWN_HALF, "scroll-down-half", N_("Scroll up half a screen") }, { { 'B', 0, 0 }, 0, CMD_LIST_SCROLL_UP_HALF, "scroll-up-half",