From 065adc346c01bce1ec48bf40b5944bb57b60eef9 Mon Sep 17 00:00:00 2001 From: Vladimir Serbinenko Date: Sat, 21 Dec 2013 03:21:45 +0100 Subject: [PATCH] Clarify several translatable messages. --- ChangeLog | 4 ++++ grub-core/commands/boottime.c | 2 +- grub-core/commands/i386/coreboot/cb_timestamps.c | 2 +- grub-core/term/serial.c | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6b59c3c7d..ce39737ef 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-12-21 Vladimir Serbinenko + + Clarify several translatable messages. + 2013-12-21 David Prévot Correct some translatable strings. diff --git a/grub-core/commands/boottime.c b/grub-core/commands/boottime.c index 7370d271c..dcc078c2a 100644 --- a/grub-core/commands/boottime.c +++ b/grub-core/commands/boottime.c @@ -56,7 +56,7 @@ GRUB_MOD_INIT(boottime) { cmd_boottime = grub_register_command ("boottime", grub_cmd_boottime, - 0, N_("Get boot time statistics.")); + 0, N_("Show boot time statistics.")); } GRUB_MOD_FINI(boottime) diff --git a/grub-core/commands/i386/coreboot/cb_timestamps.c b/grub-core/commands/i386/coreboot/cb_timestamps.c index 5299ad4d8..07fbb0283 100644 --- a/grub-core/commands/i386/coreboot/cb_timestamps.c +++ b/grub-core/commands/i386/coreboot/cb_timestamps.c @@ -109,7 +109,7 @@ GRUB_MOD_INIT(cbtime) { cmd_boottime = grub_register_command ("coreboot_boottime", grub_cmd_coreboot_boottime, - 0, N_("Get coreboot boot time statistics.")); + 0, N_("Show coreboot boot time statistics.")); } GRUB_MOD_FINI(cbtime) diff --git a/grub-core/term/serial.c b/grub-core/term/serial.c index a329c0d36..b581a763e 100644 --- a/grub-core/term/serial.c +++ b/grub-core/term/serial.c @@ -60,7 +60,7 @@ static const struct grub_arg_option options[] = {"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}, - {"base-clock", 'b', 0, N_("Set the base clock."), 0, ARG_TYPE_STRING}, + {"base-clock", 'b', 0, N_("Set the base frequency."), 0, ARG_TYPE_STRING}, {"rtscts", 'f', 0, N_("Enable/disable RTS/CTS."), "on|off", ARG_TYPE_STRING}, {0, 0, 0, 0, 0, 0} };