help: mark common_guides[] as translatable
authorSimon Ruderich <simon@ruderich.org>
Fri, 12 Apr 2013 13:51:42 +0000 (15:51 +0200)
committerJunio C Hamano <gitster@pobox.com>
Fri, 12 Apr 2013 16:49:00 +0000 (09:49 -0700)
Signed-off-by: Simon Ruderich <simon@ruderich.org>
Acked-by: Philip Oakley <philipoakley@iee.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/help.c
index 034c36c254c3d4321ce6ef97adfe59dcae73bb2e..062957f629af09db81d78b9cb0be1ce60fd75ec4 100644 (file)
@@ -419,13 +419,13 @@ static struct {
        const char *name;
        const char *help;
 } common_guides[] = {
-       { "attributes", "Defining attributes per path" },
-       { "glossary", "A Git glossary" },
-       { "ignore", "Specifies intentionally untracked files to ignore" },
-       { "modules", "Defining submodule properties" },
-       { "revisions", "Specifying revisions and ranges for Git" },
-       { "tutorial", "A tutorial introduction to Git (for version 1.5.1 or newer)" },
-       { "workflows", "An overview of recommended workflows with Git"},
+       { "attributes", N_("Defining attributes per path") },
+       { "glossary", N_("A Git glossary") },
+       { "ignore", N_("Specifies intentionally untracked files to ignore") },
+       { "modules", N_("Defining submodule properties") },
+       { "revisions", N_("Specifying revisions and ranges for Git") },
+       { "tutorial", N_("A tutorial introduction to Git (for version 1.5.1 or newer)") },
+       { "workflows", N_("An overview of recommended workflows with Git") },
 };
 
 static void list_common_guides_help(void)