adhere to jep about kicked by None/banned by None
This commit is contained in:
parent
c3b701ca8e
commit
b5aad7039c
|
@ -334,6 +334,11 @@ class GroupchatWindow(chat.Chat):
|
||||||
model = self.list_treeview[room_jid].get_model()
|
model = self.list_treeview[room_jid].get_model()
|
||||||
if show in ('offline', 'error'):
|
if show in ('offline', 'error'):
|
||||||
if statusCode == '307':
|
if statusCode == '307':
|
||||||
|
if actor is None: # do not print 'kicked by None'
|
||||||
|
s = _('%(nick)s has been kicked: %(reason)s') % {
|
||||||
|
'nick': nick,
|
||||||
|
'reason': reason }
|
||||||
|
else:
|
||||||
s = _('%(nick)s has been kicked by %(who)s: %(reason)s') % {
|
s = _('%(nick)s has been kicked by %(who)s: %(reason)s') % {
|
||||||
'nick': nick,
|
'nick': nick,
|
||||||
'who': actor,
|
'who': actor,
|
||||||
|
@ -343,6 +348,11 @@ class GroupchatWindow(chat.Chat):
|
||||||
# Should we show the JID to everyone? the same for ban
|
# Should we show the JID to everyone? the same for ban
|
||||||
# I propose we use nick
|
# I propose we use nick
|
||||||
elif statusCode == '301':
|
elif statusCode == '301':
|
||||||
|
if actor is None: # do not print 'banned by None'
|
||||||
|
s = _('%(nick)s has been banned: %(reason)s') % {
|
||||||
|
'nick': nick,
|
||||||
|
'reason': reason }
|
||||||
|
else:
|
||||||
s = _('%(nick)s has been banned by %(who)s: %(reason)s') % {
|
s = _('%(nick)s has been banned by %(who)s: %(reason)s') % {
|
||||||
'nick': nick,
|
'nick': nick,
|
||||||
'who': actor,
|
'who': actor,
|
||||||
|
|
Loading…
Reference in New Issue