* util/grub-editenv.c: Update strings to avoid warnings when generating
grub.pot file. * util/grub-setup.c: Likewise.
This commit is contained in:
parent
df3367cc4a
commit
934d7e44b2
3 changed files with 14 additions and 7 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2010-09-21 Yves Blusseau <blusseau@zetam.org>
|
||||||
|
|
||||||
|
* util/grub-editenv.c: Update strings to avoid warnings when generating
|
||||||
|
grub.pot file.
|
||||||
|
* util/grub-setup.c: Likewise.
|
||||||
|
|
||||||
|
|
||||||
2010-09-21 Vladimir Serbinenko <phcoder@gmail.com>
|
2010-09-21 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* configure.ac: Change version to 1.99~beta0.
|
* configure.ac: Change version to 1.99~beta0.
|
||||||
|
|
|
@ -99,10 +99,10 @@ help_filter (int key, const char *text, void *input __attribute__ ((unused)))
|
||||||
|
|
||||||
struct argp argp = {
|
struct argp argp = {
|
||||||
options, argp_parser, N_("FILENAME COMMAND"),
|
options, argp_parser, N_("FILENAME COMMAND"),
|
||||||
N_("\n\
|
"\n"N_("\
|
||||||
Tool to edit environment block.\n\
|
Tool to edit environment block.")
|
||||||
\v\
|
"\v"N_("\
|
||||||
If FILENAME is '-', the default value %s is used.\n"),
|
If FILENAME is '-', the default value %s is used."),
|
||||||
NULL, help_filter, NULL
|
NULL, help_filter, NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -791,11 +791,11 @@ argp_parser (int key, char *arg, struct argp_state *state)
|
||||||
|
|
||||||
static struct argp argp = {
|
static struct argp argp = {
|
||||||
options, argp_parser, N_("DEVICE"),
|
options, argp_parser, N_("DEVICE"),
|
||||||
N_("\n\
|
"\n"N_("\
|
||||||
Set up images to boot from DEVICE.\n\
|
Set up images to boot from DEVICE.\n\
|
||||||
\n\
|
\n\
|
||||||
You should not normally run this program directly. Use grub-install instead.\n\
|
You should not normally run this program directly. Use grub-install instead.")
|
||||||
\v\
|
"\v"N_("\
|
||||||
DEVICE must be an OS device (e.g. /dev/sda1)."),
|
DEVICE must be an OS device (e.g. /dev/sda1)."),
|
||||||
NULL, help_filter, NULL
|
NULL, help_filter, NULL
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue