Better explanation for encryption passphrase

FIXES: #149
This commit is contained in:
Daniel Nicoletti 2018-01-31 15:58:31 -02:00 committed by Tomaz Canabrava
parent c04d1f1f69
commit 080c5ea678

View file

@ -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);