[Mishail] fix var name. Fixes #4403

This commit is contained in:
Yann Leboulanger 2008-10-11 13:06:59 +00:00
parent 0b56b3c44d
commit 0afc57ad6d
1 changed files with 2 additions and 2 deletions

View File

@ -442,9 +442,9 @@ class MessageWindow(object):
window_mode = gajim.interface.msg_win_mgr.mode
if window_mode == MessageWindowMgr.ONE_MSG_WINDOW_PERTYPE:
# Show the plural form since number of tabs > 1
if self.type == 'chat':
if self.type_ == 'chat':
label = _('Chats')
elif self.type == 'gc':
elif self.type_ == 'gc':
label = _('Group Chats')
else:
label = _('Private Chats')