]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2009-12-20 Robert Millan <rmh.grub@aybabtu.com>
authorRobert Millan <rmh@aybabtu.com>
Wed, 20 Jan 2010 01:29:06 +0000 (01:29 +0000)
committerRobert Millan <rmh@aybabtu.com>
Wed, 20 Jan 2010 01:29:06 +0000 (01:29 +0000)
* loader/mips/linux.c (grub_cmd_initrd)
(GRUB_MOD_INIT(linux)): Adjust and gettextize a few strings.

ChangeLog.mips
loader/mips/linux.c

index 12797095d564dca5fb9f9315c426892bb417e6d3..274bf7dc4bf12fdc201fae79db3289218572fbe6 100644 (file)
@@ -1,3 +1,8 @@
+2009-12-20  Robert Millan  <rmh.grub@aybabtu.com>
+
+       * loader/mips/linux.c (grub_cmd_initrd)
+       (GRUB_MOD_INIT(linux)): Adjust and gettextize a few strings.
+
 2009-12-20  Robert Millan  <rmh.grub@aybabtu.com>
 
        * kern/mips/yeeloong/init.c (grub_video_sm712_init)
index 8d7cda0ed65390ca8509d3e24d10ba93e85005f3..b52f098acf999b786888ce0db89340da7cd6f2da 100644 (file)
@@ -1,7 +1,7 @@
 /* linux.c - boot Linux */
 /*
  *  GRUB  --  GRand Unified Bootloader
- *  Copyright (C) 2003, 2004, 2005, 2007, 2009  Free Software Foundation, Inc.
+ *  Copyright (C) 2003,2004,2005,2007,2009,2010  Free Software Foundation, Inc.
  *
  *  GRUB is free software: you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -318,10 +318,10 @@ grub_cmd_initrd (grub_command_t cmd __attribute__ ((unused)),
   grub_size_t overhead;
 
   if (argc == 0)
-    return grub_error (GRUB_ERR_BAD_ARGUMENT, "no initrd specified");
+    return grub_error (GRUB_ERR_BAD_ARGUMENT, "No initrd specified");
 
   if (!loaded)
-    return grub_error (GRUB_ERR_BAD_ARGUMENT, "You need to load the kernel first.");
+    return grub_error (GRUB_ERR_BAD_ARGUMENT, "You need to load Linux first.");
 
   if (initrd_loaded)
     return grub_error (GRUB_ERR_BAD_ARGUMENT, "Only one initrd can be loaded.");
@@ -376,9 +376,9 @@ static grub_command_t cmd_linux, cmd_initrd;
 GRUB_MOD_INIT(linux)
 {
   cmd_linux = grub_register_command ("linux", grub_cmd_linux,
-                                    0, "load a linux kernel");
+                                    0, N_("Load Linux."));
   cmd_initrd = grub_register_command ("initrd", grub_cmd_initrd,
-                                     0, "load an initrd");
+                                     0, N_("Load initrd."));
   my_mod = mod;
 }