diff -r 7912530a33e2 -r 542e97d4ecb3 Preferences/ConfigurationPages/EmailPage.py --- a/Preferences/ConfigurationPages/EmailPage.py Mon Oct 14 18:26:25 2013 +0200 +++ b/Preferences/ConfigurationPages/EmailPage.py Mon Oct 14 19:30:36 2013 +0200 @@ -123,7 +123,8 @@ server.login(self.mailUserEdit.text(), self.mailPasswordEdit.text()) QApplication.restoreOverrideCursor() - E5MessageBox.information(self, + E5MessageBox.information( + self, self.trUtf8("Login Test"), self.trUtf8("""The login test succeeded.""")) except (smtplib.SMTPException, socket.error) as e: @@ -139,7 +140,8 @@ errorStr = str(e) else: errorStr = str(e) - E5MessageBox.critical(self, + E5MessageBox.critical( + self, self.trUtf8("Login Test"), self.trUtf8( """<p>The login test failed.<br>Reason: {0}</p>""") @@ -158,7 +160,8 @@ errorStr = str(e) else: errorStr = str(e) - E5MessageBox.critical(self, + E5MessageBox.critical( + self, self.trUtf8("Login Test"), self.trUtf8("""<p>The login test failed.<br>Reason: {0}</p>""") .format(errorStr))