Fix typo in PasswordChangeDlg failure message
authorDaniel Albers <daniel@lbe.rs>
Wed, 25 Mar 2015 12:11:50 +0000 (13:11 +0100)
committerDaniel Albers <daniel@lbe.rs>
Wed, 25 Mar 2015 12:11:50 +0000 (13:11 +0100)
po/quassel.pot
src/qtui/passwordchangedlg.cpp

index 6d8b48c..aa73610 100644 (file)
@@ -5539,7 +5539,7 @@ msgstr ""
 
 #: ../src/qtui/passwordchangedlg.cpp:67
 msgctxt "PasswordChangeDlg|"
-msgid "<b>Password change failed<b>"
+msgid "<b>Password change failed</b>"
 msgstr ""
 
 #: ../src/qtui/passwordchangedlg.cpp:69
index 7009adf..dfa9c06 100644 (file)
@@ -64,7 +64,7 @@ void PasswordChangeDlg::passwordChanged(bool success)
 {
     if (!success) {
         QMessageBox box(QMessageBox::Warning, tr("Password Not Changed"),
-                        tr("<b>Password change failed<b>"),
+                        tr("<b>Password change failed</b>"),
                         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();