i18n: verify-tag: 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>
This commit is contained in:
parent
0a245e244a
commit
f6008eb24d
@ -14,7 +14,7 @@
|
|||||||
#include "gpg-interface.h"
|
#include "gpg-interface.h"
|
||||||
|
|
||||||
static const char * const verify_tag_usage[] = {
|
static const char * const verify_tag_usage[] = {
|
||||||
"git verify-tag [-v|--verbose] <tag>...",
|
N_("git verify-tag [-v|--verbose] <tag>..."),
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -70,7 +70,7 @@ int cmd_verify_tag(int argc, const char **argv, const char *prefix)
|
|||||||
{
|
{
|
||||||
int i = 1, verbose = 0, had_error = 0;
|
int i = 1, verbose = 0, had_error = 0;
|
||||||
const struct option verify_tag_options[] = {
|
const struct option verify_tag_options[] = {
|
||||||
OPT__VERBOSE(&verbose, "print tag contents"),
|
OPT__VERBOSE(&verbose, N_("print tag contents")),
|
||||||
OPT_END()
|
OPT_END()
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user