add translator notes. Fixes #7427
This commit is contained in:
parent
e34d91e323
commit
64bcf6c497
|
@ -126,6 +126,7 @@ class StandardCommonCommands(CommandContainer):
|
||||||
self.echo(formatted)
|
self.echo(formatted)
|
||||||
|
|
||||||
@command(raw=True, empty=True)
|
@command(raw=True, empty=True)
|
||||||
|
#Do not translate online, away, chat, xa, dnd
|
||||||
@doc(_("""
|
@doc(_("""
|
||||||
Set the current status
|
Set the current status
|
||||||
|
|
||||||
|
@ -353,6 +354,7 @@ class StandardGroupChatCommands(CommandContainer):
|
||||||
self.connection.gc_set_role(self.room_jid, who, 'none', reason or str())
|
self.connection.gc_set_role(self.room_jid, who, 'none', reason or str())
|
||||||
|
|
||||||
@command(raw=True)
|
@command(raw=True)
|
||||||
|
#Do not translate moderator, participant, visitor, none
|
||||||
@doc(_("""Set occupant role in group chat.
|
@doc(_("""Set occupant role in group chat.
|
||||||
Role can be given as one of the following values:
|
Role can be given as one of the following values:
|
||||||
moderator, participant, visitor, none"""))
|
moderator, participant, visitor, none"""))
|
||||||
|
@ -364,6 +366,7 @@ class StandardGroupChatCommands(CommandContainer):
|
||||||
self.connection.gc_set_role(self.room_jid, who, role)
|
self.connection.gc_set_role(self.room_jid, who, role)
|
||||||
|
|
||||||
@command(raw=True)
|
@command(raw=True)
|
||||||
|
#Do not translate owner, admin, member, outcast, none
|
||||||
@doc(_("""Set occupant affiliation in group chat.
|
@doc(_("""Set occupant affiliation in group chat.
|
||||||
Affiliation can be given as one of the following values:
|
Affiliation can be given as one of the following values:
|
||||||
owner, admin, member, outcast, none"""))
|
owner, admin, member, outcast, none"""))
|
||||||
|
|
Loading…
Reference in New Issue