No secure storage view

This commit is contained in:
Max Goedjen 2024-01-04 17:46:08 -08:00
parent ebbaf82919
commit 462b020a38
No known key found for this signature in database
2 changed files with 33 additions and 11 deletions

View File

@ -215,9 +215,6 @@
}
}
}
},
"If you're looking to add one to your Mac, the YubiKey 5 Series are great." : {
},
"Ignore" : {
@ -234,8 +231,35 @@
"No Secrets" : {
},
"No Secure Storage Available" : {
"no_secure_storage_description" : {
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Your Mac doesn't have a Secure Enclave, and there's not a compatible Smart Card inserted."
}
}
}
},
"no_secure_storage_title" : {
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "No Secure Storage Available"
}
}
}
},
"no_secure_storage_yubico_link" : {
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "If you're looking to add one to your Mac, the YubiKey 5 Series are great."
}
}
}
},
"Public Key" : {
@ -436,9 +460,6 @@
},
"Use your Smart Card's management tool to create a secret." : {
},
"Your Mac doesn't have a Secure Enclave, and there's not a compatible Smart Card inserted." : {
}
},
"version" : "1.0"

View File

@ -4,9 +4,10 @@ struct NoStoresView: View {
var body: some View {
VStack {
Text("No Secure Storage Available").bold()
Text("Your Mac doesn't have a Secure Enclave, and there's not a compatible Smart Card inserted.")
Link("If you're looking to add one to your Mac, the YubiKey 5 Series are great.", destination: URL(string: "https://www.yubico.com/products/compare-yubikey-5-series/")!)
Text("no_secure_storage_title")
.bold()
Text("no_secure_storage_description")
Link("no_secure_storage_yubico_link", destination: URL(string: "https://www.yubico.com/products/compare-yubikey-5-series/")!)
}.padding()
}