From 998dc684f1258340a716e8c11d9ff70305f7c6b8 Mon Sep 17 00:00:00 2001 From: Matt DeVillier Date: Tue, 4 Aug 2020 15:55:01 -0500 Subject: [PATCH] gpg_gui: use 'and' vs '+' in menu listings Using words is more explicit and clear here rather than symbols. Signed-off-by: Matt DeVillier --- initrd/bin/gpg-gui.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/initrd/bin/gpg-gui.sh b/initrd/bin/gpg-gui.sh index cb63a660..e8e66f53 100755 --- a/initrd/bin/gpg-gui.sh +++ b/initrd/bin/gpg-gui.sh @@ -139,9 +139,9 @@ while true; do unset menu_choice whiptail --clear --title "GPG Management Menu" \ --menu 'Select the GPG function to perform' 20 90 10 \ - 'r' ' Add GPG key to running BIOS + reflash' \ - 'a' ' Add GPG key to standalone BIOS image + flash' \ - 'e' ' Replace GPG key(s) in the current ROM + reflash' \ + 'r' ' Add GPG key to running BIOS and reflash' \ + 'a' ' Add GPG key to standalone BIOS image and flash' \ + 'e' ' Replace GPG key(s) in the current ROM and reflash' \ 'l' ' List GPG keys in your keyring' \ 'p' ' Export public GPG key to USB drive' \ 'g' ' Generate GPG keys manually on a USB security token' \