From f28aad9ac2bea1194c35c50e16c17cc159f7f080 Mon Sep 17 00:00:00 2001 From: nielsandriesse Date: Mon, 3 Aug 2020 09:11:50 +1000 Subject: [PATCH] Fix copy --- SignalServiceKit/src/Loki/Crypto/Mnemonic.swift | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/SignalServiceKit/src/Loki/Crypto/Mnemonic.swift b/SignalServiceKit/src/Loki/Crypto/Mnemonic.swift index ae2b5fc35..d7b01aa7c 100644 --- a/SignalServiceKit/src/Loki/Crypto/Mnemonic.swift +++ b/SignalServiceKit/src/Loki/Crypto/Mnemonic.swift @@ -49,11 +49,11 @@ public enum Mnemonic { public var errorDescription: String? { switch self { - case .generic: return NSLocalizedString("Something went wrong. Please check your seed and try again.", comment: "") - case .inputTooShort: return NSLocalizedString("Looks like you didn't enter enough words. Please check your seed and try again.", comment: "") - case .missingLastWord: return NSLocalizedString("You seem to be missing the last word of your seed. Please check what you entered and try again.", comment: "") - case .invalidWord: return NSLocalizedString("There appears to be an invalid word in your seed. Please check what you entered and try again.", comment: "") - case .verificationFailed: return NSLocalizedString("Your seed couldn't be verified. Please check what you entered and try again.", comment: "") + case .generic: return NSLocalizedString("Something went wrong. Please check your recovery phrase and try again.", comment: "") + case .inputTooShort: return NSLocalizedString("Looks like you didn't enter enough words. Please check your recovery phrase and try again.", comment: "") + case .missingLastWord: return NSLocalizedString("You seem to be missing the last word of your recovery phrase. Please check what you entered and try again.", comment: "") + case .invalidWord: return NSLocalizedString("There appears to be an invalid word in your recovery phrase. Please check what you entered and try again.", comment: "") + case .verificationFailed: return NSLocalizedString("Your recovery phrase couldn't be verified. Please check what you entered and try again.", comment: "") } } }