This commit is contained in:
Max Goedjen 2025-08-24 20:01:00 -07:00
parent 13c2ecc14a
commit 9b3038c440
No known key found for this signature in database
2 changed files with 15 additions and 14 deletions

View File

@ -1083,16 +1083,6 @@
} }
} }
}, },
"auth_context_request_signature_description_%@_%@" : {
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "new",
"value" : "auth_context_request_signature_description_%1$@_%2$@"
}
}
}
},
"auth_context_request_verify_description" : { "auth_context_request_verify_description" : {
"comment" : "When the user performs a signature verification action using a secret, they are shown a prompt to approve the action. This is the description, showing which secret will be used. The placeholder is the name of the secret. NOTE: This is currently not exposed in UI.", "comment" : "When the user performs a signature verification action using a secret, they are shown a prompt to approve the action. This is the description, showing which secret will be used. The placeholder is the name of the secret. NOTE: This is currently not exposed in UI.",
"extractionState" : "manual", "extractionState" : "manual",
@ -1534,6 +1524,17 @@
} }
} }
}, },
"create_secret_mldsa_warning" : {
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Warning: ML-DSA keys are very new, and not supported by many servers yet. Please verify the server you'll be using this key for accepts ML-DSA keys."
}
}
}
},
"create_secret_name_label" : { "create_secret_name_label" : {
"extractionState" : "manual", "extractionState" : "manual",
"localizations" : { "localizations" : {
@ -5188,6 +5189,9 @@
} }
} }
} }
},
"Test" : {
}, },
"unnamed_secret" : { "unnamed_secret" : {
"extractionState" : "manual", "extractionState" : "manual",
@ -6134,9 +6138,6 @@
} }
} }
} }
},
"Warning: ML-DSA keys are very new, and not supported by many servers yet. Please verify the server you'll be using this key for accepts ML-DSA keys." : {
} }
}, },
"version" : "1.0" "version" : "1.0"

View File

@ -80,7 +80,7 @@ struct CreateSecretView<StoreType: SecretStoreModifiable>: View {
} }
} }
if keyType?.algorithm == .mldsa { if keyType?.algorithm == .mldsa {
Text("Warning: ML-DSA keys are very new, and not supported by many servers yet. Please verify the server you'll be using this key for accepts ML-DSA keys.") Text(.createSecretMldsaWarning)
.padding(.horizontal, 10) .padding(.horizontal, 10)
.padding(.vertical, 3) .padding(.vertical, 3)
.background(.red.opacity(0.5), in: RoundedRectangle(cornerRadius: 5)) .background(.red.opacity(0.5), in: RoundedRectangle(cornerRadius: 5))