From 5f2b3fd63a55fdb8d827c79dfc3599bbbb0a11df Mon Sep 17 00:00:00 2001 From: Christian Hohnstaedt Date: Tue, 19 May 2015 13:21:28 +0200 Subject: [PATCH] Change wording --- widgets/MainWindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/widgets/MainWindow.cpp b/widgets/MainWindow.cpp index 7ccf94d1..616cef30 100644 --- a/widgets/MainWindow.cpp +++ b/widgets/MainWindow.cpp @@ -589,8 +589,8 @@ void MainWindow::changeDbPass() db mydb(dbfile); if (!mydb.find(setting, "pwhash")) { char *cpass; - pass_info p(tr("Old Password"), - tr("Please enter the old database password"), this); + pass_info p(tr("Current Password"), + tr("Please enter the current database password"), this); if ((cpass = (char *)mydb.load(NULL))) { passHash = cpass; @@ -604,7 +604,7 @@ void MainWindow::changeDbPass() } if (pki_evp::sha512passwd(pass, passHash) != passHash) { - XCA_WARN(tr("Password verification error")); + XCA_WARN(tr("The entered password is wrong")); return; } }