From: Claudio Cambra Date: Thu, 10 Nov 2022 16:13:12 +0000 (+0100) Subject: Clearly tell user that E2EE has been enabled for an account X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~11^2~113^2~6 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=89a66a98d86f4ece5c50f08d96144d5d1fb070ce;p=nextcloud-desktop.git Clearly tell user that E2EE has been enabled for an account Signed-off-by: Claudio Cambra --- diff --git a/src/gui/accountsettings.cpp b/src/gui/accountsettings.cpp index b229c5ef8..93115ba8f 100644 --- a/src/gui/accountsettings.cpp +++ b/src/gui/accountsettings.cpp @@ -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()