Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudio Cambra <claudio.cambra@nextcloud.com>2022-11-10 19:13:12 +0300
committerClaudio Cambra <claudio.cambra@nextcloud.com>2022-11-10 19:15:49 +0300
commit5d2990cef96dc5365bb654c79fb26f7d6f28fa50 (patch)
treec80577062b638c61bb7e53de8d9ea52b8b2acaca
parentfd561d7d6162f1ca49057601b433e96033c6f120 (diff)
Clearly tell user that E2EE has been enabled for an accountfeature/e2ee-wording
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
-rw-r--r--src/gui/accountsettings.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/accountsettings.cpp b/src/gui/accountsettings.cpp
index 7ff539531..947815b59 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()