summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7e6cb67)
raw | patch | inline | side by side (parent: 7e6cb67)
author | Max Kellermann <max@duempel.org> | |
Thu, 15 Oct 2009 13:38:22 +0000 (15:38 +0200) | ||
committer | Max Kellermann <max@duempel.org> | |
Thu, 15 Oct 2009 13:38:22 +0000 (15:38 +0200) |
The _() call was missing.
src/screen_help.c | patch | blob | history |
diff --git a/src/screen_help.c b/src/screen_help.c
index a501aad045281cf818ab23c6e516c704879354aa..c24d04db398493625d2cb63751e67b32003aee21 100644 (file)
--- a/src/screen_help.c
+++ b/src/screen_help.c
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 {