diff --git a/Sources/Packages/Localizable.xcstrings b/Sources/Packages/Localizable.xcstrings index bc9423d..2fba308 100644 --- a/Sources/Packages/Localizable.xcstrings +++ b/Sources/Packages/Localizable.xcstrings @@ -1281,8 +1281,8 @@ }, "ja" : { "stringUnit" : { - "state" : "needs_review", - "value" : "シークレット“%2$@”を使って署名を検証します" + "state" : "translated", + "value" : "シークレット“%1$(secretName)@”を使って署名を検証します" } }, "ko" : { diff --git a/Sources/Packages/Sources/SecureEnclaveSecretKit/SecureEnclaveStore.swift b/Sources/Packages/Sources/SecureEnclaveSecretKit/SecureEnclaveStore.swift index 685b53b..f999b7e 100644 --- a/Sources/Packages/Sources/SecureEnclaveSecretKit/SecureEnclaveStore.swift +++ b/Sources/Packages/Sources/SecureEnclaveSecretKit/SecureEnclaveStore.swift @@ -138,7 +138,7 @@ extension SecureEnclave { public func verify(signature: Data, for data: Data, with secret: Secret) throws -> Bool { let context = LAContext() - context.localizedReason = String(localized: .authContextRequestVerifyDescription(secretName: secret.name, "")) + context.localizedReason = String(localized: .authContextRequestVerifyDescription(secretName: secret.name)) context.localizedCancelTitle = String(localized: .authContextRequestDenyButton) let attributes = KeychainDictionary([ kSecClass: kSecClassKey,