Change title of plugin updater dialog

This commit is contained in:
Kovid Goyal 2011-06-14 10:33:33 -06:00
parent d22000fc1b
commit f2848014f3

View File

@ -477,10 +477,12 @@ class PluginUpdaterDialog(SizePersistedDialog):
self.resize_dialog()
def _initialize_controls(self):
self.setWindowTitle(_('Check for user plugin updates'))
self.setWindowTitle(_('User plugins'))
self.setWindowIcon(QIcon(I('plugins/plugin_updater.png')))
layout = QVBoxLayout(self)
self.setLayout(layout)
title_layout = ImageTitleLayout(self, 'plugins/plugin_updater.png', _('User Plugin Status'))
title_layout = ImageTitleLayout(self, 'plugins/plugin_updater.png',
_('User Plugins'))
layout.addLayout(title_layout)
header_layout = QHBoxLayout()