diff options
author | rhatto <rhatto@ratten.fluxo.info> | 2014-03-17 11:14:50 -0300 |
---|---|---|
committer | rhatto <rhatto@ratten.fluxo.info> | 2014-03-17 11:14:50 -0300 |
commit | 018bddbdbb8239b830301bccde9719cb948c0e4c (patch) | |
tree | 7e3d6c2427ff7aed063abc6896adac18e8629fef /lib | |
parent | b5378493968b2ed72f3b5f0d38377afc0b0049cd (diff) | |
download | keyringer-018bddbdbb8239b830301bccde9719cb948c0e4c.tar.gz keyringer-018bddbdbb8239b830301bccde9719cb948c0e4c.tar.bz2 |
Spell checking as suggested by Debian #741644
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/keyringer/functions | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/keyringer/functions b/lib/keyringer/functions index 832385e..b8e4bc7 100755 --- a/lib/keyringer/functions +++ b/lib/keyringer/functions @@ -581,7 +581,7 @@ function keyringer_check_recipient_size { local size=$(echo "$recipient" | wc -c) if (( $size < 41 )); then - echo "Fatal: please set the full GPG signature hash for key ID $recipient:" + echo "Fatal: please set the full OpenPGP fingerprint for key ID $recipient:" cat <<-EOF Please provide a full OpenPGP fingerprint, for example: @@ -671,8 +671,8 @@ function keyringer_check_recipient_key { fi echo "" else - echo "Fatal: no such key $recipient on your GPG keyring." - echo "Please check for this key or fix the recipient file." + echo "Fatal: no such key $recipient on your OpenPGP keyring." + echo "Please retrieve this key yourself or fix the recipient file." exit 1 fi |