diff --git a/src/calibre/gui2/wizard/send_email.py b/src/calibre/gui2/wizard/send_email.py index da9c21c864..c0830ddae4 100644 --- a/src/calibre/gui2/wizard/send_email.py +++ b/src/calibre/gui2/wizard/send_email.py @@ -125,6 +125,7 @@ class SendEmail(QWidget, Ui_Form): 'port': 587, 'username': '@gmail.com', 'url': 'www.gmail.com', + 'extra': '' }, 'hotmail': { 'name': 'Hotmail', @@ -132,6 +133,9 @@ class SendEmail(QWidget, Ui_Form): 'port': 587, 'username': '', 'url': 'www.hotmail.com', + 'extra': _('If you are setting up a new' + ' hotmail account, you must log in to it ' + ' once before you will be able to send mails.'), } }[service] d = QDialog(self) @@ -141,7 +145,7 @@ class SendEmail(QWidget, Ui_Form): bb.accepted.connect(d.accept) bb.rejected.connect(d.reject) d.tl = QLabel('
'+_('You can sign up for a free {name} email ' - 'account at http://{url}.').format( + 'account at http://{url}. {extra}').format( **service)) l.addWidget(d.tl, 0, 0, 3, 0) d.tl.setWordWrap(True)