Clearly tell user that E2EE has been enabled for an account

Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
This commit is contained in:
Claudio Cambra 2022-11-10 17:13:12 +01:00 committed by Claudio Cambra
parent 30589c7686
commit 89a66a98d8

View File

@ -246,9 +246,9 @@ void AccountSettings::slotE2eEncryptionMnemonicReady()
connect(actionDisplayMnemonic, &QAction::triggered, this, [this]() {
displayMnemonic(_accountState->account()->e2e()->_mnemonic);
});
_ui->encryptionMessage->setText(tr("This account supports End-to-End encryption"));
_ui->encryptionMessage->setText(tr("End-to-End encryption has been enabled for this account"));
_ui->encryptionMessage->show();
}
void AccountSettings::slotE2eEncryptionGenerateKeys()