summaryrefslogtreecommitdiff
path: root/builtin/count-objects.c
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2012-08-20 12:32:06 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-08-20 19:23:16 (GMT)
commit7adaddc21aef1122af523df5e39ca48748935d8e (patch)
tree06fb4056c648b4d347de61385295f67fe0664a3c /builtin/count-objects.c
parent9c23f4c537fc81b03549a5e9b7a4c0332802ff8f (diff)
downloadgit-7adaddc21aef1122af523df5e39ca48748935d8e.zip
git-7adaddc21aef1122af523df5e39ca48748935d8e.tar.gz
git-7adaddc21aef1122af523df5e39ca48748935d8e.tar.bz2
i18n: count-objects: mark parseopt strings for translation
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/count-objects.c')
-rw-r--r--builtin/count-objects.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/count-objects.c b/builtin/count-objects.c
index c37cb98..9afaa88 100644
--- a/builtin/count-objects.c
+++ b/builtin/count-objects.c
@@ -66,7 +66,7 @@ static void count_objects(DIR *d, char *path, int len, int verbose,
}
static char const * const count_objects_usage[] = {
- "git count-objects [-v]",
+ N_("git count-objects [-v]"),
NULL
};
@@ -79,7 +79,7 @@ int cmd_count_objects(int argc, const char **argv, const char *prefix)
unsigned long loose = 0, packed = 0, packed_loose = 0, garbage = 0;
off_t loose_size = 0;
struct option opts[] = {
- OPT__VERBOSE(&verbose, "be verbose"),
+ OPT__VERBOSE(&verbose, N_("be verbose")),
OPT_END(),
};