Change a bunch of strings from Recovery Key/Phrase to Security Key/Phrase

Signed-off-by: Aaron Raimist <aaron@raim.ist>
This commit is contained in:
Aaron Raimist 2021-01-04 19:17:12 -06:00
parent 461b569278
commit 4f96d5dee5
No known key found for this signature in database
GPG key ID: 37419210002890EF
11 changed files with 82 additions and 82 deletions

View file

@ -58,7 +58,7 @@ describe("AccessSecretStorageDialog", function() {
expect(recoveryKeyValid).toBe(true);
});
it("Notifies the user if they input an invalid recovery key", async function(done) {
it("Notifies the user if they input an invalid Security Key", async function(done) {
const testInstance = TestRenderer.create(
<AccessSecretStorageDialog
checkPrivateKey={async () => false}
@ -80,7 +80,7 @@ describe("AccessSecretStorageDialog", function() {
className: "mx_AccessSecretStorageDialog_recoveryKeyFeedback " +
"mx_AccessSecretStorageDialog_recoveryKeyFeedback_invalid",
});
expect(notification.props.children).toEqual("Invalid Recovery Key");
expect(notification.props.children).toEqual("Invalid Security Key");
done();
});
@ -105,7 +105,7 @@ describe("AccessSecretStorageDialog", function() {
});
expect(notification.props.children).toEqual(
["\uD83D\uDC4E ", "Unable to access secret storage. Please verify that you " +
"entered the correct recovery passphrase."]);
"entered the correct Security Phrase."]);
done();
});
});