From d89c701acb2e6dfd0f6ada6742a6057ad4698dcb Mon Sep 17 00:00:00 2001 From: David Shaw Date: Thu, 28 Oct 2004 02:14:06 +0000 Subject: * keyring.c: Make some strings translatable. * exec.c, sign.c: Change "can't open file" to "can't open" and "can't create file" to "can't create" to be consistent with other strings so we don't have to translate both. --- g10/exec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'g10/exec.c') diff --git a/g10/exec.c b/g10/exec.c index 408f6d7bf..0ba85a564 100644 --- a/g10/exec.c +++ b/g10/exec.c @@ -486,7 +486,7 @@ int exec_write(struct exec_info **info,const char *program, (*info)->tochild=fopen((*info)->tempfile_in,binary?"wb":"w"); if((*info)->tochild==NULL) { - log_error(_("can't create file `%s': %s\n"), + log_error(_("can't create `%s': %s\n"), (*info)->tempfile_in,strerror(errno)); ret=G10ERR_WRITE_FILE; goto fail; -- cgit