From: Daniel Albers Date: Wed, 25 Mar 2015 12:11:50 +0000 (+0100) Subject: Fix typo in PasswordChangeDlg failure message X-Git-Tag: 0.12.0~6 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=e71216ed2c31ea6fde6986b26faecd87a3723aa6;ds=sidebyside Fix typo in PasswordChangeDlg failure message --- diff --git a/po/quassel.pot b/po/quassel.pot index 6d8b48cd..aa73610e 100644 --- a/po/quassel.pot +++ b/po/quassel.pot @@ -5539,7 +5539,7 @@ msgstr "" #: ../src/qtui/passwordchangedlg.cpp:67 msgctxt "PasswordChangeDlg|" -msgid "Password change failed" +msgid "Password change failed" msgstr "" #: ../src/qtui/passwordchangedlg.cpp:69 diff --git a/src/qtui/passwordchangedlg.cpp b/src/qtui/passwordchangedlg.cpp index 7009adf6..dfa9c06e 100644 --- a/src/qtui/passwordchangedlg.cpp +++ b/src/qtui/passwordchangedlg.cpp @@ -64,7 +64,7 @@ void PasswordChangeDlg::passwordChanged(bool success) { if (!success) { QMessageBox box(QMessageBox::Warning, tr("Password Not Changed"), - tr("Password change failed"), + tr("Password change failed"), QMessageBox::Ok, this); box.setInformativeText(tr("The core reported an error when trying to change your password. Make sure you entered your old password correctly!")); box.exec();