* util/grub-editenv.c (options): Gettextize command summaries.

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2012-03-10 13:12:45 +01:00
parent c9eb96b508
commit 35d7062040
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
* util/grub-editenv.c (options): Gettextize command summaries.
2012-03-10 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/loader/efi/chainloader.c (grub_cmd_chainloader): Use

View File

@ -41,9 +41,11 @@ static struct argp_option options[] = {
N_("Create a blank environment block file."), 0},
{"list", 0, 0, OPTION_DOC|OPTION_NO_USAGE,
N_("List the current variables."), 0},
{"set [name=value ...]", 0, 0, OPTION_DOC|OPTION_NO_USAGE,
/* TRANSLATORS: "set" is a keyword. It's a summary of "set" subcommand. */
{N_("set [NAME=VALUE ...]"), 0, 0, OPTION_DOC|OPTION_NO_USAGE,
N_("Set variables."), 0},
{"unset [name ....]", 0, 0, OPTION_DOC|OPTION_NO_USAGE,
/* TRANSLATORS: "unset" is a keyword. It's a summary of "unset" subcommand. */
{N_("unset [NAME ...]"), 0, 0, OPTION_DOC|OPTION_NO_USAGE,
N_("Delete variables."), 0},
{0, 0, 0, OPTION_DOC, N_("Options:"), -1},