diff --git a/src/winio.c b/src/winio.c
index 7881ee9f064a6b7b13d2d5f6a81c0db0fdf6f47a..af8e818196ab602d7ef8423e3e6be95868d31f71 100644
--- a/src/winio.c
+++ b/src/winio.c
@@ -1143,7 +1143,9 @@ int parse_escape_sequence(WINDOW *win, int kbinput)
     /* If we got an unrecognized escape sequence, notify the user. */
     if (retval == ERR) {
 	if (win == edit) {
-	    statusbar(_("Unknown Command"));
+	    /* TRANSLATORS: This refers to a sequence of escape codes
+	     * (from the keyboard) that nano does not know about. */
+	    statusbar(_("Unknown sequence"));
 	    reset_cursor();
 	    curs_set(1);
 	    beep();