From: Vincent van Ravesteijn <vfr@xxxxxxx> These strings seem not to be part of the plumbing interface and can therefore be translated. Also the style is adjusted to the guidelines mentioned in the previous commit. Signed-off-by: Vincent van Ravesteijn <vfr@xxxxxxx> --- gpg-interface.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gpg-interface.c b/gpg-interface.c index 5e14a21..66a7c12 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); -- 1.7.5.4 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html