mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
* pkclist.c (do_edit_ownertrust): Use the same translated string for
showing the user ID as mainproc.c:print_pkenc_list. * mainproc.c (print_pkenc_list): Allow translating the quotes around the user ID. * card-util.c, g10.c, photoid.c, trustdb.c: The last of the \"%s\" -> `%s' quoting for things that aren't user IDs. * keyserver.c (keyserver_spawn): If there is no keyserver host, print the whole URI since it is self-contained.
This commit is contained in:
parent
e3fd0f0c60
commit
bf079613b7
8 changed files with 51 additions and 27 deletions
|
@ -971,7 +971,7 @@ add_group(char *string)
|
|||
name=strsep(&string,"=");
|
||||
if(string==NULL)
|
||||
{
|
||||
log_error(_("no = sign found in group definition \"%s\"\n"),name);
|
||||
log_error(_("no = sign found in group definition `%s'\n"),name);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -2002,7 +2002,7 @@ main( int argc, char **argv )
|
|||
else if(ascii_strcasecmp(pargs.r.ret_str,"auto")==0)
|
||||
opt.trust_model=TM_AUTO;
|
||||
else
|
||||
log_error("unknown trust model \"%s\"\n",pargs.r.ret_str);
|
||||
log_error("unknown trust model `%s'\n",pargs.r.ret_str);
|
||||
break;
|
||||
case oForceOwnertrust:
|
||||
log_info(_("NOTE: %s is not for normal use!\n"),
|
||||
|
@ -2010,7 +2010,7 @@ main( int argc, char **argv )
|
|||
opt.force_ownertrust=string_to_trust_value(pargs.r.ret_str);
|
||||
if(opt.force_ownertrust==-1)
|
||||
{
|
||||
log_error("invalid ownertrust \"%s\"\n",pargs.r.ret_str);
|
||||
log_error("invalid ownertrust `%s'\n",pargs.r.ret_str);
|
||||
opt.force_ownertrust=0;
|
||||
}
|
||||
break;
|
||||
|
@ -2452,7 +2452,7 @@ main( int argc, char **argv )
|
|||
else if(ascii_strcasecmp(pargs.r.ret_str,"0xlong")==0)
|
||||
opt.keyid_format=KF_0xLONG;
|
||||
else
|
||||
log_error("unknown keyid-format \"%s\"\n",pargs.r.ret_str);
|
||||
log_error("unknown keyid-format `%s'\n",pargs.r.ret_str);
|
||||
break;
|
||||
|
||||
default : pargs.err = configfp? 1:2; break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue