You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pass/en.lproj/Localizable.strings
+33-9Lines changed: 33 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -299,21 +299,45 @@ to get the key in this specific format. Subsequently, copy it to a location acce
299
299
300
300
"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
301
301
302
-
$ gpg --export -a KEY_ID
303
-
$ gpg --export-secret-keys -a KEY_ID
302
+
$ gpg --list-keys
304
303
305
-
to get the public and the private key in this specific format. The clipboard will be cleared 45s after pasting.";
304
+
to identify your encryption (E) subkey, then use:
305
+
306
+
$ gpg --export -a KEY_ID! > subkey.pub
307
+
$ gpg --export-secret-subkeys -a KEY_ID! > subkey
308
+
309
+
to get the public and the encryption private subkeys in this specific format. Check that no Authentication subkey is accidentally exported, using:
310
+
311
+
$ gpg --show-key subkey
312
+
313
+
The clipboard will be cleared 45s after pasting.";
306
314
307
315
"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
308
316
309
-
$ gpg --export -a KEY_ID
310
-
$ gpg --export-secret-keys -a KEY_ID
317
+
$ gpg --list-keys
318
+
319
+
to identify your encryption (E) subkey, then use:
320
+
321
+
$ gpg --export -a KEY_ID! > subkey.pub
322
+
$ gpg --export-secret-subkeys -a KEY_ID! > subkey
311
323
312
-
to get the public and the private key in this specific format. Subsequently, copy them to your secured key server.";
324
+
to get the public and the encryption private subkeys in this specific format. Check that no Authentication subkey is accidentally exported, using:
325
+
326
+
$ gpg --show-key subkey
327
+
328
+
Finally, copy them to your secured key server.";
313
329
314
330
"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
315
331
316
-
$ gpg --export -a KEY_ID
317
-
$ gpg --export-secret-keys -a KEY_ID
332
+
$ gpg --list-keys
333
+
334
+
to identify your encryption (E) subkey, then use:
335
+
336
+
$ gpg --export -a KEY_ID! > subkey.pub
337
+
$ gpg --export-secret-subkeys -a KEY_ID! > subkey
338
+
339
+
to get the public and the encryption private subkeys in this specific format. Check that no Authentication subkey is accidentally exported, using:
340
+
341
+
$ gpg --show-key subkey
318
342
319
-
to get the public and the private key in this specific format. Subsequently, copy them to a location accessible by the Files app.";
343
+
Finally, copy them to a location accessible by the Files app.";
0 commit comments