summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIvan Alejandro <ivanalejandro0@gmail.com>2014-01-22 14:58:38 -0300
committerIvan Alejandro <ivanalejandro0@gmail.com>2014-01-22 14:58:38 -0300
commit4426635373a4f59249f4da17b581cea3ee7f33d8 (patch)
treeae67ef9a0bf15e34ca5d4ff684f51a968681423f /src
parent8a05b6fcc913a21ce7b3fa950c63a2ebda76c6f2 (diff)
Don't use an empty password to configure email.
- Also add translation support for the help message. [Closes #4985]
Diffstat (limited to 'src')
-rw-r--r--src/leap/bitmask/gui/mainwindow.py5
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)