Skip to content

Commit

Permalink
gpg: allow translation of more error messages
Browse files Browse the repository at this point in the history
Mark these strings for translation so that error messages are
printed in the user's language of choice.

Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Stephen Boyd authored and Junio C Hamano committed Jan 31, 2013
1 parent 9a6c84e commit 4c9a418
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gpg-interface.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@ int verify_signed_buffer(const char *payload, size_t payload_size,
args_gpg[0] = gpg_program;
fd = git_mkstemp(path, PATH_MAX, ".git_vtag_tmpXXXXXX");
if (fd < 0)
return error("could not create temporary file '%s': %s",
return error(_("could not create temporary file '%s': %s"),
path, strerror(errno));
if (write_in_full(fd, signature, signature_size) < 0)
return error("failed writing detached signature to '%s': %s",
return error(_("failed writing detached signature to '%s': %s"),
path, strerror(errno));
close(fd);

Expand All @@ -124,7 +124,7 @@ int verify_signed_buffer(const char *payload, size_t payload_size,
args_gpg[2] = path;
if (start_command(&gpg)) {
unlink(path);
return error("could not run gpg.");
return error(_("could not run gpg."));
}

write_in_full(gpg.in, payload, payload_size);
Expand Down

0 comments on commit 4c9a418

Please sign in to comment.