All of lore.kernel.org
 help / color / mirror / Atom feed
* user messages
@ 2009-12-26 10:20 Carles Pina i Estany
  2009-12-26 13:41 ` Robert Millan
  0 siblings, 1 reply; 3+ messages in thread
From: Carles Pina i Estany @ 2009-12-26 10:20 UTC (permalink / raw)
  To: grub-devel

[-- 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,


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-12-26 17:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-26 10:20 user messages Carles Pina i Estany
2009-12-26 13:41 ` Robert Millan
2009-12-26 17:44   ` Carles Pina i Estany

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.