diff --git a/Sources/Packages/Localizable.xcstrings b/Sources/Packages/Localizable.xcstrings index c8f45f1..2e29ce5 100644 --- a/Sources/Packages/Localizable.xcstrings +++ b/Sources/Packages/Localizable.xcstrings @@ -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" : { "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", @@ -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" : { "extractionState" : "manual", "localizations" : { @@ -5188,6 +5189,9 @@ } } } + }, + "Test" : { + }, "unnamed_secret" : { "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" diff --git a/Sources/Secretive/Views/CreateSecretView.swift b/Sources/Secretive/Views/CreateSecretView.swift index 27d750e..7185bf2 100644 --- a/Sources/Secretive/Views/CreateSecretView.swift +++ b/Sources/Secretive/Views/CreateSecretView.swift @@ -80,7 +80,7 @@ struct CreateSecretView: View { } } 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(.vertical, 3) .background(.red.opacity(0.5), in: RoundedRectangle(cornerRadius: 5))