diff options
author | Werner Koch <[email protected]> | 2014-10-10 13:29:42 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2014-10-10 13:29:42 +0000 |
commit | 54ffe2045aa4d3157f0919744210c9463594799c (patch) | |
tree | 068cb4ba0394398415df6ac1ef2e0f87bb0351b9 /sm | |
parent | po: Fix some grammar buglets in the German translation. (diff) | |
download | gnupg-54ffe2045aa4d3157f0919744210c9463594799c.tar.gz gnupg-54ffe2045aa4d3157f0919744210c9463594799c.zip |
Use a unique capitalization for "Note:".
--
Diffstat (limited to 'sm')
-rw-r--r-- | sm/certchain.c | 4 | ||||
-rw-r--r-- | sm/gpgsm.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sm/certchain.c b/sm/certchain.c index 5f5fd80a5..5e632f798 100644 --- a/sm/certchain.c +++ b/sm/certchain.c @@ -350,7 +350,7 @@ check_cert_policy (ksba_cert_t cert, int listmode, estream_t fplist) { if (!opt.quiet) do_list (0, listmode, fplist, - _("note: non-critical certificate policy not allowed")); + _("Note: non-critical certificate policy not allowed")); return 0; } do_list (1, listmode, fplist, @@ -379,7 +379,7 @@ check_cert_policy (ksba_cert_t cert, int listmode, estream_t fplist) if (!any_critical) { do_list (0, listmode, fplist, - _("note: non-critical certificate policy not allowed")); + _("Note: non-critical certificate policy not allowed")); return 0; } do_list (1, listmode, fplist, diff --git a/sm/gpgsm.c b/sm/gpgsm.c index 2faf203dd..cc8039c30 100644 --- a/sm/gpgsm.c +++ b/sm/gpgsm.c @@ -756,7 +756,7 @@ do_add_recipient (ctrl_t ctrl, const char *name, get_inv_recpsgnr_code (rc), name, NULL); } else - log_info (_("NOTE: won't be able to encrypt to '%s': %s\n"), + log_info (_("Note: won't be able to encrypt to '%s': %s\n"), name, gpg_strerror (rc)); } } @@ -1028,7 +1028,7 @@ main ( int argc, char **argv) if (default_config) { if (parse_debug) - log_info (_("NOTE: no default option file '%s'\n"), configname); + log_info (_("Note: no default option file '%s'\n"), configname); } else { @@ -1496,7 +1496,7 @@ main ( int argc, char **argv) for (i=0; i < argc; i++) if (argv[i][0] == '-' && argv[i][1] == '-') - log_info (_("NOTE: '%s' is not considered an option\n"), argv[i]); + log_info (_("Note: '%s' is not considered an option\n"), argv[i]); } /*FIXME if (opt.batch) */ |