From 080c5ea67817eb0b4bb80e4ba28d7cfb7e516d82 Mon Sep 17 00:00:00 2001 From: Daniel Nicoletti Date: Wed, 31 Jan 2018 15:58:31 -0200 Subject: [PATCH] Better explanation for encryption passphrase FIXES: #149 --- src/gui/accountmanager.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/gui/accountmanager.cpp b/src/gui/accountmanager.cpp index e7f6517d96..45b75b3e30 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);