mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-04-04 06:37:07 +00:00
No secure storage view
This commit is contained in:
parent
ebbaf82919
commit
462b020a38
@ -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"
|
||||
|
@ -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()
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user