From 86ee25491cbfc88a0d63cc9e26621fe86f8a4196 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Wed, 20 Mar 2019 12:16:03 +0000 Subject: 's/an user/a user/g' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- poezio/tabs/muctab.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'poezio/tabs/muctab.py') diff --git a/poezio/tabs/muctab.py b/poezio/tabs/muctab.py index d71656b6..17abb369 100644 --- a/poezio/tabs/muctab.py +++ b/poezio/tabs/muctab.py @@ -47,7 +47,7 @@ COMPARE_USERS_LAST_TALKED = lambda x: x.last_talked class MucTab(ChatTab): """ The tab containing a multi-user-chat room. - It contains an userlist, an input, a topic, an information and a chat zone + It contains a userlist, an input, a topic, an information and a chat zone """ message_type = 'groupchat' plugin_commands = {} # type: Dict[str, Command] @@ -891,7 +891,7 @@ class MucTab(ChatTab): from_room: JID, server_initiated=False): """ - When an user leaves a groupchat + When a user leaves a groupchat """ self.users.remove(user) if self.own_nick == user.nick: @@ -952,7 +952,7 @@ class MucTab(ChatTab): def on_user_change_status(self, user, from_nick, from_room, affiliation, role, show, status): """ - When an user changes her status + When a user changes her status """ # build the message display_message = False # flag to know if something significant enough @@ -1567,7 +1567,7 @@ class MucTab(ChatTab): def command_role(self, args): """ /role [reason] - Changes the role of an user + Changes the role of a user roles can be: none, visitor, participant, moderator """ @@ -1585,7 +1585,7 @@ class MucTab(ChatTab): def command_affiliation(self, args): """ /affiliation - Changes the affiliation of an user + Changes the affiliation of a user affiliations can be: outcast, none, member, admin, owner """ @@ -1908,11 +1908,11 @@ class MucTab(ChatTab): self.command_role, 'usage': ' [reason]', - 'desc': ('Set the role of an user. Roles can be:' + 'desc': ('Set the role of a user. Roles can be:' ' none, visitor, participant, moderator.' ' You also can give an optional reason.'), 'shortdesc': - 'Set the role of an user.', + 'Set the role of a user.', 'completion': self.completion_role }, { @@ -1922,10 +1922,10 @@ class MucTab(ChatTab): self.command_affiliation, 'usage': ' ', - 'desc': ('Set the affiliation of an user. Affiliations can be:' + 'desc': ('Set the affiliation of a user. Affiliations can be:' ' outcast, none, member, admin, owner.'), 'shortdesc': - 'Set the affiliation of an user.', + 'Set the affiliation of a user.', 'completion': self.completion_affiliation }, { @@ -2056,7 +2056,7 @@ class MucTab(ChatTab): 'in the MUC: their role, affiliation,' ' status and status message.'), 'shortdesc': - 'Show an user\'s infos.', + 'Show a user\'s infos.', 'completion': self.completion_info }, { -- cgit v1.2.3