Fix typos in translatable strings for v2.21.0

Signed-off-by: Jean-Noël Avila <jn.avila@free.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Jean-Noël Avila committed Feb 11, 2019 at 07:44 UTC 32ceace39fa224e8e01c791d441b1dd411ba2aba
3 files changed +4 -4
builtin/bisect--helper.c
+2 -2
@@ -173,7 +173,7 @@ static int bisect_reset(const char *commit)
173 argv_array_clear(&argv);
174 return error(_("could not check out original"
175 " HEAD '%s'. Try 'git bisect"
176 - "reset <commit>'."), branch.buf);
176 + " reset <commit>'."), branch.buf);
177 }
178 argv_array_clear(&argv);
179 }
@@ -646,7 +646,7 @@ int cmd_bisect__helper(int argc, const char **argv, const char *prefix)
646 OPT_BOOL(0, "no-checkout", &no_checkout,
647 N_("update BISECT_HEAD instead of checking out the current commit")),
648 OPT_BOOL(0, "no-log", &nolog,
649 - N_("no log for BISECT_WRITE ")),
649 + N_("no log for BISECT_WRITE")),
650 OPT_END()
651 };
652 struct bisect_terms terms = { .term_good = NULL, .term_bad = NULL };
builtin/fetch.c
+1 -1
@@ -1480,7 +1480,7 @@ static inline void fetch_one_setup_partial(struct remote *remote)
1480 if (strcmp(remote->name, repository_format_partial_clone)) {
1481 if (filter_options.choice)
1482 die(_("--filter can only be used with the remote "
1483 - "configured in extensions.partialclone"));
1483 + "configured in extensions.partialClone"));
1484 return;
1485 }
1486
builtin/rebase.c
+1 -1
@@ -1434,7 +1434,7 @@ int cmd_rebase(int argc, const char **argv, const char *prefix)
1434 }
1435
1436 if (options.reschedule_failed_exec && !is_interactive(&options))
1437 - die(_("--reschedule-failed-exec requires an interactive rebase"));
1437 + die(_("%s requires an interactive rebase"), "--reschedule-failed-exec");
1438
1439 if (options.git_am_opts.argc) {
1440 /* all am options except -q are compatible only with --am */