aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-04-14 23:33:17 -0700
committerJunio C Hamano <gitster@pobox.com>2013-04-14 23:33:17 -0700
commit85e7e81ccfcec98972e341ab81b0109084b84906 (patch)
tree34916c20f639a36828c57f750163fe5f9e955f61
parent924f6c3d3931ea782b0f9abee7b8012fe8e5e0fb (diff)
parent3561e605bc571cf28da3f90df259e9304815c5eb (diff)
downloadgit-85e7e81ccfcec98972e341ab81b0109084b84906.tar.gz
git-85e7e81ccfcec98972e341ab81b0109084b84906.tar.xz
Merge branch 'po/help-guides'
Finishing touches. * po/help-guides: help: mark common_guides[] as translatable
-rw-r--r--builtin/help.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/builtin/help.c b/builtin/help.c
index 034c36c25..062957f62 100644
--- a/builtin/help.c
+++ b/builtin/help.c
@@ -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)