i18n: merge: change command option help to lowercase
Change command option description to lowercase, matching pull counterpart option. Translators would have to translate such message only once. Signed-off-by: Vasco Almeida <vascomalmeida@sapo.pt> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Vasco Almeida committed
Jun 17, 2016 at 20:21 UTC
c8bb9d2e5a0926c29849091b86fa025da87b68f3
1 file changed
+1
-1
builtin/merge.c
+1
-1
@@ -211,7 +211,7 @@ static struct option builtin_merge_options[] = {
211
PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, FF_ONLY },
212
OPT_RERERE_AUTOUPDATE(&allow_rerere_auto),
213
OPT_BOOL(0, "verify-signatures", &verify_signatures,
214
- N_("Verify that the named commit has a valid GPG signature")),
214
+ N_("verify that the named commit has a valid GPG signature")),
215
OPT_CALLBACK('s', "strategy", &use_strategies, N_("strategy"),
216
N_("merge strategy to use"), option_parse_strategy),
217
OPT_CALLBACK('X', "strategy-option", &xopts, N_("option=value"),