]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* util/grub-macho2img.c: Add comment concerning gettext.
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Fri, 11 Nov 2011 19:52:41 +0000 (20:52 +0100)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Fri, 11 Nov 2011 19:52:41 +0000 (20:52 +0100)
* grub-core/lib/legacy_parse.c: Likewise.

ChangeLog
grub-core/lib/legacy_parse.c
util/grub-macho2img.c

index bdab315915a9263a905c5fa8bcafbab7674123d9..aaec2066beb4bc59179cb3bd0c97954164df499c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
        * grub-core/kern/misc.c (grub_vprintf): Add missing va_end.
index 659fa7061a9ec7db0bb671ba7fb980e64114ede7..43fca51dcdf24ed6e7955b8a7d5ffd6041cb06a9 100644 (file)
@@ -58,6 +58,9 @@ struct legacy_command
   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[] =
   {
     {"blocklist", "blocklist '%s'\n", NULL, 0, 1, {TYPE_FILE}, 0, "FILE",
index bce0a06d10d1c388b37a1113193574969bbe0279..6dfb5fcbefa109a3ec89d834fee7170a0160048c 100644 (file)
@@ -25,6 +25,8 @@
 #include <string.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. */
 /* However as build system ensures correct usage of this tool this
    shouldn't be a problem. */