* commands/acpi.c (GRUB_MOD_INIT): Capitalise some words from help.
* commands/efi/loadbios.c (GRUB_MOD_INIT): Capitalise BIOS.
* commands/i386/pc/drivemap.c (GRUB_MOD_INIT): Remove space. Add
full stop.
* commands/loadenv.c (GRUB_MOD_INIT): Remove command name from
summary. Gettextizze the strings.
* commands/probe.c (grub_cmd_probe): Capitalise UUID and FS.
* commands/xnu_uuid.c (GRUB_MOD_INIT): Capitalise XNU.
* disk/loopback.c (grub_arg_options): Capitalise first letter. Add
full stop.
(GRUB_MOD_INIT): Remove command name from summary.
* hello/hello.c (GRUD_MOT_INIT): Add missing full stop. Improve the
summary.
* loader/i386/bsd.c (grub_arg_option): Capitalise CDROM.
* term/i386/pc/serial.c (options): Add full stops.
(GRUB_MOD_INIT): Remove command name from the summary.
+2010-01-03 Carles Pina i Estany <carles@pina.cat>
+
+ * commands/acpi.c (GRUB_MOD_INIT): Capitalise some words from help.
+ * commands/efi/loadbios.c (GRUB_MOD_INIT): Capitalise BIOS.
+ * commands/i386/pc/drivemap.c (GRUB_MOD_INIT): Remove space. Add
+ full stop.
+ * commands/loadenv.c (GRUB_MOD_INIT): Remove command name from
+ summary. Gettextizze the strings.
+ * commands/probe.c (grub_cmd_probe): Capitalise UUID and FS.
+ * commands/xnu_uuid.c (GRUB_MOD_INIT): Capitalise XNU.
+ * disk/loopback.c (grub_arg_options): Capitalise first letter. Add
+ full stop.
+ (GRUB_MOD_INIT): Remove command name from summary.
+ * hello/hello.c (GRUD_MOT_INIT): Add missing full stop. Improve the
+ summary.
+ * loader/i386/bsd.c (grub_arg_option): Capitalise CDROM.
+ * term/i386/pc/serial.c (options): Add full stops.
+ (GRUB_MOD_INIT): Remove command name from the summary.
+
2010-01-03 Carles Pina i Estany <carles@pina.cat>
* commands/acpi.c: Gettextizze help strings and/or options. Include
{
cmd = grub_register_extcmd ("acpi", grub_cmd_acpi,
GRUB_COMMAND_FLAG_BOTH,
- N_("[-1|-2] [--exclude=table1,table2|"
- "--load-only=table1,table2] filename1 "
- " [filename2] [...]"),
- N_("Load host acpi tables and tables "
+ N_("[-1|-2] [--exclude=TABLE1,TABLE2|"
+ "--load-only=table1,table2] FILE1"
+ " [FILE2] [...]"),
+ N_("Load host ACPI tables and tables "
"specified by arguments."),
options);
}
GRUB_MOD_INIT(loadbios)
{
cmd_fakebios = grub_register_command ("fakebios", grub_cmd_fakebios,
- 0, N_("Fake bios."));
+ 0, N_("Fake BIOS."));
cmd_loadbios = grub_register_command ("loadbios", grub_cmd_loadbios,
"BIOS_DUMP [INT10_DUMP]",
- N_("Load bios dump."));
+ N_("Load BIOS dump."));
}
GRUB_MOD_FINI(loadbios)
cmd = grub_register_extcmd ("drivemap", grub_cmd_drivemap,
GRUB_COMMAND_FLAG_BOTH,
"drivemap"
- N_(" -l | -r | [-s] grubdev osdisk"),
+ N_("-l | -r | [-s] grubdev osdisk."),
N_("Manage the BIOS drive mappings."),
options);
drivemap_hook =
cmd_load =
grub_register_extcmd ("load_env", grub_cmd_load_env,
GRUB_COMMAND_FLAG_BOTH,
- "load_env [-f FILE]",
- "Load variables from environment block file.",
+ N_("[-f FILE]"),
+ N_("Load variables from environment block file."),
options);
cmd_list =
grub_register_extcmd ("list_env", grub_cmd_list_env,
GRUB_COMMAND_FLAG_BOTH,
- "list_env [-f FILE]",
- "List variables from environment block file.",
+ N_("[-f FILE]"),
+ N_("List variables from environment block file."),
options);
cmd_save =
grub_register_extcmd ("save_env", grub_cmd_save_env,
GRUB_COMMAND_FLAG_BOTH,
- "[-f FILE] variable_name [...]",
- "Save variables to environment block file.",
+ N_("[-f FILE] variable_name [...]"),
+ N_("Save variables to environment block file."),
options);
}
cmd = grub_register_command ("xnu_uuid", grub_cmd_xnu_uuid,
N_("GRUBUUID [VARNAME]"),
N_("Transform 64-bit UUID to format "
- "suitable for xnu."));
+ "suitable for XNU."));
}
GRUB_MOD_FINI (xnu_uuid)
static const struct grub_arg_option options[] =
{
- {"delete", 'd', 0, N_("delete the loopback device entry"), 0, 0},
- {"partitions", 'p', 0, N_("simulate a hard drive with partitions"), 0, 0},
+ {"delete", 'd', 0, N_("Delete the loopback device entry."), 0, 0},
+ {"partitions", 'p', 0, N_("Simulate a hard drive with partitions."), 0, 0},
{0, 0, 0, 0, 0, 0}
};
{
cmd = grub_register_extcmd ("loopback", grub_cmd_loopback,
GRUB_COMMAND_FLAG_BOTH,
- N_("loopback [-d|-p] DEVICENAME FILE"),
+ N_("[-d|-p] DEVICENAME FILE."),
N_("Make a device of a file."), options);
grub_disk_dev_register (&grub_loopback_dev);
}
GRUB_MOD_INIT(hello)
{
cmd = grub_register_extcmd ("hello", grub_cmd_hello, GRUB_COMMAND_FLAG_BOTH,
- "hello", N_("Say hello"), 0);
+ 0, N_("Say \"Hello World\"."), 0);
}
GRUB_MOD_FINI(hello)
{"dual", 'D', 0, N_("Display output on all consoles."), 0, 0},
{"serial", 'h', 0, N_("Use serial console."), 0, 0},
{"askname", 'a', 0, N_("Ask for file name to reboot from."), 0, 0},
- {"cdrom", 'C', 0, N_("Use cdrom as root."), 0, 0},
+ {"cdrom", 'C', 0, N_("Use CDROM as root."), 0, 0},
{"config", 'c', 0, N_("Invoke user configuration routing."), 0, 0},
{"kdb", 'd', 0, N_("Enter in KDB on boot."), 0, 0},
{"gdb", 'g', 0, N_("Use GDB remote debugger instead of DDB."), 0, 0},
/* Argument options. */
static const struct grub_arg_option options[] =
{
- {"unit", 'u', 0, N_("Set the serial unit"), 0, ARG_TYPE_INT},
- {"port", 'p', 0, N_("Set the serial port address"), 0, ARG_TYPE_STRING},
- {"speed", 's', 0, N_("Set the serial port speed"), 0, ARG_TYPE_INT},
- {"word", 'w', 0, N_("Set the serial port word length"), 0, ARG_TYPE_INT},
- {"parity", 'r', 0, N_("Set the serial port parity"), 0, ARG_TYPE_STRING},
- {"stop", 't', 0, N_("Set the serial port stop bits"), 0, ARG_TYPE_INT},
+ {"unit", 'u', 0, N_("Set the serial unit."), 0, ARG_TYPE_INT},
+ {"port", 'p', 0, N_("Set the serial port address."), 0, ARG_TYPE_STRING},
+ {"speed", 's', 0, N_("Set the serial port speed."), 0, ARG_TYPE_INT},
+ {"word", 'w', 0, N_("Set the serial port word length."), 0, ARG_TYPE_INT},
+ {"parity", 'r', 0, N_("Set the serial port parity."), 0, ARG_TYPE_STRING},
+ {"stop", 't', 0, N_("Set the serial port stop bits."), 0, ARG_TYPE_INT},
{0, 0, 0, 0, 0, 0}
};
{
cmd = grub_register_extcmd ("serial", grub_cmd_serial,
GRUB_COMMAND_FLAG_BOTH,
- N_("serial [OPTIONS...]"),
+ N_("[OPTIONS...]"),
N_("Configure serial port."), options);
/* Set default settings. */