summaryrefslogtreecommitdiff
path: root/gpg-interface.c
diff options
context:
space:
mode:
authorStephen Boyd <sboyd@codeaurora.org>2013-01-31 02:01:06 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-01-31 19:10:26 (GMT)
commit4c9a418227a55832de90ec2662570c9daef537da (patch)
tree468c5c4648da1bc2a83005ed5a39804f53332244 /gpg-interface.c
parent9a6c84e6e9078b0ef4fd2c50b200e8552a28c6fa (diff)
downloadgit-4c9a418227a55832de90ec2662570c9daef537da.zip
git-4c9a418227a55832de90ec2662570c9daef537da.tar.gz
git-4c9a418227a55832de90ec2662570c9daef537da.tar.bz2
gpg: allow translation of more error messages
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>
Diffstat (limited to 'gpg-interface.c')
-rw-r--r--gpg-interface.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gpg-interface.c b/gpg-interface.c
index 0863c61..e8eba1a 100644
--- a/gpg-interface.c
+++ b/gpg-interface.c
@@ -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);
@@ -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);