Fix glitch with escape message
This commit is contained in:
parent
6066889c88
commit
d75d75d93b
1 changed files with 15 additions and 8 deletions
|
@ -196,14 +196,21 @@ entry is highlighted.\n");
|
||||||
|
|
||||||
grub_free (msg_translated);
|
grub_free (msg_translated);
|
||||||
|
|
||||||
grub_print_message_indented (_("Press enter to boot the selected OS, \
|
|
||||||
\'e\' to edit the commands before booting or \'c\' for a command-line.\n"),
|
|
||||||
STANDARD_MARGIN, STANDARD_MARGIN, term);
|
|
||||||
|
|
||||||
if (nested)
|
if (nested)
|
||||||
{
|
{
|
||||||
grub_puts_terminal ("\n ", term);
|
grub_print_message_indented
|
||||||
grub_puts_terminal (_("ESC to return previous menu."), term);
|
(_("Press enter to boot the selected OS, "
|
||||||
|
"\'e\' to edit the commands before booting "
|
||||||
|
"or \'c\' for a command-line. ESC to return previous menu.\n"),
|
||||||
|
STANDARD_MARGIN, STANDARD_MARGIN, term);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
grub_print_message_indented
|
||||||
|
(_("Press enter to boot the selected OS, "
|
||||||
|
"\'e\' to edit the commands before booting "
|
||||||
|
"or \'c\' for a command-line.\n"),
|
||||||
|
STANDARD_MARGIN, STANDARD_MARGIN, term);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue