From: Johannes Schindelin <redacted>
Signed-off-by: Johannes Schindelin <redacted>
---
parse-options-cb.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/parse-options-cb.c b/parse-options-cb.c
index 4542d4d3f92..00862af486e 100644
--- a/parse-options-cb.c
+++ b/parse-options-cb.c
@@ -91,7 +91,7 @@ int parse_opt_commits(const struct option *opt, const char *arg, int unset)
if (!arg)
return -1;
if (get_oid(arg, &oid))
- return error("malformed object name %s", arg);
+ return error(_("malformed object name %s"), arg);
commit = lookup_commit_reference(the_repository, &oid);
if (!commit)
return error("no such commit %s", arg);@@ -110,7 +110,7 @@ int parse_opt_commit(const struct option *opt, const char *arg, int unset)
if (!arg)
return -1;
if (get_oid(arg, &oid))
- return error("malformed object name %s", arg);
+ return error(_("malformed object name %s"), arg);
commit = lookup_commit_reference(the_repository, &oid);
if (!commit)
return error("no such commit %s", arg);--
gitgitgadget