diff options
| author | Werner Koch <[email protected]> | 2012-06-05 17:29:22 +0000 |
|---|---|---|
| committer | Werner Koch <[email protected]> | 2012-06-05 17:29:22 +0000 |
| commit | 096e7457ec636bcfcf128678660eb2f2e19f113a (patch) | |
| tree | b54df55112f195895d6d952ce3cfb3f4c98e7683 /g10/pkclist.c | |
| parent | Print the hash algorithm in colon mode key listing. (diff) | |
| download | gnupg-096e7457ec636bcfcf128678660eb2f2e19f113a.tar.gz gnupg-096e7457ec636bcfcf128678660eb2f2e19f113a.zip | |
Change all quotes in strings and comments to the new GNU standard.
The asymmetric quotes used by GNU in the past (`...') don't render
nicely on modern systems. We now use two \x27 characters ('...').
The proper solution would be to use the correct Unicode symmetric
quotes here. However this has the disadvantage that the system
requires Unicode support. We don't want that today. If Unicode is
available a generated po file can be used to output proper quotes. A
simple sed script like the one used for en@quote is sufficient to
change them.
The changes have been done by applying
sed -i "s/\`\([^'\`]*\)'/'\1'/g"
to most files and fixing obvious problems by hand. The msgid strings in
the po files were fixed with a similar command.
Diffstat (limited to 'g10/pkclist.c')
| -rw-r--r-- | g10/pkclist.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/g10/pkclist.c b/g10/pkclist.c index 295ee0628..c43c74c0b 100644 --- a/g10/pkclist.c +++ b/g10/pkclist.c @@ -414,7 +414,7 @@ do_we_trust( PKT_public_key *pk, unsigned int trustlevel ) if( opt.trust_model==TM_ALWAYS ) { if( opt.verbose ) - log_info("No trust check due to `--trust-model always' option\n"); + log_info("No trust check due to '--trust-model always' option\n"); return 1; } @@ -572,14 +572,14 @@ check_signatures_trust( PKT_signature *sig ) { okay = 1; write_status_text (STATUS_PKA_TRUST_GOOD, sig->pka_info->email); - log_info (_("Note: Verified signer's address is `%s'\n"), + log_info (_("Note: Verified signer's address is '%s'\n"), sig->pka_info->email); } else { okay = 0; write_status_text (STATUS_PKA_TRUST_BAD, sig->pka_info->email); - log_info (_("Note: Signer's address `%s' " + log_info (_("Note: Signer's address '%s' " "does not match DNS entry\n"), sig->pka_info->email); } |
