* util/grub-macho2img.c: Add comment concerning gettext.
* grub-core/lib/legacy_parse.c: Likewise.
This commit is contained in:
parent
c1860f878b
commit
5b289bc5f6
3 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2011-11-11 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* util/grub-macho2img.c: Add comment concerning gettext.
|
||||||
|
* grub-core/lib/legacy_parse.c: Likewise.
|
||||||
|
|
||||||
2011-11-11 Vladimir Serbinenko <phcoder@gmail.com>
|
2011-11-11 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* grub-core/kern/misc.c (grub_vprintf): Add missing va_end.
|
* grub-core/kern/misc.c (grub_vprintf): Add missing va_end.
|
||||||
|
|
|
@ -58,6 +58,9 @@ struct legacy_command
|
||||||
const char *longdesc;
|
const char *longdesc;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* Help texts are kept here mostly for reference. They are never shown. So
|
||||||
|
no need to gettextize.
|
||||||
|
*/
|
||||||
static struct legacy_command legacy_commands[] =
|
static struct legacy_command legacy_commands[] =
|
||||||
{
|
{
|
||||||
{"blocklist", "blocklist '%s'\n", NULL, 0, 1, {TYPE_FILE}, 0, "FILE",
|
{"blocklist", "blocklist '%s'\n", NULL, 0, 1, {TYPE_FILE}, 0, "FILE",
|
||||||
|
|
|
@ -25,6 +25,8 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
/* Please don't internationalise this file. It's pointless. */
|
||||||
|
|
||||||
/* XXX: this file assumes particular Mach-O layout and does no checks. */
|
/* XXX: this file assumes particular Mach-O layout and does no checks. */
|
||||||
/* However as build system ensures correct usage of this tool this
|
/* However as build system ensures correct usage of this tool this
|
||||||
shouldn't be a problem. */
|
shouldn't be a problem. */
|
||||||
|
|
Loading…
Reference in a new issue