f4c76c0
From 0784f9845eee9a4408334b160fe9447481ea1b55 Mon Sep 17 00:00:00 2001
f4c76c0
From: William Jon McCann <william.jon.mccann@gmail.com>
f4c76c0
Date: Fri, 7 Jun 2013 11:09:04 -0400
f4c76c0
Subject: [PATCH 19/74] Message string cleanups
f4c76c0
f4c76c0
Make use of terminology consistent. Remove jargon.
f4c76c0
---
f4c76c0
 grub-core/normal/menu_text.c | 21 +++++++++------------
f4c76c0
 1 file changed, 9 insertions(+), 12 deletions(-)
f4c76c0
f4c76c0
diff --git a/grub-core/normal/menu_text.c b/grub-core/normal/menu_text.c
f4c76c0
index a3d1f23..64a8386 100644
f4c76c0
--- a/grub-core/normal/menu_text.c
f4c76c0
+++ b/grub-core/normal/menu_text.c
f4c76c0
@@ -157,9 +157,8 @@ print_message (int nested, int edit, struct grub_term_output *term, int dry_run)
f4c76c0
 
f4c76c0
   if (edit)
f4c76c0
     {
f4c76c0
-      ret += grub_print_message_indented_real (_("Minimum Emacs-like screen editing is \
f4c76c0
-supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a \
f4c76c0
-command-line or ESC to discard edits and return to the GRUB menu."),
f4c76c0
+      ret += grub_print_message_indented_real (_("Press Ctrl-x or F10 to start, Ctrl-c or F2 for a \
f4c76c0
+command prompt or Escape to discard edits and return to the menu. Pressing Tab lists possible completions."),
f4c76c0
 					       STANDARD_MARGIN, STANDARD_MARGIN,
f4c76c0
 					       term, dry_run);
f4c76c0
     }
f4c76c0
@@ -167,8 +166,8 @@ command-line or ESC to discard edits and return to the GRUB menu."),
f4c76c0
     {
f4c76c0
       char *msg_translated;
f4c76c0
 
f4c76c0
-      msg_translated = grub_xasprintf (_("Use the %C and %C keys to select which "
f4c76c0
-					 "entry is highlighted."),
f4c76c0
+      msg_translated = grub_xasprintf (_("Use the %C and %C keys to change the "
f4c76c0
+					 "selection."),
f4c76c0
 				       GRUB_UNICODE_UPARROW,
f4c76c0
 				       GRUB_UNICODE_DOWNARROW);
f4c76c0
       if (!msg_translated)
f4c76c0
@@ -181,17 +180,15 @@ command-line or ESC to discard edits and return to the GRUB menu."),
f4c76c0
       if (nested)
f4c76c0
 	{
f4c76c0
 	  ret += grub_print_message_indented_real
f4c76c0
-	    (_("Press enter to boot the selected OS, "
f4c76c0
-	       "`e' to edit the commands before booting "
f4c76c0
-	       "or `c' for a command-line. ESC to return previous menu."),
f4c76c0
+	    (_("Press 'e' to edit the selected item, "
f4c76c0
+	       "or 'c' for a command prompt. Press Escape to return to the previous menu."),
f4c76c0
 	     STANDARD_MARGIN, STANDARD_MARGIN, term, dry_run);
f4c76c0
 	}
f4c76c0
       else
f4c76c0
 	{
f4c76c0
 	  ret += grub_print_message_indented_real
f4c76c0
-	    (_("Press enter to boot the selected OS, "
f4c76c0
-	       "`e' to edit the commands before booting "
f4c76c0
-	       "or `c' for a command-line."),
f4c76c0
+	    (_("Press 'e' to edit the selected item, "
f4c76c0
+	       "or 'c' for a command prompt."),
f4c76c0
 	     STANDARD_MARGIN, STANDARD_MARGIN, term, dry_run);
f4c76c0
 	}	
f4c76c0
     }
f4c76c0
@@ -443,7 +440,7 @@ menu_text_print_timeout (int timeout, void *dataptr)
f4c76c0
       || data->timeout_msg == TIMEOUT_TERSE_NO_MARGIN)
f4c76c0
     msg_translated = grub_xasprintf (_("%ds"), timeout);
f4c76c0
   else
f4c76c0
-    msg_translated = grub_xasprintf (_("The highlighted entry will be executed automatically in %ds."), timeout);
f4c76c0
+    msg_translated = grub_xasprintf (_("The selected entry will be started automatically in %ds."), timeout);
f4c76c0
   if (!msg_translated)
f4c76c0
     {
f4c76c0
       grub_print_error ();
f4c76c0
-- 
f4c76c0
2.4.3
f4c76c0