From e3fbddbe921eb77cae352fcaf7b255823705a495 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=B6rmet=20Yiltiz?= Date: Thu, 30 Sep 2021 13:55:20 -0400 Subject: [PATCH] Polish instructions (#514) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Hörmetjan Yiltiz --- pass/en.lproj/Localizable.strings | 42 ++++++++++++++++++++++++------- 1 file changed, 33 insertions(+), 9 deletions(-) diff --git a/pass/en.lproj/Localizable.strings b/pass/en.lproj/Localizable.strings index fbf87ff..3f03a0f 100644 --- a/pass/en.lproj/Localizable.strings +++ b/pass/en.lproj/Localizable.strings @@ -299,21 +299,45 @@ to get the key in this specific format. Subsequently, copy it to a location acce "GpgAsciiArmorCopyExplanation." = "GnuPG supports the command-line option \"-a\" that causes output to be generated in an ASCII-armored format similar to unencoded documents rather than the binary format. Use - $ gpg --export -a KEY_ID - $ gpg --export-secret-keys -a KEY_ID + $ gpg --list-keys -to get the public and the private key in this specific format. The clipboard will be cleared 45s after pasting."; +to identify your encryption (E) subkey, then use: + + $ gpg --export -a KEY_ID! > subkey.pub + $ gpg --export-secret-subkeys -a KEY_ID! > subkey + +to get the public and the encryption private subkeys in this specific format. Check that no Authentication subkey is accidentally exported, using: + + $ gpg --show-key subkey + +The clipboard will be cleared 45s after pasting."; "GpgAsciiArmorServerExplanation." = "GnuPG supports the command-line option \"-a\" that causes output to be generated in an ASCII-armored format similar to unencoded documents rather than the binary format. Use - $ gpg --export -a KEY_ID - $ gpg --export-secret-keys -a KEY_ID + $ gpg --list-keys -to get the public and the private key in this specific format. Subsequently, copy them to your secured key server."; +to identify your encryption (E) subkey, then use: + + $ gpg --export -a KEY_ID! > subkey.pub + $ gpg --export-secret-subkeys -a KEY_ID! > subkey + +to get the public and the encryption private subkeys in this specific format. Check that no Authentication subkey is accidentally exported, using: + + $ gpg --show-key subkey + +Finally, copy them to your secured key server."; "GpgAsciiArmorFileExplanation." = "GnuPG supports the command-line option \"-a\" that causes output to be generated in an ASCII-armored format similar to unencoded documents rather than the binary format. Use - $ gpg --export -a KEY_ID - $ gpg --export-secret-keys -a KEY_ID + $ gpg --list-keys -to get the public and the private key in this specific format. Subsequently, copy them to a location accessible by the Files app."; +to identify your encryption (E) subkey, then use: + + $ gpg --export -a KEY_ID! > subkey.pub + $ gpg --export-secret-subkeys -a KEY_ID! > subkey + +to get the public and the encryption private subkeys in this specific format. Check that no Authentication subkey is accidentally exported, using: + + $ gpg --show-key subkey + +Finally, copy them to a location accessible by the Files app.";