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
|
@ -556,7 +556,7 @@ check_trustdb ()
|
|||
validate_keys (0);
|
||||
}
|
||||
else
|
||||
log_info (_("no need for a trustdb check with \"%s\" trust model\n"),
|
||||
log_info (_("no need for a trustdb check with `%s' trust model\n"),
|
||||
trust_model_string());
|
||||
}
|
||||
|
||||
|
@ -571,7 +571,7 @@ update_trustdb()
|
|||
if(opt.trust_model==TM_PGP || opt.trust_model==TM_CLASSIC)
|
||||
validate_keys (1);
|
||||
else
|
||||
log_info (_("no need for a trustdb update with \"%s\" trust model\n"),
|
||||
log_info (_("no need for a trustdb update with `%s' trust model\n"),
|
||||
trust_model_string());
|
||||
}
|
||||
|
||||
|
@ -1527,7 +1527,7 @@ check_regexp(const char *expr,const char *string)
|
|||
regfree(&pat);
|
||||
|
||||
if(DBG_TRUST)
|
||||
log_debug("regexp \"%s\" on \"%s\": %s\n",expr,string,ret==0?"YES":"NO");
|
||||
log_debug("regexp `%s' on `%s': %s\n",expr,string,ret==0?"YES":"NO");
|
||||
|
||||
return (ret==0);
|
||||
#endif
|
||||
|
@ -1987,7 +1987,7 @@ validate_keys (int interactive)
|
|||
{
|
||||
if(DBG_TRUST)
|
||||
log_debug("key %08lX%08lX:"
|
||||
" overriding ownertrust \"%s\" with \"%s\"\n",
|
||||
" overriding ownertrust `%s' with `%s'\n",
|
||||
(ulong)k->kid[0],(ulong)k->kid[1],
|
||||
trust_value_to_string(k->ownertrust),
|
||||
trust_value_to_string(min));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue