Fix #1047721 ([Enhancement] Change new version notification message)

This commit is contained in:
Kovid Goyal 2012-09-08 09:39:23 +05:30
parent 0a3f368280
commit a06685fd5c

View File

@ -75,7 +75,7 @@ class UpdateNotification(QDialog):
self.logo.setPixmap(QPixmap(I('lt.png')).scaled(100, 100, self.logo.setPixmap(QPixmap(I('lt.png')).scaled(100, 100,
Qt.IgnoreAspectRatio, Qt.SmoothTransformation)) Qt.IgnoreAspectRatio, Qt.SmoothTransformation))
self.label = QLabel(('<p>'+ self.label = QLabel(('<p>'+
_('%(app)s has been updated to version <b>%(ver)s</b>. ' _('New version <b>%(ver)s</b> of %(app)s is available for download. '
'See the <a href="http://calibre-ebook.com/whats-new' 'See the <a href="http://calibre-ebook.com/whats-new'
'">new features</a>.'))%dict( '">new features</a>.'))%dict(
app=__appname__, ver=calibre_version)) app=__appname__, ver=calibre_version))