diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2012-08-20 19:31:50 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-08-20 12:23:14 -0700 |
commit | a054e049121dcf51b33082e7828abc0b598fef42 (patch) | |
tree | b224a6accc1897915fd90b0ca3dc20c62733ef60 /parse-options.h | |
parent | 889d35899ba64640e47798681ecb34a4be043bad (diff) | |
download | git-a054e049121dcf51b33082e7828abc0b598fef42.tar.gz |
i18n: mark "style" in OPT_COLUMN() 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 'parse-options.h')
-rw-r--r-- | parse-options.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parse-options.h b/parse-options.h index 77a4a8b2e6..71a39c60d9 100644 --- a/parse-options.h +++ b/parse-options.h @@ -238,6 +238,6 @@ extern int parse_opt_noop_cb(const struct option *, const char *, int); #define OPT__COLOR(var, h) \ OPT_COLOR_FLAG(0, "color", (var), (h)) #define OPT_COLUMN(s, l, v, h) \ - { OPTION_CALLBACK, (s), (l), (v), "style", (h), PARSE_OPT_OPTARG, parseopt_column_callback } + { OPTION_CALLBACK, (s), (l), (v), N_("style"), (h), PARSE_OPT_OPTARG, parseopt_column_callback } #endif |