~ubuntu-branches/debian/sid/calibre/sid

« back to all changes in this revision

Viewing changes to src/calibre/gui2/preferences/email_ui.py

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2014-02-27 07:48:06 UTC
  • mto: This revision was merged to the branch mainline in revision 74.
  • Revision ID: package-import@ubuntu.com-20140227074806-64wdebb3ptosxhhx
Tags: upstream-1.25.0+dfsg
ImportĀ upstreamĀ versionĀ 1.25.0+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
# Form implementation generated from reading ui file '/home/kovid/work/calibre/src/calibre/gui2/preferences/email.ui'
4
4
#
5
 
# Created: Thu May 30 12:44:29 2013
6
 
#      by: PyQt4 UI code generator 4.10.1
 
5
# Created: Fri Feb  7 21:54:06 2014
 
6
#      by: PyQt4 UI code generator 4.10.3
7
7
#
8
8
# WARNING! All changes made in this file will be lost!
9
9
 
61
61
        self.verticalLayout_8.addWidget(self.email_remove)
62
62
        self.horizontalLayout_8.addLayout(self.verticalLayout_8)
63
63
        self.verticalLayout.addLayout(self.horizontalLayout_8)
 
64
        self.opt_add_comments_to_email = QtGui.QCheckBox(Form)
 
65
        self.opt_add_comments_to_email.setObjectName(_fromUtf8("opt_add_comments_to_email"))
 
66
        self.verticalLayout.addWidget(self.opt_add_comments_to_email)
64
67
        self.send_email_widget = SendEmail(Form)
65
68
        self.send_email_widget.setObjectName(_fromUtf8("send_email_widget"))
66
69
        self.verticalLayout.addWidget(self.send_email_widget)
75
78
        self.email_add.setText(_("&Add email"))
76
79
        self.email_make_default.setText(_("Make &default"))
77
80
        self.email_remove.setText(_("&Remove email"))
 
81
        self.opt_add_comments_to_email.setToolTip(_("Add the comments from the book metadata to the email.\n"
 
82
"Useful to allow the recipient to see a summary of the\n"
 
83
"book before opening it."))
 
84
        self.opt_add_comments_to_email.setText(_("Add &comments metadata as text to the email"))
78
85
 
79
86
from calibre.gui2.wizard.send_email import SendEmail
80
87