Skip to content

Commit 7adaddc

Browse files
pcloudsgitster
authored andcommitted
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>
1 parent 9c23f4c commit 7adaddc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

builtin/count-objects.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ static void count_objects(DIR *d, char *path, int len, int verbose,
6666
}
6767

6868
static char const * const count_objects_usage[] = {
69-
"git count-objects [-v]",
69+
N_("git count-objects [-v]"),
7070
NULL
7171
};
7272

@@ -79,7 +79,7 @@ int cmd_count_objects(int argc, const char **argv, const char *prefix)
7979
unsigned long loose = 0, packed = 0, packed_loose = 0, garbage = 0;
8080
off_t loose_size = 0;
8181
struct option opts[] = {
82-
OPT__VERBOSE(&verbose, "be verbose"),
82+
OPT__VERBOSE(&verbose, N_("be verbose")),
8383
OPT_END(),
8484
};
8585

0 commit comments

Comments
 (0)