diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-02-07 14:41:34 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-02-07 14:41:34 -0800 |
commit | 9a1ab9e72fe8acd03b92bb481d7cd95207fda8f5 (patch) | |
tree | b5aac4bc99a9781e39415db76f9c5c7ff4a5e508 /gpg-interface.c | |
parent | 41e81d2fb9642f0f3b9b7a278a1afab0e43f5207 (diff) | |
parent | 4c9a418227a55832de90ec2662570c9daef537da (diff) | |
download | git-9a1ab9e72fe8acd03b92bb481d7cd95207fda8f5.tar.gz |
Merge branch 'sb/gpg-i18n'
* sb/gpg-i18n:
gpg: allow translation of more error messages
Diffstat (limited to 'gpg-interface.c')
-rw-r--r-- | gpg-interface.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gpg-interface.c b/gpg-interface.c index 5f142f6198..45590330aa 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); |