7e98da058f
This change reorganizes and cleanups our patches to reduce the patch number from 314 patches to 187. That's achieved by dropping patches that are later reverted and squashing fixes for earlier patches that introduced features. There are no code changes and the diff with upstream is the same before and after the cleanup. Having fewer patches makes easier to manage the patchset and also will ease to rebase them on top of the latest grub-2.04 release. Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
69 lines
3.0 KiB
Diff
69 lines
3.0 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: William Jon McCann <william.jon.mccann@gmail.com>
|
|
Date: Fri, 7 Jun 2013 11:09:04 -0400
|
|
Subject: [PATCH] Message string cleanups
|
|
|
|
Make use of terminology consistent. Remove jargon.
|
|
---
|
|
grub-core/normal/menu_text.c | 21 +++++++++------------
|
|
1 file changed, 9 insertions(+), 12 deletions(-)
|
|
|
|
diff --git a/grub-core/normal/menu_text.c b/grub-core/normal/menu_text.c
|
|
index a3d1f23f68f..64a83862f66 100644
|
|
--- a/grub-core/normal/menu_text.c
|
|
+++ b/grub-core/normal/menu_text.c
|
|
@@ -157,9 +157,8 @@ print_message (int nested, int edit, struct grub_term_output *term, int dry_run)
|
|
|
|
if (edit)
|
|
{
|
|
- ret += grub_print_message_indented_real (_("Minimum Emacs-like screen editing is \
|
|
-supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a \
|
|
-command-line or ESC to discard edits and return to the GRUB menu."),
|
|
+ ret += grub_print_message_indented_real (_("Press Ctrl-x or F10 to start, Ctrl-c or F2 for a \
|
|
+command prompt or Escape to discard edits and return to the menu. Pressing Tab lists possible completions."),
|
|
STANDARD_MARGIN, STANDARD_MARGIN,
|
|
term, dry_run);
|
|
}
|
|
@@ -167,8 +166,8 @@ command-line or ESC to discard edits and return to the GRUB menu."),
|
|
{
|
|
char *msg_translated;
|
|
|
|
- msg_translated = grub_xasprintf (_("Use the %C and %C keys to select which "
|
|
- "entry is highlighted."),
|
|
+ msg_translated = grub_xasprintf (_("Use the %C and %C keys to change the "
|
|
+ "selection."),
|
|
GRUB_UNICODE_UPARROW,
|
|
GRUB_UNICODE_DOWNARROW);
|
|
if (!msg_translated)
|
|
@@ -181,17 +180,15 @@ command-line or ESC to discard edits and return to the GRUB menu."),
|
|
if (nested)
|
|
{
|
|
ret += grub_print_message_indented_real
|
|
- (_("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."),
|
|
+ (_("Press 'e' to edit the selected item, "
|
|
+ "or 'c' for a command prompt. Press Escape to return to the previous menu."),
|
|
STANDARD_MARGIN, STANDARD_MARGIN, term, dry_run);
|
|
}
|
|
else
|
|
{
|
|
ret += grub_print_message_indented_real
|
|
- (_("Press enter to boot the selected OS, "
|
|
- "`e' to edit the commands before booting "
|
|
- "or `c' for a command-line."),
|
|
+ (_("Press 'e' to edit the selected item, "
|
|
+ "or 'c' for a command prompt."),
|
|
STANDARD_MARGIN, STANDARD_MARGIN, term, dry_run);
|
|
}
|
|
}
|
|
@@ -443,7 +440,7 @@ menu_text_print_timeout (int timeout, void *dataptr)
|
|
|| data->timeout_msg == TIMEOUT_TERSE_NO_MARGIN)
|
|
msg_translated = grub_xasprintf (_("%ds"), timeout);
|
|
else
|
|
- msg_translated = grub_xasprintf (_("The highlighted entry will be executed automatically in %ds."), timeout);
|
|
+ msg_translated = grub_xasprintf (_("The selected entry will be started automatically in %ds."), timeout);
|
|
if (!msg_translated)
|
|
{
|
|
grub_print_error ();
|