diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/leap/bitmask/gui/mainwindow.py | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/src/leap/bitmask/gui/mainwindow.py b/src/leap/bitmask/gui/mainwindow.py index 3f41900b..ffedfa1c 100644 --- a/src/leap/bitmask/gui/mainwindow.py +++ b/src/leap/bitmask/gui/mainwindow.py @@ -888,7 +888,7 @@ class MainWindow(QtGui.QMainWindow):          url = ("<a href='https://addons.mozilla.org/es/thunderbird/"                 "addon/bitmask/'>bitmask addon</a>") -        msg = ( +        msg = self.tr(              "<strong>Instructions to use mail:</strong><br>"              "If you use Thunderbird you can use the Bitmask extension helper. "              "Search for 'Bitmask' in the add-on manager or download it " @@ -898,7 +898,8 @@ class MainWindow(QtGui.QMainWindow):              "   Incoming -> IMAP, port: {1}<br>"              "   Outgoing -> SMTP, port: {2}<br>"              "   Username -> your bitmask username.<br>" -            "   Password -> leave it empty." +            "   Password -> does not matter, use any text. " +            " Just don't leave it empty and don't use your account's password."              "</em>").format(url, IMAP_PORT, smtp_port)          QtGui.QMessageBox.about(self, self.tr("Bitmask Help"), msg) | 
