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:
authorDaniel Nicoletti <dantti12@gmail.com>2018-01-31 20:58:31 +0300
committerTomaz Canabrava <tcanabrava@kde.org>2018-02-02 19:27:58 +0300
commit080c5ea67817eb0b4bb80e4ba28d7cfb7e516d82 (patch)
treedf94f3c67604ddae21bb2f90d3d8e281f6dd4377 /src/gui/accountmanager.cpp
parentc04d1f1f69f2a5d6e2fe4899edccf820b4534dc1 (diff)
Better explanation for encryption passphrase
FIXES: #149
Diffstat (limited to 'src/gui/accountmanager.cpp')
-rw-r--r--src/gui/accountmanager.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gui/accountmanager.cpp b/src/gui/accountmanager.cpp
index e7f6517d9..45b75b3e3 100644
--- a/src/gui/accountmanager.cpp
+++ b/src/gui/accountmanager.cpp
@@ -336,8 +336,11 @@ AccountPtr AccountManager::createAccount()
void AccountManager::displayMnemonic(const QString& mnemonic)
{
QMessageBox msgBox;
- msgBox.setText(tr("Note your encryption passphrase"));
+ msgBox.setText(tr("All 12 words together make a very strong password, "
+ "letting only you view and make use of your encrypted files. "
+ "Please write it down and keep it somewhere safe."));
msgBox.setDetailedText(mnemonic);
+ msgBox.setWindowTitle(tr("Make note of your 12 word encryption password"));
msgBox.setIcon(QMessageBox::Information);
msgBox.setStandardButtons(QMessageBox::Ok);