i18n: for-each-ref: 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:
Nguyễn Thái Ngọc Duy 2012-08-20 19:32:11 +07:00 committed by Junio C Hamano
parent 93eced6c1b
commit 18913521e2

View File

@ -974,7 +974,7 @@ static int opt_parse_sort(const struct option *opt, const char *arg, int unset)
} }
static char const * const for_each_ref_usage[] = { static char const * const for_each_ref_usage[] = {
"git for-each-ref [options] [<pattern>]", N_("git for-each-ref [options] [<pattern>]"),
NULL NULL
}; };
@ -989,19 +989,19 @@ int cmd_for_each_ref(int argc, const char **argv, const char *prefix)
struct option opts[] = { struct option opts[] = {
OPT_BIT('s', "shell", &quote_style, OPT_BIT('s', "shell", &quote_style,
"quote placeholders suitably for shells", QUOTE_SHELL), N_("quote placeholders suitably for shells"), QUOTE_SHELL),
OPT_BIT('p', "perl", &quote_style, OPT_BIT('p', "perl", &quote_style,
"quote placeholders suitably for perl", QUOTE_PERL), N_("quote placeholders suitably for perl"), QUOTE_PERL),
OPT_BIT(0 , "python", &quote_style, OPT_BIT(0 , "python", &quote_style,
"quote placeholders suitably for python", QUOTE_PYTHON), N_("quote placeholders suitably for python"), QUOTE_PYTHON),
OPT_BIT(0 , "tcl", &quote_style, OPT_BIT(0 , "tcl", &quote_style,
"quote placeholders suitably for tcl", QUOTE_TCL), N_("quote placeholders suitably for tcl"), QUOTE_TCL),
OPT_GROUP(""), OPT_GROUP(""),
OPT_INTEGER( 0 , "count", &maxcount, "show only <n> matched refs"), OPT_INTEGER( 0 , "count", &maxcount, N_("show only <n> matched refs")),
OPT_STRING( 0 , "format", &format, "format", "format to use for the output"), OPT_STRING( 0 , "format", &format, N_("format"), N_("format to use for the output")),
OPT_CALLBACK(0 , "sort", sort_tail, "key", OPT_CALLBACK(0 , "sort", sort_tail, N_("key"),
"field name to sort on", &opt_parse_sort), N_("field name to sort on"), &opt_parse_sort),
OPT_END(), OPT_END(),
}; };