All of lore.kernel.org
 help / color / mirror / Atom feed
From: Carles Pina i Estany <carles@pina.cat>
To: grub-devel@gnu.org
Subject: user messages
Date: Sat, 26 Dec 2009 11:20:27 +0100	[thread overview]
Message-ID: <20091226102027.GA12549@pina.cat> (raw)

[-- Attachment #1: Type: text/plain, Size: 275 bytes --]


Hello,

Find an attached patch.

Linux should be always capitalized.

All Linux loaders should have the same message: consistency, better LZMA
and less work for translators.

If you prefer another string tell me and I'll change.

-- 
Carles Pina i Estany
	http://pinux.info

[-- Attachment #2: messages.patch --]
[-- Type: text/x-diff, Size: 4548 bytes --]

=== modified file 'ChangeLog'
--- ChangeLog	2009-12-26 10:01:33 +0000
+++ ChangeLog	2009-12-26 10:16:01 +0000
@@ -1,5 +1,15 @@
 2009-12-27  Carles Pina i Estany  <carles@pina.cat>
 
+	* loader/i386/efi/linux.c (GRUB_MOD_INIT): Improve command summary.
+	* loader/i386/ieee1275/linux.c (GRUB_MOD_INIT): Likewise.
+	* loader/i386/linux.c (GRUB_MOD_INIT): Likewise.
+	* loader/i386/pc/linux.c (GRUB_MOD_INIT): Likewise.
+	* loader/powerpc/ieee1275/linux.c (GRUB_MOD_INIT): Likewise.
+	* loader/sparc64/ieee1275/linux.c (GRUB_MOD_INIT): Likewise.
+	* loader/xnu.c (GRUB_MOD_INIT): Likewise.
+
+2009-12-27  Carles Pina i Estany  <carles@pina.cat>
+
 	* efiemu/main.c (GRUB_MOD_INIT): Fix capitalizations and/or full
 	stops.
 	* kern/corecmd.c (grub_register_core_commands): Likewise.

=== modified file 'loader/i386/efi/linux.c'
--- loader/i386/efi/linux.c	2009-12-26 10:01:33 +0000
+++ loader/i386/efi/linux.c	2009-12-26 10:11:47 +0000
@@ -989,9 +989,9 @@ static grub_command_t cmd_linux, cmd_ini
 GRUB_MOD_INIT(linux)
 {
   cmd_linux = grub_register_command ("linux", grub_cmd_linux,
-				     0, "Load linux.");
+				     0, "Load a Linux kernel.");
   cmd_initrd = grub_register_command ("initrd", grub_cmd_initrd,
-				      0, "Load initrd.");
+				      0, "Load an initrd.");
   my_mod = mod;
 }
 

=== modified file 'loader/i386/ieee1275/linux.c'
--- loader/i386/ieee1275/linux.c	2009-12-26 10:01:33 +0000
+++ loader/i386/ieee1275/linux.c	2009-12-26 10:12:05 +0000
@@ -276,9 +276,9 @@ static grub_command_t cmd_linux, cmd_ini
 GRUB_MOD_INIT(linux)
 {
   cmd_linux = grub_register_command ("linux", grub_cmd_linux,
-				     0, "Load linux.");
+				     0, "Load a Linux kernel.");
   cmd_initrd = grub_register_command ("initrd", grub_cmd_initrd,
-				      0, "Load initrd.");
+				      0, "Load an initrd.");
   my_mod = mod;
 }
 

=== modified file 'loader/i386/linux.c'
--- loader/i386/linux.c	2009-12-26 10:01:33 +0000
+++ loader/i386/linux.c	2009-12-26 10:10:15 +0000
@@ -982,9 +982,9 @@ static grub_command_t cmd_linux, cmd_ini
 GRUB_MOD_INIT(linux)
 {
   cmd_linux = grub_register_command ("linux", grub_cmd_linux,
-				     0, "Load linux.");
+				     0, "Load a Linux kernel.");
   cmd_initrd = grub_register_command ("initrd", grub_cmd_initrd,
-				      0, "Load initrd.");
+				      0, "Load an initrd.");
   my_mod = mod;
 }
 

=== modified file 'loader/i386/pc/linux.c'
--- loader/i386/pc/linux.c	2009-12-26 10:01:33 +0000
+++ loader/i386/pc/linux.c	2009-12-26 10:12:34 +0000
@@ -383,10 +383,10 @@ GRUB_MOD_INIT(linux16)
 {
   cmd_linux =
     grub_register_command ("linux16", grub_cmd_linux,
-			   0, "Load linux.");
+			   0, "Load a Linux kernel.");
   cmd_initrd =
     grub_register_command ("initrd16", grub_cmd_initrd,
-			   0, "Load initrd.");
+			   0, "Load an initrd.");
   my_mod = mod;
 }
 

=== modified file 'loader/powerpc/ieee1275/linux.c'
--- loader/powerpc/ieee1275/linux.c	2009-12-26 10:01:33 +0000
+++ loader/powerpc/ieee1275/linux.c	2009-12-26 10:12:56 +0000
@@ -349,7 +349,7 @@ static grub_command_t cmd_linux, cmd_ini
 GRUB_MOD_INIT(linux)
 {
   cmd_linux = grub_register_command ("linux", grub_cmd_linux,
-				     0, "Load a linux kernel.");
+				     0, "Load a Linux kernel.");
   cmd_initrd = grub_register_command ("initrd", grub_cmd_initrd,
 				      0, "Load an initrd.");
   my_mod = mod;

=== modified file 'loader/sparc64/ieee1275/linux.c'
--- loader/sparc64/ieee1275/linux.c	2009-12-26 10:01:33 +0000
+++ loader/sparc64/ieee1275/linux.c	2009-12-26 10:13:17 +0000
@@ -516,7 +516,7 @@ GRUB_MOD_INIT(linux)
   fetch_translations ();
 
   cmd_linux = grub_register_command ("linux", grub_cmd_linux,
-				     0, "Load a linux kernel.");
+				     0, "Load a Linux kernel.");
   cmd_initrd = grub_register_command ("initrd", grub_cmd_initrd,
 				      0, "Load an initrd".);
   my_mod = mod;

=== modified file 'loader/xnu.c'
--- loader/xnu.c	2009-12-26 10:01:33 +0000
+++ loader/xnu.c	2009-12-26 10:09:38 +0000
@@ -1404,9 +1404,9 @@ static grub_command_t cmd_kextdir, cmd_r
 GRUB_MOD_INIT(xnu)
 {
   cmd_kernel = grub_register_command ("xnu_kernel", grub_cmd_xnu_kernel, 0,
-				      "Load a xnu kernel.");
+				      "Load a XNU kernel.");
   cmd_kernel64 = grub_register_command ("xnu_kernel64", grub_cmd_xnu_kernel64,
-					0, "Load a 64-bit xnu kernel.");
+					0, "Load a 64-bit XNU kernel.");
   cmd_mkext = grub_register_command ("xnu_mkext", grub_cmd_xnu_mkext, 0,
 				     "Load XNU extension package.");
   cmd_kext = grub_register_command ("xnu_kext", grub_cmd_xnu_kext, 0,


             reply	other threads:[~2009-12-26 10:20 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-12-26 10:20 Carles Pina i Estany [this message]
2009-12-26 13:41 ` user messages Robert Millan
2009-12-26 17:44   ` Carles Pina i Estany

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20091226102027.GA12549@pina.cat \
    --to=carles@pina.cat \
    --cc=grub-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.