add account name in disco title. Fixes #1643

This commit is contained in:
Yann Leboulanger 2006-03-03 16:57:44 +00:00
parent 1c13fcd648
commit 5e23ba3adb
1 changed files with 3 additions and 3 deletions

View File

@ -495,7 +495,7 @@ _('Without a connection, you can not browse available services')).get_response()
'''Set some initial state on the window. Separated in a method because
it's handy to use within browser's cleanup method.'''
self.progressbar.hide()
self.window.set_title(_('Service Discovery'))
self.window.set_title(_('Service Discovery using account %s') % self.account)
self.banner.set_markup('<span weight="heavy" size="large">'\
'%s</span>\n' % _('Service Discovery'))
# FIXME: use self.banner_icon.clear() when we switch to GTK 2.8
@ -661,8 +661,8 @@ class AgentBrowser:
def _set_initial_title(self):
'''Set the initial window title based on agent address.'''
self.window.window.set_title(_('Browsing %s') % \
self._get_agent_address())
self.window.window.set_title(_('Browsing %s using account %s') % \
(self._get_agent_address(), self.account))
self.window.banner.set_markup('<span weight="heavy" size="large">'\
'%s</span>\n' % self._get_agent_address())